:root {
  --ivory: #f8f5ef;
  --warm-ivory: #fffaf2;
  --linen: #e9e1d6;
  --sand: #d9c9b7;
  --brown: #8b6a4e;
  --brown-dark: #654a35;
  --charcoal: #2e2a26;
  --muted: #74685f;
  --sage: #b8c1ae;
  --white: #ffffff;
  --line: rgba(139, 106, 78, 0.18);
  --shadow: 0 28px 80px rgba(46, 42, 38, 0.13);
  --soft-shadow: 0 18px 50px rgba(46, 42, 38, 0.08);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: var(--brown); color: var(--ivory); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(22px, 6vw, 86px);
  background: rgba(248, 245, 239, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(139, 106, 78, 0.08);
  transition: padding 260ms ease, background 260ms ease, box-shadow 260ms ease;
}
.site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(248, 245, 239, 0.96);
  box-shadow: 0 12px 38px rgba(46, 42, 38, 0.08);
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.nav a { position: relative; padding: 8px 0; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--brown);
  transition: width 220ms ease;
}
.nav a:hover::after { width: 100%; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.76);
  color: var(--charcoal);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--charcoal);
  margin: 5px auto;
  transition: transform 220ms ease, opacity 220ms ease;
}
.menu-toggle.active span { opacity: 0; }
.menu-toggle.active::before { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active::after { transform: translateY(-6.5px) rotate(-45deg); }

main { position: relative; }
section { padding: clamp(76px, 10vw, 132px) clamp(22px, 6vw, 86px); }
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding-top: 128px;
  background:
    radial-gradient(circle at 18% 22%, rgba(184, 193, 174, 0.22), transparent 29%),
    linear-gradient(135deg, var(--ivory), #efe5d8 100%);
}
.hero-copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--charcoal); }
.hero h1,
.philosophy h2,
.product-copy h2,
.section-heading h2,
.coming-soon h2,
.newsletter h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(58px, 8vw, 112px);
  max-width: 760px;
}
.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 20px);
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.btn, .newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 28px;
  border: 1px solid var(--brown);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}
.btn:hover, .newsletter button:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(101, 74, 53, 0.18); }
.btn.primary, .newsletter button { background: var(--brown); color: var(--ivory); }
.btn.primary:hover, .newsletter button:hover { background: var(--brown-dark); }
.btn.secondary { color: var(--brown); background: rgba(255, 250, 242, 0.45); }
.btn.secondary:hover { background: var(--warm-ivory); }
.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -5% -6% 12%;
  border: 1px solid rgba(139, 106, 78, 0.24);
  border-radius: 320px 320px 18px 18px;
  z-index: 0;
}
.hero-media img {
  position: relative;
  z-index: 1;
  width: min(570px, 100%);
  margin-left: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 320px 320px 18px 18px;
  box-shadow: var(--shadow);
}

.philosophy { background: var(--warm-ivory); }
.narrow { max-width: 880px; margin: 0 auto; text-align: center; }
.narrow h2, .section-heading h2, .newsletter h2 { font-size: clamp(42px, 5.8vw, 78px); margin: 0 0 24px; }
.narrow p { color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); }

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}
.product-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.product-copy { max-width: 560px; }
.product-copy h2 { font-size: clamp(54px, 6.8vw, 96px); margin: 0 0 12px; }
.product-copy p { color: var(--muted); }
.notes {
  color: var(--brown) !important;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(23px, 2.4vw, 33px);
  line-height: 1.2;
}
.checklist { list-style: none; padding: 0; margin: 30px 0; border-top: 1px solid var(--line); }
.checklist li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
}
.checklist li::before { content: "✓"; color: var(--brown); font-weight: 800; margin-right: 10px; }

.why { background: linear-gradient(180deg, var(--ivory), #f0e8dc); }
.section-heading { max-width: 820px; margin: 0 auto 58px; text-align: center; }
.section-heading h2 { font-size: clamp(42px, 5.4vw, 74px); margin: 0; }
.cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  min-height: 250px;
  padding: 34px 28px;
  border: 1px solid rgba(139, 106, 78, 0.14);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: var(--soft-shadow);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(139, 106, 78, 0.34); }
.card span { font-size: 28px; }
.card h3 { margin: 16px 0 10px; font-family: "Cormorant Garamond", serif; font-size: 31px; line-height: 1; font-weight: 600; }
.card p { margin: 0; color: var(--muted); }

.gallery { background: var(--linen); }
.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 18px;
  align-items: stretch;
}
.gallery-grid img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  transition: transform 420ms ease, filter 420ms ease;
}
.gallery-grid img:hover { transform: scale(1.015); filter: saturate(0.95) contrast(1.02); }
.gallery-grid img:first-child { height: 680px; }

.coming-soon {
  min-height: 520px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  background:
    linear-gradient(rgba(46, 42, 38, 0.58), rgba(46, 42, 38, 0.58)),
    url('../images/air-dreams.jpg') center/cover no-repeat;
}
.coming-soon h2 { color: var(--ivory); }
.coming-soon p { color: rgba(248, 245, 239, 0.86); }
.coming-soon .eyebrow { color: var(--linen); }

.newsletter { background: var(--ivory); }
.newsletter-box {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px);
  text-align: center;
  border: 1px solid rgba(139, 106, 78, 0.16);
  border-radius: 32px;
  background: var(--warm-ivory);
  box-shadow: var(--shadow);
}
.newsletter-box p { color: var(--muted); }
.newsletter form {
  display: flex;
  gap: 12px;
  max-width: 570px;
  margin: 34px auto 0;
}
.newsletter input {
  flex: 1;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(139, 106, 78, 0.28);
  background: var(--white);
  padding: 0 22px;
  color: var(--charcoal);
  outline: none;
}
.newsletter input:focus { border-color: var(--brown); box-shadow: 0 0 0 4px rgba(139, 106, 78, 0.12); }

.footer {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 44px;
  padding: clamp(56px, 8vw, 86px) clamp(22px, 6vw, 86px);
  background: var(--charcoal);
  color: var(--ivory);
}
.footer h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  letter-spacing: 0.18em;
}
.footer p { color: rgba(248, 245, 239, 0.76); }
.footer a { display: block; width: max-content; margin: 8px 0; color: var(--linen); }
.footer a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 780ms ease, transform 780ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: grid;
    gap: 6px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 10px; }
  .hero, .product-feature { grid-template-columns: 1fr; }
  .hero { padding-top: 116px; }
  .hero-media img { margin: 0 auto; max-height: 650px; }
  .product-copy { max-width: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img, .gallery-grid img:first-child { height: min(72vw, 620px); }
  .footer { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding-left: 18px; padding-right: 18px; }
  section { padding-left: 18px; padding-right: 18px; }
  .hero { gap: 44px; }
  .hero h1 { font-size: clamp(50px, 16vw, 72px); }
  .actions, .newsletter form { flex-direction: column; }
  .btn, .newsletter button { width: 100%; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .newsletter-box { border-radius: 24px; }
  .gallery-grid img, .gallery-grid img:first-child { height: auto; min-height: 340px; }
}

/* Milestone 3: Shopping Experience */
.page-hero {
  padding-top: 150px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1,
.product-info h1,
.coming-page h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.92;
  margin: 10px 0 24px;
}
.shop-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-top: 20px;
}
.shop-card {
  background: var(--warm-ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.shop-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.shop-card div { padding: 34px; }
.shop-card h2,
.detail-bands h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  margin: 8px 0 16px;
}
.price {
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brown-dark);
  margin: 22px 0;
}
.muted-card { opacity: .92; }
.product-page {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}
.main-product-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}
.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.thumb-row button {
  border: 1px solid var(--line);
  background: var(--warm-ivory);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.thumb-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.product-info {
  position: sticky;
  top: 110px;
}
.detail-bands {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.detail-bands div {
  background: var(--warm-ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.coming-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding-top: 150px;
}
.coming-page img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 860px) {
  .shop-grid,
  .product-page,
  .detail-bands,
  .coming-page {
    grid-template-columns: 1fr;
  }
  .product-info { position: static; }
  .shop-card img { height: 330px; }
  .thumb-row img { height: 88px; }
}


/* Final launch pages */
.content-wrap { max-width: var(--max); margin: 0 auto; padding: clamp(48px, 7vw, 92px) clamp(22px, 6vw, 86px); }
.two-col, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 76px); align-items: center; }
.rounded-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.rich-copy h2, .contact-card h2, .policy-copy h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(36px, 5vw, 60px); line-height: 1; margin: 0 0 18px; }
.rich-copy p, .policy-copy p, .contact-card p { color: var(--muted); }
.contact-card, .faq-list details, .policy-copy { background: var(--warm-ivory); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--soft-shadow); padding: clamp(28px, 5vw, 50px); }
.faq-list { max-width: 900px; }
.faq-list details { margin-bottom: 16px; }
.faq-list summary { cursor: pointer; font-weight: 800; color: var(--brown-dark); }
.faq-list p { color: var(--muted); margin-bottom: 0; }
.policy-copy { max-width: 880px; }
.policy-copy a { color: var(--brown-dark); text-decoration: underline; text-underline-offset: 3px; }
.tiny { font-size: 13px; opacity: .78; }
.article-grid.cards { grid-template-columns: repeat(3, 1fr); padding-top: 0; }
.form-success { color: var(--brown-dark); font-weight: 700; }
:focus-visible { outline: 3px solid rgba(139, 106, 78, .45); outline-offset: 4px; border-radius: 10px; }
@media (max-width: 860px) { .two-col, .contact-grid, .article-grid.cards { grid-template-columns: 1fr; } }

.hidden-field { display: none !important; }
.form-message {
  width: 100%;
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--brown);
  text-align: center;
}
.form-message.success { color: #6f7d55; font-weight: 600; }
.form-message.error { color: #9b3d30; }
.newsletter button[disabled] { opacity: 0.75; cursor: wait; transform: none; }
