/* =================================================================
   Jellyfish Crudo Charbon - Stylesheet
   Palette: Deep ocean navy + warm coral, cream canvas.
   ASCII only. No unicode. No emoji.
================================================================= */

:root {
  --navy:       #0B3D5C;
  --navy-dk:    #07273B;
  --teal:       #1E6F8E;
  --coral:      #F2A65A;
  --coral-dk:   #E08B3B;
  --rose:       #E8645A;
  --cream:      #FBF5EB;
  --sand:       #F2E9D8;
  --ink:        #1A1D21;
  --ink-2:      #434952;
  --muted:      #6C7380;
  --line:       #E5DECC;
  --white:      #FFFFFF;
  --success:    #2E7D5B;
  --warn:       #C25A3C;
  --shadow-sm:  0 2px 8px rgba(11,61,92,.06);
  --shadow:     0 10px 30px rgba(11,61,92,.09);
  --shadow-lg:  0 24px 60px rgba(11,61,92,.14);
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  22px;
  --f-serif:    'Fraunces', Georgia, 'Times New Roman', serif;
  --f-sans:     'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--coral-dk); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-serif);
  color: var(--navy-dk);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--ink-2); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
  position: absolute; top: -60px; left: 1rem; padding: .6rem 1rem;
  background: var(--navy); color: #fff; border-radius: var(--radius-sm); z-index: 2000;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* --- Buttons --- */
.btn, .btn-primary, .btn-outline, .btn-ghost, .btn-coral {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  letter-spacing: .01em; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap; cursor: pointer; border: 2px solid transparent; text-align: center;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dk); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-coral { background: var(--coral); color: var(--navy-dk); }
.btn-coral:hover { background: var(--coral-dk); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy-dk); border-color: var(--navy-dk); }
.btn-outline:hover { background: var(--navy-dk); color: #fff; }
.btn-ghost { background: rgba(11,61,92,.05); color: var(--navy-dk); }
.btn-ghost:hover { background: rgba(11,61,92,.1); }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --- Announce + Header --- */
.announce-bar {
  background: var(--navy-dk); color: var(--cream);
  font-size: .85rem; padding: .5rem 0; text-align: center; letter-spacing: .02em;
}
.announce-bar .container { display: flex; align-items: center; justify-content: center; gap: .6rem; }
.announce-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); display: inline-block; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,245,235,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.25rem; overflow: hidden; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  flex-shrink: 0; color: var(--navy-dk);
}
.logo-mark { display: inline-flex; }
.logo-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--f-serif); }
.logo-top { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; }
.logo-bot { font-size: .7rem; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; margin-top: .18rem; font-family: var(--f-sans); font-weight: 500; }

.nav-links {
  flex: 1; display: flex; justify-content: center; gap: 2rem;
  font-size: .95rem; font-weight: 500;
}
.nav-links a { color: var(--ink); padding: .25rem 0; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 50%; right: 50%; bottom: -4px;
  height: 2px; background: var(--coral); transition: left .2s, right .2s;
}
.nav-links a:hover::after { left: 0; right: 0; }

.nav-actions { flex-shrink: 0; display: flex; align-items: center; gap: .75rem; }
.nav-cart {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px; background: var(--white);
  border: 1px solid var(--line); color: var(--navy-dk); transition: all .2s ease;
}
.nav-cart:hover { background: var(--navy-dk); color: #fff; border-color: var(--navy-dk); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px;
  border-radius: 999px; background: var(--coral); color: var(--navy-dk);
  font-size: .7rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

.nav-hamburger {
  display: none; width: 42px; height: 42px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav-hamburger span {
  display: block; width: 18px; height: 2px; background: var(--navy-dk); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; padding: 1rem 1.25rem;
  background: var(--cream); border-top: 1px solid var(--line);
}
.mobile-menu a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--navy-dk); }
.mobile-menu.open { display: flex; }

/* --- Hero --- */
.hero {
  position: relative; padding: 4rem 0 5rem;
  background: var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .9rem; border-radius: 999px; background: rgba(242,166,90,.16);
  color: var(--coral-dk); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02; margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--coral-dk); font-style: italic; font-weight: 400; }
.hero p.lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--ink-2);
  max-width: 520px; margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--line);
}
.hero-stat .n { font-family: var(--f-serif); font-size: 2rem; color: var(--navy-dk); font-weight: 600; }
.hero-stat .l { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }

.hero-visual { position: relative; height: 560px; }
.hero-card {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-1 { top: 0; left: 10%; width: 65%; height: 60%; }
.hero-card-2 { bottom: 8%; right: 0; width: 55%; height: 50%; z-index: 2; }
.hero-card-3 {
  bottom: 25%; left: 0; width: 38%; height: 30%;
  background: var(--navy-dk); color: #fff; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between; z-index: 3;
}
.hero-card-3 .qmark { font-family: var(--f-serif); font-size: 3rem; color: var(--coral); line-height: 1; }
.hero-card-3 p { color: #fff; font-size: .95rem; margin: 0; }
.hero-card-3 .aut { font-size: .75rem; color: var(--coral); letter-spacing: .12em; text-transform: uppercase; }

/* --- Sections --- */
.section { padding: 5rem 0; }
.section-head.center, .section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head.left { text-align: left; display: flex; justify-content: space-between; align-items: flex-end; max-width: 100%; }
.section-head.left > div { flex: 1; }
.section-link { color: var(--navy); font-size: .9rem; font-weight: 600; white-space: nowrap; }
.section-link:hover { color: var(--coral); }
.eyebrow, .section-eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--coral-dk); font-weight: 600; margin-bottom: .8rem;
}
.eyebrow.light { color: var(--coral); }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--ink-2); font-size: 1.05rem; }
.section-title.light { color: var(--cream); }
.section-lede.light { color: rgba(251,245,235,.8); }
.center { text-align: center; }
.section-alt { background: var(--sand); }
.section-muted { background: #f8f9fa; }
.section-dark { background: var(--navy-dk); color: var(--cream); }
.section-dark h2 { color: var(--cream); }
.section-dark p { color: rgba(251,245,235,.75); }

/* --- Categories grid --- */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-bottom: 2rem;
}
.cat-card {
  position: relative; display: block; border-radius: 20px;
  overflow: hidden; aspect-ratio: 1.2 / 1;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 32px rgba(11,61,92,.08);
  text-decoration: none; color: inherit;
  background-size: cover; background-position: center;
  background-color: var(--sand);
}
.cat-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 16px 48px rgba(11,61,92,.15);
}
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7,39,59,.65) 70%, var(--navy-dk) 100%);
}
.cat-card-name {
  position: absolute; bottom: 3.5rem; left: 1.5rem; right: 1.5rem;
  color: white; z-index: 2; font-family: var(--f-serif);
  font-size: 1.4rem; font-weight: 600; line-height: 1.3;
}
.cat-card-desc {
  position: absolute; bottom: 2rem; left: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,.9); z-index: 2;
  font-size: .85rem; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card-count {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  color: var(--navy-dk); padding: .4rem .8rem; font-size: .75rem; font-weight: 600;
  letter-spacing: .05em; border-radius: 16px; z-index: 2;
}

/* --- Recipe Grid --- */
.recipe-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.recipe-card {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(11,61,92,.08); 
  transition: transform .3s ease, box-shadow .3s ease;
  aspect-ratio: 5 / 6; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.recipe-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 16px 48px rgba(11,61,92,.15); 
}
.recipe-card-link {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.recipe-img {
  flex: 1; background-size: cover; background-position: center;
  position: relative; transition: transform .5s ease;
}
.recipe-card:hover .recipe-img { transform: scale(1.02); }
.recipe-cat {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  color: var(--navy-dk); padding: .5rem 1rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.recipe-body {
  background: linear-gradient(180deg, transparent 0%, rgba(11,61,92,.85) 60%, var(--navy-dk) 100%);
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 3rem 1.5rem 1.5rem; color: white;
}
.recipe-title {
  font-family: var(--f-serif); font-size: 1.4rem; font-weight: 600;
  margin-bottom: .5rem; line-height: 1.3; color: white;
}
.recipe-desc {
  font-size: .9rem; line-height: 1.5; opacity: .9;
  margin-bottom: 1rem; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.recipe-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .85rem;
}
.recipe-time {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.8);
}
.rating-star { 
  color: var(--coral); font-weight: 600; 
  display: flex; align-items: center; gap: .3rem;
}

/* --- Product Grid --- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-img-wrap { aspect-ratio: 1 / 1; overflow: hidden; background: var(--sand); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-body { padding: 1.1rem; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; }
.product-title { font-size: 1.05rem; margin-bottom: .5rem; flex: 1; }
.product-title a { color: var(--navy-dk); text-decoration: none; }
.product-title a:hover { color: var(--coral); }
.product-desc { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; line-height: 1.4; }
.product-row { display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; }
.product-price { font-family: var(--f-serif); font-size: 1.25rem; color: var(--navy-dk); font-weight: 600; }

/* --- How it works --- */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.how-step {
  text-align: left; padding: 2rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--line);
}
.how-step .how-num {
  display: inline-flex; width: 48px; height: 48px;
  border-radius: 999px; background: var(--coral); color: var(--navy-dk);
  align-items: center; justify-content: center;
  font-family: var(--f-serif); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 1.25rem;
}
.how-step h3 { margin-bottom: .5rem; font-size: 1.2rem; }

/* --- Testimonials --- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  padding: 2rem; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); display: flex; flex-direction: column;
}
.testi-card .stars { color: var(--coral-dk); letter-spacing: .1em; margin-bottom: .8rem; font-weight: 700; }
.testi-card .quote { font-family: var(--f-serif); font-size: 1.1rem; color: var(--navy-dk); margin-bottom: 1.25rem; flex: 1; line-height: 1.4; }
.testi-card .aut { display: flex; align-items: center; gap: .75rem; }
.testi-card .aut .av {
  width: 40px; height: 40px; border-radius: 999px; background: var(--coral);
  color: var(--navy-dk); font-weight: 700; display: inline-flex;
  align-items: center; justify-content: center;
}
.testi-card .aut .name { font-weight: 600; color: var(--navy-dk); font-size: .9rem; }
.testi-card .aut .role { font-size: .78rem; color: var(--muted); }

/* --- Feature banner --- */
.feature-banner {
  background: var(--navy-dk); color: var(--cream);
  border-radius: var(--radius-lg); padding: 4rem 3rem;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.feature-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,166,90,.25) 0%, transparent 60%);
}
.feature-copy h2 { color: #fff; margin-bottom: 1rem; }
.feature-copy p { color: rgba(251,245,235,.8); margin-bottom: 1.5rem; }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.feature-tile {
  position: relative; aspect-ratio: 1.2 / 1; border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.25rem;
  text-decoration: none; color: white;
  background-size: cover; background-position: center;
  transition: transform .3s ease;
}
.feature-tile:hover { transform: translateY(-4px); }
.feature-tile h4 {
  font-family: var(--f-serif); font-size: 1.1rem; font-weight: 600;
  margin-bottom: .5rem; color: white; line-height: 1.3;
}
.feature-tile span {
  font-size: .8rem; opacity: .9; color: white;
}
.feature-banner .price-box {
  background: rgba(255,255,255,.06); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; backdrop-filter: blur(8px);
}
.feature-banner .price-box .big {
  font-family: var(--f-serif); font-size: 3rem; color: var(--coral); font-weight: 600; line-height: 1;
}
.feature-banner .price-box .sm { font-size: .95rem; color: rgba(251,245,235,.75); }

/* --- Newsletter --- */
.newsletter {
  background: var(--sand); border-radius: var(--radius-lg);
  padding: 3.5rem 2rem; text-align: center;
}
.newsletter h2 { margin-bottom: .5rem; }
.newsletter-form {
  max-width: 480px; margin: 1.5rem auto 0; display: flex;
  background: #fff; border-radius: 999px; padding: .3rem; box-shadow: var(--shadow-sm);
}
.newsletter-form input {
  flex: 1; border: none; padding: .85rem 1.25rem; border-radius: 999px;
  font-family: inherit; font-size: .95rem; background: transparent; outline: none;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-dk); color: var(--cream); padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(251,245,235,.08);
}
.footer-col h4 {
  color: var(--coral); font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--f-sans);
}
.footer-col a {
  display: block; color: rgba(251,245,235,.75); padding: .35rem 0;
  font-size: .92rem; transition: color .2s ease;
}
.footer-col a:hover { color: var(--coral); }
.footer-brand .nav-logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand .logo-top { color: #fff; }
.footer-brand .logo-bot { color: rgba(251,245,235,.6); }
.footer-tag { color: rgba(251,245,235,.7); font-size: .92rem; margin-bottom: 1rem; }
.footer-addr { color: rgba(251,245,235,.5); font-size: .85rem; margin-bottom: .5rem; }
.footer-mail { color: var(--coral); font-size: .9rem; }
.footer-bottom {
  padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap;
  font-size: .85rem; color: rgba(251,245,235,.5);
}

/* --- Cookie notice --- */
.cookie-notice {
  position: fixed; bottom: 2rem; right: 2rem; 
  max-width: 350px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1rem; z-index: 9999; transform: translateY(0); transition: all .3s ease;
  border: 1px solid var(--line);
}
.cookie-notice.hidden { transform: translateX(120%); opacity: 0; pointer-events: none; }
.cookie-notice p { font-size: .85rem; margin-bottom: .75rem; line-height: 1.4; }
.cookie-actions { display: flex; gap: .5rem; }
.cookie-actions .btn-sm { font-size: .75rem; padding: .4rem .8rem; }

/* --- Toast --- */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--navy-dk); color: #fff;
  padding: .85rem 1.25rem; border-radius: var(--radius-sm);
  font-size: .9rem; box-shadow: var(--shadow-lg);
  transform: translateX(150%); transition: transform .3s ease;
  z-index: 2000;
}
.toast.show { transform: translateX(0); }

/* --- Forms --- */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy-dk); margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: #fff;
  font-family: inherit; font-size: .95rem; color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,61,92,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.alert {
  padding: .85rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem;
  font-size: .9rem;
}
.alert-success { background: #E8F4EE; color: var(--success); border-left: 4px solid var(--success); }
.alert-error { background: #FBE9E4; color: var(--warn); border-left: 4px solid var(--warn); }
.alert-info { background: #E8F0F6; color: var(--navy); border-left: 4px solid var(--navy); }

/* --- Page hero --- */
.page-hero {
  position: relative; padding: 5rem 0;
  background: var(--navy-dk); color: #fff; text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .28; background-image: var(--hero-bg);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,39,59,.3) 0%, var(--navy-dk) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(251,245,235,.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-hero .crumbs { font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }

/* --- Auth pages --- */
.auth-wrap {
  max-width: 440px; margin: 4rem auto; padding: 0 1.25rem;
}
.auth-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 2rem; margin-bottom: .5rem; text-align: center; }
.auth-card .sub { text-align: center; color: var(--muted); margin-bottom: 2rem; }
.auth-divider {
  text-align: center; margin: 1.5rem 0; color: var(--muted); font-size: .85rem;
}
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: .9rem; color: var(--muted); }

/* --- Recipe detail --- */
.recipe-detail-hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem;
  padding: 3rem 0; align-items: center;
}
.recipe-detail-hero .img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.recipe-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.recipe-detail-hero .meta-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.25rem 0; }
.recipe-detail-hero .chip {
  padding: .35rem .9rem; border-radius: 999px; background: var(--sand);
  color: var(--navy-dk); font-size: .82rem; font-weight: 500;
}

.recipe-body-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 3rem;
  padding: 3rem 0;
}
.ingr-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--line); position: sticky; top: 90px;
}
.ingr-card h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.ingr-list { list-style: none; }
.ingr-list li {
  padding: .75rem 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: .65rem; font-size: .92rem; color: var(--ink-2);
}
.ingr-list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px;
  background: var(--coral); flex-shrink: 0;
}

.steps-list { list-style: none; counter-reset: steps; }
.steps-list li {
  counter-increment: steps; padding: 1.5rem 0 1.5rem 4rem;
  position: relative; border-bottom: 1px solid var(--line);
}
.steps-list li::before {
  content: counter(steps); position: absolute; left: 0; top: 1.5rem;
  width: 40px; height: 40px; border-radius: 999px; background: var(--navy-dk);
  color: var(--coral); font-family: var(--f-serif); font-weight: 700;
  font-size: 1.2rem; display: inline-flex; align-items: center; justify-content: center;
}
.steps-list li:last-child { border-bottom: none; }

/* --- Product detail --- */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  padding: 3rem 0;
}
.product-detail-grid .img-wrap {
  border-radius: var(--radius); overflow: hidden;
  background: var(--sand); aspect-ratio: 1 / 1;
}
.product-detail-grid .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-grid .cat {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--coral-dk); font-weight: 600; margin-bottom: .75rem;
}
.product-detail-grid h1 { font-size: 2.4rem; margin-bottom: 1rem; }
.product-detail-grid .price {
  font-family: var(--f-serif); font-size: 2.2rem; color: var(--navy-dk);
  font-weight: 600; margin: 1rem 0;
}
.product-detail-grid .feat-list {
  list-style: none; margin: 1.5rem 0; padding: 1.25rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.product-detail-grid .feat-list li {
  padding: .4rem 0; color: var(--ink-2); display: flex; gap: .6rem;
}
.product-detail-grid .feat-list li::before {
  content: '+'; color: var(--coral-dk); font-weight: 700;
}

/* --- Cart + Checkout --- */
.cart-layout {
  display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem;
  padding: 3rem 0;
}
.cart-items { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--line); }
.cart-item {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 1.25rem; align-items: center;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: none; }
.cart-item .thumb {
  width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; background: var(--sand);
}
.cart-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item .name { font-weight: 600; color: var(--navy-dk); margin-bottom: .3rem; }
.cart-item .price { color: var(--muted); font-size: .9rem; }
.qty-control {
  display: inline-flex; align-items: center; border: 1px solid var(--line);
  border-radius: 999px; overflow: hidden; background: #fff;
}
.qty-control button { width: 32px; height: 32px; background: transparent; color: var(--navy-dk); font-size: 1.1rem; font-weight: 600; }
.qty-control .qty { padding: 0 .8rem; min-width: 32px; text-align: center; font-weight: 600; }
.cart-remove { color: var(--warn); font-size: .82rem; background: none; border: none; cursor: pointer; margin-left: .8rem; }

.cart-summary {
  background: var(--navy-dk); color: #fff; border-radius: var(--radius); padding: 2rem; position: sticky; top: 90px;
  align-self: start;
}
.cart-summary h3 { color: #fff; margin-bottom: 1.25rem; font-size: 1.3rem; }
.summary-row { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid rgba(251,245,235,.1); }
.summary-row.total { border-bottom: none; font-family: var(--f-serif); font-size: 1.5rem; color: var(--coral); font-weight: 600; padding-top: 1.25rem; }
.cart-summary p { color: rgba(251,245,235,.7); font-size: .85rem; }

.cart-empty { text-align: center; padding: 4rem 2rem; background: var(--white); border-radius: var(--radius); }
.cart-empty h2 { margin-bottom: .75rem; }

/* --- Checkout --- */
.checkout-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem;
  padding: 3rem 0;
}
.checkout-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; margin-bottom: 1.25rem; border: 1px solid var(--line);
}
.checkout-card h3 { margin-bottom: 1.25rem; font-size: 1.3rem; }

/* --- Subscribe / Plans --- */
.plans-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: 860px; margin: 0 auto;
}
.plan-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1.5px solid var(--line);
  position: relative; transition: all .25s ease;
}
.plan-card.featured {
  border-color: var(--coral); background: var(--navy-dk); color: var(--cream);
  transform: translateY(-8px); box-shadow: var(--shadow);
}
.plan-card.featured h3 { color: #fff; }
.plan-card.featured p, .plan-card.featured li { color: rgba(251,245,235,.85); }
.plan-card .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: var(--navy-dk); padding: .3rem 1rem;
  border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.plan-card h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.plan-card .big-price {
  font-family: var(--f-serif); font-size: 3.5rem; color: var(--navy-dk); font-weight: 600; line-height: 1;
}
.plan-card.featured .big-price { color: var(--coral); }
.plan-card .per { font-size: .95rem; color: var(--muted); margin-left: .3rem; }
.plan-card.featured .per { color: rgba(251,245,235,.7); }
.plan-card ul { list-style: none; margin: 1.5rem 0; }
.plan-card li { padding: .5rem 0; font-size: .95rem; }
.plan-card li::before { content: 'v '; color: var(--success); font-weight: 700; }
.plan-card.featured li::before { color: var(--coral); }

/* --- Blog --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { 
  background: var(--white); border-radius: var(--radius); overflow: hidden; 
  box-shadow: var(--shadow-sm); transition: transform .25s ease; 
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.blog-img { 
  aspect-ratio: 16 / 10; background-size: cover; background-position: center;
  background-color: var(--sand);
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { 
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; 
  color: var(--coral-dk); margin-bottom: .5rem; font-weight: 600;
}
.blog-title { 
  font-size: 1.2rem; margin-bottom: .75rem; color: var(--navy-dk);
  font-family: var(--f-serif); font-weight: 600; line-height: 1.3; flex: 1;
}
.blog-excerpt { color: var(--muted); font-size: .93rem; margin-bottom: 1rem; line-height: 1.5; }
.blog-meta { 
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--muted); 
}
.blog-author { font-weight: 500; }
.blog-date { opacity: .8; }

.blog-post {
  max-width: 780px; margin: 0 auto; padding: 3rem 1.25rem;
}
.blog-post h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.blog-post .meta { color: var(--muted); margin-bottom: 2rem; font-size: .9rem; }
.blog-post .featured-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem; }
.blog-post p { font-size: 1.1rem; line-height: 1.75; margin-bottom: 1.5rem; color: var(--ink-2); }
.blog-post p:first-of-type::first-letter {
  font-family: var(--f-serif); font-size: 4.5rem; font-weight: 700; color: var(--coral-dk);
  float: left; line-height: 1; margin: .1rem .5rem 0 0;
}

/* --- Values / Team / About --- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { padding: 2rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); }
.value-card .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--coral); color: var(--navy-dk);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { text-align: center; }
.team-card .avatar {
  width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius);
  overflow: hidden; margin-bottom: 1rem; background: var(--sand);
}
.team-card img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--f-serif); font-size: 1.15rem; margin-bottom: .25rem; }
.team-card .role { font-size: .85rem; color: var(--coral-dk); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; }
.team-card p { font-size: .88rem; color: var(--muted); }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form-wrap { background: var(--white); }
.contact-info .contact-info-block {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 1.5rem; border: 1px solid var(--line);
}
.contact-info .contact-info-block h3 { 
  color: var(--navy-dk); margin-bottom: 1rem; font-size: 1.1rem;
}
.contact-info .contact-info-block p { margin-bottom: .5rem; }
.contact-info .contact-info-block ul { list-style: none; padding: 0; }
.contact-info .contact-info-block li { 
  padding: .4rem 0; color: var(--ink-2);
}
.contact-info .contact-info-block a { color: var(--navy-dk); }
.contact-info .contact-info-block .muted { color: var(--muted); font-size: .9rem; }
.contact-info-block {
  background: var(--navy-dk); color: var(--cream); border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-info-block h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-info-block .info-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(251,245,235,.1); }
.contact-info-block .info-item:last-child { border-bottom: none; }
.contact-info-block .info-item .lbl { font-size: .78rem; color: var(--coral); letter-spacing: .14em; text-transform: uppercase; margin-bottom: .25rem; }
.contact-info-block .info-item .val { color: #fff; }

/* --- FAQ --- */
.faq-categories { max-width: 900px; margin: 0 auto; }
.faq-category { margin-bottom: 3rem; }
.faq-category h2 { 
  color: var(--navy-dk); margin-bottom: 1.5rem; 
  font-size: 1.6rem; font-family: var(--f-serif);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  margin-bottom: 1rem; overflow: hidden; border: 1px solid var(--line);
}
.faq-q {
  padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600;
  color: var(--navy-dk); display: flex; justify-content: space-between; align-items: center;
  font-size: 1.05rem; background: transparent; width: 100%; text-align: left; font-family: inherit;
  border: none; transition: background-color .2s ease;
}
.faq-q:hover { background: var(--sand); }
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--coral-dk); transition: transform .2s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all .3s ease; color: var(--ink-2); }
.faq-item.open .faq-a { padding: 0 1.5rem 1.25rem; max-height: 500px; }
.faq-icon { font-size: 1.5rem; color: var(--coral-dk); transition: transform .2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- Policy pages --- */
.legal-wrap, .policy-wrap {
  max-width: 820px; margin: 0 auto; padding: 3rem 1.25rem;
}
.legal-wrap h1, .policy-wrap h1 { 
  margin-bottom: .5rem; color: var(--navy-dk);
  font-family: var(--f-serif);
}
.legal-date { 
  color: var(--muted); font-size: .9rem; margin-bottom: 3rem;
  font-style: italic;
}
.legal-content h2, .policy-wrap h2 { 
  margin: 2.5rem 0 1rem; font-size: 1.5rem; 
  color: var(--navy-dk); font-family: var(--f-serif);
}
.legal-content h3, .policy-wrap h3 { 
  margin: 1.5rem 0 .6rem; font-size: 1.15rem; 
  color: var(--navy-dk);
}
.legal-content p, .legal-content li, .policy-wrap p, .policy-wrap li { 
  font-size: .98rem; line-height: 1.7; color: var(--ink-2); margin-bottom: .85rem; 
}
.legal-content ul, .legal-content ol, .policy-wrap ul, .policy-wrap ol { 
  margin-bottom: 1rem; padding-left: 1.5rem; 
}
.legal-content a, .policy-wrap a { color: var(--navy-dk); }
.legal-content a:hover, .policy-wrap a:hover { color: var(--coral); }
.policy-wrap .updated { color: var(--muted); font-size: .85rem; margin-bottom: 2rem; }
.policy-wrap table {
  width: 100%; border-collapse: collapse; margin: 1.25rem 0;
  background: var(--white); border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.policy-wrap th, .policy-wrap td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
.policy-wrap th { background: var(--sand); font-weight: 600; color: var(--navy-dk); }

/* --- Careers --- */
.careers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.career-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--line); display: flex; flex-direction: column;
}
.career-card h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.career-card .dept { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--coral-dk); margin-bottom: 1rem; }
.career-card p { flex: 1; }

/* --- Account page --- */
.account-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; padding: 3rem 0; }
.account-side {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--line); align-self: start;
}
.account-side h3 { margin-bottom: 1rem; font-size: 1.15rem; }
.account-content { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--line); }

/* --- Utility --- */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.muted { color: var(--muted); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid, .cart-layout { grid-template-columns: 1fr; }
  .product-detail-grid, .recipe-detail-hero, .recipe-body-grid { grid-template-columns: 1fr; }
  .ingr-card { position: static; }
  .account-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; max-width: 520px; margin: 2rem auto 0; }
  .feature-banner { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .feature-tile { padding: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info .contact-info-block { margin-bottom: 1rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .how-grid, .testi-grid, .values-grid,
  .blog-grid, .careers-grid { grid-template-columns: 1fr; }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .nav-actions .btn-outline { display: none; }
  .hero { padding: 2.5rem 0 3rem; }
  .hero-visual { height: 360px; }
  .hero-card-1 { width: 80%; height: 55%; }
  .hero-card-2 { width: 62%; }
  .hero-card-3 { width: 50%; padding: 1rem; }
  .hero-card-3 p { font-size: .8rem; }
  .hero-card-3 .qmark { font-size: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .announce-bar { font-size: .78rem; }
  .feature-banner { padding: 2.5rem 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; gap: .5rem; }
  .auth-card { padding: 1.75rem; }
  .blog-post p:first-of-type::first-letter { font-size: 3rem; }
  .steps-list li { padding: 1.25rem 0 1.25rem 3.2rem; }
  .steps-list li::before { width: 32px; height: 32px; font-size: 1rem; top: 1.25rem; }
  .cookie-notice { 
    bottom: 1rem; right: 1rem; left: 1rem; max-width: none; 
    padding: .8rem; 
  }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-info .contact-info-block { padding: 1rem; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
  .recipe-grid, .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); background: transparent; box-shadow: none; gap: .5rem; }
  .newsletter-form input { background: #fff; border-radius: var(--radius-sm); }
  .newsletter-form .btn { border-radius: var(--radius-sm); }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .n { font-size: 1.6rem; }
  .page-hero { padding: 3rem 0; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item .qty-control { grid-column: 1 / -1; margin-top: .5rem; }
  .cart-item .thumb { width: 70px; height: 70px; }
}
