:root {
  --ink: #1f2d2a;
  --muted: #62706d;
  --green: #315f55;
  --green-dark: #21483f;
  --green-light: #e8f0ed;
  --cream: #f7f3eb;
  --line: #dce4e1;
  --white: #fff;
  --accent: #d29c55;
  --shadow: 0 24px 65px rgba(35, 64, 57, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}
main, section, header, footer, div, article { min-width: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -.035em;
  line-height: 1.12;
}
h1 { max-width: 690px; margin-bottom: 24px; font-size: clamp(3rem, 5.2vw, 5.4rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 3.8vw, 4rem); }
h3 { line-height: 1.28; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 12px clamp(24px, 6vw, 100px);
  border-bottom: 1px solid rgba(220, 228, 225, .8);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(15px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 15px; line-height: 1.05; text-transform: uppercase; letter-spacing: .06em; }
.brand strong { color: var(--green); font-size: 18px; }
.brand-mark { display: inline-flex; align-items: flex-end; gap: 3px; width: 28px; height: 28px; padding: 5px; border-radius: 7px; background: var(--green); }
.brand-mark span { width: 4px; border-radius: 5px; background: #fff; }
.brand-mark span:nth-child(1) { height: 10px; }
.brand-mark span:nth-child(2) { height: 17px; }
.brand-mark span:nth-child(3) { height: 13px; }
nav { display: flex; gap: clamp(18px, 3vw, 42px); font-size: 14px; font-weight: 600; }
nav a:hover { color: var(--green); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 27px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 12px 30px rgba(49, 95, 85, .22); }
.button-small { min-height: 44px; padding: 0 20px; font-size: 13px; }
.button-light { border-color: var(--white); color: var(--green-dark); background: var(--white); }
.button-light:hover { color: var(--white); background: transparent; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 700; }
.text-link:hover { color: var(--green); border-color: var(--green); }
.strong-link { color: var(--green); border-color: var(--green); }
.eyebrow { margin-bottom: 16px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.eyebrow.light { color: #d9e7e2; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  min-height: 720px;
  padding: 80px clamp(24px, 6vw, 100px);
  overflow: hidden;
  background: linear-gradient(115deg, #f7f3eb 0%, #f9f8f3 54%, #edf4f1 100%);
}
.hero-copy { position: relative; z-index: 2; }
.lead { max-width: 590px; margin-bottom: 32px; color: var(--muted); font-size: 19px; }
.button-row { display: flex; align-items: center; gap: 28px; }
.microcopy { margin: 16px 0 0; color: var(--muted); font-size: 12px; }
.hero-visual { position: relative; min-height: 540px; }
.hero-visual img { position: absolute; z-index: 2; top: 50%; left: 50%; width: 105%; max-width: none; filter: drop-shadow(0 30px 30px rgba(31, 45, 42, .16)); transform: translate(-44%, -50%) rotate(-4deg); }
.soft-circle { position: absolute; top: 50%; left: 50%; width: 530px; height: 530px; border-radius: 50%; background: #dce9e4; transform: translate(-45%, -50%); }
.floating-note { position: absolute; z-index: 3; display: flex; flex-direction: column; padding: 13px 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 8px; background: rgba(255,255,255,.92); box-shadow: 0 15px 38px rgba(31,45,42,.12); font-size: 13px; }
.floating-note small { color: var(--muted); }
.note-one { top: 13%; right: -2%; }
.note-two { bottom: 13%; left: 3%; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px clamp(24px, 8vw, 150px);
  color: #fff;
  background: var(--green-dark);
}
.trust-strip div { display: grid; grid-template-columns: 28px auto; align-items: center; justify-content: center; padding: 6px 30px; border-right: 1px solid rgba(255,255,255,.16); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip span { grid-row: 1 / 3; display: grid; place-content: center; width: 22px; height: 22px; margin-right: 6px; border: 1px solid #8cb0a5; border-radius: 50%; color: #d9e9e4; font-size: 12px; }
.trust-strip strong { font-size: 14px; }
.trust-strip small { color: #b9ccc6; font-size: 11px; }

.section { padding: 110px clamp(24px, 8vw, 150px); }
.section-intro { max-width: 750px; margin: 0 auto 50px; color: var(--muted); font-size: 17px; }
.intro-section { text-align: center; }
.three-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; text-align: left; }
.info-card { padding: 36px; border: 1px solid var(--line); border-radius: 8px; background: #fff; transition: .2s ease; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.info-card .icon { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px; border-radius: 50%; color: var(--green); background: var(--green-light); font-family: "Playfair Display", serif; }
.info-card h3 { margin-bottom: 12px; font-size: 18px; }
.info-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.benefit-section { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(60px, 8vw, 130px); background: var(--cream); }
.image-frame { position: relative; padding: 25px; }
.image-frame::before { position: absolute; inset: 0 15% 0 0; content: ""; border-radius: 50% 50% 5px 5px; background: #dfe9e5; }
.image-frame img { position: relative; z-index: 1; filter: drop-shadow(0 20px 25px rgba(31,45,42,.15)); transform: rotate(-3deg); }
.benefit-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 17px; }
.check-list { display: grid; gap: 20px; padding: 0; list-style: none; }
.check-list li { position: relative; display: flex; flex-direction: column; padding-left: 34px; }
.check-list li::before { position: absolute; top: 3px; left: 0; display: grid; place-content: center; width: 20px; height: 20px; content: "✓"; border-radius: 50%; color: #fff; background: var(--green); font-size: 10px; }
.check-list strong { font-size: 14px; }
.check-list span { color: var(--muted); font-size: 13px; }

.choice-section { display: grid; grid-template-columns: 1.1fr 1.5fr auto; align-items: center; gap: 55px; padding: 75px clamp(24px, 8vw, 150px); color: #fff; background: var(--green); }
.choice-section h2 { margin-bottom: 14px; font-size: clamp(2rem, 3vw, 3.2rem); }
.choice-section p:not(.eyebrow) { margin-bottom: 0; color: #c8dad4; }
.steps { display: flex; align-items: center; gap: 15px; }
.steps span { display: flex; align-items: center; gap: 9px; max-width: 135px; color: #eef5f2; font-size: 12px; font-weight: 600; line-height: 1.3; }
.steps b { display: grid; flex: 0 0 32px; place-content: center; width: 32px; height: 32px; border: 1px solid #89a9a0; border-radius: 50%; }
.steps i { color: #91aaa3; font-style: normal; }

.models-section { text-align: center; }
.model-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 50px 0 42px; text-align: left; }
.model-card { position: relative; padding: 13px 13px 25px; border: 1px solid var(--line); border-radius: 7px; background: #fff; transition: .2s ease; }
.model-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.model-card.featured { border-color: var(--green); }
.featured-label { position: absolute; z-index: 3; top: 0; right: 0; padding: 6px 11px; border-radius: 0 6px 0 6px; color: #fff; background: var(--green); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.model-image { display: grid; place-content: center; height: 195px; margin-bottom: 20px; overflow: hidden; border-radius: 4px; background: #f4f6f5; }
.model-image img { width: 115%; max-width: none; filter: drop-shadow(0 10px 12px rgba(31,45,42,.11)); }
.tag { color: var(--green); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.model-card h3 { margin: 8px 0; font-size: 18px; }
.model-card p { min-height: 67px; margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.model-card a, .guide-card a { color: var(--green); font-size: 12px; font-weight: 700; }
.model-card a span, .guide-card a span { float: right; }

.size-section { background: var(--cream); text-align: center; }
.size-heading p:not(.eyebrow) { max-width: 670px; margin: 0 auto; color: var(--muted); }
.size-comparison { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 34px; margin: 65px 0 34px; text-align: left; }
.size-comparison article { padding: 30px; border-top: 2px solid var(--green); background: #fff; }
.size-comparison article p, .size-comparison li { color: var(--muted); font-size: 13px; }
.size-comparison ul { padding-left: 18px; }
.size-badge { display: inline-grid; place-content: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; background: var(--green); font-weight: 700; }
.size-image { position: relative; min-height: 360px; }
.size-image img { position: absolute; top: 50%; left: 50%; width: 85%; filter: drop-shadow(0 20px 22px rgba(31,45,42,.18)); transform: translate(-65%, -50%) rotate(-7deg); }
.size-image img + img { width: 53%; transform: translate(-5%, -22%) rotate(8deg); }

.guide-section { text-align: center; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; text-align: left; }
.guide-card { padding: 34px; border: 1px solid var(--line); background: #fff; }
.guide-number { margin-bottom: 50px; color: #b1c7c0; font-family: "Playfair Display", serif; font-size: 40px; }
.guide-category { margin-bottom: 12px; color: var(--green); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.guide-card h3 { min-height: 75px; font-size: 18px; }
.guide-card > p:not(.guide-category) { min-height: 70px; color: var(--muted); font-size: 13px; }

.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; background: #f7f9f8; }
.faq-section > div:first-child > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }
details { border-top: 1px solid #cfdad6; }
details:last-child { border-bottom: 1px solid #cfdad6; }
summary { display: flex; justify-content: space-between; padding: 24px 5px; cursor: pointer; font-weight: 700; list-style: none; }
summary::after { content: "+"; color: var(--green); font-size: 20px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { padding: 0 35px 24px 5px; color: var(--muted); font-size: 14px; }

.final-cta { padding: 90px 24px; color: #fff; background: var(--green); text-align: center; }
.final-cta h2 { margin-bottom: 15px; }
.final-cta p:not(.eyebrow) { max-width: 680px; margin: 0 auto 30px; color: #d3e2dd; }
.final-cta small { display: block; margin-top: 16px; color: #b6cbc4; }

footer { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; padding: 65px clamp(24px, 8vw, 150px) 30px; color: #d3dfdc; background: #172e29; font-size: 12px; }
.brand-footer { color: #fff; }
.brand-footer strong { color: #a8c8bf; }
.footer-brand p { max-width: 280px; margin-top: 22px; color: #98aca6; }
footer div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
footer div > strong { margin-bottom: 8px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
footer a:hover { color: #fff; }
.disclosure { grid-column: 1 / -1; margin-top: 25px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); color: #81958f; text-align: center; }

/* Finder page */
.finder-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 660px;
  padding: 75px clamp(24px, 8vw, 150px);
  overflow: hidden;
  background: var(--cream);
}
.finder-hero-copy { position: relative; z-index: 2; }
.finder-hero-copy h1 { font-size: clamp(3rem, 5vw, 5rem); }
.finder-hero-visual { position: relative; min-height: 500px; }
.finder-card-img { position: absolute; top: 50%; left: 50%; width: 78%; border: 12px solid #fff; border-radius: 5px; box-shadow: var(--shadow); }
.finder-card-img.img-one { transform: translate(-75%, -30%) rotate(-8deg); }
.finder-card-img.img-two { z-index: 2; transform: translate(-45%, -50%) rotate(2deg); }
.finder-card-img.img-three { transform: translate(-15%, -68%) rotate(9deg); }
.finder-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 25px 20px;
  color: #b5c8c2;
  background: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}
.finder-progress span { display: flex; align-items: center; gap: 9px; }
.finder-progress b { display: grid; place-content: center; width: 29px; height: 29px; border: 1px solid #78968e; border-radius: 50%; color: #fff; }
.finder-progress .active { color: #fff; }
.finder-progress .active b { color: var(--green-dark); background: #fff; }
.finder-progress i { color: #759088; font-style: normal; }
.section-number { display: inline-block; margin-bottom: 18px; padding: 6px 11px; border-radius: 3px; color: var(--green); background: var(--green-light); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.need-section, .format-section, .compare-section, .decision-summary { text-align: center; }
.need-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1100px; margin: 50px auto 0; text-align: left; }
.need-card { position: relative; display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 32px; border: 1px solid var(--line); border-radius: 7px; background: #fff; transition: .2s ease; }
.need-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow); }
.need-card.recommended { border-color: var(--green); }
.recommend-label { position: absolute; top: 0; right: 0; padding: 6px 10px; border-radius: 0 6px 0 6px; color: #fff; background: var(--green); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.need-icon { display: grid; place-content: center; width: 50px; height: 50px; border-radius: 50%; color: var(--green); background: var(--green-light); font-family: "Playfair Display", serif; }
.need-card h3 { margin-bottom: 9px; font-size: 18px; }
.need-card p { color: var(--muted); font-size: 13px; }
.need-card strong { color: var(--green); font-size: 12px; }
.need-card strong span { float: right; }
.finder-results { display: grid; gap: 1px; background: #fff; }
.result-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 550px; padding: 75px clamp(24px, 10vw, 190px); color: #fff; background: var(--green); }
.result-panel:nth-child(even) { background: var(--green-dark); }
.result-panel:nth-child(even) .result-image { order: 2; }
.result-image img { width: 100%; filter: drop-shadow(0 25px 25px rgba(0,0,0,.2)); transform: rotate(-3deg); }
.result-panel:nth-child(even) .result-image img { transform: rotate(3deg); }
.result-copy { padding: 30px clamp(20px, 7vw, 100px); }
.result-copy h2 { margin-bottom: 16px; }
.result-copy > p:not(.eyebrow) { color: #d0dfda; }
.compact-checks { display: grid; gap: 9px; margin: 25px 0 30px; padding: 0; list-style: none; font-size: 13px; }
.compact-checks li::before { margin-right: 9px; content: "✓"; color: #b4d3ca; }
.format-section { background: var(--cream); }
.format-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 1000px; margin: 50px auto 0; text-align: left; }
.format-choice { padding: 42px; border-top: 3px solid var(--green); background: #fff; box-shadow: 0 14px 45px rgba(31,45,42,.07); }
.format-title { display: inline-grid; place-content: center; width: 60px; height: 60px; margin-bottom: 24px; border-radius: 50%; color: #fff; background: var(--green); font-size: 19px; font-weight: 700; }
.format-choice > p, .format-choice li { color: var(--muted); font-size: 13px; }
.format-choice ul { padding-left: 18px; }
.format-choice .available { margin: 25px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
.compare-section { background: #f7f9f8; }
.table-scroll { max-width: 1100px; margin: 45px auto 0; overflow-x: auto; }
table { width: 100%; min-width: 750px; border-collapse: collapse; background: #fff; font-size: 13px; }
th, td { padding: 18px 20px; border: 1px solid var(--line); text-align: center; }
thead th { color: #fff; background: var(--green); }
tbody th { text-align: left; }
td { color: var(--green); font-weight: 700; }
.summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 1000px; margin: 45px auto 0; text-align: left; }
.summary-grid article { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); }
.summary-grid strong { margin-bottom: 8px; color: var(--green); font-size: 17px; }
.summary-grid span { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.summary-grid a { margin-top: auto; color: var(--green); font-size: 12px; font-weight: 700; }

/* Product page */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 710px;
  padding: 75px clamp(24px, 7vw, 125px);
  overflow: hidden;
  background: linear-gradient(120deg, var(--cream), #f8faf8 70%);
}
.product-hero-copy { position: relative; z-index: 3; }
.product-hero-copy h1 { font-size: clamp(3.1rem, 5vw, 5.25rem); }
.product-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--green); font-size: 11px; font-weight: 700; }
.product-hero-visual { position: relative; min-height: 540px; }
.product-hero-visual > img { position: absolute; z-index: 2; top: 50%; left: 50%; width: 113%; max-width: none; filter: drop-shadow(0 28px 28px rgba(31,45,42,.18)); transform: translate(-45%, -50%) rotate(-4deg); }
.product-halo { position: absolute; top: 50%; left: 50%; width: 520px; height: 520px; border-radius: 50%; background: #dbe9e4; transform: translate(-45%, -50%); }
.product-callout { position: absolute; z-index: 3; display: flex; flex-direction: column; padding: 12px 18px; border-radius: 5px; background: rgba(255,255,255,.94); box-shadow: 0 15px 35px rgba(31,45,42,.13); font-size: 12px; }
.callout-one { top: 16%; right: 2%; }
.callout-two { bottom: 14%; left: 1%; }
.product-intro-strip { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 5vw, 75px); padding: 25px; color: #fff; background: var(--green-dark); font-size: 12px; }
.product-intro-strip p { margin: 0; color: #9fb9b1; text-transform: uppercase; letter-spacing: .1em; }
.product-promise-copy { max-width: 800px; margin: 0 auto 55px; text-align: center; }
.product-promise-copy p:not(.eyebrow) { color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-grid article { padding: 30px; border-top: 2px solid var(--green); background: #f7f9f8; }
.benefit-grid span { color: #a8c2ba; font-family: "Playfair Display", serif; font-size: 34px; }
.benefit-grid h3 { margin: 22px 0 10px; font-size: 17px; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.product-anatomy { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px, 8vw, 120px); background: var(--cream); }
.anatomy-image img { filter: drop-shadow(0 22px 25px rgba(31,45,42,.15)); transform: rotate(-3deg); }
.anatomy-list { display: grid; gap: 0; margin-top: 35px; }
.anatomy-list article { display: grid; grid-template-columns: 38px 1fr; gap: 15px; padding: 19px 0; border-top: 1px solid #d6dfdc; }
.anatomy-list b { color: #9ab6ae; font-family: "Playfair Display", serif; }
.anatomy-list h3 { margin-bottom: 4px; font-size: 15px; }
.anatomy-list p { margin: 0; color: var(--muted); font-size: 12px; }
.use-section { padding: 100px clamp(24px, 8vw, 150px); color: #fff; background: var(--green); }
.use-heading { max-width: 720px; margin-bottom: 50px; }
.use-heading p:not(.eyebrow) { color: #c5d8d2; }
.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.use-grid article { padding: 28px; border: 1px solid rgba(255,255,255,.16); }
.use-grid span { color: #afcac2; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.use-grid h3 { min-height: 52px; margin: 16px 0 10px; font-size: 17px; }
.use-grid p { margin: 0; color: #c4d7d1; font-size: 12px; }
.difference-section { text-align: center; }
.difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 50px 0 35px; text-align: left; }
.difference-grid article { display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); }
.difference-grid p { color: var(--muted); font-size: 13px; }
.difference-grid strong { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); color: var(--green); font-size: 12px; }
.product-formats { background: var(--cream); text-align: center; }
.format-heading { max-width: 760px; margin: 0 auto; }
.format-heading > p:not(.eyebrow) { color: var(--muted); }
.product-format-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 1050px; margin: 55px auto 30px; text-align: left; }
.product-format-card { position: relative; padding: 20px 35px 35px; border-top: 3px solid var(--green); background: #fff; box-shadow: 0 15px 50px rgba(31,45,42,.07); }
.format-product-image { display: grid; place-content: center; height: 260px; overflow: hidden; }
.format-product-image img { width: 100%; filter: drop-shadow(0 12px 15px rgba(31,45,42,.15)); }
.product-format-card:nth-child(2) .format-product-image img { width: 75%; margin: auto; }
.format-ribbon { display: inline-block; margin-bottom: 13px; padding: 5px 9px; border-radius: 3px; color: var(--green); background: var(--green-light); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.product-format-card > p, .product-format-card li { color: var(--muted); font-size: 13px; }
.product-format-card ul { min-height: 80px; padding-left: 18px; }
.amazon-button { width: 100%; margin-top: 15px; }
.amazon-note { color: var(--muted); font-size: 11px; }

/* SEO article */
.article-hero { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 610px; padding: 75px clamp(24px, 8vw, 150px); overflow: hidden; background: var(--cream); }
.article-hero-copy h1 { max-width: 850px; font-size: clamp(3rem, 4.8vw, 5rem); }
.article-deck { max-width: 720px; color: var(--muted); font-size: 18px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--green); font-size: 11px; font-weight: 700; }
.article-hero-image img { width: 115%; max-width: none; filter: drop-shadow(0 28px 28px rgba(31,45,42,.18)); transform: translateX(3%) rotate(-4deg); }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 780px); justify-content: center; gap: 65px; padding: 90px 24px 110px; }
.article-toc { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; gap: 10px; padding: 24px; border-left: 2px solid var(--green); background: #f7f9f8; font-size: 11px; }
.article-toc strong { margin-bottom: 8px; color: var(--green); text-transform: uppercase; letter-spacing: .08em; }
.article-toc a { color: var(--muted); }
.article-toc a:hover { color: var(--green); }
.article-content { color: #344440; font-size: 16px; line-height: 1.85; }
.article-content .article-intro { color: var(--ink); font-size: 20px; line-height: 1.7; }
.article-content h2 { margin: 75px 0 24px; color: var(--ink); font-size: clamp(2rem, 3vw, 3rem); scroll-margin-top: 110px; }
.article-content h3 { margin: 42px 0 12px; color: var(--ink); font-size: 19px; }
.article-content li { margin-bottom: 9px; }
.article-key-box, .article-example-box { margin: 45px 0; padding: 30px; border-left: 3px solid var(--green); background: var(--green-light); }
.article-key-box strong { color: var(--green); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.article-key-box p { margin: 8px 0 0; }
.article-example-box h3 { margin-top: 0; }
.example-days { display: grid; gap: 8px; }
.example-days span { display: grid; grid-template-columns: 110px 1fr; padding: 10px 0; border-top: 1px solid #c6d8d2; font-size: 13px; }
.article-faq { margin-top: 35px; }
.article-faq details { background: #fff; }
.article-final-cta { margin-top: 80px; padding: 55px; color: #fff; background: var(--green); text-align: center; }
.article-final-cta h2 { margin: 0 0 18px; color: #fff; }
.article-final-cta p:not(.eyebrow) { color: #d1e0dc; }

/* Contact page */
.contact-hero { padding: 95px 24px 85px; background: var(--cream); text-align: center; }
.contact-hero h1 { margin-bottom: 20px; font-size: clamp(3.2rem, 5vw, 5rem); }
.contact-hero p:not(.eyebrow) { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 17px; }
.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(55px, 9vw, 140px); }
.contact-info > p:not(.eyebrow) { color: var(--muted); }
.contact-help-list { display: grid; margin-top: 35px; }
.contact-help-list article { display: grid; grid-template-columns: 38px 1fr; gap: 15px; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-help-list article > span { color: #9bb7af; font-family: "Playfair Display", serif; }
.contact-help-list h3 { margin-bottom: 5px; font-size: 15px; }
.contact-help-list p { margin: 0; color: var(--muted); font-size: 12px; }
.contact-security-note { margin-top: 35px; padding: 22px; border-left: 3px solid var(--green); background: var(--green-light); }
.contact-security-note strong { color: var(--green); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.contact-security-note p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.contact-form-card { padding: 42px; border-top: 3px solid var(--green); background: #fff; box-shadow: var(--shadow); }
.form-kicker { margin-bottom: 8px; color: var(--green); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.contact-form-card h2 { margin-bottom: 10px; font-size: 2.2rem; }
.form-intro { margin-bottom: 28px; color: var(--muted); font-size: 12px; }
.contact-form { display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-size: 12px; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #cedbd7; border-radius: 3px; padding: 13px 14px; color: var(--ink); background: #fbfcfb; font: inherit; font-size: 13px; outline: none; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(49,95,85,.09); }
.privacy-check { display: flex !important; grid-template-columns: none; align-items: flex-start; gap: 9px !important; color: var(--muted) !important; font-weight: 500 !important; line-height: 1.5; }
.privacy-check input { margin-top: 3px; accent-color: var(--green); }
.turnstile-placeholder { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border: 1px dashed #a9c1ba; border-radius: 3px; background: #f7faf9; }
.shield-mark { display: grid; place-content: center; width: 29px; height: 29px; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; }
.turnstile-placeholder span:last-child { display: flex; flex-direction: column; font-size: 11px; }
.turnstile-placeholder small { color: var(--muted); }
.contact-submit { width: 100%; border: 0; cursor: pointer; font-family: inherit; }
.form-response-time { margin: -4px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.contact-faq { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 65px clamp(24px, 8vw, 150px); color: #fff; background: var(--green); }
.contact-faq div { max-width: 750px; }
.contact-faq h2 { margin-bottom: 13px; }
.contact-faq p:not(.eyebrow) { margin-bottom: 0; color: #c7dad4; }

@media (max-width: 1100px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; }
  .choice-section { grid-template-columns: 1fr; text-align: center; }
  .steps { justify-content: center; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .size-comparison { grid-template-columns: 1fr 1fr; }
  .size-image { grid-column: 1 / -1; grid-row: 1; }
  .finder-hero { grid-template-columns: 1fr; }
  .finder-hero-visual { min-height: 400px; }
  .product-hero { grid-template-columns: 1fr; }
  .product-hero-visual { min-height: 440px; }
  .benefit-grid, .use-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero { grid-template-columns: 1fr; }
  .article-hero-image { margin-top: 40px; }
  .article-layout { grid-template-columns: minmax(0, 780px); }
  .article-toc { position: static; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 70px; padding: 10px 18px; }
  .site-header .button { display: none; }
  .hero {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 56px 20px 25px;
  }
  .hero-copy {
    width: 100%;
    max-width: 100%;
  }
  .hero h1 {
    width: 100%;
    max-width: 340px;
    margin-bottom: 20px;
    font-size: 2.15rem;
    line-height: 1.14;
  }
  .hero .eyebrow {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: .14em;
  }
  .lead {
    width: 100%;
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.65;
  }
  .hero .button-row { width: 100%; }
  .hero .button { width: 100%; max-width: 350px; }
  .hero .microcopy { max-width: 330px; line-height: 1.5; }
  .hero-visual { min-height: 285px; margin-top: 22px; }
  .hero-visual img {
    width: 108%;
    transform: translate(-50%, -50%) rotate(-2deg);
  }
  .soft-circle { width: 310px; height: 310px; }
  .floating-note { display: none; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-strip, .three-cards, .benefit-section, .model-grid, .size-comparison, .guide-grid, .faq-section, footer { grid-template-columns: 1fr; }
  .trust-strip div { justify-content: start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-strip div:last-child { border-bottom: 0; }
  .section { padding: 75px 20px; }
  .choice-section { padding: 65px 20px; }
  .steps { align-items: stretch; flex-direction: column; text-align: left; }
  .steps i { display: none; }
  .steps span { max-width: none; }
  .model-card p, .guide-card h3, .guide-card > p:not(.guide-category) { min-height: auto; }
  .size-image { min-height: 250px; }
  .faq-section { gap: 45px; }
  footer { gap: 30px; padding: 55px 20px 25px; }
  .finder-hero { display: block; min-height: auto; padding: 55px 20px 25px; }
  .finder-hero-copy h1 { width: 100%; max-width: 340px; font-size: 2.15rem; }
  .finder-hero-copy .lead { max-width: 100%; }
  .finder-hero-visual { min-height: 270px; margin-top: 25px; }
  .finder-card-img { width: 75%; border-width: 6px; }
  .finder-card-img.img-one { transform: translate(-80%, -25%) rotate(-8deg); }
  .finder-card-img.img-two { transform: translate(-50%, -50%) rotate(2deg); }
  .finder-card-img.img-three { transform: translate(-20%, -70%) rotate(9deg); }
  .finder-progress { align-items: stretch; flex-direction: column; gap: 10px; }
  .finder-progress i { display: none; }
  .need-grid, .format-choice-grid, .summary-grid { grid-template-columns: 1fr; }
  .need-card { grid-template-columns: 45px 1fr; padding: 24px 20px; }
  .need-icon { width: 42px; height: 42px; }
  .result-panel { grid-template-columns: 1fr; min-height: auto; padding: 55px 20px; }
  .result-panel:nth-child(even) .result-image { order: initial; }
  .result-copy { padding: 35px 0 0; }
  .result-copy .button { width: 100%; }
  .format-choice { padding: 28px 24px; }
  .product-hero { display: block; min-height: auto; padding: 55px 20px 30px; }
  .product-hero-copy h1 { width: 100%; max-width: 345px; font-size: 2.2rem; }
  .product-hero-copy .lead { max-width: 100%; }
  .product-proof { align-items: flex-start; flex-direction: column; gap: 7px; }
  .product-hero-visual { min-height: 285px; margin-top: 25px; }
  .product-hero-visual > img { width: 110%; transform: translate(-50%, -50%) rotate(-2deg); }
  .product-halo { width: 300px; height: 300px; transform: translate(-50%, -50%); }
  .product-callout { display: none; }
  .product-intro-strip { align-items: flex-start; flex-direction: column; gap: 7px; padding: 20px; }
  .benefit-grid, .product-anatomy, .use-grid, .difference-grid, .product-format-grid { grid-template-columns: 1fr; }
  .product-anatomy { gap: 45px; }
  .use-section { padding: 70px 20px; }
  .use-grid h3 { min-height: auto; }
  .product-format-card { padding: 18px 22px 28px; }
  .format-product-image { height: 210px; }
  .article-hero { display: block; min-height: auto; padding: 55px 20px 30px; }
  .article-hero-copy h1 { max-width: 345px; font-size: 2.2rem; }
  .article-deck { font-size: 16px; }
  .article-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .article-hero-image { margin-top: 30px; min-height: 220px; }
  .article-hero-image img { width: 110%; transform: translateX(-4%) rotate(-2deg); }
  .article-layout { gap: 35px; padding: 55px 20px 75px; }
  .article-toc { display: none; }
  .article-content { font-size: 15px; }
  .article-content .article-intro { font-size: 18px; }
  .article-content h2 { margin-top: 58px; font-size: 2rem; }
  .example-days span { grid-template-columns: 1fr; gap: 3px; }
  .article-final-cta { padding: 40px 22px; }
  .article-final-cta .button { width: 100%; }
  .contact-hero { padding: 65px 20px 55px; }
  .contact-hero h1 { font-size: 2.5rem; }
  .contact-section { gap: 45px; }
  .contact-form-card { padding: 28px 20px; }
  .contact-faq { align-items: stretch; flex-direction: column; padding: 55px 20px; }
  .contact-faq .button { width: 100%; }
}
