/* ====================================================
   Nisa Atalamış — Diyetisyen | Stylesheet
   ==================================================== */

:root{
  --cream:#fdf9f4;
  --cream-2:#f7f1e8;
  --blush:#f7e2df;
  --blush-2:#f3d3ce;
  --sage:#dfe8d6;
  --sage-2:#c7d6bd;
  --olive:#5c6f52;
  --olive-dark:#3f4d38;
  --gold:#c9a15a;
  --gold-2:#e0c48c;
  --text:#413a33;
  --text-soft:#7a7267;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(90,70,50,.10);
  --shadow-lg:0 20px 50px rgba(90,70,50,.16);
  --radius:22px;
  --radius-sm:14px;
  --ff-serif:'Playfair Display', Georgia, serif;
  --ff-sans:'Poppins', 'Segoe UI', sans-serif;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--ff-sans);
  color:var(--text);
  background:var(--cream);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.icon{width:1em; height:1em; fill:currentColor;}
section{position:relative;}

h1,h2,h3{font-family:var(--ff-serif); color:var(--olive-dark); font-weight:600;}
.eyebrow{
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-bottom:10px;
}
.section-head{max-width:640px; margin:0 auto 56px; text-align:center;}
.section-head h2{font-size:clamp(28px,4vw,40px); margin-bottom:14px;}
.section-desc{color:var(--text-soft); font-size:16px;}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  border:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space:nowrap;
}
.btn .icon{font-size:18px;}
.btn-primary{
  background:linear-gradient(135deg,var(--olive),var(--olive-dark));
  color:#fff;
  box-shadow:0 12px 24px rgba(63,77,56,.28);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 16px 30px rgba(63,77,56,.36);}
.btn-ghost{
  background:var(--white);
  color:var(--olive-dark);
  border:1.5px solid var(--sage-2);
}
.btn-ghost:hover{background:var(--sage); transform:translateY(-2px);}
.btn-outline{
  background:transparent;
  border:1.5px solid var(--gold);
  color:var(--gold-2);
  padding:9px 20px;
  font-size:14px;
}
.btn-whatsapp{
  background:#25D366;
  color:#fff;
  padding:11px 20px;
  font-size:14px;
  box-shadow:0 10px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover{transform:translateY(-2px); box-shadow:0 14px 26px rgba(37,211,102,.4);}

/* ---------- header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(253,249,244,.75);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(140,120,90,.08);
  transition:box-shadow .3s ease;
}
.site-header.scrolled{box-shadow:0 6px 20px rgba(90,70,50,.08);}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:82px;
}
.brand{display:flex; align-items:center; gap:12px;}
.brand-logo{width:46px; height:46px;}
.brand-text{display:flex; flex-direction:column; line-height:1.15;}
.brand-text strong{font-family:var(--ff-serif); font-size:18px; color:var(--olive-dark);}
.brand-text small{font-size:11px; letter-spacing:2px; color:var(--gold); text-transform:uppercase;}

.main-nav{display:flex; align-items:center; gap:30px;}
.nav-link{
  font-size:15px; font-weight:500; color:var(--text);
  position:relative; padding:6px 0;
}
.nav-link::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--gold); transition:width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after{width:100%;}
.nav-whatsapp{margin-left:8px;}

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; background:none; border:none; cursor:pointer;
}
.nav-toggle span{width:100%; height:2px; background:var(--olive-dark); border-radius:2px; transition:.3s;}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- hero ---------- */
.hero{
  padding:150px 0 100px;
  background:linear-gradient(180deg,var(--blush) 0%, var(--cream) 55%);
  overflow:hidden;
}
.hero-blob{position:absolute; border-radius:50%; filter:blur(10px); opacity:.6; z-index:0; animation:blob-pulse 9s ease-in-out infinite;}
.blob-1{width:380px; height:380px; background:linear-gradient(135deg,var(--sage-2),var(--sage)); top:-120px; right:-100px;}
.blob-2{width:260px; height:260px; background:linear-gradient(135deg,var(--gold-2),var(--blush-2)); bottom:-80px; left:-80px; opacity:.45; animation-delay:2s;}
.blob-3{width:200px; height:200px; background:linear-gradient(135deg,var(--blush-2),var(--gold-2)); top:20%; left:38%; opacity:.28; animation-delay:4s;}

@keyframes blob-pulse{
  0%,100%{transform:scale(1) translate(0,0);}
  50%{transform:scale(1.12) translate(10px,-14px);}
}

.hero-inner{
  display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center;
  position:relative; z-index:1;
}
.hero h1{font-size:clamp(32px,4.6vw,52px); line-height:1.2; margin-bottom:20px;}
.hero h1 span{color:var(--gold); font-style:italic;}
.hero-desc{color:var(--text-soft); font-size:17px; max-width:520px; margin-bottom:32px;}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:34px;}
.hero-tags{display:flex; gap:12px; flex-wrap:wrap;}
.hero-tags span{
  background:var(--white); border:1px solid var(--sage-2); color:var(--olive-dark);
  padding:8px 16px; border-radius:999px; font-size:13px; font-weight:500;
}

.hero-media{position:relative; display:flex; align-items:center; justify-content:center; min-height:420px;}
.hero-photo-ring{
  width:340px; height:340px; border-radius:50%;
  background:linear-gradient(135deg,var(--sage-2),var(--blush-2));
  padding:10px;
  box-shadow:var(--shadow-lg);
  animation:floaty 6s ease-in-out infinite;
}
.hero-photo-ring{position:relative;}
.hero-photo-ring::before{
  content:""; position:absolute; inset:-14px; border-radius:50%; z-index:-1;
  background:conic-gradient(from 0deg, var(--gold-2), var(--blush-2), var(--sage-2), var(--gold-2));
  filter:blur(18px); opacity:.65;
  animation:spin-glow 10s linear infinite;
}
.hero-photo{
  width:100%; height:100%; border-radius:50%; object-fit:cover; object-position:50% 28%;
  display:block;
}
@keyframes spin-glow{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}
.hero-float-card{
  position:absolute; background:var(--white); padding:12px 18px; border-radius:var(--radius-sm);
  box-shadow:var(--shadow); display:flex; align-items:center; gap:10px; animation:floaty 7s ease-in-out infinite;
}
.hero-float-card .icon{
  width:34px; height:34px; padding:8px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--sage),var(--blush)); color:var(--olive-dark);
}
.hero-float-card .card-text{display:flex; flex-direction:column; gap:2px;}
.hero-float-card strong{font-size:14px; color:var(--olive-dark);}
.hero-float-card small{font-size:12px; color:var(--text-soft);}

.hero-float-illus{
  position:absolute; top:-8%; right:6%; width:88px; height:88px; border-radius:50%;
  background:var(--white); padding:10px; box-shadow:var(--shadow-lg);
  animation:floaty 8s ease-in-out infinite; animation-delay:.8s;
}
.hero-float-illus img{width:100%; height:100%; object-fit:contain;}
.card-1{top:8%; left:-6%;}
.card-2{bottom:6%; right:-8%; animation-delay:1.5s;}

@keyframes floaty{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-14px);}
}

/* ---------- about ---------- */
.about{padding:110px 0;}
.about-inner{display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:center;}
.about-media{position:relative;}
.about-photo{
  width:100%; aspect-ratio:4/5; border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-lg);
  border:4px solid var(--white);
  background:linear-gradient(135deg,var(--gold-2),var(--blush-2),var(--sage-2));
  padding:0;
}
.about-photo-img{
  width:100%; height:100%; object-fit:cover; object-position:50% 8%; display:block;
}
.about-badge{
  position:absolute; bottom:-22px; right:-22px; background:var(--white);
  padding:18px 22px; border-radius:var(--radius-sm); box-shadow:var(--shadow-lg);
  display:flex; flex-direction:column; gap:2px; max-width:220px;
}
.about-badge strong{font-size:14px; color:var(--olive-dark);}
.about-badge span{font-size:12px; color:var(--text-soft);}

.about-text h2{font-size:clamp(26px,3.6vw,38px); margin-bottom:20px;}
.about-text p{color:var(--text-soft); margin-bottom:16px; font-size:16px;}
.about-points{margin:24px 0 22px; display:flex; flex-direction:column; gap:12px;}
.about-points li{display:flex; align-items:center; gap:10px; font-size:15px; color:var(--text);}
.about-points .icon{color:var(--gold); font-size:18px; flex-shrink:0;}

.about-quote{
  border-left:3px solid var(--gold);
  padding:4px 0 4px 18px; margin:22px 0;
  font-family:var(--ff-serif); font-style:italic; font-size:18px; color:var(--olive-dark);
}
.about-tags{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px;}
.about-tags span{
  background:var(--sage); color:var(--olive-dark); font-size:12.5px; font-weight:600;
  padding:7px 14px; border-radius:999px;
}

/* process steps */
.process{
  margin-top:90px; padding-top:70px; border-top:1px solid rgba(140,120,90,.14);
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
}
.process-step{position:relative; text-align:center; padding:0 10px;}
.process-icon{
  width:64px; height:64px; margin:0 auto 16px; border-radius:50%;
  background:var(--white); border:1.5px solid var(--sage-2); color:var(--olive-dark);
  display:flex; align-items:center; justify-content:center; font-size:26px;
  box-shadow:var(--shadow); transition:transform .3s ease;
}
.process-step:hover .process-icon{transform:scale(1.08) rotate(-4deg);}
.process-step:nth-child(1) .process-icon{background:linear-gradient(135deg,var(--sage),var(--sage-2)); border-color:var(--sage-2);}
.process-step:nth-child(2) .process-icon{background:linear-gradient(135deg,var(--blush),var(--blush-2)); border-color:var(--blush-2);}
.process-step:nth-child(3) .process-icon{background:linear-gradient(135deg,var(--gold-2),#f0dcae); border-color:var(--gold-2);}
.process-step:nth-child(4) .process-icon{background:linear-gradient(135deg,var(--sage-2),var(--gold-2)); border-color:var(--gold);}
.process-no{
  display:block; font-family:var(--ff-serif); font-size:13px; letter-spacing:2px;
  color:var(--gold); font-weight:600; margin-bottom:6px;
}
.process-step h3{font-size:17px; margin-bottom:8px;}
.process-step p{font-size:13.5px; color:var(--text-soft);}

/* section divider */
.section-divider{position:relative; z-index:1; margin-top:-2px; line-height:0;}
.section-divider svg{width:100%; height:44px; display:block;}

/* ---------- services / orbit ---------- */
.services{padding:110px 0 130px; background:var(--cream-2);}
.orbit-wrap{position:relative; max-width:900px; margin:0 auto;}
.orbit-center{
  position:relative; z-index:2;
  width:220px; height:220px; margin:0 auto 50px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
}
.orbit-center-circle{
  width:180px; height:180px; border-radius:50%;
  background:var(--white); border:3px solid var(--gold-2);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-lg);
}
.orbit-center-mark{width:80px; height:80px;}
.orbit-center span{font-family:var(--ff-serif); font-weight:600; color:var(--olive-dark);}

.orbit-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
.service-card{
  background:var(--white); border-radius:var(--radius); padding:26px 20px;
  text-align:center; cursor:pointer; border:1px solid rgba(140,120,90,.08);
  box-shadow:var(--shadow); transition:transform .3s ease, box-shadow .3s ease;
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
.service-card:hover{transform:translateY(-8px) scale(1.02); box-shadow:var(--shadow-lg);}
.service-card:hover .service-icon{transform:rotate(-6deg) scale(1.06);}
.service-icon{
  width:64px; height:64px; border-radius:50%;
  background:linear-gradient(135deg,var(--sage),var(--blush));
  display:flex; align-items:center; justify-content:center;
  color:var(--olive-dark); font-size:28px; transition:transform .3s ease;
}
.service-card:nth-child(3n+1) .service-icon{background:linear-gradient(135deg,var(--sage),var(--sage-2));}
.service-card:nth-child(3n+2) .service-icon{background:linear-gradient(135deg,var(--blush),var(--blush-2));}
.service-card:nth-child(3n+3) .service-icon{background:linear-gradient(135deg,var(--gold-2),#f0dcae);}
.service-card h3{font-family:var(--ff-sans); font-size:15px; font-weight:600; color:var(--olive-dark);}
.service-card p{font-size:12.5px; color:var(--text-soft);}

/* modal */
.modal-overlay{
  position:fixed; inset:0; background:rgba(63,53,40,.45);
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; pointer-events:none; transition:opacity .3s ease; z-index:200;
  backdrop-filter:blur(3px);
}
.modal-overlay.open{opacity:1; pointer-events:auto;}
.modal-panel{
  background:var(--white); border-radius:var(--radius); padding:44px 38px;
  max-width:460px; width:100%; text-align:center; position:relative;
  transform:translateY(24px) scale(.96); transition:transform .3s ease;
  box-shadow:var(--shadow-lg);
}
.modal-overlay.open .modal-panel{transform:translateY(0) scale(1);}
.modal-close{
  position:absolute; top:16px; right:16px; width:36px; height:36px; border-radius:50%;
  border:none; background:var(--cream-2); color:var(--olive-dark); cursor:pointer;
  display:flex; align-items:center; justify-content:center; font-size:16px;
  transition:background .2s ease;
}
.modal-close:hover{background:var(--sage);}
.modal-icon{
  width:74px; height:74px; border-radius:50%; margin:0 auto 18px;
  background:linear-gradient(135deg,var(--sage),var(--blush));
  display:flex; align-items:center; justify-content:center; color:var(--olive-dark); font-size:32px;
}
.modal-panel h3{font-size:22px; margin-bottom:14px;}
.modal-panel p{color:var(--text-soft); font-size:15px; margin-bottom:24px;}

/* ---------- instagram ---------- */
/* ---------- about food cluster ---------- */
.about-food-cluster{
  position:absolute; top:-16px; left:-16px; display:flex;
}
.about-food-cluster img{
  width:58px; height:58px; border-radius:50%; object-fit:cover;
  border:3px solid var(--white); box-shadow:var(--shadow);
  filter:saturate(.88) brightness(1.04) sepia(.05);
  margin-left:-16px;
}
.about-food-cluster img:first-child{margin-left:0;}
.about-food-cluster img:nth-child(1){transform:rotate(-6deg);}
.about-food-cluster img:nth-child(2){transform:translateY(-6px) rotate(3deg); z-index:1;}
.about-food-cluster img:nth-child(3){transform:rotate(7deg);}

/* ---------- appointment (randevu) ---------- */
.appointment{padding:110px 0; background:var(--cream-2);}
.appointment-form{
  max-width:760px; margin:0 auto; background:var(--white); border-radius:var(--radius);
  padding:38px; box-shadow:var(--shadow-lg); border:1px solid rgba(140,120,90,.08);
}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:24px;}
.form-field{display:flex; flex-direction:column; gap:7px; font-size:13px; color:var(--text-soft); font-weight:600; text-align:left;}
.form-field-wide{grid-column:1 / -1;}
.form-field input, .form-field select, .form-field textarea{
  padding:12px 14px; border-radius:10px; border:1.5px solid var(--sage-2);
  font-family:var(--ff-sans); font-size:15px; color:var(--text); background:var(--cream);
  resize:vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{outline:none; border-color:var(--gold);}
.appointment-submit{width:100%; justify-content:center; font-size:16px; padding:16px;}

/* ---------- faq (sss) ---------- */
.faq{padding:110px 0;}
.faq-list{max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:14px;}
.faq-item{
  background:var(--white); border-radius:var(--radius-sm); border:1px solid rgba(140,120,90,.08);
  box-shadow:var(--shadow); overflow:hidden;
}
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 22px; background:none; border:none; cursor:pointer; text-align:left;
  font-family:var(--ff-sans); font-size:15.5px; font-weight:600; color:var(--olive-dark);
}
.faq-question .icon{flex-shrink:0; font-size:20px; color:var(--gold); transition:transform .3s ease;}
.faq-item.open .faq-question .icon{transform:rotate(45deg);}
.faq-answer{max-height:0; overflow:hidden; transition:max-height .35s ease;}
.faq-answer p{padding:0 22px 20px; font-size:14.5px; color:var(--text-soft); line-height:1.7;}

/* ---------- contact ---------- */
.contact{padding:110px 0 140px; background:var(--cream-2);}
.contact-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px; max-width:1000px; margin:0 auto;
}
.contact-card{
  background:var(--white); border-radius:var(--radius); padding:30px 22px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  box-shadow:var(--shadow); transition:transform .3s ease, box-shadow .3s ease;
  border:1px solid rgba(140,120,90,.08);
}
.contact-card:hover{transform:translateY(-8px); box-shadow:var(--shadow-lg);}
.contact-icon{
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,var(--olive),var(--olive-dark));
  color:#fff; display:flex; align-items:center; justify-content:center; font-size:24px;
}
.contact-card strong{color:var(--olive-dark); font-size:15px;}
.contact-card span{font-size:12.5px; color:var(--text-soft); word-break:break-word;}

/* ---------- floating whatsapp ---------- */
.whatsapp-float{
  position:fixed; bottom:26px; right:26px; width:60px; height:60px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:28px; box-shadow:0 12px 28px rgba(37,211,102,.45); z-index:150;
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 12px 28px rgba(37,211,102,.45);}
  50%{box-shadow:0 12px 28px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.12);}
}

/* ---------- BKİ side tab + modal ---------- */
.bki-tab{
  position:fixed; top:50%; right:0; z-index:150;
  transform:translateY(-50%) rotate(-90deg); transform-origin:bottom right;
  display:flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,var(--olive),var(--olive-dark)); color:#fff;
  border:none; padding:11px 20px; border-radius:10px 10px 0 0;
  font-family:var(--ff-sans); font-size:13.5px; font-weight:600; letter-spacing:.3px;
  cursor:pointer; box-shadow:0 -6px 18px rgba(63,77,56,.28);
  transition:padding .25s ease;
}
.bki-tab:hover{padding:11px 24px;}
.bki-tab .icon{font-size:17px;}

.bki-panel{max-width:420px;}
.bki-desc{font-size:14px; margin-bottom:22px;}
.bki-form{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:20px; text-align:left;}
.bki-form label{display:flex; flex-direction:column; gap:6px; font-size:12.5px; color:var(--text-soft); font-weight:600;}
.bki-form input{
  padding:11px 12px; border-radius:10px; border:1.5px solid var(--sage-2);
  font-family:var(--ff-sans); font-size:15px; color:var(--text); background:var(--cream);
}
.bki-form input:focus{outline:none; border-color:var(--gold);}
.bki-calc-btn{width:100%; justify-content:center; margin-bottom:6px;}

.bki-result{
  margin-top:20px; padding-top:20px; border-top:1px dashed var(--sage-2);
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.bki-value{font-family:var(--ff-serif); font-size:44px; font-weight:700; color:var(--olive-dark); line-height:1;}
.bki-category{
  display:inline-block; padding:5px 16px; border-radius:999px; font-size:12.5px; font-weight:700;
  background:var(--sage); color:var(--olive-dark); margin-top:2px;
}
.bki-category.cat-low{background:#dce9f2; color:#3d6a86;}
.bki-category.cat-normal{background:var(--sage); color:var(--olive-dark);}
.bki-category.cat-over{background:#f3e3c4; color:#8a6a24;}
.bki-category.cat-obese{background:#f3d9d3; color:#a1503c;}
.bki-note{font-size:12.5px; color:var(--text-soft); margin:12px 0 4px;}
.bki-whatsapp{width:100%; justify-content:center; margin-top:8px;}

/* ---------- footer ---------- */
.site-footer{background:var(--olive-dark); color:#eef0e9; padding:50px 0 30px;}
.footer-inner{display:flex; flex-direction:column; align-items:center; gap:20px; text-align:center;}
.footer-brand .brand-text strong{color:#fff;}
.footer-brand .brand-text small{color:var(--gold-2);}
.footer-social{display:flex; gap:14px;}
.footer-social a{
  width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; font-size:18px;
  transition:background .25s ease, transform .25s ease;
}
.footer-social a:hover{background:var(--gold); transform:translateY(-3px);}
.footer-copy{font-size:13px; opacity:.75;}
.footer-credit{font-size:12px; opacity:.6;}
.footer-credit strong{color:var(--gold-2);}

/* ---------- scroll reveal ---------- */
[data-reveal]{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
[data-reveal].visible{opacity:1; transform:translateY(0);}

/* ====================================================
   Responsive
   ==================================================== */
@media (max-width:1024px){
  .hero-inner{grid-template-columns:1fr; text-align:center;}
  .hero-desc{margin-left:auto; margin-right:auto;}
  .hero-actions, .hero-tags{justify-content:center;}
  .hero-media{margin-top:40px;}
  .about-inner{grid-template-columns:1fr;}
  .about-media{max-width:360px; margin:0 auto 40px;}
  .contact-grid{grid-template-columns:repeat(2,1fr);}
  .process{grid-template-columns:repeat(2,1fr); row-gap:44px;}
}

@media (max-width:860px){
  .main-nav{
    position:fixed; top:82px; left:0; right:0; background:var(--cream);
    flex-direction:column; align-items:stretch; gap:0; padding:10px 24px 26px;
    transform:translateY(-130%); opacity:0; transition:transform .35s ease, opacity .35s ease;
    box-shadow:var(--shadow); border-bottom:1px solid rgba(140,120,90,.1);
  }
  .main-nav.open{transform:translateY(0); opacity:1;}
  .nav-link{padding:14px 0; border-bottom:1px solid rgba(140,120,90,.08);}
  .nav-whatsapp{margin:16px 0 0; justify-content:center;}
  .nav-toggle{display:flex;}
  .orbit-grid{grid-template-columns:repeat(2,1fr);}

  .bki-tab{
    top:auto; bottom:96px; right:20px; transform:none; transform-origin:initial;
    width:52px; height:52px; padding:0; border-radius:50%; justify-content:center;
    box-shadow:0 10px 24px rgba(63,77,56,.35);
  }
  .bki-tab:hover{padding:0;}
  .bki-tab span{display:none;}
  .bki-tab .icon{font-size:22px;}
  .form-grid{grid-template-columns:1fr;}
  .appointment-form{padding:28px 22px;}
}

@media (max-width:560px){
  .hero{padding:130px 0 70px;}
  .hero-photo-ring{width:260px; height:260px;}
  .card-1, .card-2{position:static; margin-top:14px; animation:none;}
  .hero-media{flex-direction:column;}
  .hero-float-illus{display:none;}
  .orbit-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .about-badge{position:static; margin-top:16px; max-width:none;}
  .about-food-cluster{position:static; margin-top:14px; justify-content:center;}
  .process{grid-template-columns:1fr;}
}
