/* ============================================================
   PARADISE MARKET GARDEN — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --bg:          #f7f4ed;
  --bg-alt:      #ede8d8;
  --dark:        #1a1a12;
  --green:       #2b4a1c;
  --green-mid:   #3f6830;
  --text:        #3a3a2a;
  --muted:       #7a7a62;
  --border:      #d8d2c0;
  --white:       #ffffff;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', 'Helvetica Neue', sans-serif;

  --max:    1240px;
  --nav-h:  76px;
  --pad:    clamp(1.5rem, 5vw, 4rem);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.75rem;
}

.italic-serif { font-family: var(--serif); font-style: italic; font-weight: 300; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 20px rgba(26,26,18,0.06);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
  height: 52px;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.nav__links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover { color: var(--green); }
.nav__links a:hover::after { width: 100%; }

.nav__links a.active { color: var(--green); }
.nav__links a.active::after { width: 100%; }

/* Waitlist CTA in nav */
.nav__links .nav-cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.75rem;
}
.nav__links .nav-cta:hover {
  background: var(--green);
  color: var(--white);
}
.nav__links .nav-cta::after { display: none; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--pad) 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.nav__mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.nav__mobile a {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--green); padding-left: 0.5rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}
.btn-dark:hover {
  background: var(--green);
  border-color: var(--green);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
}
.btn-green:hover { background: var(--green-mid); border-color: var(--green-mid); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vh, 5rem);
  margin-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10,12,8,0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}

.hero__content h1 {
  color: var(--white);
  font-weight: 300;
  font-style: italic;
  max-width: 14ch;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  max-width: 48ch;
  margin-bottom: 2rem;
  font-family: var(--sans);
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(260px, 40vh, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-h);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,12,8,0.45);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__content h1 {
  color: var(--white);
  font-weight: 300;
  font-style: italic;
}

/* ── Dividers ────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider span {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.2em;
}

/* ── Statement band ──────────────────────────────────────── */
.statement {
  background: var(--dark);
  padding: clamp(4rem, 7vw, 7rem) var(--pad);
  text-align: center;
}

.statement h2 {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  max-width: 20ch;
  margin: 0 auto;
  line-height: 1.2;
}

.statement h2 em {
  font-style: normal;
  color: rgba(255,255,255,0.45);
}

.statement p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 52ch;
  margin: 1.5rem auto 0;
}

/* ── Feature cards (numbered) ────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}

.feature {
  position: relative;
  overflow: hidden;
}

.feature__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.feature:hover .feature__img { transform: scale(1.04); }

.feature__body {
  padding: 2rem 2rem 2.5rem;
  background: var(--white);
  position: relative;
}

.feature__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bg-alt);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature__body h4 { margin-bottom: 0.6rem; }
.feature__body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ── Products ────────────────────────────────────────────── */
.products {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.products .container { color: var(--white); }

.products__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.products__header h2 {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.product-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.5s, transform 0.7s var(--ease);
}

.product-card:hover .product-card__img {
  opacity: 0.5;
  transform: scale(1.05);
}

.product-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.product-card__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
}

.product-card__list {
  list-style: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.product-card__list li::before {
  content: '— ';
  opacity: 0.5;
}

.products__cta {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.products__cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

/* ── Two-col content ─────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.two-col__text h2 { margin-bottom: 1rem; }

.two-col__text p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* ── Our Story ───────────────────────────────────────────── */
.story-section {
  background: var(--bg-alt);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.story-inner__img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.story-inner__body {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-inner__body h2 { margin-bottom: 1rem; }
.story-inner__body p { color: var(--muted); margin-bottom: 1.2rem; }

/* ── Waitlist CTA band ───────────────────────────────────── */
.waitlist-band {
  background: var(--green);
  padding: clamp(4rem, 7vw, 7rem) 0;
  text-align: center;
}

.waitlist-band h2 { color: var(--white); font-style: italic; font-weight: 300; margin-bottom: 0.5rem; }
.waitlist-band h3 { color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 2rem; font-style: italic; }

.waitlist-band ul {
  list-style: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  display: inline-block;
  text-align: left;
}

.waitlist-band ul li {
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.waitlist-band ul li::before {
  content: '✓';
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.waitlist-band .tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-top: 1rem;
}

/* ── Email signup form ───────────────────────────────────── */
.signup-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
}

.signup-form input::placeholder { color: rgba(255,255,255,0.5); }
.signup-form input:focus {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.18);
}

.signup-form button {
  padding: 0.85rem 1.5rem;
  background: var(--white);
  color: var(--green);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.signup-form button:hover {
  background: var(--dark);
  color: var(--white);
}

.form-success {
  display: none;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ── Photo grid ──────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.photo-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-alt);
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.photo-grid__item:hover img { transform: scale(1.05); }

/* ── Follow us section ───────────────────────────────────── */
.follow-us {
  background: var(--dark);
  padding: clamp(3rem, 5vw, 5rem) 0;
  text-align: center;
}

.follow-us h2 {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.follow-us__handle {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  display: block;
}

.follow-us__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-bottom: 2rem;
}

.follow-us__grid .grid-slot {
  aspect-ratio: 1;
  overflow: hidden;
  background: #2a2a22;
  position: relative;
}

.follow-us__grid .grid-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.3s;
}

.follow-us__grid .grid-slot:hover img {
  transform: scale(1.07);
  opacity: 0.75;
}

/* Placeholder slots (no image yet) */
.follow-us__grid .grid-slot.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow-us__grid .grid-slot.placeholder::after {
  content: '🌿';
  font-size: 1.5rem;
  opacity: 0.3;
}

.follow-us__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.follow-us__links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.follow-us__links a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1.2rem;
}

.footer__brand .tagline-footer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
}

.footer__col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer__col ul li {
  margin-bottom: 0.5rem;
}

.footer__col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__col ul li a:hover { color: var(--white); }

.footer__col address {
  font-style: normal;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer__col address a { transition: color 0.2s; }
.footer__col address a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--pad) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

.footer__fresh-sheet {
  max-width: 320px;
}

.footer__fresh-sheet p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.footer__signup { display: flex; gap: 0; }

.footer__signup input[type="email"] {
  flex: 1;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  outline: none;
  min-width: 0;
  transition: border-color 0.2s;
}

.footer__signup input::placeholder { color: rgba(255,255,255,0.3); }
.footer__signup input:focus { border-color: rgba(255,255,255,0.5); }

.footer__signup button {
  padding: 0.65rem 1rem;
  background: var(--green);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer__signup button:hover { background: var(--green-mid); }

/* ── About page specifics ────────────────────────────────── */
.approach {
  background: var(--white);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.approach-inner h2 { margin-bottom: 1.5rem; }

.approach-inner p { color: var(--muted); }

.approach-list {
  list-style: none;
  margin-top: 1.5rem;
}

.approach-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.approach-list li:first-child { border-top: 1px solid var(--border); }

.approach-list li strong {
  display: block;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.ethos-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.ethos-item {
  background: var(--bg);
  padding: 2rem;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.5;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 3rem;
}

.offering-card {
  position: relative;
  overflow: hidden;
}

.offering-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.offering-card:hover .offering-card__img { transform: scale(1.04); }

.offering-card__body { padding: 1.5rem 0; }

.offering-card__body h3 { margin-bottom: 0.75rem; }
.offering-card__body p { color: var(--muted); font-size: 0.9rem; }

/* ── FAQs ────────────────────────────────────────────────── */
.faqs-section {
  max-width: 780px;
  margin: 0 auto;
}

.faq-intro {
  background: var(--bg-alt);
  border-left: 3px solid var(--green);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
}

.faq-group { margin-bottom: 2.5rem; }

.faq-group__title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.2s;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}

.faq-question:hover { color: var(--green); }

.faq-question .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.faq-question .icon::before {
  width: 12px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question .icon::after {
  width: 1.5px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-question .icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-question { color: var(--green); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer__inner {
  padding-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-answer__inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.faq-answer__inner ul li { margin-bottom: 0.3rem; }

/* ── Contact page ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-info p { color: var(--muted); margin-bottom: 1rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:first-of-type { border-top: 1px solid var(--border); }

.contact-detail .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green);
  min-width: 80px;
  flex-shrink: 0;
}

.contact-detail .value {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-detail .value a { transition: color 0.2s; }
.contact-detail .value a:hover { color: var(--green); }

.contact-form-wrap h3 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  margin-top: 1.5rem;
}

.contact-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: clamp(4rem, 7vw, 7rem);
}

.contact-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ── Waitlist page ───────────────────────────────────────── */
.waitlist-page {
  max-width: 700px;
  margin: 0 auto;
}

.waitlist-page h1 { margin-bottom: 0.5rem; }
.waitlist-page .lead {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 3rem;
}

.waitlist-form .form-group label { color: var(--text); }

.check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}

.check-item span {
  font-size: 0.9rem;
  color: var(--text);
}

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── Animations ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .two-col,
  .approach-inner,
  .story-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .two-col.reverse { direction: ltr; }

  .story-inner__img { min-height: 300px; height: 360px; }

  .follow-us__grid { grid-template-columns: repeat(3, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .features { grid-template-columns: 1fr; }

  .products__grid { grid-template-columns: 1fr; }
  .product-card { aspect-ratio: 16/10; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }

  .follow-us__grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .signup-form { flex-direction: column; }
  .signup-form input,
  .signup-form button { width: 100%; }

  .check-group { grid-template-columns: 1fr; }

  .contact-images { grid-template-columns: 1fr; }
  .contact-images img { aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .follow-us__grid { grid-template-columns: repeat(2, 1fr); }
}
