@import url(https://fonts.googleapis.com/css?family=Bitter:400,400i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,400,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Great+Vibes&display=swap);
@import url(https://fonts.googleapis.com/css?family=Oleo+Script:400,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Oxygen:300,400,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,700,800&display=swap);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Playfair+Display:400,700,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif:400,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Bevan&display=swap);
@import url(https://fonts.googleapis.com/css?family=Cormorant+Garamond:400,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Lora:400,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Euphoria+Script&display=swap);
@import url(https://fonts.googleapis.com/css?family=Norican&display=swap);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700&display=swap);
:root{
  --bg:#181410;
  --bg-2:#1f1a15;
  --card:#211c17;
  --border:#332c24;
  --fg:#f3ece0;
  --muted:#ffffff;
  --gold:#c9a14a;
  --gold-2:#e6c97a;
  --gold-soft:rgba(201,161,74,.4);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Bitter',sans-serif;
  background:var(--bg);
  color:var(--fg);
  font-weight:300;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
em{font-style:italic}

.container{max-width:1200px;margin:0 auto;padding:0 24px}
.display{font-family:"Great Vibes",cursive;font-weight:400;line-height:1.1}
.title{font-family:"Great Vibes",cursive}
.script{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:500}
.gold{color:var(--gold)}
.gold-grad{
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-2) 50%,var(--gold) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  font-style:italic;
}
select {background: #5e5953;color: #fff;padding: 10px;}

select option {
    background: #1e1e1e;   /* option background */
    color: #fff;           /* option text color */
}

select option:hover {
    background: #c89b3c;   /* hover color */
}
.gold-divider{width:80px;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);margin:32px 0}

 /* Mobile only — hide on desktop */
  @media (min-width: 769px) {
    .sticky-cta-bar {
      display: none !important;
    }
  }
  @media (max-width: 769px)
{
     .floating{display:none!important;}
}

 /* ── Sticky CTA Bar ── */
  .sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #cc9933;
    z-index: 9999;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: stretch;
    height: 52px;
  }

  .sticky-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    border: none;
    outline: none;
  }

  .sticky-cta-bar a:hover {
    background-color: rgba(0, 0, 0, 0.12);
  }

  .sticky-cta-bar a:active {
    background-color: rgba(0, 0, 0, 0.2);
  }

/* ============ NAV ============ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;
  background:rgba(24,20,16,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  transition:.3s;
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 24px}
.brand{font-family:'Bitter',serif;font-size:1.6rem;display:flex;gap:4px}
.brand-gold{color:var(--gold);font-style:italic}
.nav-links{display:flex;gap:32px}
.nav-links a{font-size:.85rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);transition:.2s}
.nav-links a:hover{color:var(--gold)}
.hamburger{display:none;background:none;border:none;flex-direction:column;gap:5px;cursor:pointer}
.hamburger span{width:22px;height:1.5px;background:var(--fg);display:block}
.mobile-menu{display:none;flex-direction:column;padding:0 24px 20px;gap:14px;border-top:1px solid var(--border)}
.mobile-menu a{padding:8px 0;font-size:.9rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted)}
.mobile-menu.open{display:flex}

@media(max-width:880px){
  .nav-links,.nav .btn{display:none}
  .hamburger{display:flex}
 
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 28px;font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;
  font-weight:500;cursor:pointer;border:none;transition:.3s;
}
.btn-sm{padding:10px 20px;font-size:.7rem}
.btn-lg{padding:18px 36px;font-size:.85rem}
.btn-gold{background:var(--gold);color:#1a1411}
.btn-gold:hover{background:var(--gold-2);box-shadow:0 8px 24px -8px var(--gold-soft)}
.btn-link{
  font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;
  border-bottom:1px solid var(--gold-soft);padding-bottom:4px;transition:.2s;
}
.btn-link:hover{color:var(--gold)}

/* ============ HERO ============ */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden}
.hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,var(--bg) 0%,rgba(24,20,16,.6) 50%,transparent 100%),
    linear-gradient(180deg,rgba(24,20,16,.7) 0%,rgba(24,20,16,.5) 50%,var(--bg) 100%);
}
.hero-content{position:relative;z-index:2;padding:140px 24px 80px;display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center;width:100%}
.hero-text .script{font-size:1.8rem;margin-bottom:14px}
.hero-text h1{font-size:clamp(2.4rem,5vw,4.4rem);margin-bottom:0}
.lead{color:var(--muted);font-size:1.05rem;max-width:560px;margin-bottom:36px}
.hero-ctas{display:flex;flex-wrap:wrap;gap:20px;align-items:center;margin-bottom:42px}
.hero-bullets{list-style:none;display:grid;grid-template-columns:repeat(2,1fr);gap:10px 24px;max-width:540px;font-size:.9rem;color:var(--muted)}
.hero-form{padding:32px;backdrop-filter:blur(8px);background:rgba(33,28,23,.85)}
.hero-form .eyebrow{font-size:.72rem;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);margin-bottom:8px;text-align: center;}
.hero-form-title{font-size: 2.6rem;
    margin-bottom: 22px;
    font-weight: 600;
    text-align: center;}
.hero-form .field{margin-bottom:14px}
.hero-form .form-row{margin-bottom:0}
.hero-form .btn{width:100%;justify-content:center;margin-top:8px}
.hero-counters{list-style:none;display:grid;grid-template-columns:repeat(3,1fr);gap:18px 20px;max-width:620px;margin-top:8px}
.hero-counters li{padding:14px 8px;border-top:1px solid rgba(212,175,55,.25);text-align:left}
.counter-num{display:block;font-family:var(--font-display,'Bitter',serif);font-size:2rem;line-height:1;color:var(--gold);font-weight:600;letter-spacing:.02em}
.counter-label{display:block;margin-top:8px;font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted)}
@media(max-width:600px){.hero-counters{grid-template-columns:repeat(2,1fr)}.counter-num{font-size:1.6rem}}
@media(max-width:960px){
  .hero-content{grid-template-columns:1fr;gap:40px;padding-top:120px}
  .hero-form{order:2}
}
@media(max-width:600px){.hero-bullets{grid-template-columns:1fr}}

/* ============ SECTIONS ============ */
.section{padding:100px 0}
.section-alt{background:var(--bg-2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
/* Light (white) section variant — alternates with dark */
.section-light{background:#ffffff;color:#1a1411;border-top:1px solid #ececec;border-bottom:1px solid #ececec}
.section-light .eyebrow{color:#b8893a}
.section-light .subtitle,
.section-light .card-body p,
.section-light .why p,
.section-light .step p,
.section-light .center-note,
.section-light .lead,
.section-light .stat-label,
.section-light .quote figcaption{color:#6b6359}
.section-light .card,
.section-light .quote{background:#fafafa;border-color:#ececec}
.section-light .why{background:#ffffff}
.section-light .why:hover{background:#fafafa}
.section-light .why-grid,
.section-light .tags-grid{background:#ececec;border-color:#ececec}
.section-light .tag{background:#ffffff;color:#1a1411}
.section-light .tag:hover{background:#fafafa}
.section-light .card-img::after{background:linear-gradient(to top,#fafafa,transparent 60%)}
.section-light .field input,
.section-light .field select,
.section-light .field textarea{background:#ffffff;border-color:#ddd;color:#1a1411}
.section-light .form{background:#fafafa;border-color:#ececec}
.section-light .quote blockquote{color:#1a1411}
.heading{text-align:center;max-width:720px;margin:0 auto 60px}
.eyebrow{font-size:.72rem;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);margin-bottom:14px}
.heading h2{font-size:clamp(2rem,4vw,3rem);margin-bottom:16px}
.subtitle{color:var(--muted);font-size:1rem}
.grid{display:grid;gap:32px}

/* SERVICES */
.services-grid{grid-template-columns:repeat(3,1fr)}
@media(max-width:760px){.services-grid{grid-template-columns:1fr}}
.card{background:var(--card);border:1px solid var(--border);overflow:hidden;transition:.3s}
.card:hover{border-color:var(--gold-soft)}
.card-img{aspect-ratio:16/10;overflow:hidden;position:relative}
.card-img::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,var(--card),transparent 60%)}
.card-img img{width:100%;height:100%;object-fit:cover;transition:.7s}
.card:hover .card-img img{transform:scale(1.05)}
.card-body{padding:32px;margin-top:-60px;position:relative;z-index:1}
.num{font-size:.7rem;letter-spacing:.3em;color:var(--gold);margin-bottom:10px}
.card-body h3{font-family:'Bitter',serif;font-size:1.6rem;margin-bottom:10px;font-weight:600}
.card-body p{color:var(--muted);font-size:.92rem}

.tags-grid{margin-top:50px;display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);border:1px solid var(--border)}
@media(max-width:680px){.tags-grid{grid-template-columns:repeat(2,1fr)}}
.tag{background:var(--card);padding:22px 12px;text-align:center;font-size:.85rem;transition:.2s}
.tag:hover{background:var(--bg-2)}

/* CUISINES */
.cuisines-grid{grid-template-columns:repeat(4,1fr)}
@media(max-width:900px){.cuisines-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.cuisines-grid{grid-template-columns:1fr}}
.cuisine{position:relative;overflow:hidden;aspect-ratio:3/4}
.cuisine img{width:100%;height:100%;object-fit:cover;transition:.7s}
.cuisine:hover img{transform:scale(1.1)}
.cuisine-cap{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:24px;background:linear-gradient(to top,var(--bg) 0%,rgba(24,20,16,.3) 50%,transparent 100%)}
.cuisine-cap h3{font-family:'Bitter',serif;font-size:1.5rem;font-weight:600}
.bar{width:40px;height:1px;background:var(--gold);margin:10px 0}
.cuisine-cap p{font-size:.8rem;color:var(--muted);max-height:0;opacity:0;overflow:hidden;transition:.4s}
.cuisine:hover .cuisine-cap p{max-height:100px;opacity:1}
.center-note{text-align:center;color:var(--muted);font-size:.9rem;margin-top:36px}

/* STATS */
.stats{padding:70px 0;background:var(--card);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;text-align:center}
@media(max-width:600px){.stats-grid{grid-template-columns:repeat(2,1fr)}}
.stat-num{font-family:'Bitter',serif;font-size:clamp(2.4rem,5vw,3.6rem);font-weight:600}
.stat-label{font-size:.7rem;letter-spacing:.25em;text-transform:uppercase;color:var(--muted);margin-top:10px}

/* WHY */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border:1px solid var(--border)}
@media(max-width:880px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.why-grid{grid-template-columns:1fr}}
.why{background:var(--bg);padding:32px;transition:.3s}
.why:hover{background:var(--card)}
.why-icon{width:48px;height:48px;border:1px solid var(--gold-soft);display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:1.2rem;margin-bottom:18px;transition:.2s}
.why:hover .why-icon{background:var(--gold);color:#1a1411;border-color:var(--gold)}
.why h3{font-family:'Bitter',serif;font-size:1.2rem;margin-bottom:8px;font-weight:600}
.why p{font-size:.88rem;color:var(--muted)}

/* PROCESS */
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
@media(max-width:880px){.process-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.process-grid{grid-template-columns:1fr}}
.step{padding-left:22px;border-left:1px solid var(--gold-soft);transition:.2s}
.step:hover{border-color:var(--gold)}
.step-n{font-family:'Bitter',serif;font-size:3rem;color:rgba(201,161,74,.7);margin-bottom:8px}
.step h3{font-family:'Bitter',serif;font-size:1.2rem;margin-bottom:8px;font-weight:600}
.step p{font-size:.88rem;color:var(--muted)}

/* TESTIMONIALS */
.testimonials-grid{grid-template-columns:repeat(2,1fr)}
@media(max-width:760px){.testimonials-grid{grid-template-columns:1fr}}
.quote{position:relative;padding:36px;background:var(--card);border:1px solid var(--border);transition:.3s}
.quote:hover{border-color:var(--gold-soft)}
.stars{color:var(--gold);letter-spacing:4px;margin-bottom:18px;font-size:.9rem}
.quote blockquote{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1.2rem;color:var(--fg);line-height:1.55}
.quote figcaption{margin-top:20px;font-size:.72rem;letter-spacing:.25em;text-transform:uppercase;color:var(--muted)}

/* ENQUIRY */
.enquiry-wrap{max-width:760px}
.form{background:var(--card);padding:40px;border:1px solid var(--border)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px}
@media(max-width:560px){.form-row{grid-template-columns:1fr}}
.field{display:flex;flex-direction:column;gap:8px;margin-bottom:20px}
.field label{font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--muted)}
.field input,.field select,.field textarea{
  background:#fffefb52;border:1px solid var(--border);color:var(--fg);
  padding:14px 16px;font-family:inherit;font-size:.95rem;outline:none;transition:.2s;
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--gold)}
.form-msg{margin-top:16px;font-size:.9rem;color:var(--gold);min-height:1.2em}

/* FOOTER */
.footer{background:var(--card);border-top:1px solid var(--border);padding:24px 20px;text-align:center;font-size:.78rem;color:var(--muted)}

/* FLOATING */
.floating{position:fixed;right:20px;bottom:20px;display:flex;flex-direction:column;gap:12px;z-index:40}
.float-btn{
  width:54px;height:54px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;box-shadow:0 8px 24px -6px rgba(0,0,0,.5);transition:.2s;
}

.float-btn:hover{transform:translateY(-3px) scale(1.05)}

/* ANIM */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
.hero-content>*{animation:fadeUp .8s ease both}
.hero-content>*:nth-child(2){animation-delay:.1s}
.hero-content>*:nth-child(4){animation-delay:.2s}
.hero-content>*:nth-child(5){animation-delay:.3s}
.hero-content>*:nth-child(6){animation-delay:.4s}
.footer-grid h5

 {
    font-family: "Bitter", serif;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}
/* FOOTER */
.footer-grid{display:grid;grid-template-columns:1.1fr 1fr 1.1fr;gap:32px;padding:48px 0 24px;text-align:left}
@media(max-width:980px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.footer-grid{grid-template-columns:1fr;gap:28px}}
.footer-grid h5{font-family:"Bitter",serif;color:var(--gold);font-size:.95rem;margin-bottom:10px;letter-spacing:.05em}
.footer-grid p{font-size:.82rem;color:var(--muted);line-height:1.7;margin-bottom:8px;padding-top:5px;}
.footer-grid a{color:var(--muted)} .footer-grid a:hover{color:var(--gold)}
.footer-brand{font-family:"Bitter",serif;font-size:1.6rem;margin-bottom:8px}
.footer-tag{font-style:italic}
.footer-services{font-size:.78rem !important;line-height:1.8 !important}
.footer-bottom{border-top:1px solid var(--border);padding:18px 0;text-align:center;font-size:.75rem;color:var(--muted)}