/* ==========================================
   SWEET / SALTY — Main Stylesheet
   ========================================== */

/* --- Variables & Reset --- */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F8F4EE;
  --bg-dark: #1A1A1A;
  --text: #1A1A1A;
  --text-muted: #888;
  --accent: #C4952C;
  --accent-light: #FDF3DC;
  --border: #E8E3DB;
  --card-shadow: 0 2px 16px rgba(0,0,0,0.06);
  --nav-height: 72px;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 6px;
  --ease: 0.2s ease;
  --coral: #ff9975;
  --green: #1DB975;
  --purple: #7875ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--nav-height);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; }

/* --- Layout --- */
.container { width: 100%; margin: 0 auto; padding: 0 72px; }
section { padding: 80px 0; }


/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--bg);
  border-bottom: 1px solid #e8e8e8;
  z-index: 100;
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img { height: 44px; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--text);
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 50px;
  transition: background var(--ease);
}
.nav-links a:hover { background: #f7f7f7; }
.nav-links .btn-coffee {
  background: none;
  color: var(--green);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.nav-links .btn-coffee:hover { background: #f7f7f7; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none; border: none; padding: 6px 12px;
  border-radius: 50px;
  font-family: inherit; font-size: 16px; line-height: 24px; font-weight: 400;
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: background var(--ease);
}
.nav-dropdown-btn:hover { background: #f7f7f7; }
.nav-dropdown-btn::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 1px;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 160px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text);
  transition: background var(--ease);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg-alt); }
.btn-search {
  background: none; border: none;
  padding: 6px; display: flex; align-items: center;
}
.btn-search img { width: 20px; height: 20px; }
.nav-toggle {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--ease);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-nav .btn-coffee {
  color: var(--green); font-weight: 600;
  background: none; border-bottom: none;
}
.mobile-nav .mobile-dropdown-label {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); padding: 12px 0 4px;
  border-bottom: none;
}
.mobile-nav .mobile-dropdown-items a {
  padding-left: 14px;
}


/* ==========================================
   SEARCH OVERLAY
   ========================================== */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%; max-width: 620px;
  margin: 0 24px;
  max-height: calc(100vh - 120px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.search-box-header {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 16px; margin-bottom: 20px;
  flex-shrink: 0;
}
.search-box input {
  flex: 1; border: none; outline: none;
  font-size: 1.1rem; font-family: inherit;
  color: var(--text); background: transparent;
}
.search-box input::placeholder { color: var(--text-muted); }
.btn-close { background: none; border: none; padding: 4px; }
.btn-close img { width: 20px; }
.search-results {
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.search-result-item {
  display: flex; gap: 14px; align-items: center;
  padding: 10px; border-radius: var(--radius-sm);
  transition: background var(--ease);
  color: var(--text);
}
.search-result-item:hover { background: #fff5f5; }
.search-result-item img {
  width: 52px; height: 52px;
  border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
.result-info strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.result-info .result-tags { font-size: 0.78rem; color: var(--text-muted); }
.search-empty {
  text-align: center; padding: 24px;
  color: var(--text-muted); font-size: 0.9rem;
}


/* ==========================================
   HERO
   ========================================== */
.hero {
  background: var(--coral);
  height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.hero-scroll-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  animation: hero-bounce 2s ease-in-out infinite;
}
.hero-scroll-btn:hover { opacity: 1; }
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}
.hero-title {
  font-size: 120px;
  line-height: 115px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-title .word { display: block; }
.word-container { display: block; margin-top: 12px; }
.word-divider { display: none; }
.word-box {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-mover {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.rotating-word {
  color: var(--coral);
  font-weight: 700;
  display: block;
  padding: 22px 52px 26px;
  white-space: nowrap;
  flex-shrink: 0;
  background: #fff;
}


/* ==========================================
   COLLECTION BROWSER
   ========================================== */
.collection-browser {
  display: grid;
  grid-template-columns: 1.75fr 1.5fr;
  height: 100svh;
}
.collection-browser-img {
  overflow: hidden;
}
.collection-browser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.collection-browser-panel {
  background: var(--purple);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.collection-eyebrow {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
}
.collection-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  margin-bottom: 44px;
  line-height: 1.1;
}
.collection-links a {
  font-size: 62px;
  line-height: 80px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  letter-spacing: -0.01em;
  transition: opacity 0.18s ease;
}
.collection-links a:hover { color: rgba(45, 44, 109, 0.85); opacity: 1; }
.collection-sep {
  font-size: 62px;
  line-height: 80px;
  font-weight: 700;
  color: #fff;
  padding: 0 8px;
  letter-spacing: -0.01em;
  user-select: none;
}
.collection-browse-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  transition: opacity 0.18s;
}
.collection-browse-all:hover { opacity: 0.7; }
.collection-browse-all img { width: 15px; filter: none !important; transform: rotate(-90deg); }

/* Legacy category strip (used on collection pages) */
.category-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.category-strip .container {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.category-links { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.category-links a {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.875rem; font-weight: 500;
  border: 1.5px solid var(--border);
  transition: all var(--ease); white-space: nowrap;
}
.category-links a:hover,
.category-links a.active {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}
.btn-browse-all {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text); color: #fff;
  padding: 10px 20px; border-radius: 100px;
  font-size: 0.875rem; font-weight: 500;
  white-space: nowrap;
  transition: background var(--ease);
}
.btn-browse-all:hover { background: var(--accent); }
.btn-browse-all img { width: 14px; filter: invert(1); transform: rotate(-90deg); }


/* ==========================================
   SECTION HEADING
   ========================================== */
.section-heading { text-align: center; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p {
  color: var(--text-muted);
  max-width: 520px; margin: 0 auto;
  font-size: 1rem; line-height: 1.7;
}
.section-heading--left { text-align: left; }
.section-heading--left p { margin: 8px 0 0; }
.section-heading--left h2 {
  font-size: 48px;
  line-height: 72px;
}


/* ==========================================
   RECIPE GRID & CARDS
   ========================================== */
#recipes {
  padding: 72px 0 0;
}
#recipes .recipe-grid {
  grid-template-columns: repeat(4, 1fr);
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (min-width: 1440px) {
  .recipe-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1920px) {
  .recipe-grid { grid-template-columns: repeat(6, 1fr); }
}
.recipe-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  box-shadow: none;
  display: flex; flex-direction: column;
  position: relative;
  transition: none;
}
.recipe-card-img {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  transition: none;
}
.recipe-card:hover { transform: none; }
.recipe-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.badge-popular {
  position: absolute; top: 12px; left: 12px;
  background: #ce72dd; color: #fff;
  font-size: 12px; line-height: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 8px; border-radius: 4px; z-index: 1;
}
.recipe-card-body {
  padding: 16px 4px 20px; flex: 1;
  display: flex; flex-direction: column;
}
.recipe-card-body h3 {
  font-size: 24px; margin-bottom: 6px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 8px;
}
.recipe-card-body h3 a { color: var(--text); transition: color var(--ease); }
.recipe-card-body h3 a:hover { color: var(--coral); }
.recipe-card-body p {
  font-size: 16px; color: #777;
  line-height: 24px; flex: 1; margin-bottom: 12px;
  font-weight: 300;
}
.recipe-tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px 0;
  overflow: hidden;
}
.tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--ease);
}
.tag:hover { color: var(--green); }
a.tag { cursor: pointer; }
.recipe-tags .tag + .tag::before {
  content: "\00a0·\00a0";
  display: inline-block;
  color: var(--text);
  text-decoration: none;
  pointer-events: none;
}


/* ==========================================
   FRANCE BANNER
   ========================================== */
.banner-section {
  margin-top: 72px;
  margin-bottom: 72px;
}
.banner {
  background-image: url('../images/66276de41ab0a14385aa4bc1_Banner_FR22.jpg');
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  min-height: 400px;
  margin: 0 72px;
  padding: 48px;
  display: flex;
  align-items: center;
}
.banner-text {
  max-width: 50%;
}
.banner-title {
  color: #1c251c;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 12px;
}
.banner-body {
  color: #1c251c;
  font-size: 36px;
  line-height: 52px;
  margin-bottom: 0;
}
.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  margin-top: 24px;
}
.banner-cta img {
  width: 18px;
  filter: brightness(0) invert(1);
  transform: rotate(-90deg);
}

/* Legacy promo styles (kept for compatibility) */
.promo-section { background: var(--bg-dark); color: #fff; }
.promo-inner { display: flex; align-items: center; gap: 64px; }
.promo-text { flex: 1; }
.promo-text h2 { color: #fff; margin-bottom: 16px; }
.promo-text p {
  color: rgba(255,255,255,0.68);
  margin-bottom: 28px;
  font-size: 1.05rem; line-height: 1.75;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500;
  transition: all var(--ease);
}
.btn-primary.light { background: #fff; color: var(--text); }
.btn-primary.light:hover { background: var(--accent); color: #fff; }
.btn-primary img { width: 15px; transition: transform var(--ease); }
.btn-primary:hover img { transform: translateX(4px); }


/* ==========================================
   ABOUT TEASER (homepage)
   ========================================== */
.about-teaser {
  background: #ffd6d6;
  padding: 72px 0;
}
.about-teaser .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 144px;
  padding-right: 144px;
}
.what-is-label {
  color: #ff6d6d;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 8px;
}
.what-is-body {
  color: #ff6d6d;
  font-size: 56px;
  font-weight: 700;
  line-height: 76px;
}


/* ==========================================
   PAGE HEADER (collection / recipe pages)
   ========================================== */
.page-header {
  padding: 64px 0 52px;
}
.page-header + section { padding-top: 0; }
.page-header h1 {
  font-size: 48px; line-height: 64px; font-weight: 700;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 20px; line-height: 30px; font-weight: 300;
  color: #222;
}


/* ==========================================
   RECIPE DETAIL PAGE
   ========================================== */
/* ---- Recipe hero split layout ---- */
.recipe-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(85svh, 900px);
}
.recipe-hero-photo {
  overflow: hidden;
}
.recipe-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.recipe-hero-info {
  background-color: var(--recipe-accent, #f5ead8);
  --recipe-text: color-mix(in oklch, var(--recipe-accent, #f5ead8) 30%, #000);
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recipe-hero-title {
  font-size: 80px;
  line-height: 96px;
  font-weight: 700;
  color: var(--recipe-text);
  margin-bottom: 20px;
}
.recipe-hero-desc {
  font-size: 30px;
  line-height: 42px;
  font-weight: 300;
  color: var(--recipe-text);
  margin-bottom: 24px;
}
.recipe-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 32px;
}
.recipe-hero-tags .tag {
  color: var(--recipe-text); font-size: 18px; line-height: 26px;
}
.recipe-hero-divider {
  border: none;
  border-top: 1px solid color-mix(in oklch, var(--recipe-accent, #f5ead8) 50%, #000);
  margin: 0 0 24px;
}
.recipe-hero-fact-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--recipe-text);
  margin-bottom: 6px;
}
.recipe-hero-fact-desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--recipe-text);
}

.recipe-page { padding: 60px 0 80px; }
.recipe-page .container { margin-left: 0; }
.recipe-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }

.recipe-the-title {
  font-size: 72px; line-height: 80px; font-weight: 700;
  color: var(--text); margin-bottom: 32px;
}

.recipe-meta-row {
  display: flex; gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.recipe-meta-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 1px;
  align-items: center;
}
.recipe-meta-item img {
  grid-column: 1; grid-row: 1 / 3;
  width: 40px; height: 40px; object-fit: contain;
}
.meta-label {
  grid-column: 2; grid-row: 1;
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  align-self: end;
}
.meta-value {
  grid-column: 2; grid-row: 2;
  font-size: 16px; line-height: 24px; font-weight: 300;
  color: #222;
  align-self: start;
}
.recipe-tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.recipe-content {
  display: grid; grid-template-columns: 1fr 1.7fr;
  gap: 88px; align-items: start;
}
.recipe-section-title {
  font-size: 1.4rem; margin-bottom: 20px;
}
.ingredients-list + .recipe-section-title {
  margin-top: 48px;
}
.ingredients-list li {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  padding: 10px 0;
  font-size: 18px; line-height: 1.5; font-weight: 300;
}
.ingredients-list li em { font-size: 18px !important; }

/* Custom checkbox for recipe interaction */
.recipe-check {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 4px; cursor: pointer;
  margin-top: 1px; background: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.recipe-check:checked {
  background: #222; border-color: #222;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5l3.5 3.5L11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* Checked ingredient item */
.ingredients-list li.checked { opacity: 0.4; text-decoration: line-through; }

/* Clickable instruction steps */
.instructions-list li { cursor: pointer; }
.instructions-list li.checked::before {
  content: "✓"; background: var(--green);
  font-size: 1rem;
}
.instructions-list li.checked .step-content { opacity: 0.4; text-decoration: line-through; }
.ingredients-group-title {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 20px 0 4px;
}
.instructions-list { counter-reset: step; }
.instructions-list li {
  counter-increment: step;
  display: grid; grid-template-columns: 40px 1fr;
  gap: 16px; align-items: start;
  padding-bottom: 24px;
}
.instructions-list li::before {
  content: counter(step);
  width: 36px; height: 36px;
  background: var(--text); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.instructions-list li .step-content { padding-top: 6px; line-height: 32px; font-size: 18px; font-weight: 300; }
.instructions-list li .step-title {
  display: block; font-weight: 600;
  margin-bottom: 4px;
}
.recipe-notes {
  margin-top: 40px; padding: 24px;
  border: 1px solid #222;
  border-radius: var(--radius);
}
.recipe-notes h4 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #222; margin-bottom: 10px;
}
.recipe-notes p, .recipe-notes li { font-size: 0.9rem; line-height: 1.7; color: #222; }
.recipe-notes ul { list-style: disc; padding-left: 18px; }
.recipe-notes ul li { margin-bottom: 4px; }


/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-hero { background: #fff5f5; padding: 80px 0; text-align: center; }
.about-hero h1 { margin-bottom: 20px; }
.about-hero p {
  max-width: 640px; margin: 0 auto;
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.75;
}
.team-section { background: #f2f2f2; padding: 72px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: left; }
.team-card img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: 16px;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 0.9rem; color: var(--text-muted); }
.equipment-section { background: var(--bg-alt); }
.equipment-section .section-heading { text-align: left; margin-bottom: 12px; }
.equipment-section .section-note {
  color: var(--text-muted); font-size: 0.88rem;
  margin-bottom: 36px; line-height: 1.6;
}
.equipment-section .section-note a { color: var(--accent); text-decoration: underline; }
.equipment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.equipment-item {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.88rem; transition: all var(--ease);
}
.equipment-item::before { content: "↗"; font-size: 0.75rem; color: var(--accent); flex-shrink: 0; }
.equipment-item:hover { border-color: var(--accent); background: var(--accent-light); }


/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; padding: 80px 0;
}
.contact-info h1 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 500; }
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.94rem;
  color: var(--text); background: var(--bg);
  outline: none; transition: border-color var(--ease);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--text); }
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-submit {
  padding: 13px 28px; background: var(--text); color: #fff;
  border: none; border-radius: 100px;
  font-family: inherit; font-size: 0.94rem; font-weight: 500;
  align-self: flex-start; transition: background var(--ease);
}
.btn-submit:hover { background: var(--accent); }
.form-feedback {
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 0.88rem; display: none;
}
.form-feedback.success { background: #D1FAE5; color: #065F46; }
.form-feedback.error { background: #FEE2E2; color: #991B1B; }
.form-feedback.show { display: block; }


/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #fff;
  border-top: none;
  padding: 64px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e4ebf3;
  margin-bottom: 32px;
}
.footer-brand img { height: 30px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: #555; line-height: 1.65; }
.footer-col h4 {
  font-size: 0.76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #999; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: #1a1b1f; transition: color var(--ease); }
.footer-col ul a:hover { color: var(--text); }
.footer-newsletter-desc { font-size: 0.85rem; color: #555; margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 10px 14px;
  border: 1.5px solid #a6b1bf; border-radius: 100px;
  font-family: inherit; font-size: 0.85rem;
  outline: none; transition: border-color var(--ease);
  background: #fff; color: var(--text);
}
.newsletter-form input::placeholder { color: #999; }
.newsletter-form input:focus { border-color: var(--text); }
.newsletter-form button {
  padding: 10px 18px; background: #1a1b1f; color: #fff;
  border: none; border-radius: 100px;
  font-family: inherit; font-size: 0.82rem; font-weight: 600;
  transition: background var(--ease); white-space: nowrap;
}
.newsletter-form button:hover { background: #3a4554; }
.newsletter-success { font-size: 0.82rem; color: #065F46; margin-top: 8px; display: none; }
.newsletter-success.show { display: block; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copyright { font-size: 0.83rem; color: #3a4554; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #e4ebf3;
  transition: all var(--ease);
}
.footer-social a:hover { background: rgba(0,0,0,0.06); border-color: #c0cbd6; }
.footer-social img { width: 16px; height: 16px; object-fit: contain; }


/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1440px) {
  .hero-title { font-size: 96px; line-height: 92px; }
  .collection-links a, .collection-sep { font-size: 50px; line-height: 66px; }
  .what-is-body { font-size: 44px; line-height: 60px; }
  .what-is-label { font-size: 20px; line-height: 32px; }
  .recipe-hero-title { font-size: 64px; line-height: 76px; }
  .recipe-hero-desc { font-size: 24px; line-height: 36px; }
  .recipe-the-title { font-size: 56px; line-height: 64px; }
  .section-heading--left h2 { font-size: 40px; line-height: 56px; }
  .page-header h1 { font-size: 40px; line-height: 56px; }
  .banner-body { font-size: 28px; line-height: 42px; }
}

@media (max-width: 1100px) {
  .equipment-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .recipe-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 80px; line-height: 80px; }
  .collection-links a, .collection-sep { font-size: 40px; line-height: 56px; }
  .what-is-body { font-size: 36px; line-height: 52px; }
  .what-is-label { font-size: 18px; line-height: 28px; }
  .recipe-hero-title { font-size: 52px; line-height: 62px; }
  .recipe-the-title { font-size: 44px; line-height: 52px; }
  .section-heading--left h2 { font-size: 32px; line-height: 44px; }
  .page-header h1 { font-size: 32px; line-height: 44px; }
  .page-header p { font-size: 18px; line-height: 28px; }
  .banner-body { font-size: 24px; line-height: 36px; }
  .recipe-card-body h3 { font-size: 20px; line-height: 32px; }
}

@media (max-width: 900px) {
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-content { grid-template-columns: 1fr; gap: 40px; }
  .recipe-meta-row { flex-wrap: wrap; }
  .recipe-meta-item { min-width: 100px; }
  .promo-inner { flex-direction: column; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .recipe-hero-desc { font-size: 24px; line-height: 38px; }
  .recipe-hero-title { font-size: 44px; line-height: 56px; }
  .recipe-the-title { font-size: 36px; line-height: 48px; }
  .section-heading--left h2 { font-size: 28px; line-height: 40px; }
  .page-header h1 { font-size: 28px; line-height: 40px; }
}

@media (max-width: 768px) {
  .recipe-hero { grid-template-columns: 1fr; height: auto; }
  .recipe-hero-photo { height: 60vw; }
  .recipe-hero-info { padding: 40px 24px; }
  .recipe-hero-title { font-size: 36px; line-height: 44px; }
  .recipe-hero-desc { font-size: 18px; line-height: 28px; }
  .recipe-the-title { font-size: 32px; line-height: 40px; }
  .recipe-hero-tags .tag { font-size: 16px; line-height: 24px; }
  .what-is-label { font-size: 16px; line-height: 24px; }
  .section-heading--left h2 { font-size: 24px; line-height: 36px; }
  .page-header h1 { font-size: 24px; line-height: 36px; }
  .page-header p { font-size: 16px; line-height: 24px; }
  .recipe-card-body h3 { font-size: 18px; line-height: 28px; }
  .ingredients-list li { font-size: 16px; }
  .ingredients-list li em { font-size: 16px !important; }
  .instructions-list li .step-content { font-size: 16px; line-height: 26px; }
  .hero { min-height: 80vh; padding: 48px 24px; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .word-box { padding: 8px 32px 12px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .recipe-title { font-size: 1.8rem; }
  .collection-browser { grid-template-columns: 1fr; height: auto; }
  .collection-links a { font-size: 32px; line-height: 48px; }
  .collection-sep { font-size: 32px; }
  .collection-browser-img { height: 300px; }
  .collection-browser-panel { padding: 52px 36px; }
  .banner { margin: 0 20px; padding: 32px; }
  .container { padding: 0 24px; }
  .banner-text { max-width: 100%; }
  .banner-body { font-size: 24px; line-height: 36px; }
  .what-is-body { font-size: 32px; line-height: 48px; }
}

@media (max-width: 500px) {
  .recipe-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .category-links { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .category-links::-webkit-scrollbar { display: none; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-title { font-size: 2.2rem; min-height: 3.5em; }
}
