/* ══════════════════════════════════════════════
   MOHLAGO'S KITCHEN — Main Stylesheet
   © 2025 Mohlago's Kitchen, Pretoria
══════════════════════════════════════════════ */
:root {
  --gold: #C8933A;
  --gold-light: #E5B96A;
  --gold-pale: #F7EDD8;
  --dark: #141010;
  --charcoal: #1E1A17;
  --brown: #3A1F0D;
  --terra: #C05A30;
  --cream: #FAF4EC;
  --warm: #FDFAF6;
  --sage: #4A6040;
  --muted: rgba(20,16,10,.55);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm); color: var(--dark); overflow-x: hidden; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; padding: 1.4rem 5vw; display: flex; align-items: center; justify-content: space-between; transition: all .35s; }
nav.sc { background: rgba(20,16,10,.96); backdrop-filter: blur(14px); padding: .9rem 5vw; border-bottom: 1px solid rgba(200,147,58,.18); }
.logo { text-decoration: none; }
.logo .t { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: #fff; letter-spacing: .02em; }
.logo .s { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: block; margin-top: -2px; }
.nl { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nl a { font-size: .77rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.nl a:hover { color: var(--gold); }
.nb { background: var(--gold) !important; color: var(--dark) !important; padding: .5rem 1.3rem !important; font-weight: 600 !important; transition: background .2s !important; }
.nb:hover { background: var(--gold-light) !important; }
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; }
.ham span { width: 24px; height: 2px; background: #fff; display: block; transition: all .3s; }
.mob-menu { display: none; position: fixed; inset: 0; background: rgba(20,16,10,.98); z-index: 800; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mob-menu.open { display: flex; }
.mob-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; text-decoration: none; transition: color .2s; }
.mob-menu a:hover { color: var(--gold); }
.mob-close { position: absolute; top: 2rem; right: 2rem; color: rgba(255,255,255,.5); font-size: 2rem; cursor: pointer; background: none; border: none; }

/* ── HERO ── */
.hero { height: 100vh; min-height: 620px; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.42) saturate(1.1); }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,16,10,.88) 35%, rgba(20,16,10,.25) 100%); }
.hc { position: relative; z-index: 2; padding: 0 5vw; max-width: 700px; }
.hpill { display: inline-flex; align-items: center; gap: .7rem; background: rgba(200,147,58,.12); border: 1px solid rgba(200,147,58,.3); padding: .4rem 1rem; margin-bottom: 1.8rem; font-size: .67rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 500; animation: fu .7s both; }
.hpill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6.5vw, 5.5rem); font-weight: 700; line-height: 1.08; color: #fff; margin-bottom: 1.4rem; animation: fu .7s .1s both; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.02rem; line-height: 1.82; color: rgba(255,255,255,.63); font-weight: 300; max-width: 490px; margin-bottom: 2.4rem; animation: fu .7s .18s both; }
.hbtns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fu .7s .26s both; }
.bg { background: var(--gold); color: var(--dark); padding: .95rem 2.2rem; font-size: .77rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all .25s; display: inline-block; }
.bg:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,147,58,.35); }
.bgh { border: 1.5px solid rgba(255,255,255,.33); color: #fff; padding: .95rem 2.2rem; font-size: .77rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: all .25s; display: inline-block; }
.bgh:hover { border-color: var(--gold); color: var(--gold); }
.hscroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .4rem; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.hscroll::after { content: ''; width: 1px; height: 46px; background: linear-gradient(to bottom, rgba(200,147,58,.5), transparent); }
@keyframes fu { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ── STATS ── */
.stats { background: var(--charcoal); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 2.2rem 1.5rem; text-align: center; border-right: 1px solid rgba(200,147,58,.1); transition: background .3s; }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(200,147,58,.06); }
.sn { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.sl { font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: .35rem; }

/* ── SECTIONS ── */
section { padding: 6rem 5vw; }
.stag { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.stag::before { content: ''; width: 28px; height: 1px; background: var(--terra); }
.stag span { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--terra); font-weight: 500; }
.sh { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 600; line-height: 1.15; color: var(--dark); margin-bottom: 1rem; }
.sh em { font-style: italic; color: var(--terra); }

/* ── ABOUT ── */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; background: var(--cream); }
.aframe { position: relative; }
.aframe::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1px solid rgba(200,147,58,.35); z-index: 0; }
.aframe img { position: relative; z-index: 1; width: 100%; height: 500px; object-fit: cover; display: block; }
.abadge { position: absolute; bottom: -26px; right: -26px; z-index: 2; width: 128px; height: 128px; border-radius: 50%; background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 10px 36px rgba(200,147,58,.4); }
.abadge strong { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1; }
.abadge span { font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brown); text-align: center; padding: 0 .6rem; margin-top: .15rem; }
.about p { font-size: .97rem; line-height: 1.85; color: var(--muted); font-weight: 300; margin-bottom: 1.3rem; }
.cred { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid rgba(200,147,58,.2); padding: 1.1rem 1.4rem; margin-top: 1.8rem; }
.cred-icon { font-size: 2rem; }
.cred strong { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); }
.cred span { font-size: .78rem; color: var(--muted); }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.pill { background: var(--gold-pale); color: var(--brown); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .85rem; font-weight: 500; }

/* ── SERVICES ── */
.services { background: var(--warm); }
.si { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.si p { font-size: .97rem; line-height: 1.8; color: var(--muted); font-weight: 300; }
.sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc { position: relative; overflow: hidden; height: 330px; cursor: pointer; transition: transform .3s; }
.svc:hover { transform: translateY(-5px); }
.svc img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; filter: brightness(.58) saturate(1.05); display: block; }
.svc:hover img { transform: scale(1.06); filter: brightness(.65) saturate(1.1); }
.svb { position: absolute; inset: 0; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(20,16,10,.9) 0%, rgba(20,16,10,.05) 60%); }
.svb-icon { font-size: 1.8rem; margin-bottom: .6rem; }
.svb h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; margin-bottom: .4rem; }
.svb p { font-size: .77rem; line-height: 1.65; color: rgba(255,255,255,.58); }
.svtag { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--gold); color: var(--dark); font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .7rem; }
.svc-bar { grid-column: span 3; background: var(--charcoal); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.svc-bar h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: #fff; margin-bottom: .4rem; }
.svc-bar p { font-size: .86rem; color: rgba(255,255,255,.45); }
.svc-bar-btns { display: flex; gap: 1rem; flex-shrink: 0; }

/* ── MENU ── */
.menu { background: var(--dark); color: var(--cream); }
.menu .sh { color: var(--cream); }
.mt { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.mt p { max-width: 380px; font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.42); font-weight: 300; }
.mgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(200,147,58,.07); }
.dish { background: rgba(20,16,10,.7); overflow: hidden; transition: background .3s; }
.dish:hover { background: rgba(58,31,13,.6); }
.dish img { width: 100%; height: 195px; object-fit: cover; display: block; transition: transform .4s; filter: saturate(.9); }
.dish:hover img { transform: scale(1.05); filter: saturate(1.1); }
.dbody { padding: 1.4rem; }
.dish h4 { font-family: 'Playfair Display', serif; font-size: 1.12rem; color: var(--gold-light); margin-bottom: .4rem; }
.dish p { font-size: .77rem; line-height: 1.65; color: rgba(255,255,255,.43); font-weight: 300; }

/* ── TASTING BANNER ── */
.tasting { background: linear-gradient(135deg, var(--brown) 0%, #5A2D10 50%, var(--brown) 100%); padding: 5rem 5vw; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.tasting::before { content: ''; position: absolute; right: -80px; top: -80px; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(200,147,58,.15); }
.tasting h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: .7rem; }
.tasting p { font-size: .97rem; line-height: 1.8; color: rgba(255,255,255,.55); max-width: 520px; }
.tbtns { display: flex; flex-direction: column; gap: .9rem; }
.bdk { background: var(--gold); color: var(--dark); padding: .95rem 2rem; font-size: .77rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; text-align: center; white-space: nowrap; transition: all .25s; display: block; }
.bdk:hover { background: var(--gold-light); transform: translateY(-2px); }
.bdko { border: 1.5px solid rgba(255,255,255,.3); color: #fff; padding: .95rem 2rem; font-size: .77rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; text-align: center; white-space: nowrap; transition: all .25s; display: block; }
.bdko:hover { border-color: var(--gold); color: var(--gold); }

/* ── GALLERY ── */
.gallery { background: var(--cream); padding-bottom: 0; }
.gmosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 280px 280px; gap: 5px; }
.gi { overflow: hidden; position: relative; }
.gi:nth-child(1) { grid-column: span 5; }
.gi:nth-child(2) { grid-column: span 4; }
.gi:nth-child(3) { grid-column: span 3; }
.gi:nth-child(4) { grid-column: span 4; }
.gi:nth-child(5) { grid-column: span 5; }
.gi:nth-child(6) { grid-column: span 3; }
.gi img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s, filter .4s; filter: saturate(.88); }
.gi:hover img { transform: scale(1.07); filter: saturate(1.15); }
.gcap { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,10,.75) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 1.2rem 1.5rem; }
.gi:hover .gcap { opacity: 1; }
.gcap span { font-family: 'Playfair Display', serif; font-size: .95rem; color: #fff; font-style: italic; }

/* ── TESTIMONIALS ── */
.testi { background: var(--brown); color: var(--cream); }
.testi .sh { color: #fff; }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.tc { background: rgba(255,255,255,.05); border: 1px solid rgba(200,147,58,.14); padding: 2.2rem; position: relative; }
.tc::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); opacity: .18; position: absolute; top: 0; left: 1.2rem; line-height: 1; }
.tstars { color: var(--gold); font-size: .8rem; letter-spacing: .1em; margin-bottom: .9rem; }
.tc p { font-family: 'Playfair Display', serif; font-size: .97rem; font-style: italic; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 1.4rem; }
.tauth { display: flex; align-items: center; gap: .8rem; border-top: 1px solid rgba(200,147,58,.1); padding-top: 1.1rem; }
.tav { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--dark); font-size: .78rem; flex-shrink: 0; }
.tai strong { display: block; font-size: .82rem; color: #fff; font-weight: 500; }
.tai span { font-size: .72rem; color: rgba(255,255,255,.38); }

/* ── BOOKING / CONTACT ── */
.contact { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.cl { background: var(--dark); padding: 6rem 5vw; color: var(--cream); position: relative; overflow: hidden; }
.cl::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 350px; height: 350px; border-radius: 50%; border: 1px solid rgba(200,147,58,.08); }
.cl .sh { color: #fff; }
.cl > p { font-size: .92rem; line-height: 1.8; color: rgba(255,255,255,.5); font-weight: 300; margin: 1rem 0 2.5rem; }
.clist { display: flex; flex-direction: column; gap: 1.3rem; }
.ci { display: flex; align-items: center; gap: 1rem; }
.ci-ic { width: 42px; height: 42px; background: rgba(200,147,58,.12); border: 1px solid rgba(200,147,58,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-inf strong { display: block; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .1rem; }
.ci-inf a, .ci-inf span { font-size: .88rem; color: rgba(255,255,255,.68); font-weight: 300; text-decoration: none; }
.ci-inf a:hover { color: var(--gold); }
.srow { display: flex; gap: .7rem; margin-top: 2rem; }
.sl-ic { width: 38px; height: 38px; border: 1px solid rgba(200,147,58,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,.45); font-size: .78rem; transition: all .2s; font-weight: 700; }
.sl-ic:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,147,58,.08); }
.cr { padding: 5rem 5vw; background: #fff; }
.cr .sh { margin-bottom: 2rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(20,16,10,.42); margin-bottom: .45rem; font-weight: 500; }
.fg input, .fg select, .fg textarea { width: 100%; padding: .85rem 1rem; border: 1.5px solid rgba(20,16,10,.1); background: var(--cream); font-family: 'DM Sans', sans-serif; font-size: .88rem; color: var(--dark); outline: none; transition: border .2s; appearance: none; -webkit-appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; min-height: 95px; }
.subbtn { width: 100%; background: var(--dark); color: #fff; border: none; padding: 1.05rem; font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: all .3s; margin-top: .5rem; }
.subbtn:hover { background: var(--gold); color: var(--dark); }
.fnote { font-size: .7rem; color: var(--muted); margin-top: .7rem; text-align: center; }
.fnote a { color: var(--terra); }

/* ── FOOTER ── */
footer { background: #0A0705; color: rgba(250,244,236,.4); padding: 4.5rem 5vw; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; border-top: 1px solid rgba(200,147,58,.07); }
.fb p { font-size: .82rem; line-height: 1.75; max-width: 240px; margin-top: .8rem; }
.fsoc { display: flex; gap: .6rem; margin-top: 1.4rem; }
.fsoc a { width: 34px; height: 34px; border: 1px solid rgba(200,147,58,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); text-decoration: none; font-size: .77rem; font-weight: 700; transition: all .2s; }
.fsoc a:hover { border-color: var(--gold); color: var(--gold); }
.fc h5 { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; font-weight: 600; }
.fc ul { list-style: none; }
.fc ul li { margin-bottom: .62rem; }
.fc ul li a { font-size: .82rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.fc ul li a:hover { color: var(--gold); }
.ftb { background: #0A0705; padding: 1.3rem 5vw; border-top: 1px solid rgba(255,255,255,.04); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.ftb p { font-size: .7rem; color: rgba(255,255,255,.2); }
.ftb span { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; display: flex; align-items: center; gap: .6rem; background: #25D366; color: #fff; padding: .75rem 1.2rem .75rem .9rem; border-radius: 50px; text-decoration: none; font-size: .82rem; font-weight: 500; box-shadow: 0 6px 30px rgba(37,211,102,.4); transition: all .3s; animation: waFloat 3.5s ease-in-out infinite; }
.wa:hover { transform: scale(1.06) !important; box-shadow: 0 10px 40px rgba(37,211,102,.5); animation: none; }
.wa svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.wa-tip { white-space: nowrap; }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ── REVEAL ANIMATION ── */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.rv.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mgrid { grid-template-columns: repeat(2, 1fr); }
  .sgrid { grid-template-columns: repeat(2, 1fr); }
  .svc-bar { grid-column: span 2; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 5vw; }
  nav.sc { padding: .7rem 5vw; }
  .nl { display: none; }
  .ham { display: flex; }
  section { padding: 4.5rem 5vw; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .about { grid-template-columns: 1fr; gap: 4rem; }
  .abadge { bottom: -20px; right: -10px; }
  .si { grid-template-columns: 1fr; gap: 1.5rem; }
  .sgrid { grid-template-columns: 1fr 1fr; }
  .svc { height: 260px; }
  .svc-bar { grid-column: span 2; flex-direction: column; align-items: flex-start; padding: 2rem; }
  .mgrid { grid-template-columns: 1fr; }
  .tasting { grid-template-columns: 1fr; }
  .gmosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi { grid-column: span 1 !important; height: 200px; }
  .tgrid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .cl, .cr { padding: 4rem 5vw; }
  footer { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 5vw; }
  .frow { grid-template-columns: 1fr; }
  .ftb { flex-direction: column; text-align: center; }
  .wa-tip { display: none; }
  .wa { padding: .75rem; border-radius: 50%; }
  .tbtns { flex-direction: row; }
}
@media (max-width: 480px) {
  .sgrid { grid-template-columns: 1fr; }
  .svc-bar { grid-column: span 1; }
  .hbtns { flex-direction: column; }
  .bg, .bgh { text-align: center; }
}
