:root {
  --ink: #214846;
  --ink-deep: #153634;
  --sea: #cfdfd8;
  --sea-bright: #b9d4ca;
  --linen: #f4ecdf;
  --paper: #fbfaf4;
  --white: #ffffff;
  --yellow: #efc978;
  --coral: #c96857;
  --leaf: #77866a;
  --slate: #506a67;
  --muted: #7a8882;
  --line: rgba(33, 72, 70, 0.16);
  --shadow: 0 24px 55px rgba(30, 63, 59, 0.14);
  --radius: 1.1rem;
  --max: 1180px;
  --brand: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --body: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink-deep);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 3rem), var(--max));
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  transform: translateX(-50%);
}
.wordmark {
  color: var(--ink);
  font-family: var(--brand);
  font-size: 1.82rem;
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: 1;
  text-decoration: none;
}
.wordmark span {
  display: inline-grid;
  width: 1.1em;
  height: 1.1em;
  margin-left: .08em;
  place-items: center;
  color: var(--ink-deep);
  background: var(--yellow);
  border-radius: 50% 50% 50% 12%;
  font-size: .78em;
  letter-spacing: -.04em;
  transform: rotate(-3deg);
}
.site-nav { display: flex; align-items: center; gap: 2.15rem; }
.site-nav a { font-size: .82rem; font-weight: 650; text-decoration: none; }
.site-nav > a:not(.nav-cta) { padding: .4rem 0; border-bottom: 1px solid transparent; }
.site-nav > a:not(.nav-cta):hover { border-color: currentColor; }
.nav-cta {
  padding: .76rem 1.05rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 750px;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--linen) 0 48%, transparent 48%),
    var(--paper);
}
.hero::before {
  position: absolute;
  top: 8.5rem;
  left: -5rem;
  width: 14rem;
  height: 14rem;
  content: "";
  border: 1px solid rgba(33, 72, 70, .12);
  border-radius: 50%;
}
.hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: .65rem;
  content: "";
  background: repeating-linear-gradient(90deg, var(--coral) 0 2.4rem, var(--yellow) 2.4rem 4.8rem, var(--sea) 4.8rem 7.2rem);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  margin-left: max(1.5rem, calc((100vw - var(--max)) / 2));
  padding: 11.5rem 4.5rem 5rem 0;
  align-self: center;
}
.eyebrow {
  margin: 0 0 1.05rem;
  color: var(--slate);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow > span {
  display: inline-block;
  width: .62rem;
  height: .62rem;
  margin-right: .55rem;
  background: var(--coral);
  border-radius: 50% 50% 50% 12%;
  vertical-align: -.02rem;
}
.hero h1,
.section h2,
.gallery-section h2,
.offer-section h2,
.final-cta h2,
.legal-page h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.hero h1 { font-size: clamp(3.35rem, 4.75vw, 5.45rem); }
.hero h1 em {
  color: var(--coral);
  font-style: italic;
  font-weight: 500;
}
.hero-intro {
  max-width: 36rem;
  margin: 1.65rem 0 2rem;
  color: #284b52;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.58;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; }
.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .9rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ink); box-shadow: 0 12px 24px rgba(9, 38, 44, .16); }
.button-primary:hover { background: var(--ink-deep); box-shadow: 0 16px 30px rgba(9, 38, 44, .22); }
.button-primary span { color: var(--yellow); }
.text-link { font-size: .85rem; font-weight: 750; text-underline-offset: .25rem; }
.text-link span { padding-left: .25rem; }
.assurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.35rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--slate);
  font-size: .76rem;
  font-weight: 650;
}
.assurance-list li::before { content: "✓"; margin-right: .4rem; color: var(--ink); font-weight: 900; }

.hero-visual { position: relative; min-width: 0; padding: 7rem 2.5rem 4rem 0; align-self: center; }
.hero-figure { position: relative; width: min(100%, 760px); margin: 0; padding: .7rem; background: var(--white); border: 1px solid rgba(33,72,70,.1); border-radius: 1.45rem; box-shadow: var(--shadow); }
.hero-figure::before {
  position: absolute;
  z-index: -1;
  right: -2rem;
  bottom: -2rem;
  width: 72%;
  height: 78%;
  content: "";
  background: var(--sea);
  border-radius: 48% 1rem 1rem 1rem;
}
.hero-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: .9rem; }
.hero-figure figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: .38rem .6rem;
  color: var(--ink);
  background: rgba(251, 250, 244, .92);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.holiday-note {
  position: absolute;
  z-index: 4;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  min-width: 15rem;
  gap: .1rem;
  padding: 1rem 1.2rem;
  color: var(--ink);
  background: var(--yellow);
  border: .35rem solid var(--paper);
  border-radius: .35rem;
  box-shadow: 0 12px 30px rgba(21,54,52,.14);
  transform: rotate(-1.5deg);
}
.holiday-note span { color: #765b32; font-size: .58rem; font-weight: 800; letter-spacing: .1em; line-height: 1.2; text-transform: uppercase; }
.holiday-note strong { font-family: var(--display); font-size: 1.18rem; font-weight: 600; letter-spacing: -.01em; }
.holiday-note small { color: #765b32; font-size: .68rem; }

.signal-strip { padding: 1.35rem max(1.5rem, calc((100vw - var(--max)) / 2)); color: var(--ink); background: var(--yellow); border-bottom: 1px solid rgba(33,72,70,.1); overflow: hidden; }
.signal-strip p { margin: 0 0 .6rem; color: #765b32; font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.signal-track { display: flex; align-items: center; justify-content: space-between; gap: 1.1rem; white-space: nowrap; }
.signal-track span { font-family: var(--display); font-size: clamp(1rem, 1.5vw, 1.28rem); font-style: italic; font-weight: 600; }
.signal-track i { width: .3rem; height: .3rem; flex: 0 0 auto; background: var(--coral); border-radius: 50%; }

.section { width: min(calc(100% - 3rem), var(--max)); margin: 0 auto; padding: clamp(5rem, 8vw, 7.5rem) 0; }
.section-heading { max-width: 760px; }
.section h2, .gallery-section h2, .offer-section h2, .final-cta h2 { font-size: clamp(2.25rem, 3.6vw, 3.8rem); line-height: 1.08; }
.problem-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); margin-top: 4.5rem; align-items: start; }
.lead-copy { margin: 0; color: var(--slate); font-family: var(--display); font-size: clamp(1.2rem, 1.7vw, 1.5rem); font-style: italic; line-height: 1.55; }
.pack-card { padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--linen); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 45px rgba(33,72,70,.07); }
.pack-card-label { margin: 0 0 1rem; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pack-card ul { margin: 0; padding: 0; list-style: none; }
.pack-card li { display: grid; grid-template-columns: 3.5rem 1fr; align-items: center; gap: 1rem; padding: 1.15rem 0; border-top: 1px solid var(--line); }
.pack-card li strong { color: var(--coral); font-family: var(--display); font-size: 1.7rem; font-style: italic; line-height: 1; text-align: center; }
.pack-card li span { font-weight: 700; line-height: 1.35; }

.gallery-section { padding: clamp(5rem, 8vw, 7.5rem) max(1.5rem, calc((100vw - var(--max)) / 2)); background: #e4e2cf; }
.gallery-heading { display: grid; grid-template-columns: 1fr .55fr; column-gap: 3rem; align-items: end; }
.gallery-heading .eyebrow { grid-column: 1 / -1; }
.gallery-heading p:last-child { margin: 0 0 .35rem; color: var(--slate); }
.style-gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.4rem; margin-top: 3rem; }
.style-card { position: relative; min-height: 280px; margin: 0; padding: .55rem; overflow: hidden; background: var(--paper); border: 1px solid rgba(33,72,70,.12); border-radius: var(--radius); box-shadow: 0 14px 35px rgba(33,72,70,.08); }
.style-card-wide { grid-row: span 2; min-height: 585px; }
.style-card img { width: 100%; height: 100%; object-fit: cover; border-radius: .72rem; transition: transform .6s ease; }
.style-card:hover img { transform: scale(1.025); }
.style-card figcaption { position: absolute; right: 1.2rem; bottom: 1.2rem; left: 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 1rem; color: var(--ink); background: rgba(251,250,244,.94); border-radius: .35rem; font-family: var(--display); font-size: 1.05rem; font-style: italic; font-weight: 600; }
.style-card figcaption span { color: var(--coral); font-family: var(--body); font-size: .62rem; font-style: normal; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.concept-note { max-width: 820px; margin: 1.4rem 0 0; color: var(--slate); font-size: .76rem; line-height: 1.55; }

.section-heading-split { display: grid; max-width: none; grid-template-columns: 1.35fr .65fr; gap: 4rem; align-items: end; }
.section-heading-split > p { margin: 0 0 .4rem; color: var(--slate); font-size: 1.05rem; }
.process-list { margin: 3.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 5rem minmax(0, 1fr); gap: 1.5rem; padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.step-number { display: inline-grid; width: 2.4rem; height: 2.4rem; place-items: center; color: var(--white); background: var(--leaf); border-radius: 50%; font-size: .76rem; font-weight: 850; }
.process-list h3 { margin: 0; font-family: var(--display); font-size: 1.28rem; font-weight: 600; line-height: 1.2; }
.process-list p { margin: .25rem 0 0; color: var(--slate); }

.offer-section { display: grid; grid-template-columns: 1.15fr .85fr; color: var(--white); background: var(--ink-deep); }
.offer-copy { padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 8vw, 8rem) clamp(4rem, 8vw, 8rem) max(1.5rem, calc((100vw - var(--max)) / 2)); }
.eyebrow-light { color: var(--sea-bright); }
.offer-copy p:not(.eyebrow) { max-width: 630px; color: var(--sea); font-size: 1.12rem; }
.offer-copy ul { display: grid; gap: .7rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.offer-copy li::before { content: "✓"; margin-right: .65rem; color: var(--yellow); font-weight: 900; }
.offer-price { display: grid; place-content: center; padding: 4rem 2rem; color: var(--ink); background: var(--yellow); text-align: center; }
.offer-price > span { font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.offer-price strong { margin: .8rem 0 .4rem; font-family: var(--display); font-size: clamp(4.6rem, 8vw, 7.4rem); font-style: italic; font-weight: 500; letter-spacing: -.06em; line-height: .85; }
.offer-price sup { font-size: .38em; vertical-align: top; }
.offer-price p { margin: 1rem 0 1.7rem; font-weight: 700; line-height: 1.45; }
.button-yellow { color: var(--white); background: var(--ink-deep); }
.offer-price small { max-width: 340px; margin: .9rem auto 0; font-size: .68rem; line-height: 1.4; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 7vw, 7rem); }
.faq-heading { position: sticky; top: 2rem; align-self: start; }
.faq-heading p:last-child { color: var(--slate); }
.faq-heading a { font-weight: 750; text-underline-offset: .2rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.5rem 3rem 1.5rem 0; cursor: pointer; font-family: var(--display); font-size: 1.14rem; font-weight: 600; line-height: 1.35; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 1.45rem; right: .2rem; content: "+"; color: var(--coral); font-size: 1.7rem; font-weight: 400; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -.4rem 3rem 1.6rem 0; color: var(--slate); }

.final-cta { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; padding: clamp(4.5rem, 8vw, 6.5rem) max(1.5rem, calc((100vw - var(--max)) / 2)); background: var(--linen); }
.final-cta-action { text-align: right; }
.final-cta-action p { margin: .9rem 0 0; color: var(--slate); font-size: .75rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem 5rem; padding: 4rem max(1.5rem, calc((100vw - var(--max)) / 2)) 2rem; color: var(--sea); background: var(--ink-deep); }
.wordmark-footer { color: var(--white); }
.footer-brand p { max-width: 320px; margin: 1rem 0 0; color: var(--sea-bright); }
.footer-contact p { margin: 0 0 .5rem; color: var(--white); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact a { color: var(--white); font-weight: 700; text-underline-offset: .2rem; }
.footer-contact address { margin-top: .55rem; color: var(--sea-bright); font-size: .78rem; font-style: normal; line-height: 1.55; }
.footer-links { display: grid; align-content: start; gap: .55rem; }
.footer-links a { font-size: .82rem; font-weight: 700; text-underline-offset: .2rem; }
.company-line { grid-column: 1 / -1; margin: 2rem 0 0; padding-top: 1.2rem; color: #8fb0ad; border-top: 1px solid rgba(215, 235, 231, .15); font-size: .68rem; line-height: 1.55; }
.copyright { grid-column: 1 / -1; margin: 0; color: #759995; font-size: .66rem; }
.mobile-reserve { display: none; }

.legal-header { position: relative; background: var(--linen); }
.legal-header .site-header { position: relative; left: auto; transform: none; }
.legal-page { width: min(calc(100% - 3rem), 850px); margin: 0 auto; padding: 6rem 0 7rem; }
.legal-page .eyebrow { margin-bottom: 1rem; }
.legal-page h1 { font-size: clamp(2.7rem, 5vw, 4.3rem); }
.legal-page .legal-intro { margin: 1.8rem 0 3.5rem; color: var(--slate); font-size: 1.15rem; }
.legal-page h2 { margin: 2.8rem 0 .8rem; font-family: var(--display); font-size: 1.65rem; letter-spacing: -.025em; line-height: 1.2; }
.legal-page h3 { margin: 1.8rem 0 .5rem; font-size: 1.05rem; }
.legal-page p, .legal-page li { color: #36575e; }
.legal-page ul, .legal-page ol { padding-left: 1.2rem; }
.legal-page li { margin: .4rem 0; }
.legal-page a { font-weight: 700; text-underline-offset: .2rem; }
.legal-callout { margin: 2.4rem 0; padding: 1.4rem 1.5rem; background: var(--linen); border-left: .35rem solid var(--yellow); }
.legal-meta { margin-top: 4rem; padding-top: 1.3rem; border-top: 1px solid var(--line); font-size: .75rem; }
.thank-you-page ol { padding-left: 1.4rem; }
.thank-you-page li { margin: .65rem 0; }
.thank-you-reference { display: block; margin-top: .5rem; color: var(--coral); font-size: 1.2rem; font-weight: 850; letter-spacing: .05em; }

@media (max-width: 980px) {
  .site-header { width: min(calc(100% - 2rem), var(--max)); }
  .nav-toggle { display: inline-flex; align-items: center; gap: .6rem; padding: .55rem .8rem; color: var(--ink); background: rgba(251,250,244,.82); border: 1px solid var(--line); border-radius: 999px; font-size: .72rem; font-weight: 800; }
  .nav-toggle-lines, .nav-toggle-lines::before, .nav-toggle-lines::after { display: block; width: 1rem; height: 2px; background: currentColor; }
  .nav-toggle-lines { position: relative; }
  .nav-toggle-lines::before, .nav-toggle-lines::after { position: absolute; left: 0; content: ""; }
  .nav-toggle-lines::before { top: -.3rem; }
  .nav-toggle-lines::after { top: .3rem; }
  .site-nav { position: absolute; top: 4.8rem; right: 0; display: none; width: min(19rem, calc(100vw - 2rem)); padding: 1rem; align-items: stretch; flex-direction: column; gap: .25rem; background: var(--paper); border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem; }
  .nav-cta { margin-top: .3rem; text-align: center; }
  .hero { min-height: auto; grid-template-columns: 1fr; background: linear-gradient(180deg, var(--linen) 0 54%, var(--paper) 54%); }
  .hero::after { width: 100%; }
  .hero-copy { width: min(calc(100% - 3rem), 720px); margin: 0 auto; padding: 10rem 0 4rem; }
  .hero-visual { width: min(calc(100% - 3rem), 860px); margin: 0 auto; padding: 0 0 5rem; }
  .holiday-note { right: -1rem; }
  .gallery-heading, .section-heading-split, .offer-section, .faq-section { grid-template-columns: 1fr; }
  .gallery-heading p:last-child { margin-top: 1rem; }
  .section-heading-split { gap: 1.5rem; }
  .offer-copy { padding-right: max(1.5rem, calc((100vw - var(--max)) / 2)); }
  .offer-price { min-height: 470px; }
  .faq-heading { position: static; }
}

@media (max-width: 700px) {
  body { padding-bottom: 4.6rem; }
  .site-header { padding-top: 1.1rem; }
  .wordmark { font-size: 1.65rem; }
  .hero-copy { width: calc(100% - 2rem); padding: 8.5rem 0 3.3rem; }
  .hero h1 { font-size: clamp(2.95rem, 13.2vw, 4.3rem); }
  .hero-intro { margin: 1.5rem 0 1.7rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .assurance-list { display: grid; gap: .5rem; }
  .hero-visual { width: calc(100% - 2rem); padding-bottom: 3.2rem; }
  .hero-figure { padding: .42rem; border-radius: 1rem; }
  .hero-figure::before { right: -.6rem; bottom: -.6rem; }
  .hero-figure img { aspect-ratio: 4 / 3; }
  .hero-figure figcaption { right: .5rem; bottom: .5rem; font-size: .55rem; }
  .holiday-note { right: -.35rem; bottom: .85rem; min-width: 12.7rem; padding: .8rem .9rem; border-width: .28rem; }
  .holiday-note strong { font-size: 1rem; }
  .holiday-note small { font-size: .6rem; }
  .signal-strip { padding-inline: 1rem; }
  .signal-track { width: max-content; justify-content: flex-start; }
  .section { width: calc(100% - 2rem); padding: 5rem 0; }
  .section h2, .gallery-section h2, .offer-section h2, .final-cta h2 { font-size: clamp(2.15rem, 9.5vw, 3rem); }
  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2.8rem; }
  .pack-card { padding: 1rem 1.2rem; }
  .pack-card li { grid-template-columns: 2.6rem 1fr; }
  .gallery-section { padding: 5rem 1rem; }
  .style-gallery { grid-template-columns: 1fr; }
  .style-card, .style-card-wide { min-height: 310px; grid-row: auto; }
  .style-card-wide { min-height: 390px; }
  .process-list { margin-top: 3rem; }
  .process-list li { grid-template-columns: 3rem 1fr; gap: .8rem; }
  .offer-copy { padding: 5rem 1rem; }
  .offer-price { min-height: 430px; padding: 3.5rem 1rem; }
  .final-cta { grid-template-columns: 1fr; padding: 5rem 1rem; }
  .final-cta-action { text-align: left; }
  .site-footer { grid-template-columns: 1fr; padding: 3.5rem 1rem 2rem; }
  .company-line, .copyright { grid-column: auto; }
  .mobile-reserve { position: fixed; z-index: 50; right: 0; bottom: 0; left: 0; display: flex; min-height: 4.55rem; align-items: center; justify-content: space-between; gap: 1rem; padding: .65rem 1rem; color: var(--white); background: rgba(9, 38, 44, .97); border-top: 1px solid rgba(255,255,255,.12); box-shadow: 0 -8px 24px rgba(9,38,44,.18); }
  .mobile-reserve div { display: grid; line-height: 1.1; }
  .mobile-reserve strong { color: var(--yellow); font-size: 1.35rem; }
  .mobile-reserve span { color: var(--sea-bright); font-size: .62rem; }
  .mobile-reserve a { padding: .7rem 1.15rem; color: var(--ink-deep); background: var(--yellow); border-radius: .25rem; font-size: .75rem; font-weight: 900; text-decoration: none; }
  .legal-header .site-header { width: calc(100% - 2rem); }
  .legal-page { width: calc(100% - 2rem); padding: 4rem 0 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Shop configurator */
.shop-body { background: var(--linen); }
.shop-site-header {
  display: grid;
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 1.45rem 0;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid var(--line);
}
.shop-site-header > .text-link { justify-self: end; }
.shop-header-price { display: grid; grid-template-columns: auto auto; column-gap: .65rem; align-items: center; line-height: 1.05; }
.shop-header-price span { color: var(--slate); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.shop-header-price strong { grid-row: span 2; color: var(--coral); font-family: var(--display); font-size: 2rem; font-weight: 600; }
.shop-header-price small { color: var(--muted); font-size: .66rem; }
.shop-main { overflow: hidden; }
.shop-intro {
  width: min(calc(100% - 3rem), 860px);
  margin: 0 auto;
  padding: 5.4rem 0 4rem;
  text-align: center;
}
.shop-intro h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .94;
}
.shop-intro h1 em { color: var(--coral); font-weight: 500; }
.shop-intro > p:not(.eyebrow) { max-width: 43rem; margin: 1.5rem auto 0; color: var(--slate); font-size: 1.05rem; }
.shop-intro .assurance-list { justify-content: center; }
.shop-shell {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto 7rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}
.shop-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 2rem;
  background: var(--ink);
}
.shop-progress button {
  position: relative;
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  color: var(--sea-bright);
  background: transparent;
  border: 0;
  border-bottom: .25rem solid transparent;
  font: inherit;
  font-size: .77rem;
  font-weight: 800;
  cursor: pointer;
}
.shop-progress button:disabled { cursor: default; opacity: .55; }
.shop-progress button span { display: grid; width: 1.75rem; height: 1.75rem; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.shop-progress button.is-current { color: var(--yellow); border-color: var(--yellow); }
.shop-progress button.is-complete { color: var(--white); }
.shop-progress button.is-complete span { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.shop-form { position: relative; }
.shop-step { padding: 4rem clamp(1.25rem, 5vw, 4.8rem) 2rem; animation: step-in .25s ease both; }
@keyframes step-in { from { opacity: .35; transform: translateY(.6rem); } to { opacity: 1; transform: none; } }
.step-heading { max-width: 48rem; margin-bottom: 2.5rem; }
.step-kicker { margin: 0 0 .5rem; color: var(--coral); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.step-heading h2,
.checkout-dialog h2,
.shop-product-facts h2 { margin: 0; font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.9rem); font-weight: 600; letter-spacing: -.035em; line-height: 1; }
.step-heading > p:last-child { max-width: 44rem; margin: 1rem 0 0; color: var(--slate); }
.choice-grid { display: grid; gap: 1.15rem; }
.style-choice-grid { grid-template-columns: repeat(3, 1fr); }
.topic-choice-grid { grid-template-columns: repeat(3, 1fr); }
.image-choice {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(21,54,52,.08);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.image-choice:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(21,54,52,.13); }
.image-choice:has(input:checked) { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(201,104,87,.12), 0 14px 32px rgba(21,54,52,.13); }
.image-choice:has(input:disabled:not(:checked)) { cursor: not-allowed; filter: grayscale(.35); opacity: .53; transform: none; }
.image-choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-image { position: relative; overflow: hidden; background: var(--linen); }
.style-choice-grid .choice-image { aspect-ratio: 3 / 2; }
.topic-choice-grid .choice-image { aspect-ratio: 3 / 2; padding: .75rem; }
.choice-image img { width: 100%; height: 100%; object-fit: cover; }
.topic-choice-grid .choice-image img { filter: drop-shadow(0 7px 8px rgba(21,54,52,.13)); }
.choice-copy { display: grid; gap: .15rem; padding: 1rem 3rem 1.05rem 1.1rem; }
.choice-copy strong { color: var(--ink-deep); font-size: .96rem; }
.choice-copy small { color: var(--muted); font-size: .69rem; line-height: 1.35; }
.choice-tick { position: absolute; right: .85rem; bottom: .95rem; display: grid; width: 1.75rem; height: 1.75rem; place-items: center; color: var(--white); background: var(--coral); border-radius: 50%; font-size: .78rem; font-weight: 900; opacity: 0; transform: scale(.5); transition: opacity .18s ease, transform .18s ease; }
.image-choice:has(input:checked) .choice-tick { opacity: 1; transform: none; }
.field-error { min-height: 1.5rem; margin: 1rem 0 0; color: #9b372a; font-size: .82rem; font-weight: 750; }
.included-choice { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: 1.2rem; padding: .72rem 1rem; color: var(--ink); background: var(--sea); border-radius: .65rem; }
.included-choice div { display: grid; line-height: 1.2; }
.included-choice strong { font-size: .86rem; }
.included-choice small { color: var(--slate); font-size: .67rem; }
.included-icon { display: grid; width: 1.75rem; height: 1.75rem; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-size: .72rem; }
.topic-count { float: right; margin: .5rem 0 1rem; color: var(--slate); font-size: .78rem; font-weight: 800; }
.topic-count span { color: var(--coral); font-size: 1.1rem; }
.security-note { margin: -1rem 0 2rem; padding: 1rem 1.2rem; color: #74443c; background: #f4dfd8; border-left: .3rem solid var(--coral); font-size: .8rem; }
.form-grid,
.dynamic-topic-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.dynamic-topic-fields { margin-top: 1.2rem; }
.form-field { display: grid; align-content: start; gap: .45rem; }
.form-field-wide { grid-column: 1 / -1; }
.form-field > span { color: var(--ink-deep); font-size: .78rem; font-weight: 800; }
.form-field b { color: var(--coral); }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: .9rem 1rem;
  color: var(--ink-deep);
  background: var(--white);
  border: 1px solid rgba(33,72,70,.24);
  border-radius: .7rem;
  font: inherit;
  font-size: .9rem;
  line-height: 1.45;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--coral); outline: 3px solid rgba(201,104,87,.14); }
.form-field small { color: var(--muted); font-size: .67rem; }
.form-field.is-invalid input,
.form-field.is-invalid textarea { border-color: #a33e30; background: #fff8f6; }
.trap-field { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.step-actions { display: flex; min-height: 6.5rem; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem clamp(1.25rem, 5vw, 4.8rem) 2rem; }
.step-actions [hidden] { display: none !important; }
.step-back { padding: .8rem 0; color: var(--slate); background: transparent; border: 0; font: inherit; font-size: .83rem; font-weight: 800; cursor: pointer; }
.step-next { width: auto; margin-left: auto; }
.review-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(20rem, .75fr); gap: 2rem; align-items: start; }
.live-preview {
  --preview-ink: #214846;
  --preview-mid: #8eb8ad;
  --preview-accent: #c96857;
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(13rem, .9fr) minmax(14rem, 1.1fr);
  gap: 2.25rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: linear-gradient(135deg, #dfebe7, #f6efe4 65%);
  border-radius: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(33,72,70,.1);
}
.live-preview[data-style="woodland"] { --preview-ink: #354b35; --preview-mid: #8b9476; --preview-accent: #a65c3b; background: linear-gradient(135deg, #d9d2bd, #efe4d3 65%); }
.live-preview[data-style="cottage"] { --preview-ink: #66735d; --preview-mid: #b8bea0; --preview-accent: #b97173; background: linear-gradient(135deg, #e4e5d8, #f7eee7 65%); }
.preview-board {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 2rem 1.25rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--preview-ink);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,239,228,.94));
  border: .75rem solid rgba(255,255,255,.52);
  border-right-width: 1.25rem;
  border-radius: .3rem;
  box-shadow: -6px 9px 0 rgba(255,255,255,.45), 0 24px 35px rgba(21,54,52,.18);
  text-align: center;
}
.preview-board::before { position: absolute; inset: .42rem; content: ''; border: 1px solid var(--preview-mid); }
.preview-board strong { position: relative; max-width: 13rem; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 600; letter-spacing: .02em; line-height: 1.05; text-transform: uppercase; overflow-wrap: anywhere; }
.preview-board small { position: relative; margin-top: 1rem; color: var(--preview-accent); font-size: .56rem; font-weight: 900; letter-spacing: .13em; }
.preview-motif { position: relative; margin-bottom: .8rem; color: var(--preview-accent); font-size: 2rem; }
.preview-lines { position: relative; display: grid; width: 55%; gap: .45rem; margin-top: 1.4rem; }
.preview-lines i { display: block; height: 1px; background: var(--preview-mid); }
.preview-magnets { display: grid; gap: 1.2rem; }
.preview-magnet { position: relative; display: grid; min-height: 130px; padding: 1.35rem 1.5rem; align-content: center; gap: .5rem; color: var(--preview-ink); background: #f8f1e6; border-radius: .2rem; box-shadow: 0 12px 25px rgba(21,54,52,.14); overflow: hidden; }
.preview-magnet::after { position: absolute; right: -2.5rem; bottom: -3.6rem; width: 11rem; height: 6rem; content: ''; background: var(--preview-mid); border-radius: 50%; opacity: .55; transform: rotate(-8deg); }
.preview-magnet strong { position: relative; z-index: 1; color: var(--preview-accent); font-size: .82rem; letter-spacing: .08em; }
.preview-magnet span { position: relative; z-index: 1; display: -webkit-box; max-width: 90%; color: var(--preview-ink); font-size: .65rem; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.order-summary { position: sticky; top: 1rem; padding: 1.4rem; background: var(--white); border: 1px solid var(--line); border-radius: 1rem; box-shadow: 0 12px 30px rgba(21,54,52,.08); }
.summary-price { display: grid; padding-bottom: 1rem; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--line); }
.summary-price span { align-self: end; font-size: .78rem; font-weight: 800; }
.summary-price strong { grid-row: span 2; color: var(--coral); font-family: var(--display); font-size: 2.7rem; font-weight: 600; line-height: 1; }
.summary-price small { color: var(--muted); font-size: .67rem; }
.order-summary dl { display: grid; grid-template-columns: 7rem 1fr; gap: .65rem .8rem; margin: 1.2rem 0; font-size: .72rem; line-height: 1.4; }
.order-summary dt { color: var(--muted); }
.order-summary dd { margin: 0; color: var(--ink-deep); font-weight: 700; }
.order-ref { padding: .75rem; background: var(--linen); border-radius: .5rem; font-size: .68rem; text-align: center; }
.order-ref strong { display: block; color: var(--coral); font-size: .78rem; letter-spacing: .05em; }
.terms-check { display: grid; margin: 1.1rem 0; grid-template-columns: 1.1rem 1fr; gap: .7rem; align-items: start; color: var(--slate); font-size: .69rem; line-height: 1.45; }
.terms-check input { width: 1rem; height: 1rem; margin-top: .14rem; accent-color: var(--coral); }
.terms-check.is-invalid { padding: .65rem; background: #fff1ed; border-radius: .5rem; }
.checkout-button { width: 100%; }
.checkout-button:disabled { cursor: wait; opacity: .7; }
.checkout-note { margin: .8rem 0 0; color: var(--muted); font-size: .65rem; line-height: 1.45; text-align: center; }
.form-status { margin-top: .8rem; color: #9b372a; font-size: .72rem; font-weight: 750; }
.checkout-dialog { width: min(calc(100% - 2rem), 34rem); padding: 2.3rem; color: var(--ink); background: var(--paper); border: 0; border-radius: 1.2rem; box-shadow: 0 30px 80px rgba(21,54,52,.35); }
.checkout-dialog::backdrop { background: rgba(9,38,44,.72); backdrop-filter: blur(3px); }
.dialog-close { position: absolute; top: .8rem; right: .8rem; width: 2.2rem; height: 2.2rem; color: var(--slate); background: var(--linen); border: 0; border-radius: 50%; font-size: 1.2rem; cursor: pointer; }
.checkout-dialog > p:not(.eyebrow) { color: var(--slate); font-size: .86rem; }
.dialog-reference { display: flex; margin: 1rem 0; padding: .85rem; align-items: center; justify-content: space-between; gap: .8rem; background: var(--linen); border: 1px dashed var(--coral); border-radius: .6rem; }
.dialog-reference strong { color: var(--ink-deep); font-size: 1.05rem; letter-spacing: .06em; }
.dialog-reference button { padding: .5rem .7rem; color: var(--white); background: var(--ink); border: 0; border-radius: .35rem; font-size: .68rem; font-weight: 800; cursor: pointer; }
.checkout-dialog .button { width: 100%; margin-top: .5rem; }
.checkout-dialog > small { display: block; margin-top: .75rem; color: var(--muted); font-size: .65rem; text-align: center; }
.shop-product-facts { display: grid; width: min(calc(100% - 3rem), var(--max)); margin: 0 auto 7rem; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; }
.shop-product-facts ul { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(2, 1fr); gap: 1rem; list-style: none; }
.shop-product-facts li { min-height: 9rem; padding: 1.3rem; background: var(--paper); border: 1px solid var(--line); border-radius: .8rem; }
.shop-product-facts li strong { display: block; margin-bottom: .45rem; color: var(--coral); font-family: var(--display); font-size: 1.25rem; font-weight: 600; }
.shop-product-facts li span { color: var(--slate); font-size: .75rem; line-height: 1.5; }

@media (max-width: 980px) {
  .style-choice-grid { grid-template-columns: 1fr; }
  .style-choice-grid .image-choice { display: grid; grid-template-columns: minmax(12rem, .85fr) 1.15fr; align-items: center; }
  .style-choice-grid .choice-image { aspect-ratio: 3 / 2; }
  .topic-choice-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .shop-product-facts { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 700px) {
  .shop-body { padding-bottom: 0; }
  .shop-site-header { width: calc(100% - 2rem); grid-template-columns: 1fr auto; }
  .shop-site-header > .text-link { display: none; }
  .shop-header-price { justify-self: end; }
  .shop-intro { width: calc(100% - 2rem); padding: 3.6rem 0 2.8rem; text-align: left; }
  .shop-intro h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .shop-intro .assurance-list { justify-content: flex-start; }
  .shop-shell { width: calc(100% - 1rem); margin-bottom: 5rem; border-radius: 1rem; }
  .shop-progress { padding: 0 .25rem; }
  .shop-progress button { min-height: 4.5rem; flex-direction: column; gap: .25rem; font-size: .6rem; }
  .shop-progress button span { width: 1.45rem; height: 1.45rem; font-size: .62rem; }
  .shop-step { padding: 2.5rem 1rem 1rem; }
  .step-heading { margin-bottom: 1.7rem; }
  .style-choice-grid .image-choice { display: flex; }
  .topic-choice-grid { grid-template-columns: 1fr; }
  .topic-choice-grid .image-choice { display: grid; grid-template-columns: 8.5rem 1fr; align-items: center; }
  .topic-choice-grid .choice-image { aspect-ratio: 3 / 2; padding: .45rem; }
  .topic-choice-grid .choice-copy { padding-left: .7rem; }
  .topic-count { float: none; margin: 0 0 1rem; }
  .form-grid,
  .dynamic-topic-fields { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .step-actions { padding: 1rem 1rem 1.5rem; }
  .step-next { width: 100%; }
  .step-back:not([hidden]) + .step-next { width: auto; }
  .live-preview { min-height: 0; padding: 1.2rem; grid-template-columns: 1fr; gap: 1.4rem; }
  .preview-board { width: min(78%, 16rem); min-height: 340px; margin: 0 auto; }
  .preview-magnets { grid-template-columns: 1fr; gap: .7rem; }
  .preview-magnet { min-height: 105px; }
  .order-summary dl { grid-template-columns: 6.4rem 1fr; }
  .shop-product-facts { width: calc(100% - 2rem); }
  .shop-product-facts ul { grid-template-columns: 1fr; }
  .shop-product-facts li { min-height: auto; }
}
