@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Baskerville';
  src: url('../assets/fonts/Baskerville-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Baskerville';
  src: url('../assets/fonts/Baskerville-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Baskerville';
  src: url('../assets/fonts/Baskerville-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #e1d4c4;
  --cream-light: #f2ece3;
  --brown: #341e11;
  --brown-soft: #4a2f1e;
  --ink: #171310;
  --gold: #deb500;
  --white: #ffffff;
  --font-serif: 'Baskerville', Georgia, 'Times New Roman', serif;
  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  margin: 0.2em 0;
}
.section-head p { color: #5b5048; line-height: 1.6; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--brown); color: var(--cream-light); }
.btn-primary:hover { background: var(--ink); }
.btn-outline { background: transparent; border-color: rgba(242,236,227,0.5); color: var(--cream-light); }
.btn-outline:hover { background: var(--cream); color: var(--brown); }
.btn-light { background: var(--cream); color: var(--brown); }
.btn-light:hover { background: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(23, 19, 16, 0.9);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo img { height: 30px; width: auto; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 0.92rem;
  color: var(--cream-light);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--cream);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .btn { padding: 10px 22px; font-size: 0.85rem; }
.menu-toggle {
  display: none;
  background: none; border: none;
  width: 30px; height: 22px;
  position: relative;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px; background: var(--cream-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle span { top: 10px; }
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span::after { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--brown);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  transform: translateY(-100%); transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { color: var(--cream-light); font-size: 1.4rem; font-family: var(--font-serif); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream-light);
  background: #0d0906;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 22% 68%;
  transform: scale(1.2);
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(9,6,4,0.05) 0%, rgba(9,6,4,0.1) 35%, rgba(9,6,4,0.45) 65%, rgba(9,6,4,0.6) 100%),
              linear-gradient(0deg, rgba(9,6,4,0.55) 0%, rgba(9,6,4,0.05) 25%, rgba(9,6,4,0.05) 70%, rgba(9,6,4,0.4) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 620px; padding: 0 24px; }
.hero-logo-lockup { margin-bottom: 46px; }
.hero-logo-lockup img { height: 108px; width: auto; margin: 0 auto; }
.hero-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.5;
  margin: 0 0 14px;
}
.hero-source {
  font-family: var(--font-serif);
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 22px; height: 36px; border: 2px solid rgba(242,236,227,0.6);
  border-radius: 12px;
}
.scroll-cue::after {
  content: ''; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px;
  background: var(--cream-light); border-radius: 2px; transform: translateX(-50%);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 18px; } 100% { opacity: 0; top: 6px; } }

/* ---------- Sertu, The Modern Way ---------- */
.sertu-way { padding: 110px 0 0; text-align: center; background: var(--cream); }
.flanked-title { display: flex; align-items: center; gap: 24px; max-width: 760px; margin: 0 auto 56px; }
.flanked-title .flank-line { flex: 1; height: 1px; background: var(--brown-soft); opacity: 0.35; }
.flanked-title h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  white-space: nowrap;
  margin: 0;
}
em.script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brown-soft);
}
em.script-lg { font-size: 1.55em; line-height: 1; }
.way-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.way-card {
  position: relative;
  height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.way-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(52,30,17,0.78) 0%, rgba(52,30,17,0.45) 35%, rgba(52,30,17,0.82) 100%);
}
.way-card-inner {
  position: relative; z-index: 2;
  padding: 56px 20px 0;
  text-align: center;
}
.way-card-inner h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--cream-light);
  line-height: 1.25;
  margin: 0 0 22px;
}
.way-card-inner p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(242,236,227,0.88);
}

/* ---------- Bergamot spotlight ---------- */
.bergamot {
  position: relative;
  color: var(--cream-light);
  padding: 130px 0;
  background: #241209 url('../assets/images/bergamot-bg.jpg') center/cover no-repeat;
}
.bergamot::before { content:''; position:absolute; inset:0; background: rgba(20,10,4,0.55); }
.bergamot .wrap { position: relative; z-index: 2; max-width: 620px; text-align: center; }
.bergamot .eyebrow { color: var(--cream); }
.bergamot h2 { font-family: var(--font-serif); font-size: clamp(2.2rem,5vw,3.4rem); font-weight: 400; margin: 8px 0 26px; }
.bergamot p.desc { line-height: 1.75; margin-bottom: 34px; opacity: 0.92; }
.benefit-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; }
.benefit-tags li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; letter-spacing: 0.02em; }
.benefit-tags li::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--cream); }

/* ---------- Ritual: Cleansing + Purification (merged) ---------- */
.ritual { padding: 110px 0 100px; background: var(--cream-light); }
.ritual-top { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 130px; }
.peace-art { position: relative; height: 460px; z-index: 1; }
.peace-copy { position: relative; z-index: 1; }
.peace-art img { position: absolute; object-fit: contain; filter: drop-shadow(0 30px 45px rgba(52,30,17,0.3)); }
.peace-art .img-back { width: 46%; left: 10%; top: 0; transform: rotate(-9deg); }
.peace-art .img-front { width: 50%; right: 6%; bottom: 2%; transform: rotate(13deg); }
.peace-copy h2 {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin: 0 0 26px; line-height: 1.15;
}
.peace-copy p { line-height: 1.8; color: #5b5048; margin: 0 0 16px; }
.peace-copy p em { font-family: var(--font-serif); font-style: italic; color: var(--brown-soft); }
.clay-decoration {
  position: absolute; right: -50px; bottom: -70px; width: 300px; height: auto;
  opacity: 0.9; pointer-events: none; z-index: 0;
}

.steps-head { text-align: center; margin-bottom: 56px; }
.steps-head h2 { font-family: var(--font-sans); font-weight: 400; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 0 0 10px; }
.steps-head p { font-size: 1.1rem; color: var(--brown-soft); margin: 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  position: relative; z-index: 2;
}
.step { text-align: center; padding: 0 8px; }
.step img { width: 150px; height: 150px; object-fit: contain; margin: 0 auto 18px; }
.step p { font-size: 0.9rem; line-height: 1.55; color: #5b5048; max-width: 220px; margin: 0 auto; }
.step p em { font-style: italic; color: var(--brown-soft); }

/* ---------- Product ---------- */
.product { background: var(--cream-light); }
.product-photo { width: 100%; height: 620px; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

.product-details { position: relative; padding: 70px 0 110px; overflow: hidden; }
.product-details .wrap { position: relative; z-index: 1; max-width: 720px; text-align: center; }
.clay-decoration-static {
  position: absolute; left: -70px; bottom: -30px; width: 240px; height: auto;
  opacity: 0.9; pointer-events: none; z-index: 0;
}

.product-title { font-family: var(--font-sans); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.3rem); margin: 0 0 10px; }
.product-scent { font-family: var(--font-sans); font-size: 1rem; color: var(--brown-soft); margin: 0 0 50px; }
.product-scent::before { content: '• '; }

.bottle-picker { display: flex; justify-content: center; align-items: flex-end; gap: 90px; margin-bottom: 44px; flex-wrap: wrap; background: none; border: none; }
.bottle-opt {
  background: none; border: none; padding: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0.55; transition: opacity 0.2s ease;
}
.bottle-opt.active, .bottle-opt:hover { opacity: 1; }
.bottle-opt img { height: 260px; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(52,30,17,0.25)); }
.bottle-opt:nth-child(2) img { height: 190px; }
.bottle-opt .bsize { font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.bottle-opt .bprice { font-size: 0.95rem; color: var(--brown-soft); margin-top: -8px; }

.add-row { display: flex; gap: 14px; margin-bottom: 44px; flex-wrap: wrap; justify-content: center; }
.qty { display: flex; align-items: center; border: 1px solid rgba(52,30,17,0.18); border-radius: 999px; overflow: hidden; background: rgba(255,255,255,0.5); }
.qty button { background: none; border: none; width: 40px; height: 46px; font-size: 1.1rem; }
.qty span { width: 34px; text-align: center; font-size: 0.95rem; }
.add-row .btn-primary { min-width: 220px; }

.ingredients-block { max-width: 480px; margin: 0 auto; text-align: left; }
.ingredients-block h4 { font-family: var(--font-serif); font-weight: 400; font-size: 1.3rem; margin: 0 0 20px; }
.ingredient-names { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.ingredient-names span {
  font-size: 0.78rem; color: var(--brown-soft); font-weight: 600;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(52,30,17,0.15); border-radius: 999px;
  padding: 8px 16px;
}
.full-ingredients { border-top: 1px solid rgba(52,30,17,0.15); padding-top: 16px; }
.full-ingredients summary { cursor: pointer; font-size: 0.85rem; font-weight: 600; color: var(--brown-soft); }
.full-ingredients p { font-size: 0.78rem; line-height: 1.7; color: #6b5f55; margin-top: 12px; }

/* ---------- Trust badges + Benefits + Disclaimer (standalone) ---------- */
.trust-benefits { padding: 100px 0; background: var(--cream-light); text-align: center; }
.badges-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; margin-bottom: 90px; }
.badges-row img { height: 96px; width: 96px; object-fit: contain; }
.badges-row img.badge-rect { height: 62px; width: auto; align-self: center; }

.tb-heading { font-family: var(--font-sans); font-weight: 500; font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin: 0 0 56px; }
.ib-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 900px; margin: 0 auto 70px; }
.ib-item img { width: 92px; height: 92px; object-fit: contain; margin: 0 auto 18px; }
.ib-item h4 { font-family: var(--font-sans); font-weight: 500; font-size: 1.15rem; margin: 0 0 22px; line-height: 1.3; }
.ib-desc { border: 1px solid rgba(52,30,17,0.2); border-radius: 4px; padding: 20px 18px; }
.ib-desc p { font-size: 0.85rem; line-height: 1.6; color: #5b5048; margin: 0; }

.disclaimer-standalone { max-width: 760px; margin: 0 auto; }
.disclaimer-standalone h5 { font-family: var(--font-sans); font-weight: 500; font-size: 1.8rem; letter-spacing: 0.02em; margin: 0 0 18px; }
.disclaimer-standalone p { font-size: 0.9rem; line-height: 1.7; color: #5b5048; margin: 0; }

/* ---------- Perfect for ---------- */
.perfect-for { padding: 110px 0; text-align: center; background: var(--cream-light); }
.perfect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.perfect-card { position: relative; border-radius: 16px; overflow: hidden; height: 420px; }
.perfect-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.perfect-card:hover img { transform: scale(1.06); }
.perfect-card::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(15,9,5,0.75) 100%); }
.perfect-card h3 {
  position: absolute; left: 24px; bottom: 22px; z-index: 2;
  font-family: var(--font-serif); font-weight: 400; color: var(--cream-light);
  font-size: 1.6rem; margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 120px 0; background: var(--brown); color: var(--cream-light); }
.testimonials .section-head h2 { color: var(--cream-light); }
.testimonials .section-head p { color: rgba(242,236,227,0.7); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card { background: rgba(242,236,227,0.06); border: 1px solid rgba(242,236,227,0.15); border-radius: 16px; padding: 28px; }
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p.quote { font-size: 0.92rem; line-height: 1.65; margin: 0 0 22px; color: rgba(242,236,227,0.9); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.reviewer span { font-size: 0.85rem; font-weight: 600; }

/* ---------- Distributed by / CTA breaker ---------- */
.distributed { position: relative; padding: 110px 0; }
.distributed .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.distributed-img { border-radius: 16px; overflow: hidden; height: 340px; }
.distributed-img img { width: 100%; height: 100%; object-fit: cover; }
.distributed-copy .eyebrow { display: block; margin-bottom: 10px; }
.distributed-copy img.klogo { height: 30px; margin-bottom: 22px; }
.distributed-copy p { line-height: 1.8; color: #5b5048; }

.breaker {
  margin: 0 24px 110px;
  max-width: calc(var(--max) - 48px);
  margin-left: auto; margin-right: auto;
  background: var(--brown); color: var(--cream-light);
  border-radius: 24px; padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.breaker h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 26px; }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--cream-light); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 4px; font-size: 1rem; font-weight: 500;
}
.faq-q .plus { font-size: 1.4rem; font-weight: 300; transition: transform 0.25s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: 0.9rem; line-height: 1.7; color: #5b5048; padding: 0 4px 22px; margin: 0; }

/* ---------- Contact ---------- */
.contact { position: relative; padding: 110px 0; }
.contact .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; }
.contact-info .eyebrow { display: block; margin-bottom: 10px; }
.contact-info h2 { font-family: var(--font-sans); font-weight: 500; font-size: clamp(1.9rem,3.2vw,2.4rem); margin: 0 0 16px; }
.contact-info p.lead { color: #5b5048; line-height: 1.7; margin-bottom: 30px; }
.contact-detail { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; margin-bottom: 14px; }
.contact-detail .ic { width: 34px; height: 34px; border-radius: 50%; background: var(--cream); display:flex; align-items:center; justify-content:center; font-size: 0.9rem; }

.contact-form { background: var(--cream-light); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
.contact-form label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: #6b5f55; margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--cream); background: var(--white);
  border-radius: 10px; padding: 13px 16px; font-family: inherit; font-size: 0.92rem; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--brown-soft); outline-offset: 1px; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.82rem; margin-top: 14px; color: var(--brown-soft); display: none; }
.form-note.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown); color: var(--cream-light); padding: 80px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(242,236,227,0.15); }
.footer-brand img { height: 34px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(242,236,227,0.65); max-width: 260px; }
.footer-col h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 18px; color: rgba(242,236,227,0.5); }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 12px; color: rgba(242,236,227,0.9); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(242,236,227,0.5); margin: 0; }
.socials { display: flex; gap: 14px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(242,236,227,0.1); display: flex; align-items: center; justify-content: center; }
.socials img { width: 16px; height: 16px; object-fit: contain; filter: brightness(0) invert(1); }

.clay-decoration-side {
  position: absolute; bottom: -50px; width: 260px; height: auto;
  opacity: 0.85; pointer-events: none; z-index: 0;
}
.clay-decoration-side.clay-right { right: -60px; }
.clay-decoration-side.clay-left { left: -60px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .way-cards { grid-template-columns: repeat(3, 1fr); }
  .way-card { height: 520px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; }
  .product-photo { height: 480px; }
  .bottle-picker { gap: 50px; }
  .perfect-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .distributed .wrap { grid-template-columns: 1fr; }
  .distributed-img { order: -1; }
  .contact .wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ib-grid { grid-template-columns: 1fr; max-width: 360px; }
}
@media (max-width: 720px) {
  .nav-links, .header-actions .btn-outline { display: none; }
  .menu-toggle { display: block; }
  .way-cards { grid-template-columns: repeat(2, 1fr); }
  .way-card { height: 460px; }
  .way-card:last-child { grid-column: 1 / -1; }
  .flanked-title { gap: 12px; }
  .flanked-title h2 { white-space: normal; font-size: 1.5rem; }
  .ritual-top { grid-template-columns: 1fr; }
  .peace-art { height: 340px; margin-bottom: 10px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .clay-decoration { width: 180px; right: -40px; bottom: -30px; opacity: 0.6; }
  .clay-decoration-static { width: 160px; left: -40px; bottom: -10px; opacity: 0.7; }
  .clay-decoration-side { width: 160px; opacity: 0.7; }
  .clay-decoration-side.clay-right { right: -40px; }
  .clay-decoration-side.clay-left { left: -40px; }
  .product-photo { height: 360px; }
  .bottle-picker { gap: 30px; }
  .bottle-opt img { height: 190px; }
  .bottle-opt:nth-child(2) img { height: 140px; }
  .hero { display: block; min-height: 100vh; }
  .hero-bg { object-position: 30% 22%; transform: scale(1); }
  .hero-inner {
    position: relative; width: 100%; max-width: 100%;
    height: calc(100vh - 40px);
    padding: 0 20px;
  }
  .hero-logo-lockup {
    position: absolute; top: 90px; left: 50%; transform: translateX(-50%);
    margin: 0; width: 100%;
  }
  .hero-logo-lockup img { height: 52px; margin: 0 auto; }
  .hero-quote-block {
    position: absolute; top: 46%; right: 20px; width: 68%;
    text-align: right;
  }
  .hero-quote {
    font-size: clamp(0.92rem, 3.6vw, 1.05rem);
    line-height: 1.35;
    margin: 0 0 8px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.65);
  }
  .hero-source {
    margin-bottom: 0;
    font-size: 0.85rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  }
  .hero-bottom-group { position: absolute; left: 20px; right: 20px; bottom: 30px; }
  .hero-ctas .btn { width: 100%; padding: 11px 24px; font-size: 0.88rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .scroll-cue { display: none; }
  .perfect-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .breaker { padding: 48px 24px; margin-left: 16px; margin-right: 16px; }
  .badges-row img { height: 76px; width: 76px; }
}
