/* ==========================================================================
   SafeDrop · Parcel Box Site
   Aesthetic: refined-minimal, warm, editorial. Cream + charcoal + forest accent.
   ========================================================================== */

:root {
  /* Colour palette */
  --cream: #f4efe6;
  --cream-deep: #ebe4d4;
  --paper: #fbf8f1;
  --ink: #1c1c1a;
  --ink-soft: #4a4a47;
  --ink-mute: #8a8780;
  --line: #d9d2c2;
  --line-soft: #e7e1d2;
  --accent: #2d4a3a;          /* deep forest green */
  --accent-hover: #1f3528;
  --accent-soft: #e8ede9;
  --gold: #b8893f;             /* warm accent for stars/badges */
  --shadow-sm: 0 1px 2px rgba(28, 28, 26, 0.05);
  --shadow-md: 0 8px 24px -8px rgba(28, 28, 26, 0.12);
  --shadow-lg: 0 24px 60px -20px rgba(28, 28, 26, 0.18);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

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

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ TYPOGRAPHY ============ */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
}

h1.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-variation-settings: normal;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  margin-bottom: 1.75rem;
}
h1.display em { font-variation-settings: normal; }
h2.display { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.85em 1.6em;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all 180ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--sm { padding: 0.55em 1.1em; font-size: 0.85rem; }
.btn--lg { padding: 1.1em 1.8em; font-size: 1rem; }
.btn--full { width: 100%; justify-content: space-between; }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.btn--text {
  background: transparent;
  padding: 0.85em 0.2em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn--text:hover { color: var(--accent); border-color: var(--accent); }

.btn__price {
  font-weight: 400;
  opacity: 0.7;
  font-feature-settings: 'tnum';
}

/* ============ ANNOUNCEMENT ============ */

.announce {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 0.55rem var(--gutter);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ============ NAV ============ */

.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(251, 248, 241, 0.92);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-soft);
  transition: color 150ms;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0);
  transition: transform 200ms ease;
  transform-origin: left;
}
.nav__links a:hover::after { transform: scaleX(1); }
/* Hamburger button */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 200ms ease;
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--paper);
  padding: 5rem 2rem 2rem;
  z-index: 49;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
}
.nav__drawer-link:hover { color: var(--accent); }

/* Overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 48;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 300ms ease;
}
.nav__overlay.is-open { opacity: 1; }

@media (max-width: 720px) {
  .nav__burger { display: flex; }
  .nav__overlay { display: block; }
  .nav__buy { display: none; }
  .nav__links { display: none; }
}

/* ============ HERO ============ */

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, var(--cream) 0%, transparent 60%),
    var(--paper);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(28,28,26,0.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
}
.hero__text { max-width: 36rem; }
.hero__cta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin: 2.25rem 0 2rem;
  flex-wrap: wrap;
}
.hero__bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__bullets svg { color: var(--accent); }

.hero__visual {
  aspect-ratio: 4/5;
  width: 100%;
  position: relative;
}
.hero__photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  object-fit: cover;
  display: block;
}

/* ============ PLACEHOLDER PHOTOS (replace these with real images) ============ */

.placeholder-photo {
  background: var(--cream);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--ink-mute);
}
.placeholder-photo__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}
.placeholder-photo__label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}
.placeholder-photo--sm .placeholder-photo__label { font-size: 0.6rem; }

/* ============ TRUST STRIP ============ */

.trust {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 880px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}
.trust__item { text-align: left; }
.trust__item svg { color: var(--accent); margin-bottom: 1rem; }
.trust__item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.trust__item p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============ PRODUCT CONFIGURATOR ============ */

.product {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .product__grid { grid-template-columns: 1fr; }
}

.product__gallery {
  position: sticky;
  top: 100px;
}
@media (max-width: 880px) {
  .product__gallery { position: static; }
}
.product__main-image {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__main-image img,
.product__main-image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.product__thumb {
  width: calc((100% - 3 * 0.75rem) / 4);
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  cursor: pointer;
  padding: 0;
  transition: border-color 150ms;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product__thumb:hover { border-color: var(--ink); }
.product__thumb--active { border-color: var(--ink); border-width: 2px; }
.product__thumb--video { background: var(--ink); color: #fff; }
.thumb-play { font-size: 1.25rem; line-height: 1; pointer-events: none; }
.swatch--unavailable { opacity: 0.25; cursor: not-allowed; }
.swatch--unavailable input { pointer-events: none; }

.product__title { margin-bottom: 1.25rem; max-width: 14ch; }

.product__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.stars { display: inline-flex; gap: 2px; }
.star {
  width: 16px; height: 16px;
  background: var(--gold);
  display: block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.product__rating-text { font-size: 0.88rem; color: var(--ink-soft); }

.product__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  font-feature-settings: 'tnum';
}

/* Option groups */
.option-group {
  border: none;
  margin-bottom: 2rem;
}
.option-group__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}
.option-group__value {
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

/* Size options */
.options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.option {
  cursor: pointer;
  display: block;
  position: relative;
}
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option__inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: all 160ms;
}
.option:hover .option__inner { border-color: var(--ink-soft); }
.option input:checked + .option__inner {
  border-color: var(--ink);
  background: var(--cream);
  box-shadow: 0 0 0 1px var(--ink) inset;
}
.option__title {
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.option__meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-feature-settings: 'tnum';
}
.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
  background: var(--accent);
  color: var(--paper);
  border-radius: 999px;
}

/* Colour swatches */
.swatches {
  display: flex;
  gap: 0.75rem;
}
.swatch {
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swatch input { position: absolute; opacity: 0; pointer-events: none; }
.swatch__dot {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 160ms;
}
.swatch:hover .swatch__dot { transform: scale(1.08); }
.swatch input:checked ~ .swatch__dot {
  outline: 1.5px solid var(--ink);
  outline-offset: 4px;
}

/* Quantity */
.qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.qty__label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.qty__controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.qty__btn {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  transition: color 150ms;
}
.qty__btn:hover { color: var(--ink); }
.qty__controls input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  appearance: textfield;
  -moz-appearance: textfield;
}
.qty__controls input::-webkit-outer-spin-button,
.qty__controls input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product__dims-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.product__dims-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.product__dims-value {
  font-size: 0.95rem;
  color: var(--ink);
  font-family: var(--font-body);
}

.product__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}
.product__note svg { color: var(--accent); }

.product__feature-list {
  list-style: none;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.product__feature-list strong {
  color: var(--ink);
  font-weight: 500;
  display: inline-block;
  width: 90px;
}

/* ============ FEATURES ============ */

.features {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features__grid { grid-template-columns: 1fr; }
}
.feature {
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
}
.feature__icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}
.feature h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
}
.feature p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */

.how {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-head .display { margin-bottom: 0.5rem; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 880px) {
  .how__steps { grid-template-columns: 1fr; }
}
.step {
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
  position: relative;
}
.step__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
}
.step p { color: var(--ink-soft); }

/* ============ INSTALL ============ */

.install {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.install__grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .install__grid { grid-template-columns: 1fr; }
}
.install__steps {
  list-style: none;
  counter-reset: step;
  margin: 1.25rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.install__steps li {
  counter-increment: step;
  padding-left: 3rem;
  position: relative;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.install__steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.install__steps strong { color: var(--ink); font-weight: 500; }
.install__note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.install__note a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.install__note a:hover { color: var(--accent-hover); }

.install__visual {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
  object-fit: cover;
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
}
@media (max-width: 880px) {
  .install__visual { position: static; }
}

/* ============ FAQ ============ */

.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .faq__grid { grid-template-columns: 1fr; }
}
.faq__contact {
  margin-top: 1.5rem;
  color: var(--ink-soft);
}
.faq__contact a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 150ms;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink-soft);
  transition: transform 200ms;
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item[open] summary { color: var(--accent); }
.faq__item p {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.6;
}

/* ============ FINAL CTA ============ */

.final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.final-cta .display { color: var(--cream); }
.final-cta .display em { color: var(--gold); }
.final-cta .lede { color: rgba(244, 239, 230, 0.7); }
.final-cta .btn--primary {
  background: var(--cream);
  color: var(--ink);
  margin-top: 1rem;
}
.final-cta .btn--primary:hover { background: var(--paper); }

/* ============ FOOTER ============ */

.footer {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
.footer__tag {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  max-width: 24ch;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.25rem 0;
  transition: color 150ms;
}
.footer__col a:hover { color: var(--ink); }
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--ink-mute);
}
@media (max-width: 720px) {
  .footer__base { flex-direction: column; gap: 0.4rem; }
}

/* ============ TOAST ============ */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 100;
}
.toast svg { color: #8fc7a5; }
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============ MOTION ============ */

@media (prefers-reduced-motion: no-preference) {
  .hero__text > * {
    animation: rise 700ms cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
  }
  .hero__text .eyebrow { animation-delay: 50ms; }
  .hero__text .display { animation-delay: 150ms; }
  .hero__text .lede { animation-delay: 280ms; }
  .hero__text .hero__cta { animation-delay: 380ms; }
  .hero__text .hero__bullets { animation-delay: 480ms; }
  .hero__visual {
    animation: fadeIn 900ms ease 200ms backwards;
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn:focus-visible { outline-offset: 3px; }
