/* ==========================================================================
   OASIS CATERING — Brand Design System
   Derived from official brand guidelines sheet.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root{
  /* Primary */
  --maroon: #882E28;
  --terracotta: #C95A48;
  --sand: #F6E9DA;
  /* Secondary */
  --olive: #6E7A3F;
  --taupe: #887766;
  --charcoal: #1F2626;
  /* Accent — now doing real visual work, not sitting on the shelf */
  --gold: #D4AF37;
  --teal: #0E5A5A;
  --coral: #FF6B58;
  /* Derived */
  --sand-deep: #EFE0CC;
  --maroon-10: rgba(136,46,40,0.10);
  --maroon-20: rgba(136,46,40,0.20);
  --teal-10: rgba(14,90,90,0.08);
  --teal-20: rgba(14,90,90,0.22);
  --cream-paper: #FBF6EE;
  --line: rgba(31,38,38,0.13);

  --font-display: 'Poppins', sans-serif;
  --font-sub: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --palm-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23F6E9DA' stroke-width='2'%3E%3Cpath d='M30 70c0-14 8-24 8-24s-2 12 4 18-12 6-12 6z'/%3E%3Cpath d='M38 46c4-8 14-10 14-10s-6 6-6 12 -8-2-8-2z'/%3E%3Cpath d='M38 46c-8-2-16 2-16 2s8 2 10 8-4 -10 6-10z'/%3E%3Ccircle cx='38' cy='70' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream-paper);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight:600; letter-spacing:-0.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.container{ max-width: var(--container); margin:0 auto; padding: 0 clamp(20px,4vw,48px); }

/* Visually hidden (accessibility) */
.vh{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Eyebrow / label ---------- */
.eyebrow{
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width:22px; height:1px;
  background: var(--terracotta);
  display:inline-block;
}

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index:50;
  background: rgba(251,246,238,0.92);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height: 84px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{ height:48px; width:auto; flex-shrink:0; display:block; }
.brand-logo-footer{ height:42px; }

.main-nav ul{ display:flex; align-items:center; gap: 40px; }
.main-nav a{
  font-family: var(--font-sub); font-weight:500; font-size:14.5px;
  color: var(--charcoal); position:relative; padding: 6px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:1.5px;
  background: var(--terracotta); transform: scaleX(0); transform-origin:left;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after{ transform: scaleX(1); }
.main-nav a.active{ color: var(--maroon); }

.header-cta{ display:flex; align-items:center; gap:14px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family: var(--font-sub); font-weight:600; font-size:14px;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all .22s ease;
  white-space:nowrap;
}
.btn-primary{ background: var(--maroon); color: var(--sand); }
.btn-primary:hover{ background: var(--terracotta); }
.btn-outline{ background:transparent; border-color: var(--maroon); color: var(--maroon); }
.btn-outline:hover{ background: var(--maroon); color: var(--sand); }
.btn-whatsapp{ background:#25D366; color:#fff; }
.btn-whatsapp:hover{ background:#1EBE57; }
.btn svg{ width:16px; height:16px; flex-shrink:0; }

.nav-toggle{ display:none; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex; align-items:flex-end;
  overflow:hidden;
  background: var(--charcoal);
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position: center 42%; }
.hero-media::after{
  content:'';
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(20,14,12,0.30) 0%, rgba(18,12,10,0.35) 40%, rgba(15,10,9,0.88) 100%),
    linear-gradient(90deg, rgba(20,12,10,0.55) 0%, rgba(20,12,10,0.05) 55%);
}
.hero-content{
  position:relative; z-index:2;
  width:100%;
  padding-bottom: clamp(56px, 8vw, 96px);
  padding-top: 140px;
}
.hero-eyebrow{
  font-family: var(--font-sub); font-weight:500; font-size:13px;
  letter-spacing:0.24em; text-transform:uppercase;
  color: var(--sand); opacity:.85;
  display:flex; align-items:center; gap:12px;
  margin-bottom: 22px;
}
.hero-eyebrow::before{ content:''; width:34px; height:1px; background: var(--gold); }
.hero h1{
  color: var(--sand);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.02;
  font-weight: 600;
  max-width: 14ch;
  text-wrap: balance;
}
.hero h1 em{ font-style: italic; font-weight:500; color: var(--gold); }
.hero-sub{
  margin-top: 26px;
  color: rgba(246,233,218,0.86);
  font-family: var(--font-sub); font-weight:400; font-size: 18px;
  max-width: 46ch;
  line-height:1.65;
}
.hero-actions{ margin-top:40px; display:flex; gap:16px; flex-wrap:wrap; }
.hero-scroll{
  position:absolute; right: clamp(20px,4vw,48px); bottom: 40px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color: var(--sand); opacity:.7;
}
.hero-scroll span{ font-family: var(--font-sub); font-size:11px; letter-spacing:.2em; text-transform:uppercase; writing-mode: vertical-rl; }
.hero-scroll .line{ width:1px; height:46px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2.2s ease-in-out infinite; }
@keyframes scrollpulse{ 0%,100%{opacity:.35} 50%{opacity:1} }

/* ---------- Section rhythm ---------- */
section{ padding: clamp(72px, 10vw, 128px) 0; position:relative; }
.section-tight{ padding-top: clamp(48px,6vw,72px); padding-bottom: clamp(48px,6vw,72px); }
.rule{ height:1px; background: var(--line); border:0; margin:0; }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head h2{ font-size: clamp(2rem, 3.4vw, 2.9rem); margin-top:16px; color: var(--maroon); }
.section-head p{ margin-top:18px; font-family: var(--font-sub); font-size:16.5px; color: var(--taupe); line-height:1.7; }
.section-alt{ background: var(--sand-deep); }

/* ---------- Values strip ---------- */
.values{
  display:grid; grid-template-columns: repeat(3,1fr); gap:1px;
  background: var(--maroon);
  border-top:1px solid var(--maroon); border-bottom:1px solid var(--maroon);
}
.value-item{
  background: var(--maroon);
  padding: 44px 40px;
  display:flex; gap:20px; align-items:flex-start;
}
.value-item svg{ width:34px; height:34px; flex-shrink:0; color: var(--gold); }
.value-item:nth-child(2) svg{ color: var(--sand); }
.value-item:nth-child(3) svg{ color: var(--gold); }
.value-item h3{ font-family:var(--font-sub); font-weight:600; font-size:15.5px; letter-spacing:.04em; text-transform:uppercase; color: var(--sand); }
.value-item p{ margin-top:8px; font-size:14.5px; color: rgba(246,233,218,0.72); line-height:1.6; }

/* ---------- Services / menu categories ---------- */
.services-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--maroon-20);
  border: 1px solid var(--maroon-20);
}
.service-card{
  background: var(--cream-paper);
  padding: 40px 34px;
  border-bottom: 3px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.service-card:hover{ background: var(--sand); border-bottom-color: var(--maroon); }
.service-num{ font-family: var(--font-sub); font-size:12px; color: var(--terracotta); font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.service-card h3{ margin-top:18px; font-size: 22px; color: var(--maroon); font-weight:600; }
.service-card p{ margin-top:10px; font-size:14.5px; color: var(--taupe); line-height:1.65; }

/* ---------- Gallery (visual language) ---------- */
.gallery{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 260px 260px;
  gap: 10px;
}
.gallery img{ width:100%; height:100%; object-fit:cover; border-radius:2px; }
.g1{ grid-column: span 3; grid-row: span 2; }
.g2{ grid-column: span 3; grid-row: span 1; }
.g3{ grid-column: span 2; grid-row: span 1; }
.g4{ grid-column: span 1; grid-row: span 1; }

/* ---------- Occasions ---------- */
.occasions{
  display:flex; flex-wrap:wrap; gap: 14px;
}
.occasion-pill{
  font-family: var(--font-sub); font-weight:500; font-size:14px;
  padding: 12px 22px;
  border: 1px solid var(--maroon-20);
  border-radius: 40px;
  color: var(--maroon);
  display:flex; align-items:center; gap:9px;
  background: var(--cream-paper);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.occasion-pill:hover{ background: var(--maroon); color: var(--sand); border-color: var(--maroon); }
.occasion-pill svg{ width:16px; height:16px; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(135deg, var(--maroon) 0%, #6f2420 100%);
  color: var(--sand);
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:'';
  position:absolute; inset:0;
  background-image: var(--palm-pattern);
  background-size: 220px;
  opacity:.08;
}
.cta-inner{ position:relative; z-index:1; text-align:center; max-width:680px; margin:0 auto; }
.cta-inner h2{ color: var(--sand); font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.cta-inner p{ margin-top:16px; font-family:var(--font-sub); color: rgba(246,233,218,0.82); font-size:16.5px; }
.cta-actions{ margin-top:34px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-band .btn-outline{ border-color: var(--sand); color: var(--sand); }
.cta-band .btn-outline:hover{ background: var(--sand); color: var(--maroon); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--charcoal); color: var(--sand); padding: 72px 0 0; }
.footer-top{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(246,233,218,0.14);
}

.footer-brand p{ margin-top:18px; font-size:14px; color: rgba(246,233,218,0.62); max-width:32ch; line-height:1.7; }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{
  width:36px; height:36px; border:1px solid rgba(246,233,218,0.25); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition:.2s;
}
.footer-social a:hover{ background: var(--terracotta); border-color: var(--terracotta); }
.footer-social svg{ width:15px; height:15px; }
.footer-col h4{ font-family: var(--font-sub); font-weight:600; font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold); }
.footer-col ul{ margin-top:20px; display:flex; flex-direction:column; gap:13px; }
.footer-col a{ font-size:14.5px; color: rgba(246,233,218,0.75); transition:.2s; }
.footer-col a:hover{ color: var(--sand); }
.footer-bottom{
  padding: 26px 0 30px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:13px; color: rgba(246,233,218,0.5);
}
.footer-bottom a{ color: rgba(246,233,218,0.5); }
.footer-bottom a:hover{ color: var(--sand); }
.footer-bottom-links{ display:flex; gap:24px; }

/* ---------- WhatsApp floating button ---------- */
.wa-float{
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: transform .2s ease;
}
.wa-float:hover{ transform: scale(1.07); }
.wa-float svg{ width:28px; height:28px; }

/* ---------- Inner page hero (contact / privacy) ---------- */
.page-hero{
  background: var(--maroon);
  color: var(--sand);
  padding: 168px 0 80px;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:'';
  position:absolute; inset:0;
  background-image: var(--palm-pattern);
  background-size: 200px;
  opacity: .07;
}
.page-hero .container{ position:relative; z-index:1; }
.page-hero h1{ color: var(--sand); font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.page-hero p{ margin-top:16px; font-family:var(--font-sub); color:rgba(246,233,218,0.8); font-size:16px; max-width:56ch; }

/* ---------- Contact page ---------- */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items:start;
}
.contact-card{
  border:1px solid var(--line);
  background: var(--cream-paper);
  padding: 6px;
}
.contact-row{
  display:flex; gap:20px; align-items:flex-start;
  padding: 26px 22px;
  border-bottom:1px solid var(--line);
}
.contact-row:last-child{ border-bottom:none; }
.contact-row .icon{
  width:46px; height:46px; border-radius:50%;
  background: var(--maroon-10); color: var(--maroon);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-row .icon svg{ width:20px; height:20px; }
.contact-row h4{ font-family:var(--font-sub); font-weight:600; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color: var(--taupe); }
.contact-row a, .contact-row p{ margin-top:6px; font-size:16.5px; color: var(--charcoal); font-weight:500; }
.contact-row a:hover{ color: var(--terracotta); }
.contact-map{ margin-top:28px; border:1px solid var(--line); overflow:hidden; }
.contact-map iframe{ width:100%; height:280px; border:0; display:block; filter: grayscale(0.15) sepia(0.08); }

.form-field{ margin-bottom:22px; }
.form-field label{
  display:block; font-family:var(--font-sub); font-weight:500; font-size:13px;
  letter-spacing:.04em; text-transform:uppercase; color: var(--taupe); margin-bottom:9px;
}
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding: 14px 16px;
  border:1px solid var(--maroon-20); background: var(--cream-paper);
  font-family: var(--font-body); font-size:15px; color: var(--charcoal);
  border-radius:2px; transition: border-color .2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  border-color: var(--terracotta); outline:none;
}
.form-field textarea{ resize:vertical; min-height:130px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-note{ margin-top: 6px; font-size:13px; color: var(--taupe); }

.whatsapp-callout{
  display:flex; align-items:center; gap:20px;
  background: var(--sand);
  border:1px solid var(--maroon-20);
  padding: 26px;
  margin-top: 34px;
}
.whatsapp-callout .wa-icon{
  width:52px; height:52px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.whatsapp-callout .wa-icon svg{ width:24px; height:24px; }
.whatsapp-callout h4{ font-family:var(--font-sub); font-weight:600; font-size:16px; }
.whatsapp-callout p{ margin-top:4px; font-size:14px; color: var(--taupe); }
.whatsapp-callout .btn{ margin-left:auto; flex-shrink:0; }

/* ---------- Privacy page ---------- */
.policy-layout{ display:grid; grid-template-columns: 260px 1fr; gap: 64px; align-items:start; }
.policy-nav{ position:sticky; top:110px; }
.policy-nav .eyebrow{ margin-bottom:20px; }
.policy-nav ul{ display:flex; flex-direction:column; gap:2px; border-left:2px solid var(--line); }
.policy-nav a{
  display:block; padding: 10px 0 10px 18px; font-size:14px; color: var(--taupe);
  font-family: var(--font-sub); border-left:2px solid transparent; margin-left:-2px;
}
.policy-nav a:hover, .policy-nav a.active{ color: var(--maroon); border-left-color: var(--maroon); }
.policy-content h2{
  font-size: 24px; color: var(--maroon); margin-top:48px; margin-bottom:16px;
  padding-top:18px;
}
.policy-content h2:first-child{ margin-top:0; }
.policy-content p{ font-size:15.5px; color: var(--charcoal); margin-bottom:14px; line-height:1.75; }
.policy-content ul{ margin: 14px 0 20px; display:flex; flex-direction:column; gap:10px; }
.policy-content ul li{
  font-size:15.5px; line-height:1.7; padding-left:22px; position:relative; color: var(--charcoal);
}
.policy-content ul li::before{
  content:''; position:absolute; left:0; top:9px; width:6px; height:6px; background: var(--terracotta); border-radius:50%;
}
.policy-updated{
  font-family: var(--font-sub); font-size:13px; color: var(--taupe);
  margin-bottom: 40px; display:inline-block;
  padding: 8px 16px; border:1px solid var(--line);
}

/* ---------- Utility: pattern var set via JS-free inline SVG data uri (defined per-page) ---------- */

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .main-nav{ display:none; }
  .header-cta .btn-outline.desktop-only{ display:none; }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .values{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,200px); }
  .g1{ grid-column: span 2; grid-row: span 1; }
  .g2{ grid-column: span 2; }
  .g3, .g4{ grid-column: span 1; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap:48px; }
  .policy-layout{ grid-template-columns:1fr; }
  .policy-nav{ position:static; margin-bottom:20px; }
  .policy-nav ul{ flex-direction:row; flex-wrap:wrap; border-left:none; border-top:2px solid var(--line); padding-top:14px; }
  .policy-nav a{ border-left:none; border-top:2px solid transparent; margin-left:0; margin-top:-2px; padding:8px 14px 8px 0; }
}
@media (max-width: 640px){
  .services-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; gap:36px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .hero h1{ max-width:none; }
  .whatsapp-callout{ flex-direction:column; align-items:flex-start; }
  .whatsapp-callout .btn{ margin-left:0; width:100%; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}
