/* =========================================================
   Biscuits & Brews — global stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --brown-900: #241a10;
  --brown-800: #35271a;
  --brown-700: #443320;
  --cream-100: #fbf3de;
  --cream-50: #fefcf6;
  --yellow-300: #eec96a;
  --yellow-200: #f3dc9c;
  --yellow-100: #f7e8c2;
  --gold-500: #bd923a;
  --gold-600: #96721f;
  --gold-100: #f1ddab;
  --orange-500: #d5701f;
  --maroon-700: #5c2a1f;
  --white: #ffffff;
  --ink: #241a10;
  --ink-soft: #5a4a35;
  --border-hair: 1px solid rgba(44, 32, 19, 0.08);
  --shadow-sm: 0 2px 8px rgba(36, 26, 16, 0.08);
  --shadow-md: 0 14px 30px rgba(36, 26, 16, 0.14);
  --shadow-lg: 0 28px 56px rgba(36, 26, 16, 0.22);
  --shadow-gold: 0 16px 32px rgba(189, 146, 58, 0.32);
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--brown-900);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--yellow {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(165deg, var(--yellow-100) 0%, var(--yellow-200) 45%, var(--yellow-300) 100%);
}
.section--cream { background: var(--cream-100); }
.section--brown {
  background:
    radial-gradient(ellipse 800px 400px at 85% 0%, rgba(238,201,106,0.10), transparent 60%),
    linear-gradient(140deg, var(--brown-900), var(--brown-800));
  color: var(--cream-100);
}
.section--brown h2, .section--brown h3 { color: var(--yellow-200); }
.section--brown p { color: #e9dcc0; }
.section--white { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold-600);
  background: rgba(201, 152, 46, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, #f3d488 0%, var(--gold-500) 55%, var(--gold-600) 100%);
  color: var(--brown-900);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-primary:hover { box-shadow: 0 22px 40px rgba(150,114,31,0.4); }
.btn-whatsapp {
  background: linear-gradient(135deg, #34d97b, #1fae60);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 174, 96, 0.35);
}
.btn-whatsapp:hover { box-shadow: 0 20px 34px rgba(31, 174, 96, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--brown-900);
  border: 2px solid var(--brown-900);
}
.btn-outline:hover { background: var(--brown-900); color: var(--yellow-200); }
.btn-outline.on-dark { color: var(--yellow-200); border-color: var(--yellow-200); }
.btn-outline.on-dark:hover { background: var(--yellow-200); color: var(--brown-900); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 248, 230, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44,32,19,0.08);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Dancing Script', cursive; font-size: 26px; color: var(--brown-900); font-weight: 700; white-space: nowrap; }
.navbar .brand { text-shadow: 0.5px 0 currentColor, -0.5px 0 currentColor; }
.brand img { height: 54px; width: auto; flex: none; }
.footer .brand img { height: 60px; }
@media (max-width: 420px) {
  .brand { font-size: 20px; gap: 8px; }
  .brand img { height: 42px; }
}
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--brown-800);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
}
@media (min-width: 901px) and (max-width: 1180px) {
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 14px; }
  .nav-actions .btn span.long { display: none; }
  .nav-actions .btn.btn-sm { padding: 10px; }
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-600); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--brown-900); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--cream-50);
    padding: 20px 24px 28px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .nav-actions .btn span.long { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.5), transparent 45%),
              linear-gradient(160deg, var(--yellow-100), var(--yellow-300) 70%);
  padding: 90px 0 70px;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
}
.hero-copy .eyebrow { background: rgba(44,32,19,0.08); }
.hero-copy h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 20px; }
.hero-copy h1 em { font-style: normal; color: var(--gold-600); }
.hero-copy p { font-size: 18px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 36px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 28px; color: var(--brown-900); }
.hero-stats .stat span { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }

.hero-visual { position: relative; perspective: 1200px; }
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform .4s ease;
  will-change: transform;
}
.hero-card img { width: 100%; height: 420px; object-fit: cover; }
.hero-floater {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  animation: floatY 5s ease-in-out infinite;
}
.hero-floater.f1 { top: -18px; left: -26px; animation-delay: .2s; }
.hero-floater.f2 { bottom: -20px; right: -18px; animation-delay: 1s; }
.hero-floater .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange-500); }
@media (max-width: 520px) {
  .hero-floater { font-size: 12px; padding: 10px 12px; }
  .hero-floater.f1 { top: 10px; left: 10px; }
  .hero-floater.f2 { bottom: 10px; right: 10px; }
}

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

/* ---------- 3D tilt cards ---------- */
.tilt {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  will-change: transform;
}
.tilt:hover { box-shadow: var(--shadow-lg); }

/* ---------- Client logos ---------- */
.clients-strip { background: linear-gradient(120deg, var(--yellow-200), var(--yellow-300)); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}
.client-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  box-shadow: var(--shadow-sm);
  border: var(--border-hair);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.client-card img { max-height: 40px; width: auto; object-fit: contain; }
.client-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(189,146,58,0.35); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: var(--border-hair);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(189,146,58,0.35); }
.card .icon-badge {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow-300), var(--gold-500));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-gold);
}
.card .icon-badge svg { width: 26px; height: 26px; color: var(--brown-900); }
.card h3 { font-size: 20px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 340px;
  object-fit: cover;
  transform: rotateY(4deg);
  transition: transform .4s ease;
}
.split-media:hover img { transform: rotateY(0deg) scale(1.02); }
.split-copy h2 { font-size: clamp(26px, 3.4vw, 34px); }
.check-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--brown-800); }
.check-list li svg { flex: none; width: 20px; height: 20px; margin-top: 2px; color: var(--gold-600); }

/* ---------- Product cards ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 22px;
}
.brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 20px 22px;
  box-shadow: var(--shadow-sm);
  border: var(--border-hair);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(189,146,58,0.35); }
.brand-media { height: 52px; display: flex; align-items: center; justify-content: center; }
.brand-media img { max-height: 100%; width: auto; object-fit: contain; }
.brand-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--brown-900);
  line-height: 1.2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: var(--border-hair);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px) rotateX(2deg); box-shadow: var(--shadow-lg); }
.product-media {
  height: 190px;
  background: linear-gradient(160deg, var(--yellow-100), var(--yellow-200));
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.product-media img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(44,32,19,0.18)); }
.product-media--icon { background: linear-gradient(160deg, var(--brown-800), var(--brown-900)); }
.product-icon-tile {
  width: 78px; height: 78px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--yellow-300), var(--gold-500));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
}
.product-icon-tile svg { width: 36px; height: 36px; color: var(--brown-900); }
.product-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: rgba(201,152,46,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.product-body h3 { font-size: 17px; margin-bottom: 4px; }
.product-body p { font-size: 14px; margin-bottom: 10px; }
.product-body .btn { margin-top: auto; align-self: flex-start; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-chip {
  border: 2px solid rgba(44,32,19,0.15);
  background: var(--white);
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-chip:hover { border-color: var(--gold-500); }
.filter-chip.active { background: var(--brown-900); color: var(--yellow-200); border-color: var(--brown-900); }

.filter-bar--diet { margin-top: -24px; margin-bottom: 32px; gap: 8px; }
.diet-chip { padding: 6px 16px 6px 14px; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.diet-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid currentColor;
}
.diet-chip--veg::before { border-color: #1e8e3e; }
.diet-chip--nonveg::before { border-color: #c0392b; background: #c0392b; }
.diet-chip--egg::before { border-color: #b8860b; background: #b8860b; }
.diet-chip--all::before { display: none; }
.diet-chip.active.diet-chip--veg::before { border-color: #7fe3a3; }
.diet-chip.active.diet-chip--nonveg::before { border-color: #ff8a75; background: #ff8a75; }
.diet-chip.active.diet-chip--egg::before { border-color: #ffd76b; background: #ffd76b; }

.diet-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid #1e8e3e;
  margin-right: 7px;
  vertical-align: middle;
}
.diet-dot--veg { border-color: #1e8e3e; }
.diet-dot--nonveg { border-color: #c0392b; background: #c0392b; }
.diet-dot--egg { border-color: #b8860b; background: #b8860b; }

/* ---------- Box order ---------- */
.box-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 960px) { .box-order-layout { grid-template-columns: minmax(0, 1fr); } }
.box-order-main { min-width: 0; }

.box-search-bar {
  position: relative;
  margin-bottom: 20px;
}
.box-search-bar .box-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gold-600);
  pointer-events: none;
}
.box-search-bar .box-search-icon svg { width: 100%; height: 100%; }
.box-search-bar input {
  width: 100%;
  padding: 15px 18px 15px 48px;
  border-radius: var(--radius-lg);
  border: var(--border-hair);
  background: var(--cream-50);
  font-family: inherit;
  font-size: 15px;
  color: var(--brown-900);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.box-search-bar input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(189,146,58,0.16);
}

.box-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 640px;
  overflow-y: auto;
  padding-right: 4px;
}
.box-empty-msg { padding: 24px 4px; color: var(--ink-soft); }
.box-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: var(--border-hair);
  border-radius: 14px;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.box-item:hover { border-color: rgba(189,146,58,0.35); box-shadow: var(--shadow-sm); }
.box-item-info { flex: 1 1 auto; min-width: 0; }
.box-item-name { font-weight: 600; color: var(--brown-900); font-size: 15px; }
.box-item-tag { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.box-item-add {
  flex: none;
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  background: var(--brown-900);
  color: var(--yellow-200);
  transition: background .2s ease, transform .2s ease;
}
.box-item-add:hover { background: var(--gold-600); }
.box-item-add.added { background: var(--gold-500); color: var(--brown-900); }

.box-panel {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: var(--border-hair);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-md);
}
.box-panel h3 { margin-bottom: 6px; }
.box-panel-hint { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.box-panel-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; max-height: 320px; overflow-y: auto; }
.box-panel-empty { font-size: 14px; color: var(--ink-soft); }
.box-panel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: var(--border-hair);
  padding-bottom: 10px;
}
.box-panel-row-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--brown-900); line-height: 1.3; }
.box-panel-stepper { display: flex; align-items: center; gap: 8px; flex: none; }
.box-panel-stepper button {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: var(--border-hair);
  background: var(--cream-50);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.box-panel-stepper button:hover { border-color: var(--gold-500); }
.box-panel-qty-value { min-width: 16px; text-align: center; font-weight: 700; font-size: 13px; color: var(--brown-900); }
.box-panel-count-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream-50);
  border: var(--border-hair);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.box-panel-count-field label { font-size: 13px; font-weight: 700; color: var(--brown-800); }
.box-panel-count-field input {
  width: 64px;
  padding: 7px 4px;
  text-align: center;
  border-radius: 8px;
  border: var(--border-hair);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  color: var(--brown-900);
  flex: none;
}
.box-panel-count-field input:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(189,146,58,0.16); }
.box-panel-delivery-field {
  background: var(--cream-50);
  border: var(--border-hair);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.box-panel-delivery-field label { display: block; font-size: 13px; font-weight: 700; color: var(--brown-800); margin-bottom: 8px; }
.box-panel-delivery-row { display: flex; gap: 8px; }
.box-panel-delivery-row input {
  flex: 1;
  min-width: 0;
  padding: 8px 8px;
  border-radius: 8px;
  border: var(--border-hair);
  font-family: inherit;
  font-size: 13px;
  color: var(--brown-900);
  background: var(--white);
}
.box-panel-delivery-row input:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(189,146,58,0.16); }
@media (max-width: 380px) { .box-panel-delivery-row { flex-direction: column; } }
.box-panel-contact-field {
  background: var(--cream-50);
  border: var(--border-hair);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.box-panel-contact-field label { display: block; font-size: 13px; font-weight: 700; color: var(--brown-800); margin-bottom: 8px; }
.box-panel-contact-field input,
.box-panel-contact-field textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: var(--border-hair);
  font-family: inherit;
  font-size: 13px;
  color: var(--brown-900);
  background: var(--white);
  resize: vertical;
}
.box-panel-contact-field input:focus,
.box-panel-contact-field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(189,146,58,0.16); }
.box-panel-remove {
  flex: none;
  border: none;
  background: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 2px 4px;
}
.box-panel-remove:hover { color: var(--maroon-700); }
.box-panel-footer { border-top: var(--border-hair); padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.box-panel-count { font-size: 13px; font-weight: 700; color: var(--brown-800); text-align: center; }
.box-panel-fresh-note { font-size: 12px; color: var(--gold-600); text-align: center; font-weight: 600; margin: -2px 0 2px; }

.box-fresh-note {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--yellow-100), var(--yellow-200));
  border: var(--border-hair);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  margin: -6px 0 38px;
  box-shadow: var(--shadow-sm);
}
.box-fresh-note svg { width: 26px; height: 26px; flex: none; color: var(--gold-600); }
.box-fresh-note p { margin: 0; font-size: 14.5px; font-weight: 600; color: var(--brown-800); }
@media (max-width: 560px) { .box-fresh-note { flex-direction: column; text-align: center; gap: 8px; } }
.box-send-btn { width: 100%; justify-content: center; }
.box-send-btn.is-disabled { opacity: .45; pointer-events: none; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 22px 14px; }
.step .num {
  counter-increment: step;
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--brown-900);
  color: var(--yellow-200);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.step .num::before { content: counter(step); }
.step p { font-size: 14px; }

/* ---------- Testimonial / stat band ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .stat-band { grid-template-columns: 1fr 1fr; } }
.stat-band .num { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--yellow-200); }
.stat-band .label { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #d8c79b; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-row .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--yellow-200);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.contact-row .ic svg { width: 22px; height: 22px; color: var(--brown-900); }
.contact-row h4 { margin-bottom: 2px; font-size: 16px; font-family: 'Poppins'; font-weight: 600; color: var(--brown-900); }
.contact-row p { margin: 0; font-size: 14px; }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--brown-800); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1.5px solid rgba(44,32,19,0.15);
  font-family: inherit;
  font-size: 14px;
  background: var(--cream-50);
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,152,46,0.15);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse 900px 420px at 12% -10%, rgba(189,146,58,0.16), transparent 60%),
    linear-gradient(165deg, #1c130b 0%, #140d07 100%);
  color: #cdbb98;
  padding: 72px 0 30px;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 25%, var(--yellow-200) 50%, var(--gold-500) 75%, transparent);
  opacity: .85;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer .brand { color: var(--yellow-200); }
.footer h4 { color: var(--yellow-200); font-family: 'Poppins'; font-size: 14px; font-weight: 600; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .1em; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer p { color: #a5926e; }
.footer a { transition: color .2s ease; }
.footer a:hover { color: var(--yellow-200); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(238,201,106,0.22);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
  color: #e9dcc0;
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); transform: translateY(-3px); color: var(--brown-900); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(238,201,106,0.14);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: #8a7857;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d97b, #1fae60);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 30px rgba(31,174,96,0.45);
  z-index: 90;
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 16px 30px rgba(31,174,96,0.45); }
  50% { box-shadow: 0 16px 30px rgba(31,174,96,0.7), 0 0 0 10px rgba(31,174,96,0.08); }
}

/* ---------- Breadcrumb / page header ---------- */
.page-hero {
  padding: 150px 0 60px;
  text-align: center;
  background: linear-gradient(160deg, var(--yellow-100), var(--yellow-300));
  margin-top: calc(-1 * var(--nav-h));
}
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 17px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.badge-row span {
  font-size: 12px;
  font-weight: 600;
  background: rgba(44,32,19,0.06);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brown-800);
}
