:root {
  --green: #2e6736;
  --green-dark: #2e6736;
  --green-deep: #103323;
  --sage: #eef5ed;
  --sage-strong: #dfeade;
  --paper: #ffffff;
  --cream: #f8f4ee;
  --clay: #a26443;
  --ink: #000000;
  --muted: #626262;
  --line: #dce4da;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(23, 63, 43, 0.1);
  --container: 1200px;
  --radius: 16px;
  --font-body: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-base: 15px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.countdown-promo {
  --promo-background: #238623;
  --promo-text: #ffffff;
  --promo-accent: #f6c65b;
  --promo-card-background: #ffffff;
  --promo-card-text: #111111;
  --promo-button-background: #ffffff;
  --promo-button-text: #238623;
  position: relative;
  z-index: 31;
  width: 100%;
  overflow: hidden;
  background-color: var(--promo-background);
  background-image: url("./assets/countdown-desktop.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--promo-text);
  isolation: isolate;
}

.countdown-promo[hidden] {
  display: none;
}

.countdown-promo__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, max-content) auto auto;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 10px clamp(16px, 4vw, 44px);
}

.countdown-promo__content {
  min-width: 0;
}

.countdown-promo__eyebrow {
  margin: 0 0 2px;
  color: var(--promo-accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.countdown-promo__heading {
  color: currentColor;
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 800;
  line-height: 1.1;
}

.countdown-promo__timer {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  align-items: center;
}

.countdown-promo__time-card {
  display: grid;
  min-width: 52px;
  place-items: center;
  gap: 4px;
  color: currentColor;
  line-height: 1;
}

.countdown-promo__time-value {
  display: grid;
  min-width: 52px;
  place-items: center;
  padding: 7px 8px 6px;
  border-radius: 6px;
  background: var(--promo-card-background);
  color: var(--promo-card-text);
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.countdown-promo__time-label {
  color: currentColor;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.78;
}

.countdown-promo__actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
}

.countdown-promo__button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 6px;
  background: var(--promo-button-background);
  color: var(--promo-button-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.countdown-promo__mobile-link {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3.2vw, 48px);
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.24s ease, min-height 0.24s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.brand {
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

.main-nav,
.nav-tools {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.main-nav {
  justify-content: flex-start;
}

.main-nav a,
.nav-item > a {
  position: relative;
  color: #1a1a1a;
  transition: color 0.15s ease, text-shadow 0.15s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-item:hover > a,
.nav-item:focus-within > a {
  color: #121212;
  text-shadow: 0.45px 0 0 currentColor, -0.45px 0 0 currentColor;
}

.main-nav > a:first-child {
  color: #b3261e;
  text-decoration: underline;
  text-decoration-color: #b3261e;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-shadow: 0.35px 0 0 currentColor, -0.35px 0 0 currentColor;
}

.nav-item {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 270px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-submenu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #303030;
  font-size: 14px;
  text-shadow: none;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: #f5f5f2;
  color: #121212;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-tools {
  justify-content: flex-end;
  gap: 8px;
  color: var(--ink);
}

.tool-link {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
}

.tool-link:hover,
.tool-link:focus-visible {
  background: #f5f5f2;
}

.tool-link span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.tool-search span {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.tool-search span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.tool-account span {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.tool-account span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -7px;
  left: -5px;
  height: 10px;
  border: 2px solid currentColor;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom: 0;
}

.tool-cart span {
  width: 21px;
  height: 17px;
  margin-top: 3px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.tool-cart span::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 5px;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.tool-cart em {
  position: absolute;
  right: 3px;
  top: 2px;
  display: grid;
  min-width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--green-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(620px, 56.25vw, 760px);
  display: grid;
  align-items: start;
  overflow: hidden;
  background: var(--cream);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-copy {
  position: relative;
  width: min(560px, calc(100% - 48px));
  max-width: 560px;
  margin: 0;
  justify-self: start;
  margin-left: clamp(32px, 8vw, 140px);
  padding: clamp(72px, 7vw, 112px) 0 0;
  text-align: left;
}

.hero-copy h1 {
  font-size: clamp(46px, 4.2vw, 60px);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.48);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #dcebd8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(44px, 5.2vw, 72px);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.4vw, 48px);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 1.7vw, 26px);
}

p {
  color: var(--muted);
  font-size: 15px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-right: 0;
  margin-left: 0;
  color: #283931;
  font-size: 16px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 60px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 16px 32px rgba(23, 63, 43, 0.22);
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--sage);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-dark);
}

.button-light:hover,
.button-light:focus-visible {
  background: #f3eadc;
  color: var(--green-dark);
}

.section {
  width: min(var(--container), calc(100% - 48px));
  margin: clamp(64px, 8vw, 104px) auto;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  max-width: 680px;
}

.delivery-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.delivery-flow::before {
  content: "";
  position: absolute;
  top: 154px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: linear-gradient(90deg, rgba(46, 103, 54, 0), rgba(46, 103, 54, 0.34), rgba(46, 103, 54, 0));
}

.flow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 63, 43, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.flow-card:hover,
.flow-card:focus-visible {
  border-color: rgba(38, 95, 53, 0.28);
  outline: 0;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.flow-card__media {
  position: relative;
  overflow: hidden;
  margin: 16px 16px 0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 32%),
    var(--sage);
}

.flow-card__media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: rgba(46, 103, 54, 0.16);
}

.flow-card__media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.flow-card:hover .flow-card__media img,
.flow-card:focus-visible .flow-card__media img {
  transform: scale(1.035);
}

.flow-card__body {
  position: relative;
  padding: 26px 24px 28px;
}

.flow-step {
  position: absolute;
  top: -24px;
  left: 24px;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(16, 51, 35, 0.18);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.flow-card h3 {
  font-size: 22px;
}

.flow-card p {
  margin-bottom: 0;
}

.returns-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  background: var(--sage);
}

.return-tab {
  flex: 1 1 160px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  background: transparent;
  color: var(--green-dark);
  font-weight: 750;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.return-tab.is-active,
.return-tab:hover,
.return-tab:focus-visible {
  background: var(--white);
  box-shadow: 0 8px 20px rgba(23, 63, 43, 0.08);
}

.setup-section {
  width: min(var(--container), calc(100% - 48px));
}

.setup-section .section-head {
  margin-bottom: 36px;
}

.step-layout {
  display: grid;
  max-width: 877px;
  grid-template-columns: minmax(0, 3fr) minmax(340px, 2fr);
  align-items: stretch;
  gap: 24px;
  margin: 0 auto;
}

.step-stage {
  position: relative;
  min-width: 0;
  width: 100%;
  align-self: start;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream);
}

.step-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.step-stage[data-active-step="1"] img {
  object-fit: cover;
  object-position: center;
}

.step-list {
  display: grid;
  min-width: 0;
  height: 100%;
  align-self: stretch;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.step-button {
  display: grid;
  grid-template-columns: auto 1fr;
  min-width: 0;
  min-height: 0;
  gap: 5px 14px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.step-button span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
}

.step-button strong {
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
}

.step-button small {
  color: var(--muted);
  font-size: 13px;
}

.step-button:hover,
.step-button:focus-visible,
.step-button.is-active {
  border-color: rgba(38, 95, 53, 0.34);
  background: var(--sage);
  transform: translateX(4px);
}

.timeline-band {
  margin: clamp(72px, 9vw, 118px) 0;
  padding: clamp(58px, 7vw, 86px) 24px;
  border-top: 1px solid rgba(46, 103, 54, 0.12);
  border-bottom: 1px solid rgba(46, 103, 54, 0.12);
  background: linear-gradient(135deg, #eef5ed 0%, #e4efe2 100%);
  color: var(--green-dark);
}

.timeline-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  text-align: center;
}

.timeline-inner h2 {
  color: var(--ink);
}

.timeline-band .eyebrow.light {
  color: var(--green);
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: rgba(46, 103, 54, 0.24);
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 0 10px;
  background: transparent;
  color: #667367;
  text-align: center;
}

.timeline-step span {
  display: block;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(46, 103, 54, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.timeline-step span::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 16px auto;
  border-radius: 50%;
  background: currentColor;
}

.timeline-step strong {
  color: inherit;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
}

.timeline-step small {
  max-width: 120px;
  font-size: 12px;
}

.timeline-step:hover,
.timeline-step:focus-visible,
.timeline-step.is-active {
  color: var(--green-dark);
}

.timeline-step.is-active span {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  transform: scale(1.08);
}

.timeline-note {
  max-width: 680px;
  min-height: 58px;
  margin: 34px auto 0;
  color: #4f5d52;
}

.room-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.85fr);
  align-items: stretch;
  gap: 24px;
}

.room-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}

.room-image img {
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.room-card {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sage);
}

.checklist {
  display: grid;
  gap: 14px;
  margin: 26px 0 22px;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.checklist input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--green);
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 63, 43, 0.12);
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 0.22s ease;
}

.progress-copy {
  margin-top: 9px;
  margin-bottom: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 750;
}

.returns-tabs {
  width: min(920px, 100%);
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.return-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(920px, 100%);
  min-height: 210px;
  margin: 0 auto;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 63, 43, 0.07);
}

.panel-icon {
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green);
}

.panel-icon::before {
  content: "";
  width: 50px;
  height: 50px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.panel-icon-camera::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 7h4l2-3h6l2 3h4v13H3z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 7h4l2-3h6l2 3h4v13H3z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

.panel-icon-warranty::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 3l7 3v5c0 4.6-2.9 8.3-7 10-4.1-1.7-7-5.4-7-10V6z'/%3E%3Cpath d='M8.5 12l2.2 2.2 4.8-5'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 3l7 3v5c0 4.6-2.9 8.3-7 10-4.1-1.7-7-5.4-7-10V6z'/%3E%3Cpath d='M8.5 12l2.2 2.2 4.8-5'/%3E%3C/g%3E%3C/svg%3E");
}

.faq-section {
  max-width: 940px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

details[open] {
  border-color: rgba(38, 95, 53, 0.28);
  box-shadow: 0 12px 30px rgba(23, 63, 43, 0.06);
}

summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--green-dark);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(var(--container), calc(100% - 48px));
  margin: clamp(64px, 8vw, 104px) auto;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8f4ee 0%, #eef5ed 100%);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.bottom-copy {
  padding-left: 0;
}

.bottom-copy h2 {
  color: var(--ink);
}

.bottom-copy p {
  max-width: 580px;
  color: var(--muted);
}

.bottom-cta img {
  width: 100%;
  min-height: 300px;
  max-height: 390px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 42px rgba(23, 63, 43, 0.12);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 24px clamp(20px, 4vw, 56px);
  background: #262524;
  color: var(--white);
}

.service-strip article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px clamp(8px, 2vw, 20px);
}

.service-strip h2 {
  margin: 0 0 2px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.service-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.service-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  display: block;
  border-color: currentColor;
}

.service-icon-box::before {
  inset: 14px 11px 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.service-icon-box::after {
  left: 14px;
  top: 11px;
  width: 20px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: skewY(-22deg);
}

.service-icon-care::before {
  left: 13px;
  top: 13px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.service-icon-care::after {
  left: 18px;
  top: 22px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 999px 999px;
}

.service-icon-shield::before {
  left: 14px;
  top: 10px;
  width: 20px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 14px 14px;
  transform: perspective(30px) rotateX(-10deg);
}

.service-icon-shield::after {
  left: 20px;
  top: 22px;
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.service-icon-lock::before {
  left: 13px;
  top: 21px;
  width: 22px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.service-icon-lock::after {
  left: 18px;
  top: 11px;
  width: 12px;
  height: 15px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.site-footer {
  background: #262524;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 96px);
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 56px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-support-link {
  color: var(--white);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.footer-social a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 24px;
  padding: 20px clamp(20px, calc((100vw - var(--container)) / 2), 56px);
  background: #336633;
  color: var(--white);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(6px, 0.6vw, 10px);
  justify-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contents {
  display: contents;
}

.payment-list svg {
  width: auto;
  height: clamp(18px, 1.45vw, 24px);
  max-width: clamp(32px, 3vw, 44px);
  flex: 0 0 auto;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 16px;
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav > a,
  .nav-item > a {
    display: block;
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:last-child,
  .nav-item:last-child > a {
    border-bottom: 0;
  }

  .nav-item {
    display: grid;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    display: grid;
    padding: 4px 0 10px 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    padding: 8px 10px;
    border-bottom: 0;
    color: var(--muted);
    font-size: 13px;
  }

  .nav-tools {
    display: none;
  }

  .delivery-flow,
  .step-layout,
  .room-section,
  .bottom-cta {
    grid-template-columns: 1fr;
  }

  .step-layout {
    height: auto;
  }

  .delivery-flow::before {
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(46, 103, 54, 0), rgba(46, 103, 54, 0.26), rgba(46, 103, 54, 0));
  }

  .room-image img,
  .room-image {
    min-height: 420px;
  }

  .step-stage,
  .step-stage img {
    min-height: 0;
  }

  .step-stage {
    height: auto;
  }

  .step-stage img {
    height: 100%;
  }

  .service-strip,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .countdown-promo {
    width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url("./assets/countdown-mobile.jpg");
    background-position: center center;
    background-size: cover;
  }

  .countdown-promo__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "text"
      "timer"
      "actions";
    align-items: center;
    align-content: center;
    justify-content: stretch;
    gap: 6px 8px;
    width: 100%;
    min-height: 96px;
    max-width: none;
    padding: 6px 44px 6px 24px;
  }

  .countdown-promo__content {
    grid-area: text;
  }

  .countdown-promo__eyebrow {
    font-size: 10px;
  }

  .countdown-promo__heading {
    display: -webkit-box;
    overflow: hidden;
    color: var(--promo-accent);
    font-size: 17px;
    line-height: 1.12;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .countdown-promo__timer {
    grid-area: timer;
    justify-content: start;
    gap: 4px;
  }

  .countdown-promo__time-card {
    min-width: 44px;
    gap: 4px;
  }

  .countdown-promo__time-value {
    min-width: 44px;
    min-height: 32px;
    padding: 8px 9px 7px;
    border-radius: 8px;
    font-size: 22px;
  }

  .countdown-promo__time-label {
    font-size: 8px;
  }

  .countdown-promo__actions {
    grid-area: actions;
    justify-content: start;
  }

  .countdown-promo__button {
    min-height: 32px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .main-nav {
    top: 78px;
  }

  .hero {
    min-height: 650px;
    align-items: start;
  }

  .hero-media {
    background: var(--cream);
  }

  .hero-media img {
    position: absolute;
    inset: auto 0 0;
    height: 380px;
    object-position: center bottom;
  }

  .hero-copy {
    width: calc(100% - 32px);
    max-width: none;
    margin-left: 16px;
    padding: 24px 0 0;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .section {
    width: calc(100% - 32px);
    margin: 64px auto;
  }

  .delivery-flow {
    display: grid;
    grid-auto-columns: minmax(282px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 16px;
    margin-inline: -16px;
    padding: 0 16px 18px;
    overflow-x: auto;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .delivery-flow::-webkit-scrollbar {
    display: none;
  }

  .delivery-flow::before {
    display: none;
  }

  .flow-card {
    scroll-snap-align: start;
  }

  .step-stage,
  .step-stage img {
    min-height: 0;
  }

  .timeline-track {
    display: grid;
    grid-auto-columns: minmax(142px, 48vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin: 32px -24px 0;
    padding: 0 24px 16px;
    overflow-x: auto;
    scroll-padding-inline: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .timeline-track::-webkit-scrollbar {
    display: none;
  }

  .timeline-track::before {
    display: none;
  }

  .timeline-step {
    min-height: 136px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: 1px solid rgba(46, 103, 54, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.68);
    scroll-snap-align: start;
    text-align: center;
  }

  .timeline-step.is-active {
    background: var(--white);
    box-shadow: 0 12px 28px rgba(23, 63, 43, 0.1);
  }

  .timeline-step small {
    max-width: none;
  }

  .timeline-note {
    margin-top: 32px;
  }

  .return-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .bottom-cta {
    gap: 24px;
    padding: 24px;
  }

  .bottom-cta img {
    min-height: 230px;
    object-position: 20% center;
  }

  .service-strip {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .service-strip article {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-strip article:last-child {
    border-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding: 32px 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .payment-list {
    justify-content: center;
    justify-self: center;
  }

  .payment-list svg {
    height: 18px;
    max-width: 34px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .flow-card__body,
  .room-card {
    padding: 22px;
  }

}
