/* ===== The Chicken Master ===== */
:root {
  --red: #cf2e2e;
  --red-dark: #a81f1f;
  --red-deep: #85160f;
  --ember: #e8642a;
  --gold: #f0a92b;
  --gold-dark: #d38b12;
  --fresh: #6aa84f;
  --fresh-dark: #538138;
  --cream: #fdf6ea;
  --cream2: #f7ecd8;
  --cream3: #efe0c6;
  --ink: #2c211c;
  --ink-soft: #6a5d54;
  --ink-faint: #9c8e82;
  --paper: #fffbf4;
  --bg: #fffbf4;
  --bg-dark: #241813;
  --bg-dark2: #2e201a;
  --card: #ffffff;
  --border: #ece0cd;
  --line: #e0d1b8;
  --shadow: 0 12px 34px rgba(44, 33, 28, 0.10);
  --shadow-lg: 0 22px 54px rgba(44, 33, 28, 0.18);
  --radius: 16px;
  --radius-sm: 9px;
  --maxw: 1180px;
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --display: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--red); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 26px; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); font-weight: 800; }
section { scroll-margin-top: 88px; }

/* Utility */
.eyebrow { font-size: 0.78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--red); font-weight: 700; display: inline-block; }
.eyebrow.gold { color: var(--gold-dark); }
.eyebrow.fresh { color: var(--fresh-dark); }

/* Topbar */
.topbar { background: var(--red-deep); color: #f6d9d0; font-size: 0.84rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--gold); font-weight: 700; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,251,244,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--ink); display: flex; align-items: center; gap: 11px; letter-spacing: -.01em; }
.brand .logo { width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; border: 2px solid var(--gold); }
.brand .b-text { line-height: 1.04; }
.brand .b-text b { color: var(--red); }
.brand .b-text small { display: block; font-family: var(--sans); font-size: 0.56rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink); font-size: 0.9rem; padding: 9px 14px; font-weight: 600; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .18s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); }
.nav-links .cta { background: var(--red); color: var(--cream); border-radius: 40px; padding: 10px 22px; margin-left: 8px; }
.nav-links .cta::after { display: none; }
.nav-links .cta:hover { background: var(--red-dark); color: var(--cream); }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 1.7rem; cursor: pointer; }

/* Buttons */
.btn { font-family: var(--display); font-size: 0.86rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 14px 32px; border-radius: 40px; border: 2px solid transparent; cursor: pointer; display: inline-block; transition: all .16s; text-align: center; }
.btn-red { background: var(--red); color: var(--cream); }
.btn-red:hover { background: var(--red-dark); color: var(--cream); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.btn-fresh { background: var(--fresh); color: #fff; }
.btn-fresh:hover { background: var(--fresh-dark); color: #fff; transform: translateY(-2px); }
.btn-cream { background: var(--cream); color: var(--red-dark); }
.btn-cream:hover { background: #fff; color: var(--red-dark); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--cream); }
.btn-line-light { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.6); }
.btn-line-light:hover { background: var(--cream); color: var(--red-dark); }
.btn-lg { font-size: 1rem; padding: 16px 40px; }
.btn-sm { font-size: 0.76rem; padding: 9px 20px; }

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(130deg, #fbe4d8 0%, var(--cream) 52%, #f6ecd2 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px; padding: 80px 0 88px; }
.hero-text .eyebrow { margin-bottom: 20px; }
.hero-text h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.0; margin-bottom: 22px; letter-spacing: -0.02em; }
.hero-text h1 .red { color: var(--red); }
.hero-text h1 .gold { color: var(--gold-dark); }
.hero-text .lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 490px; margin-bottom: 32px; }
.hero-text .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual .plate { width: min(420px, 84vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff, var(--cream2) 70%, var(--cream3)); display: flex; align-items: center; justify-content: center; font-size: 11rem; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.hero-visual .chip { position: absolute; background: #fff; border-radius: 40px; padding: 10px 20px; box-shadow: var(--shadow); font-family: var(--display); font-weight: 700; font-size: 0.86rem; display: flex; align-items: center; gap: 8px; }
.hero-visual .chip.c1 { top: 8%; left: -2%; color: var(--red); }
.hero-visual .chip.c2 { bottom: 14%; right: -3%; color: var(--fresh-dark); }
.hero-visual .chip.c3 { bottom: 2%; left: 10%; color: var(--gold-dark); }

/* Marquee */
.strip { background: var(--red); color: var(--cream); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.strip .track { display: inline-block; animation: marquee 30s linear infinite; }
.strip .track span { margin: 0 26px; font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.strip .track span.dot { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Page head */
.page-head { padding: 66px 0 54px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; background: linear-gradient(130deg, #fbe4d8, var(--cream)); }
.page-head .breadcrumb { font-size: 0.8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.page-head .breadcrumb a { color: var(--ink-soft); }
.page-head h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); max-width: 860px; }
.page-head h1 .red { color: var(--red); }
.page-head .sub { margin-top: 16px; font-size: 1.16rem; color: var(--ink-soft); max-width: 640px; }

/* Sections */
section.block { padding: 84px 0; }
section.block.cream { background: var(--cream); }
section.block.tint { background: var(--cream2); }
section.block.dark { background: var(--bg-dark); color: var(--cream); }
section.block.fresh { background: #eef4e8; }
.block.dark h1, .block.dark h2, .block.dark h3 { color: var(--cream); }
.block.dark .eyebrow { color: var(--gold); }

/* Section header */
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.sec-head h2 .red { color: var(--red); }
.sec-head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; }
.block.dark .sec-head p { color: #cdbfb2; }

/* Grids */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Product cards */
.product-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .p-img { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 4.4rem; position: relative; }
.product-card .p-img.v1 { background: linear-gradient(150deg, #fbe0d0, #f3c3a6); }
.product-card .p-img.v2 { background: linear-gradient(150deg, #fce4cf, #f6cd9c); }
.product-card .p-img.v3 { background: linear-gradient(150deg, #f9dcd6, #eeb3a8); }
.product-card .p-img.v4 { background: linear-gradient(150deg, #e6efd9, #cfe0b7); }
.product-card .p-img.v5 { background: linear-gradient(150deg, #fbe7c4, #f3d091); }
.product-card .p-img.v6 { background: linear-gradient(150deg, #f6ddd0, #e9b9a0); }
.product-card .p-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: var(--cream); font-size: 0.68rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; padding: 5px 12px; border-radius: 40px; }
.product-card .p-badge.fresh { background: var(--fresh); }
.product-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card .p-cat { font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-bottom: 6px; }
.product-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.product-card p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.product-card .p-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 10px; }
.product-card .price { font-family: var(--display); font-size: 1.3rem; font-weight: 800; color: var(--red); }
.product-card .price .fill { background: var(--cream2); border-bottom: 1px dashed var(--gold-dark); border-radius: 3px; padding: 0 6px; font-size: 1.05rem; }

/* Category / filter layout */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.shop-side { position: sticky; top: 100px; }
.shop-side .side-box { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; margin-bottom: 22px; }
.shop-side h4 { font-size: 1.05rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.cat-list { list-style: none; }
.cat-list li { margin-bottom: 4px; }
.cat-list a { display: flex; justify-content: space-between; padding: 8px 12px; border-radius: var(--radius-sm); color: var(--ink-soft); font-size: 0.95rem; }
.cat-list a:hover, .cat-list a.active { background: var(--cream2); color: var(--red); font-weight: 700; }
.cat-list a .count { color: var(--ink-faint); font-size: 0.82rem; }
.shop-main .shop-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 12px; }
.shop-main .shop-bar .count { color: var(--ink-soft); font-size: 0.95rem; }
.shop-main .shop-bar select { padding: 10px 16px; border: 1px solid var(--border); border-radius: 40px; background: var(--card); font-family: var(--sans); font-size: 0.9rem; color: var(--ink); }

/* Single product */
.product-single { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.product-gallery .main-img { aspect-ratio: 1; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 9rem; box-shadow: var(--shadow); background: linear-gradient(150deg, #fbe0d0, #f3c3a6); }
.product-gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.product-gallery .thumb { aspect-ratio: 1; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; background: var(--cream2); cursor: pointer; border: 2px solid transparent; transition: border-color .15s; }
.product-gallery .thumb:hover { border-color: var(--gold); }
.product-info .p-cat { font-size: 0.8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-bottom: 10px; }
.product-info h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.product-info .p-price { font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.product-info .p-price .fill { background: var(--cream2); border-bottom: 1px dashed var(--gold-dark); border-radius: 3px; padding: 0 10px; }
.product-info .p-price small { font-size: 0.9rem; color: var(--ink-faint); font-weight: 400; font-family: var(--sans); }
.product-info .rating { color: var(--gold); margin-bottom: 18px; letter-spacing: 2px; }
.product-info .p-desc { color: var(--ink-soft); margin-bottom: 22px; }
.product-info .p-meta { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; margin-bottom: 22px; }
.product-info .p-meta .m-row { display: flex; gap: 10px; margin-bottom: 8px; font-size: 0.94rem; }
.product-info .p-meta .m-row .k { color: var(--ink-faint); min-width: 120px; text-transform: uppercase; font-size: 0.78rem; letter-spacing: .06em; font-weight: 700; padding-top: 2px; }
.product-info .p-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.qty-box { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 40px; overflow: hidden; }
.qty-box button { background: var(--cream2); border: 0; width: 44px; height: 48px; font-size: 1.2rem; cursor: pointer; color: var(--ink); }
.qty-box input { width: 52px; height: 48px; border: 0; text-align: center; font-family: var(--display); font-weight: 700; font-size: 1rem; background: #fff; color: var(--ink); }

/* Product tabs */
.tabs { margin-top: 60px; }
.tab-btns { display: flex; gap: 4px; border-bottom: 2px solid var(--line); margin-bottom: 26px; flex-wrap: wrap; }
.tab-btn { background: none; border: 0; padding: 14px 24px; font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--ink-faint); cursor: pointer; position: relative; }
.tab-btn.active { color: var(--red); }
.tab-btn.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--red); border-radius: 3px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel .prose { max-width: 820px; }

/* Feature icons */
.feat-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feat-ico { text-align: center; }
.feat-ico .ico { width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow); }
.block.dark .feat-ico .ico { background: var(--bg-dark2); }
.feat-ico h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feat-ico p { color: var(--ink-soft); font-size: 0.92rem; }
.block.dark .feat-ico p { color: #cdbfb2; }

/* Feature split */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.feat .f-visual { border-radius: var(--radius); min-height: 420px; display: flex; align-items: center; justify-content: center; font-size: 8rem; box-shadow: var(--shadow); background: radial-gradient(circle at 40% 35%, #fff, var(--cream2) 72%); }
.feat .f-visual.red { background: linear-gradient(150deg, var(--ember), var(--red-dark)); color: var(--cream); }
.feat.flip .f-visual { order: 2; }
.feat h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; }
.feat h2 .red { color: var(--red); }
.feat p { color: var(--ink-soft); margin-bottom: 16px; }
.feat .lede { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink); line-height: 1.5; margin-bottom: 18px; }
.dot-list { list-style: none; margin: 8px 0 24px; }
.dot-list li { padding-left: 32px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
.dot-list li::before { content: "\2714"; position: absolute; left: 0; top: 0; color: var(--fresh-dark); font-weight: 700; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step .num { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%; background: var(--red); color: var(--cream); font-family: var(--display); font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid var(--gold); }
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .n { font-family: var(--display); font-size: 2.8rem; color: var(--gold); font-weight: 800; line-height: 1; }
.stat .l { font-size: 0.84rem; letter-spacing: .08em; text-transform: uppercase; color: #cdbfb2; margin-top: 8px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--card); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); }
.review .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.review p { color: var(--ink-soft); font-style: italic; margin-bottom: 14px; }
.review .who { font-family: var(--display); font-weight: 700; font-size: 0.95rem; color: var(--ink); }

/* Prose */
.prose { font-size: 1.05rem; line-height: 1.8; }
.prose p { color: #3d332c; margin-bottom: 16px; }
.prose h2 { font-size: 1.7rem; margin: 32px 0 12px; color: var(--red); }
.prose h3 { font-size: 1.3rem; margin: 26px 0 10px; color: var(--gold-dark); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; color: #3d332c; }
.prose li { margin-bottom: 8px; }
.prose .fill { background: var(--cream2); border-bottom: 1px dashed var(--gold-dark); padding: 0 4px; border-radius: 2px; font-weight: 600; }
.prose .note { background: var(--cream2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin: 22px 0; font-size: 0.97rem; }
.spec-table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; }
.spec-table td { padding: 12px 16px; border: 1px solid var(--line); font-size: 0.96rem; }
.spec-table td:first-child { background: var(--cream2); font-weight: 700; width: 40%; color: var(--ink); }
.spec-table td .fill { background: var(--cream); border-bottom: 1px dashed var(--gold-dark); border-radius: 2px; padding: 0 5px; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-split .c-info { background: var(--bg-dark); color: var(--cream); padding: 52px 46px; }
.contact-split .c-info h2 { color: var(--cream); font-size: 2rem; margin-bottom: 16px; }
.contact-split .c-info h2 .red { color: var(--ember); }
.contact-split .c-info p { color: #cdbfb2; margin-bottom: 26px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-row .ico { font-size: 1.15rem; width: 44px; height: 44px; flex-shrink: 0; background: rgba(240,169,43,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-row h4 { color: var(--gold); font-size: 0.95rem; margin-bottom: 2px; }
.contact-row p { color: #cdbfb2; margin: 0; font-size: 0.95rem; }
.contact-row .fill { background: rgba(240,169,43,.16); border-bottom: 1px dashed var(--gold); border-radius: 3px; padding: 0 6px; }
.contact-split .c-form { background: var(--card); padding: 52px 46px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 0.78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--cream); font-family: var(--sans); font-size: 1rem; color: var(--ink); outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--red); }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 10px; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; display: none; background: #eef4e8; color: var(--fresh-dark); border: 1px solid var(--fresh); font-size: 0.95rem; }
.form-msg.ok { display: block; }

/* CTA band */
.cta-band { padding: 88px 0; text-align: center; background: linear-gradient(140deg, var(--red), var(--red-deep)); color: var(--cream); position: relative; overflow: hidden; }
.cta-band::before { content: "\1F357"; position: absolute; font-size: 15rem; opacity: .10; top: -10px; left: 5%; }
.cta-band::after { content: "\1F373"; position: absolute; font-size: 12rem; opacity: .10; bottom: -30px; right: 6%; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; opacity: .96; font-size: 1.12rem; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #ab9d8f; padding: 62px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #3d2e26; }
.footer-brand .fb-name { font-family: var(--display); font-size: 1.5rem; color: var(--cream); font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand .fb-name .logo { width: 40px; height: 40px; border-radius: 50%; background: var(--red); border: 2px solid var(--gold); }
.footer-brand p { font-size: 0.93rem; max-width: 300px; }
.footer-col h4 { font-family: var(--display); color: var(--cream); font-size: 0.92rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #ab9d8f; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; color: #726457; }
.footer-bottom a { color: #ab9d8f; }

/* Responsive */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 56px 0 66px; }
  .hero-text .lede { margin-left: auto; margin-right: auto; }
  .hero-text .cta-row { justify-content: center; }
  .hero-visual { margin-top: 16px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feat-icons { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .review-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-side { position: static; }
  .product-single { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .feat, .feat.flip { grid-template-columns: 1fr; gap: 34px; }
  .feat .f-visual, .feat.flip .f-visual { order: 0; min-height: 240px; font-size: 5rem; }
  .contact-split { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 82px; left: 0; right: 0; flex-direction: column; background: var(--cream); border-bottom: 1px solid var(--border); padding: 14px 26px; gap: 2px; display: none; align-items: stretch; }
  .nav-links.show { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links .cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .grid-4, .grid-3, .feat-icons, .steps { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-split .c-info, .contact-split .c-form { padding: 38px 28px; }
}
