/* ============================================================
   NEXA BLINDS — design system
   1. Tokens          6. Hero
   2. Reset/base      7. Home sections
   3. Typography      8. Cards & grids
   4. Buttons/forms   9. Inner pages
   5. Header/footer  10. Responsive
   ============================================================ */

/* ---------------------------------------------------------- 1. TOKENS */
:root {
  /* brand */
  --olive-900: #232C15;
  --olive-800: #2F3A22;
  --olive-700: #3C4A2A;
  --olive-600: #4A5A33;
  --olive-500: #5D6E42;
  --olive-300: #8D9A74;
  --olive-100: #DDE2D2;

  --gold-600: #9C7C42;
  --gold-500: #B8955A;
  --gold-400: #C8A96B;
  --gold-100: #EFE3CC;

  /* neutrals */
  --cream-50:  #FBF9F4;
  --cream-100: #F6F2E9;
  --cream-200: #EFE9DC;
  --cream-300: #E4DCCB;
  --line:      #E2DACA;
  --line-soft: #EDE7DA;

  --ink-900: #22241E;
  --ink-700: #3A3C34;
  --ink-500: #6A6D62;
  --ink-400: #8B8E83;

  --white: #fff;

  /* type */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* metrics */
  --container: 1220px;
  --container-wide: 1330px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 34px;

  --shadow-xs: 0 1px 2px rgba(35, 44, 21, .05);
  --shadow-sm: 0 4px 14px rgba(35, 44, 21, .06);
  --shadow-md: 0 14px 34px rgba(35, 44, 21, .09);
  --shadow-lg: 0 28px 64px rgba(35, 44, 21, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .38s;

  --section-y: clamp(58px, 7vw, 104px);
}

/* ---------------------------------------------------------- 2. RESET */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--olive-700); color: var(--cream-100); }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 3px;
}

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container--wide { width: min(100% - 40px, var(--container-wide)); margin-inline: auto; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(40px, 5vw, 68px); }

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

.ic { flex-shrink: 0; }

/* ---------------------------------------------------------- 3. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.14;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.05rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.08rem; line-height: 1.32; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-size: .715rem;
  font-weight: 600;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1.05rem;
}
.eyebrow--light { color: var(--gold-400); }

.lede { font-size: 1.06rem; color: var(--ink-500); max-width: 56ch; }

.muted { color: var(--ink-500); }
.small { font-size: .875rem; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(30px, 3.6vw, 52px);
  flex-wrap: wrap;
}
.section-head h2 { margin-bottom: 0; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center .lede { text-align: center; }

/* link with a sliding arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .885rem; font-weight: 500; color: var(--ink-900);
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.link-arrow .ic { transition: transform var(--dur) var(--ease); }
.link-arrow:hover { border-color: var(--gold-500); color: var(--gold-600); }
.link-arrow:hover .ic { transform: translateX(5px); }
.link-arrow--light { color: var(--cream-100); }
.link-arrow--light:hover { color: var(--gold-400); }

/* ---------------------------------------------------------- 4. BUTTONS / FORMS */
.btn {
  --btn-bg: var(--olive-700);
  --btn-fg: var(--cream-100);
  --btn-bd: var(--olive-700);
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 14px 26px;
  font-size: .9rem; font-weight: 500; letter-spacing: .012em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn .ic { transition: transform var(--dur) var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover .ic { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn--primary:hover { --btn-bg: var(--olive-600); --btn-bd: var(--olive-600); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink-900); --btn-bd: var(--line);
}
.btn--ghost:hover { --btn-bg: var(--olive-700); --btn-fg: var(--cream-100); --btn-bd: var(--olive-700); }

.btn--light {
  --btn-bg: var(--cream-100); --btn-fg: var(--olive-800); --btn-bd: var(--cream-100);
}
.btn--light:hover { --btn-bg: var(--white); --btn-bd: var(--white); }

.btn--outline-light {
  --btn-bg: transparent; --btn-fg: var(--cream-100); --btn-bd: rgba(246,242,233,.4);
}
.btn--outline-light:hover { --btn-bg: var(--cream-100); --btn-fg: var(--olive-800); --btn-bd: var(--cream-100); }

.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .82rem; }
.btn--pill { border-radius: 100px; }

/* form controls */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .78rem; font-weight: 500; letter-spacing: .045em;
  text-transform: uppercase; color: var(--ink-500);
}
.field .req { color: var(--gold-600); }

.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .93rem;
  color: var(--ink-900);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-400); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--olive-500);
  box-shadow: 0 0 0 3px rgba(93, 110, 66, .13);
}
.textarea { resize: vertical; min-height: 104px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236A6D62' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid .field--full { grid-column: 1 / -1; }
.hp { position: absolute; left: -9999px; opacity: 0; }

.form-note {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--ink-500); margin-bottom: 18px;
}
.form-note .ic { color: var(--gold-600); }

/* alerts */
.alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px 16px; border-radius: var(--radius-sm);
  font-size: .88rem; margin-bottom: 16px;
  border: 1px solid transparent;
}
.alert--ok { background: #EEF3E6; border-color: #C9D8B4; color: #3B5220; }
.alert--err { background: #FBEEEA; border-color: #EBC9BE; color: #8A3E27; }

/* ---------------------------------------------------------- 5. HEADER */
.topbar {
  background: var(--olive-800);
  color: var(--cream-200);
  font-size: .775rem;
  letter-spacing: .03em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 38px; text-align: center;
}
/* Without this the message cannot shrink or wrap and gets clipped on phones. */
.topbar__inner span { min-width: 0; }
.topbar .ic { color: var(--gold-400); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 249, 244, .92);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px rgba(35, 44, 21, .07);
}
.site-header__inner {
  display: flex; align-items: center; gap: 26px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }

.main-nav { margin-inline: auto; }
.main-nav ul { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  position: relative;
  font-size: .885rem; font-weight: 450; color: var(--ink-700);
  padding: 8px 0;
  transition: color var(--dur) var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px; background: var(--gold-500);
  transition: right var(--dur) var(--ease);
}
.main-nav a:hover { color: var(--ink-900); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--ink-900); font-weight: 500; }

.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .875rem; font-weight: 500; color: var(--ink-900);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.header-phone .ic { color: var(--olive-600); }
.header-phone:hover { color: var(--gold-600); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 8px; cursor: pointer;
  color: var(--ink-900);
}

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 100;
  background: var(--cream-50);
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--line-soft);
}
.mobile-nav__top img { height: 34px; }
.mobile-nav ul { list-style: none; margin: 0; padding: 10px 20px; }
.mobile-nav li { border-bottom: 1px solid var(--line-soft); }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 2px; font-family: var(--font-display); font-size: 1.32rem;
  color: var(--ink-900);
}
.mobile-nav a .ic { color: var(--gold-500); }
.mobile-nav__foot { padding: 22px 20px 34px; display: grid; gap: 12px; }

/* ---------------------------------------------------------- 6. HERO */
.hero {
  position: relative;
  background: var(--cream-100);
  overflow: hidden;
  padding-block: clamp(34px, 4vw, 52px) clamp(96px, 10vw, 132px);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 30px;
  align-items: center;
  position: relative;
}

/* rotated rail on the far left */
.hero__rail {
  position: absolute; left: -46px; top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 20px;
  font-size: .66rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-400);
  pointer-events: none;
}
.hero__rail::after { content: ""; width: 1px; height: 84px; background: var(--line); }

.hero__copy { position: relative; z-index: 3; padding-left: 22px; max-width: 560px; }
.hero__copy h1 { margin-bottom: .34em; }
.hero__copy h1 span { display: block; }
.hero__sub { font-size: 1.02rem; color: var(--ink-500); max-width: 42ch; margin-bottom: 30px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 38px; }

.hero__chips {
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.hero__chips li {
  display: flex; align-items: center; gap: 9px;
  font-size: .805rem; color: var(--ink-500);
}
.hero__chips .ic { color: var(--olive-600); }
.hero__chips { list-style: none; margin: 0; padding-left: 0; padding-top: 24px; }

/* media panel with the signature swept edge */
.hero__media { position: relative; z-index: 1; }
.hero__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
/* cream sweep bulging into the image from the left */
.hero__frame::before {
  content: "";
  position: absolute; left: -2px; top: -2px; bottom: -2px;
  width: 11%;
  background: var(--cream-100);
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  z-index: 2;
}

/* floating cards over the hero image */
.hero__swatch {
  position: absolute; right: 15%; bottom: 6%;
  z-index: 4;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  min-width: 186px;
}
.hero__swatch b { display: block; font-size: .74rem; font-weight: 600; color: var(--ink-900); margin-bottom: 8px; }
.hero__swatch .dots { display: flex; gap: 7px; }
.hero__swatch .dots span {
  width: 21px; height: 21px; border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .08);
}

.hero__badge {
  position: absolute; right: 3%; bottom: 16%;
  z-index: 5;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--olive-700); color: var(--cream-100);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; text-align: center;
  font-size: .63rem; line-height: 1.25; letter-spacing: .04em;
  box-shadow: var(--shadow-md);
  animation: floaty 5.5s ease-in-out infinite;
}
.hero__badge .ic { color: var(--gold-400); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .hero__badge { animation: none; } }

/* trust strip floating over the hero base */
.trust-strip { position: relative; z-index: 10; margin-top: clamp(-72px, -6vw, -54px); }
.trust-strip__inner {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-strip__item {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 22px 16px;
  font-size: .865rem; color: var(--ink-700);
  border-left: 1px solid var(--line-soft);
  text-align: center;
}
.trust-strip__item:first-child { border-left: 0; }
.trust-strip__item .ic { color: var(--olive-600); }

/* ---------------------------------------------------------- 7. COLLECTION CARDS */
.card-grid { display: grid; gap: 22px; }

/* ---------------------------------------------------------- slider (carousel) */
.slider-nav { display: flex; align-items: center; gap: 18px; }
.slider-nav__btns { display: flex; gap: 8px; }
.slider-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--line-soft);
  color: var(--ink-900); cursor: pointer; flex: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.slider-arrow:hover:not(:disabled) { background: var(--olive-700); color: #fff; border-color: var(--olive-700); }
.slider-arrow:disabled { opacity: .35; cursor: default; }

.slider-track {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 8px; margin: -6px -2px -4px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > .collection-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 3 * 22px) / 4);
  min-width: 0;
}
@media (max-width: 1080px) {
  .slider-track > .collection-card { flex-basis: calc((100% - 22px) / 2); }
}
@media (max-width: 680px) {
  .slider-track > .collection-card { flex-basis: calc(100% - 44px); }
  .slider-arrow { width: 36px; height: 36px; }
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.collection-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.collection-card__media {
  position: relative; overflow: hidden; aspect-ratio: 4 / 5;
  background: var(--cream-200);
}
.collection-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.collection-card:hover .collection-card__media img { transform: scale(1.055); }
/* the swept notch that ties the card back to the hero shape */
.collection-card__media::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 26px;
  background: var(--white);
  border-radius: 0 22px 0 0;
}
.collection-card__body { padding: 4px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.collection-card__body h3 { font-size: 1.18rem; margin-bottom: 7px; }
.collection-card__body p { font-size: .845rem; color: var(--ink-500); margin-bottom: 15px; }
.collection-card__go {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; color: var(--olive-600);
}
.collection-card__go .ic { transition: transform var(--dur) var(--ease); }
.collection-card:hover .collection-card__go .ic { transform: translateX(5px); }

.badge {
  position: absolute; top: 13px; left: 13px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px;
  font-size: .67rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  background: rgba(255, 255, 255, .94);
  color: var(--olive-800);
  border-radius: 100px;
  box-shadow: var(--shadow-xs);
}
.badge--gold { background: var(--gold-500); color: #fff; }
.badge--olive { background: var(--olive-700); color: var(--cream-100); }

/* product card variant */
.product-card__meta {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line-soft);
}
.product-card__price { font-size: .82rem; color: var(--ink-500); }
.product-card__price b { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink-900); }

/* ---------------------------------------------------------- 7b. MOOD / BEFORE-AFTER */
.mood { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }

.compare {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
  user-select: none;
  cursor: ew-resize;
  background: var(--cream-200);
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare__after { clip-path: inset(0 0 0 50%); }
.compare__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(255, 255, 255, .9);
  transform: translateX(-1px);
  z-index: 3; pointer-events: none;
}
.compare__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: var(--olive-700);
  display: flex; align-items: center; justify-content: center; gap: 1px;
  box-shadow: var(--shadow-md);
}
.compare__grip .ic { width: 14px; height: 14px; }
.compare__tag {
  position: absolute; top: 14px; z-index: 4;
  padding: 5px 12px; border-radius: 100px;
  font-size: .69rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(34, 36, 30, .62); color: #fff;
  backdrop-filter: blur(4px);
}
.compare__tag--before { left: 14px; }
.compare__tag--after { right: 14px; }
.compare input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0; z-index: 5;
}

.benefit-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 30px 0 28px;
}
.benefit { padding-left: 18px; border-left: 1px solid var(--line); }
.benefit:first-child { padding-left: 0; border-left: 0; }
.benefit .ic { color: var(--olive-600); margin-bottom: 11px; }
.benefit h4 { font-family: var(--font-body); font-size: .93rem; font-weight: 600; color: var(--ink-900); margin-bottom: 5px; }
.benefit p { font-size: .8rem; color: var(--ink-500); line-height: 1.55; }

/* ---------------------------------------------------------- 7c. PROCESS */
.process { position: relative; }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative;
}
.process__steps::before {
  content: "";
  position: absolute; top: 26px; left: 12.5%; right: 12.5%;
  height: 1px;
  background-image: linear-gradient(to right, var(--line) 55%, transparent 55%);
  background-size: 9px 1px;
}
.step { position: relative; text-align: center; padding-inline: 8px; }
.step__icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--cream-100);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive-700);
  position: relative; z-index: 2;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.step:hover .step__icon {
  background: var(--olive-700); color: var(--cream-100);
  border-color: var(--olive-700); transform: translateY(-4px);
}
.step__no {
  font-family: var(--font-display); font-size: 1.02rem;
  color: var(--gold-500); margin-right: 7px;
}
.step h4 { display: inline; font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--ink-900); }
.step p { font-size: .795rem; color: var(--ink-500); line-height: 1.55; margin-top: 8px; }

/* ---------------------------------------------------------- 7d. SMART PANEL */
.panel-dark {
  background: var(--olive-700);
  color: var(--cream-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.panel-dark h2, .panel-dark h3 { color: var(--cream-100); }

.smart { display: grid; grid-template-columns: 1fr 1.12fr; align-items: stretch; }
.smart__copy { padding: clamp(34px, 4.2vw, 62px); align-self: center; }
.smart__copy p { color: rgba(246, 242, 233, .76); font-size: .95rem; max-width: 42ch; }
.smart__cta { margin: 26px 0 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.smart__works { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,242,233,.55); margin-bottom: 12px; }
.smart__brands { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; margin: 0; padding: 0; }
.smart__brands li {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 13px;
  background: rgba(246, 242, 233, .09);
  border: 1px solid rgba(246, 242, 233, .15);
  border-radius: var(--radius-sm);
  font-size: .78rem; color: var(--cream-200);
  transition: background var(--dur) var(--ease);
}
.smart__brands li:hover { background: rgba(246, 242, 233, .16); }
.smart__brands .ic { color: var(--gold-400); }

.smart__media { position: relative; min-height: 380px; }
.smart__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* phone mock */
.phone-mock {
  position: absolute; left: 8%; top: 50%; transform: translateY(-50%);
  width: 168px; z-index: 3;
  background: #17190F;
  border: 4px solid #2A2D20;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 16px 13px;
  color: var(--cream-100);
}
.phone-mock__label { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(246,242,233,.5); }
.phone-mock__state { font-size: .74rem; color: rgba(246,242,233,.72); margin-top: 9px; }
.phone-mock__pct { font-family: var(--font-display); font-size: 2.05rem; line-height: 1; margin: 1px 0 12px; }
.phone-mock__bar { height: 5px; border-radius: 3px; background: rgba(246,242,233,.18); overflow: hidden; }
.phone-mock__bar i { display: block; height: 100%; width: 75%; background: var(--gold-400); border-radius: 3px; }
.phone-mock__keys { display: flex; justify-content: space-between; gap: 6px; margin-top: 14px; }
.phone-mock__keys span {
  flex: 1; height: 27px; border-radius: 7px;
  background: rgba(246,242,233,.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,242,233,.7);
}
.phone-mock__keys .ic { width: 13px; height: 13px; }

/* voice bubbles */
.bubble {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 9px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(6px);
  border-radius: 100px 100px 100px 6px;
  box-shadow: var(--shadow-md);
  font-size: .755rem; color: var(--ink-900);
  white-space: nowrap;
  animation: floaty 6s ease-in-out infinite;
}
.bubble .ic { color: var(--olive-600); }
.bubble--1 { right: 6%; top: 16%; }
.bubble--2 { right: 13%; bottom: 18%; animation-delay: 1.4s; }
@media (prefers-reduced-motion: reduce) { .bubble { animation: none; } }

/* ---------------------------------------------------------- 7e. CRAFT COLLAGE */
.craft { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.craft__collage {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1 / 1;
}
.craft__collage figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--cream-200); }
.craft__collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.craft__collage figure:hover img { transform: scale(1.05); }
.craft__collage figure:first-child { grid-row: 1 / 3; }

.checklist { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: .93rem; }
.checklist .ic { color: var(--olive-600); margin-top: 3px; }
.checklist--light li { color: var(--cream-200); }
.checklist--light .ic { color: var(--gold-400); }

/* ---------------------------------------------------------- 7f. INSPIRATION */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-tabs a, .filter-tabs button {
  padding: 8px 17px;
  font-size: .83rem; color: var(--ink-500);
  background: none; border: 1px solid transparent; border-radius: 100px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.filter-tabs a:hover, .filter-tabs button:hover { color: var(--ink-900); border-color: var(--line); }
.filter-tabs .is-active {
  background: var(--olive-700); color: var(--cream-100); border-color: var(--olive-700);
}

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 4 / 3;
  background: var(--cream-200);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 15px 14px;
  background: linear-gradient(to top, rgba(24, 27, 18, .86), transparent);
  color: #fff;
  opacity: 0; transform: translateY(10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery figcaption b { display: block; font-size: .9rem; font-weight: 500; }
.gallery figcaption span { font-size: .74rem; color: rgba(255, 255, 255, .76); }

/* ---------------------------------------------------------- 7g. TESTIMONIALS */
.stars { display: inline-flex; gap: 2px; }
.star { color: var(--line); line-height: 0; }
.star.is-on { color: var(--gold-500); }

.review-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 15px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card p { font-size: .9rem; color: var(--ink-700); line-height: 1.62; flex: 1; }
.review-card__who { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  flex-shrink: 0;
}
.review-card__who b { display: block; font-size: .88rem; font-weight: 600; color: var(--ink-900); }
.review-card__who span { font-size: .77rem; color: var(--ink-500); }

/* ---------------------------------------------------------- 7h. CTA + FORM */
.cta-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.cta-panel__copy {
  padding: clamp(34px, 4vw, 58px);
  align-self: center;
  position: relative; z-index: 2;
}
.cta-panel__copy h2 { font-size: clamp(1.7rem, 2.9vw, 2.35rem); }
.cta-panel__bg { position: absolute; inset: 0; z-index: 0; }
.cta-panel__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.cta-panel__form {
  margin: clamp(16px, 2vw, 26px);
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.cta-panel__form h3 { font-size: 1.42rem; margin-bottom: 6px; }

/* ---------------------------------------------------------- 7i. FAQ */
.accordion { border-top: 1px solid var(--line-soft); }
.accordion__item { border-bottom: 1px solid var(--line-soft); }
.accordion__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 19px 2px;
  background: none; border: 0; cursor: pointer;
  font-size: .95rem; font-weight: 450; text-align: left; color: var(--ink-900);
  transition: color var(--dur) var(--ease);
}
.accordion__q:hover { color: var(--gold-600); }
.accordion__q .ic { color: var(--olive-600); transition: transform var(--dur) var(--ease); flex-shrink: 0; }
.accordion__item.is-open .accordion__q .ic { transform: rotate(45deg); }
.accordion__item.is-open .accordion__q { color: var(--olive-700); font-weight: 500; }
.accordion__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .42s var(--ease);
}
.accordion__item.is-open .accordion__a { grid-template-rows: 1fr; }
.accordion__a > div { overflow: hidden; }
.accordion__a p {
  font-size: .89rem; color: var(--ink-500); line-height: 1.68;
  padding: 0 60px 21px 2px;
}

/* ---------------------------------------------------------- 8. FOOTER */
.site-footer {
  background: var(--olive-800);
  color: rgba(246, 242, 233, .68);
  font-size: .855rem;
  padding-top: clamp(46px, 5vw, 68px);
  margin-top: clamp(48px, 6vw, 84px);
}
.site-footer a { transition: color var(--dur) var(--ease); }
.site-footer a:hover { color: var(--gold-400); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.15fr 1.3fr;
  gap: 30px;
  padding-bottom: 42px;
}
.footer-brand img { height: 34px; margin-bottom: 16px; }
.footer-brand p { font-size: .84rem; line-height: 1.62; max-width: 30ch; }
.footer-social { display: flex; gap: 9px; margin-top: 18px; }
.footer-social a {
  width: 33px; height: 33px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(246, 242, 233, .09);
  color: var(--cream-200);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--gold-500); color: #fff; transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-100); margin-bottom: 15px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col li { font-size: .83rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact .ic { color: var(--gold-400); margin-top: 3px; }

.newsletter { display: flex; gap: 7px; margin-top: 13px; }
.newsletter input {
  flex: 1; min-width: 0;
  padding: 10px 13px;
  background: rgba(246, 242, 233, .08);
  border: 1px solid rgba(246, 242, 233, .18);
  border-radius: var(--radius-sm);
  color: var(--cream-100); font-size: .82rem;
}
.newsletter input::placeholder { color: rgba(246, 242, 233, .42); }
.newsletter input:focus { outline: none; border-color: var(--gold-400); }
.newsletter button {
  padding: 10px 13px;
  background: var(--gold-500); color: #fff;
  border: 0; border-radius: var(--radius-sm); cursor: pointer;
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease);
}
.newsletter button:hover { background: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid rgba(246, 242, 233, .12);
  padding: 18px 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(246, 242, 233, .5);
}
.footer-bottom nav { display: flex; gap: 18px; }

/* ---------------------------------------------------------- 9. INNER PAGES */
.page-banner {
  position: relative;
  background: var(--cream-100);
  overflow: hidden;
  min-height: 300px;
  display: flex; align-items: center;
  padding-block: clamp(44px, 5.5vw, 72px);
  border-bottom: 1px solid var(--line-soft);
}
.page-banner__bg { position: absolute; inset: 0; z-index: 0; }
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .66; }
/* Opaque cream behind the text, releasing to the right so the scene still reads.
   The faint vertical veil keeps the whole band sitting behind the content. */
.page-banner__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 242, 233, .28), rgba(246, 242, 233, .12)),
    linear-gradient(100deg, var(--cream-100) 33%, rgba(246, 242, 233, .74) 58%, rgba(246, 242, 233, .06));
}
/* The banner markup uses .container--wide — both must clear the overlay. */
.page-banner .container,
.page-banner .container--wide { position: relative; z-index: 2; }
.page-banner .eyebrow { margin-bottom: .75rem; }
.page-banner h1 {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  margin-bottom: .3em;
  max-width: 20ch;
  text-wrap: balance;
}
.page-banner .lede { max-width: 52ch; color: var(--ink-700); }

.crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .78rem; color: var(--ink-500);
  margin-bottom: 18px;
}
.crumbs a { color: var(--ink-500); border-bottom: 1px solid transparent; }
.crumbs a:hover { color: var(--gold-600); border-bottom-color: var(--gold-500); }
.crumbs span:last-child { color: var(--ink-900); font-weight: 500; }
.crumbs .ic { width: 13px; height: 13px; color: var(--ink-400); }

.toolbar {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 14px 18px; flex-wrap: wrap;
  padding-bottom: 22px; margin-bottom: 30px;
  border-bottom: 1px solid var(--line-soft);
}
.toolbar__count { font-size: .85rem; color: var(--ink-500); white-space: nowrap; padding-bottom: 11px; }

.toolbar form {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end;
  gap: 10px;
  flex: 1 1 560px;
}
.toolbar .input, .toolbar .select { width: auto; padding: 9px 13px; font-size: .85rem; }
.toolbar .select { padding-right: 34px; }
.toolbar form .input { flex: 1 1 200px; min-width: 160px; }
.toolbar form .select { flex: 1 1 150px; min-width: 130px; }
.toolbar form .btn { flex: 0 0 auto; }

@media (max-width: 680px) {
  .toolbar { flex-direction: column; align-items: stretch; }
  .toolbar__count { padding-bottom: 0; }
  .toolbar form { justify-content: stretch; }
  .toolbar form .input,
  .toolbar form .select,
  .toolbar form .btn { flex: 1 1 100%; width: 100%; }
}

/* product detail */
.product-hero { display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.product-hero__media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--cream-200);
  position: relative;
}
.product-hero__media img { width: 100%; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  font-size: .73rem; font-weight: 500;
  background: var(--cream-200); color: var(--olive-700);
  border: 1px solid var(--line);
}
.chip .ic { width: 13px; height: 13px; }
.chip--gold { background: var(--gold-100); border-color: #E0CDA7; color: var(--gold-600); }

.price-block {
  display: flex; align-items: baseline; gap: 9px;
  padding: 16px 0; margin: 18px 0;
  border-block: 1px solid var(--line-soft);
}
.price-block b { font-family: var(--font-display); font-size: 1.85rem; color: var(--ink-900); }
.price-block span { font-size: .84rem; color: var(--ink-500); }

.swatch-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.swatch { text-align: center; width: 62px; }
.swatch i {
  display: block; width: 42px; height: 42px; margin: 0 auto 6px;
  border-radius: 50%; border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease);
}
.swatch:hover i { transform: scale(1.1); }
.swatch span { font-size: .68rem; color: var(--ink-500); line-height: 1.3; display: block; }

.spec-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.spec-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .89rem; }
.spec-list .ic { color: var(--olive-600); margin-top: 3px; }

.opacity-meter { display: flex; gap: 4px; margin-top: 8px; }
.opacity-meter i {
  flex: 1; height: 6px; border-radius: 3px; background: var(--line);
}
.opacity-meter i.is-on { background: var(--olive-600); }

.prose { max-width: 68ch; }
.prose h3 { font-size: 1.28rem; margin-top: 1.8em; }
.prose h3:first-child { margin-top: 0; }
.prose p { color: var(--ink-500); }
.prose ul { padding-left: 20px; color: var(--ink-500); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 22px;
}
.info-card .ic { color: var(--olive-600); margin-bottom: 12px; }
.info-card h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.info-card p { font-size: .84rem; color: var(--ink-500); }

.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-card {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 18px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.area-card:hover { border-color: var(--olive-300); transform: translateY(-3px); }
.area-card b { display: flex; align-items: center; gap: 8px; font-size: .95rem; color: var(--ink-900); }
.area-card .ic { color: var(--gold-500); }
.area-card p { font-size: .78rem; color: var(--ink-500); margin: 7px 0 0; }

.empty {
  text-align: center; padding: 60px 20px;
  border: 1px dashed var(--line); border-radius: var(--radius-lg);
  color: var(--ink-500);
}
.empty .ic { color: var(--ink-400); margin: 0 auto 14px; }

/* 404 */
.notfound { text-align: center; padding-block: clamp(60px, 9vw, 130px); }
.notfound__code {
  font-family: var(--font-display); font-size: clamp(5rem, 15vw, 10rem);
  line-height: 1; color: var(--olive-100); margin-bottom: -.15em;
}

/* ---------------------------------------------------------- reveal on scroll */
/* Hidden only once JS has confirmed it can reveal them again — without the
   .js-reveal flag on <html>, content stays visible for no-JS and error cases. */
.js-reveal .reveal { opacity: 0; transform: translateY(22px); }
.js-reveal .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .78s var(--ease), transform .78s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------- 10. RESPONSIVE */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 34px; }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .hero__rail { display: none; }
  .hero__copy { padding-left: 0; }
}

@media (max-width: 940px) {
  .main-nav, .header-actions .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions { margin-left: auto; }

  .hero__inner { grid-template-columns: 1fr; gap: 38px; }
  .hero__frame::before { display: none; }
  .hero__frame { aspect-ratio: 16 / 11; }
  .hero__badge { width: 78px; height: 78px; font-size: .58rem; }

  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(3) { border-left: 0; }
  .trust-strip__item:nth-child(n+3) { border-top: 1px solid var(--line-soft); }

  .mood, .craft, .smart, .cta-panel, .product-hero { grid-template-columns: 1fr; }
  .smart__media { min-height: 340px; }
  .craft__collage { aspect-ratio: 4 / 3; }
  .cta-panel__form { margin-top: 0; }
  .process__steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .process__steps::before { display: none; }
  .info-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 15.5px; }
  .container, .container--wide { width: min(100% - 28px, var(--container)); }

  .topbar__inner { font-size: .715rem; padding-block: 7px; line-height: 1.4; }

  /* Phone header: tighten so logo + CTA + toggle still share one line. */
  .site-header__inner { gap: 12px; min-height: 62px; }
  .brand img { height: 29px; }
  .header-actions { gap: 10px; }
  .header-actions .btn { padding: 9px 13px; font-size: .78rem; }
  .topbar__inner { text-wrap: pretty; }

  .hero { padding-bottom: clamp(84px, 16vw, 110px); }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__swatch { right: auto; left: 12px; bottom: 12px; min-width: 0; padding: 10px 12px; }
  .hero__swatch .dots span { width: 17px; height: 17px; }
  .hero__badge { right: 12px; bottom: 96px; }

  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-strip__item { border-left: 0; border-top: 1px solid var(--line-soft); justify-content: flex-start; }
  .trust-strip__item:first-child { border-top: 0; }

  .card-grid--4, .card-grid--3, .card-grid--2, .gallery { grid-template-columns: 1fr; }
  .benefit-row { grid-template-columns: 1fr; gap: 16px; }
  .benefit { padding-left: 0; border-left: 0; padding-top: 14px; border-top: 1px solid var(--line); }
  .benefit:first-child { padding-top: 0; border-top: 0; }
  .process__steps { grid-template-columns: 1fr; }
  .craft__collage { grid-template-columns: 1fr 1fr; aspect-ratio: 3 / 2; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .accordion__a p { padding-right: 12px; }
  .phone-mock { width: 136px; left: 5%; }
  .bubble { font-size: .68rem; padding: 7px 11px; }
  .bubble--1 { right: 4%; top: 8%; }
  .bubble--2 { right: 4%; bottom: 10%; }
  .area-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* Below ~420px the logo, CTA and toggle no longer fit together. The drawer
   already carries the quote CTA and the phone number, so drop it from the bar. */
@media (max-width: 420px) {
  .header-actions .btn { display: none; }
  .brand img { height: 27px; }
}
