/**
 * Oohfu design system — jacquard woven photo blankets
 * Palette: indigo yarn · cool mist linen · yarn-teal accents · indigo CTA
 * No cart / checkout / price chrome. Shared by every page.
 */


:root {
  --color-indigo: #1b2740;
  --color-indigo-mid: #243552;
  --color-indigo-soft: #3a4f73;
  --color-linen: #dce3ea;
  --color-linen-warm: #e8edf2;
  --color-linen-deep: #c5ced8;
  /* Legacy name kept; remapped to yarn teal for link/eyebrow accents */
  --color-terracotta: #0f5c52;
  --color-terracotta-deep: #0a453d;
  --color-sage: #0f5c52;
  --color-ink: #151a24;
  /* Phase D: muted body ≥4.5:1 on linen (~9:1); still softer than ink */
  --color-ink-muted: #2f3846;
  --color-line: rgba(27, 39, 64, 0.14);
  --color-focus: #2f6fed;
  --color-danger: #a12e2e;
  --color-ok: #2f5c48;
  --color-on-dark: #e8eef4;
  --color-on-dark-muted: rgba(232, 238, 244, 0.92);

  --color-bg: var(--color-linen);
  --color-bg-elevated: var(--color-linen-warm);
  --color-bg-deep: var(--color-indigo);
  --color-surface: rgba(232, 237, 242, 0.94);
  --color-cta: #1b2740;
  --color-cta-text: #f4f6f8;
  --color-cta-hover: #0f1728;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Figtree", "Avenir Next", "Segoe UI", sans-serif;

  --text-body: 1.0625rem;
  --text-small: 0.9375rem;
  --text-h1: clamp(1.65rem, 1.4vw + 1.2rem, 2.35rem);
  --text-h2: clamp(1.35rem, 1vw + 1.05rem, 1.75rem);
  --text-brand: clamp(2.75rem, 7vw + 1rem, 5.25rem);

  --leading-body: 1.65;
  --leading-tight: 1.18;

  --radius-control: 4px;
  --radius-block: 8px;
  --space-gutter: clamp(1.15rem, 3.5vw, 2.5rem);
  --space-section: clamp(3.5rem, 8vw, 6rem);
  --max-content: 72rem;
  --nav-height: 4.35rem;
  --mobile-cta-height: 4.75rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 220ms;
  --wa-number: "";

  --texture-atelier:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(27, 39, 64, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 10%, rgba(15, 92, 82, 0.07), transparent 50%),
    linear-gradient(165deg, #e8edf2 0%, #dce3ea 45%, #c5ced8 100%);

  --weave-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%231b2740' fill-opacity='0.04' d='M0 0h12v12H0zm12 12h12v12H12z'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
  scroll-padding-bottom: calc(var(--mobile-cta-height) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-ink);
  background-color: var(--color-linen);
  background-image: var(--weave-pattern), var(--texture-atelier);
  background-attachment: scroll;
  -webkit-font-smoothing: antialiased;
}

body.has-mobile-cta {
  padding-bottom: calc(var(--mobile-cta-height) + env(safe-area-inset-bottom, 0px));
}

body.is-inquiry-field-active .mobile-cta {
  transform: translateY(110%);
  pointer-events: none;
}

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

a {
  color: var(--color-indigo-mid);
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--color-terracotta);
}

.prose a,
.section a:not(.btn):not(.entry-card):not(.cta),
.faq-item a,
.site-footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(42, 61, 92, 0.35);
}

.prose a:hover,
.section a:not(.btn):not(.entry-card):not(.cta):hover {
  text-decoration-color: var(--color-terracotta);
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
.logo,
.brand-lockup,
.brand-mark,
.hero__brand {
  font-family: var(--font-display);
  line-height: var(--leading-tight);
  font-weight: 600;
  color: var(--color-ink);
}

h1 {
  font-size: var(--text-h1);
  margin: 0 0 0.65rem;
}

h2 {
  font-size: var(--text-h2);
  margin: 0 0 0.55rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(100% - 2 * var(--space-gutter), var(--max-content));
  margin-inline: auto;
}

.section,
.section-craft,
.section-steps,
.section-recipients,
.section-occasions,
.section-brand,
.section-faq,
.section-closing {
  padding-block: var(--space-section);
}

.section.wrap,
.prose.wrap,
.page .section,
article > .section,
.page-hub > .section,
.page-angle > .section {
  width: min(100% - 2 * var(--space-gutter), var(--max-content));
  margin-inline: auto;
}

.section--tight {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.section-intro,
.section__lede,
.lede,
.lead,
.hero-lead,
.inquiry__lead {
  max-width: 40rem;
  color: var(--color-ink-muted);
  margin-bottom: 1.5rem;
}

.section-links,
.section-cta {
  margin-top: 1.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin: 0 0 0.75rem;
}

/* ——— Skip ——— */
.skip-link,
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-cta);
  color: var(--color-cta-text);
  text-decoration: none;
}

.skip-link:focus,
.skip:focus {
  left: var(--space-gutter);
  top: 0.5rem;
}

/* ——— Header / nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-surface);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
}

.logo,
.brand-mark {
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--color-indigo);
  font-weight: 700;
}

.logo:hover,
.brand-mark:hover {
  color: var(--color-terracotta);
  text-decoration: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  background: var(--color-bg-elevated);
  font: inherit;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
}

.nav,
.site-nav {
  display: none;
}

.nav.is-open,
.site-nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: absolute;
  inset-inline: 0;
  top: 100%;
  background: var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-line);
  padding: 0.75rem var(--space-gutter) 1.25rem;
}

.nav a,
.site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 0.35rem;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.98rem;
}

.nav a:hover,
.site-nav a:hover {
  color: var(--color-terracotta);
  text-decoration: none;
}

.nav a[aria-current="page"],
.site-nav a[aria-current="page"] {
  color: var(--color-indigo);
  font-weight: 700;
}

.header-cta {
  display: none !important;
}

@media (min-width: 900px) {
  .header-cta {
    display: inline-flex !important;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav,
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 1.1rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav a,
  .site-nav a {
    min-height: 0;
    padding: 0.35rem 0;
  }

  .header-cta {
    display: inline-flex;
  }
}

/* ——— Breadcrumb ——— */
.breadcrumb {
  padding: 1rem 0 0;
  font-size: var(--text-small);
  color: var(--color-ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  width: min(100% - 2 * var(--space-gutter), var(--max-content));
  margin-inline: auto;
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}

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

.breadcrumb a:hover {
  color: var(--color-terracotta);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-ink);
  font-weight: 600;
}

/* ——— Buttons ——— */
.btn,
.cta,
a.btn-primary,
a.btn-secondary,
button.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease),
    border-color var(--duration) var(--ease), transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.btn:hover,
.cta:hover {
  text-decoration: none;
}

.btn:active,
.cta:active {
  transform: translateY(1px);
}

.btn--primary,
.btn-primary,
.cta-primary,
.cta.cta-primary {
  background: var(--color-cta);
  color: var(--color-cta-text);
  box-shadow: 0 1px 0 rgba(27, 39, 64, 0.12);
}

.btn--primary:hover,
.btn-primary:hover,
.cta-primary:hover {
  background: var(--color-cta-hover);
  color: var(--color-cta-text);
}

.btn--small {
  min-height: 44px;
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
}

.btn--ghost,
.btn-ghost {
  background: transparent;
  border-color: rgba(232, 238, 244, 0.82);
  color: var(--color-on-dark);
}

.btn--ghost:hover,
.btn-ghost:hover {
  background: rgba(232, 238, 244, 0.16);
  color: #fff;
  border-color: rgba(232, 238, 244, 0.95);
}

/* Ghost on light page heroes / inquiry → secondary look */
.page .hero .btn--ghost,
.page-hub .hero .btn--ghost,
.page-angle .hero .btn--ghost,
header.hero:not(.hero-home) .btn--ghost,
section.hero:not(.hero-home) .btn--ghost,
.inquiry .btn--ghost {
  border-color: rgba(27, 39, 64, 0.38);
  color: var(--color-indigo);
}

.page .hero .btn--ghost:hover,
.page-hub .hero .btn--ghost:hover,
.page-angle .hero .btn--ghost:hover,
header.hero:not(.hero-home) .btn--ghost:hover,
section.hero:not(.hero-home) .btn--ghost:hover,
.inquiry .btn--ghost:hover {
  background: rgba(27, 39, 64, 0.06);
  color: var(--color-indigo);
  border-color: var(--color-indigo-mid);
}

.btn--secondary,
.btn-secondary,
.cta-secondary {
  background: transparent;
  border-color: var(--color-line);
  color: var(--color-indigo);
}

.btn--secondary:hover,
.btn-secondary:hover,
.cta-secondary:hover {
  border-color: var(--color-indigo-mid);
  color: var(--color-indigo);
  background: rgba(27, 39, 64, 0.04);
}

.btn-row,
.cta-row,
.hero-cta,
.hero-cta-wrap,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.35rem;
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ——— Home full-bleed hero ——— */
.hero-home {
  position: relative;
  min-height: min(92vh, 46rem);
  display: grid;
  align-items: center;
  color: var(--color-on-dark);
  overflow: hidden;
  isolation: isolate;
}

.hero-home__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: ken-burns 36s var(--ease) alternate infinite;
}

.hero-home__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(21, 26, 36, 0.88) 0%, rgba(21, 26, 36, 0.56) 42%, rgba(21, 26, 36, 0.28) 100%),
    linear-gradient(0deg, rgba(21, 26, 36, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero-home__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2 * var(--space-gutter), var(--max-content));
  margin-inline: auto;
  padding: clamp(4.5rem, 10vw, 6.5rem) 0 clamp(2.5rem, 6vw, 3.75rem);
}

.hero-home__inner > * {
  max-width: 38rem;
}

.hero-home .brand-lockup {
  display: block;
  font-size: var(--text-brand);
  color: var(--color-on-dark);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
}

.hero-home h1,
section.hero.hero-home h1,
.hero.hero-home h1 {
  color: var(--color-on-dark) !important;
  /* Display tier-2: Fraunces, clearly below brand-lockup (~2.75–5.25rem) */
  font-size: clamp(1.5rem, 2.1vw + 1.05rem, 2.35rem);
  font-weight: 600;
  font-family: var(--font-display);
  line-height: var(--leading-tight);
  letter-spacing: -0.015em;
  max-width: 32rem;
  text-shadow: 0 1px 22px rgba(21, 26, 36, 0.55);
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 480ms var(--ease) 80ms, transform 480ms var(--ease) 80ms;
}

.hero-home .hero-lead,
section.hero.hero-home .hero-lead {
  color: var(--color-on-dark-muted) !important;
  margin: 0.85rem 0 1.4rem;
  text-shadow: 0 1px 18px rgba(21, 26, 36, 0.5);
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 480ms var(--ease) 140ms, transform 480ms var(--ease) 140ms;
}

.hero-home .btn--primary,
section.hero.hero-home .btn--primary {
  /* Light fill so indigo CTA stays readable on dark indigo hero */
  background: var(--color-on-dark);
  color: var(--color-indigo);
  box-shadow: none;
}

.hero-home .btn--primary:hover,
section.hero.hero-home .btn--primary:hover {
  background: #fff;
  color: var(--color-indigo);
}

.hero-home .btn--ghost,
section.hero.hero-home .btn--ghost {
  border-color: rgba(232, 238, 244, 0.88) !important;
  color: var(--color-on-dark) !important;
  background: rgba(21, 26, 36, 0.42);
}

.hero-home .btn--ghost:hover,
section.hero.hero-home .btn--ghost:hover {
  background: rgba(232, 238, 244, 0.16);
  color: #fff !important;
  border-color: #fff !important;
}

.hero-home .hero-cta-wrap {
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 480ms var(--ease) 200ms, transform 480ms var(--ease) 200ms;
}

.hero-home.is-ready .brand-lockup,
.hero-home.is-ready h1,
.hero.hero-home.is-ready h1,
section.hero.hero-home.is-ready h1,
.hero-home.is-ready .hero-lead,
section.hero.hero-home.is-ready .hero-lead,
.hero-home.is-ready .hero-cta-wrap {
  opacity: 1 !important;
  transform: none;
}

@keyframes ken-burns {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-0.6%, -0.4%, 0);
  }
}

/* ——— Inner-page bleed / split heroes (opt-in; sticky/inquiry untouched) ——— */
.hero-bleed {
  position: relative;
  display: grid;
  align-items: stretch;
  width: 100vw;
  max-width: 100vw;
  margin: 1.35rem 0 0;
  margin-left: calc(50% - 50vw);
  color: var(--color-on-dark);
  background: var(--color-indigo);
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(16rem, 42vw, 22rem);
  border-radius: 0;
}

/* Simple figure bleed (img + optional figcaption) — Phase A inner pages */
figure.hero-bleed {
  display: block;
  min-height: 0;
}

.hero-bleed > img,
figure.hero-bleed > img {
  width: 100%;
  height: min(48vh, 26rem);
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-bleed > figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.85rem var(--space-gutter);
  font-size: var(--text-small);
  color: var(--color-on-dark-muted);
  background: linear-gradient(0deg, rgba(21, 26, 36, 0.72), transparent);
}

.wrap > .hero-bleed,
.hero.wrap > .hero-bleed {
  width: 100%;
  max-width: none;
  margin-left: 0;
  border-radius: var(--radius-block);
}

.wrap > .hero-bleed > img,
.hero.wrap > .hero-bleed > img {
  height: min(42vh, 22rem);
}

.hero-bleed__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bleed__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(27, 39, 64, 0.88) 0%, rgba(27, 39, 64, 0.55) 48%, rgba(27, 39, 64, 0.28) 100%),
    linear-gradient(0deg, rgba(27, 39, 64, 0.35) 0%, transparent 55%);
}

.hero-bleed__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2 * var(--space-gutter), var(--max-content));
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
}

.hero-bleed__inner > * {
  max-width: 36rem;
}

.hero-bleed .eyebrow,
.hero-bleed__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--color-linen-warm);
  font-size: var(--text-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-bleed h1 {
  margin: 0;
  color: var(--color-on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.8vw + 1.15rem, 2.4rem);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: -0.015em;
}

.hero-bleed .hero-lead,
.hero-bleed__lead {
  margin: 0.85rem 0 0;
  color: var(--color-on-dark-muted);
  max-width: 34rem;
}

.hero-bleed .hero-cta-wrap,
.hero-bleed__cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-bleed .btn--ghost {
  border-color: rgba(232, 238, 244, 0.88);
  color: var(--color-on-dark);
  background: rgba(27, 39, 64, 0.4);
}

.hero-bleed .btn--ghost:hover {
  background: rgba(232, 238, 244, 0.16);
  color: #fff;
  border-color: #fff;
}

/* Split: large media left (top on mobile) + copy */
.hero-bleed--split {
  width: 100%;
  max-width: none;
  margin-left: 0;
  min-height: 0;
  background: var(--color-linen-warm);
  color: var(--color-ink);
  grid-template-columns: 1fr;
}

.hero-bleed--split .hero-bleed__media {
  position: relative;
  inset: auto;
  min-height: clamp(14rem, 48vw, 20rem);
}

.hero-bleed--split .hero-bleed__shade {
  display: none;
}

.hero-bleed--split .hero-bleed__inner {
  padding: clamp(1.75rem, 4vw, 2.75rem) var(--space-gutter);
  width: 100%;
  max-width: none;
  margin: 0;
  background:
    linear-gradient(165deg, var(--color-linen-warm) 0%, var(--color-linen) 100%);
}

.hero-bleed--split h1 {
  color: var(--color-indigo);
}

.hero-bleed--split .hero-lead,
.hero-bleed--split .hero-bleed__lead {
  color: var(--color-ink-muted);
}

.hero-bleed--split .eyebrow,
.hero-bleed--split .hero-bleed__eyebrow {
  color: var(--color-terracotta);
}

@media (min-width: 800px) {
  .hero-bleed--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: clamp(18rem, 36vw, 26rem);
  }

  .hero-bleed--split .hero-bleed__media {
    min-height: 100%;
  }

  .hero-bleed--split .hero-bleed__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: clamp(1.75rem, 4vw, 3rem);
  }
}

/* Short full-bleed banner */
.hero-bleed--banner {
  min-height: clamp(12rem, 28vw, 16.5rem);
}

.hero-bleed--banner .hero-bleed__shade {
  background:
    linear-gradient(90deg, rgba(27, 39, 64, 0.9) 0%, rgba(27, 39, 64, 0.55) 55%, rgba(27, 39, 64, 0.35) 100%);
}

.hero-bleed--banner .hero-bleed__inner {
  padding-block: clamp(2rem, 5vw, 2.75rem);
}

@media (max-width: 640px) {
  .hero-bleed:not(.hero-bleed--split),
  .hero-bleed--banner {
    min-height: clamp(14rem, 58vw, 18rem);
  }

  .hero-bleed__inner {
    padding-block: clamp(2rem, 8vw, 2.75rem);
  }
}

/* Inner-page heroes (not full-bleed photo) */
.page .hero:not(.hero-home):not(.hero-bleed),
.page-hub .hero:not(.hero-bleed),
.page-angle .hero:not(.hero-bleed),
article > .hero:not(.hero-home):not(.hero-bleed),
section.hero:not(.hero-home):not(.hero-bleed),
header.hero:not(.hero-home):not(.hero-bleed),
.page-hero {
  position: relative;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 1.5rem;
  width: min(100% - 2 * var(--space-gutter), var(--max-content));
  margin-inline: auto;
  background: transparent;
  color: var(--color-ink);
  min-height: 0;
  display: block;
  overflow: visible;
}

.page .hero:not(.hero-home):not(.hero-bleed)::before,
.page-hub .hero:not(.hero-bleed)::before,
.page-angle .hero:not(.hero-bleed)::before,
article > .hero:not(.hero-home):not(.hero-bleed)::before,
section.hero:not(.hero-home):not(.hero-bleed)::before,
header.hero:not(.hero-home):not(.hero-bleed)::before {
  content: none;
}

.page .hero:not(.hero-home):not(.hero-bleed) h1,
.page-hub .hero:not(.hero-home):not(.hero-bleed) h1,
.page-angle .hero:not(.hero-home):not(.hero-bleed) h1,
header.hero:not(.hero-home):not(.hero-bleed) h1,
section.hero:not(.hero-home):not(.hero-bleed) h1 {
  color: var(--color-indigo);
  font-size: var(--text-h1);
  font-family: var(--font-display);
  font-weight: 600;
  opacity: 1;
  transform: none;
}

.hero-note {
  color: var(--color-ink-muted);
  font-size: var(--text-small);
  max-width: 38rem;
}

/* Reveal on scroll — restrained fade + short rise */
.reveal {
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-home__media img {
    animation: none !important;
    transform: none !important;
  }

  .hero-home .brand-lockup,
  .hero-home h1,
  .hero-home .hero-lead,
  .hero-home .hero-cta-wrap,
  .reveal,
  .proof-grid .reveal img,
  .proof-grid img.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .craft-visual__col img,
  .craft-visual__col:hover img {
    transform: none !important;
    transition: none !important;
  }
}

/* ——— Craft compare (visual) ——— */
.craft-visual {
  display: grid;
  gap: 1.25rem;
  margin: 1.75rem 0 0;
}

@media (min-width: 720px) {
  .craft-visual {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

.craft-visual__col {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-block);
  background: var(--color-indigo);
  min-height: 16rem;
}

.craft-visual__col img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.craft-visual__col:hover img {
  transform: scale(1.02);
}

.craft-visual__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.15rem 1.1rem;
  background: linear-gradient(0deg, rgba(21, 26, 36, 0.88), transparent);
  color: var(--color-on-dark);
}

.craft-visual__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.craft-visual__caption span {
  font-size: var(--text-small);
  color: var(--color-on-dark-muted);
}

.craft-visual__col--woven {
  box-shadow: inset 0 0 0 2px rgba(74, 107, 98, 0.45);
}

.craft-compare {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .craft-compare {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

.craft-compare__col {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: var(--radius-block);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}

.craft-compare__col--woven {
  border-color: rgba(74, 107, 98, 0.4);
  background:
    linear-gradient(160deg, rgba(74, 107, 98, 0.1), transparent 55%),
    var(--color-surface);
}

.craft-compare__label {
  display: inline-block;
  font-size: var(--text-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.5rem;
}

.craft-compare__col--printed .craft-compare__label {
  color: var(--color-ink-muted);
}

.craft-compare ul {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--color-ink-muted);
}

.craft-compare li + li {
  margin-top: 0.4rem;
}

/* ——— Steps ——— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step {
  padding: 1.35rem 1.2rem 1.4rem;
  border-top: 3px solid var(--color-indigo);
  background: var(--color-surface);
}

.step h3 {
  color: var(--color-indigo);
}

.step p {
  color: var(--color-ink-muted);
  margin-bottom: 0;
  font-size: 0.98rem;
}

/* ——— Recipient / occasion links (interaction cards OK) ——— */
.card-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .card-grid-recipients,
  .card-grid-occasions {
    grid-template-columns: repeat(3, 1fr);
  }
}

.entry-card {
  display: block;
  padding: 1.15rem 1.1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.entry-card:hover {
  background: rgba(27, 39, 64, 0.04);
  border-color: var(--color-indigo-soft);
  text-decoration: none;
  color: inherit;
}

.entry-card h3 {
  color: var(--color-indigo);
  margin-bottom: 0.35rem;
}

.entry-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
}

/* ——— FAQ ——— */
.faq,
.section-faq {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
  padding: 1.15rem 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.faq-item h3 {
  font-size: 1.08rem;
  color: var(--color-indigo);
}

.faq-item p {
  color: var(--color-ink-muted);
  margin-bottom: 0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: left;
  color: var(--color-ink);
  cursor: pointer;
}

.faq-trigger::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-terracotta);
}

.faq-trigger[aria-expanded="true"]::after {
  content: "–";
}

.faq-panel {
  padding: 0 0 1rem;
  color: var(--color-ink-muted);
}

.faq-panel[hidden] {
  display: none;
}

/* ——— Inquiry ——— */
.inquiry {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
  padding-block: var(--space-section);
  padding-bottom: calc(var(--space-section) + var(--mobile-cta-height) + 1.5rem);
  background:
    linear-gradient(180deg, rgba(27, 39, 64, 0.04), transparent 30%),
    var(--weave-pattern),
    linear-gradient(180deg, var(--color-linen-deep), var(--color-linen));
}

.inquiry .wrap {
  max-width: 42rem;
}

.inquiry h2,
.inquiry #inquiry-title,
.inquiry #inquiry-heading {
  color: var(--color-indigo);
  font-size: var(--text-h2);
}

.inquiry__panel {
  margin-top: 0.5rem;
  padding: 1.6rem 1.35rem 1.85rem;
  border-radius: var(--radius-block);
  border: 1px solid var(--color-line);
  background: var(--color-linen-warm);
}

.inquiry__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  font-size: var(--text-small);
  color: var(--color-ink-muted);
}

.inquiry__steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-control);
  background: rgba(27, 39, 64, 0.06);
}

.inquiry__steps li strong {
  color: var(--color-indigo);
}

.inquiry-form .form-grid,
.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid label:last-child,
  .form-grid .form-field--photo,
  .form-grid label:has(input[type="file"]) {
    grid-column: 1 / -1;
  }
}

.inquiry-form label,
.form-field label,
.form-grid > label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field .hint,
.form-hint,
.form-privacy,
.form-disclosure {
  font-size: var(--text-small);
  color: var(--color-ink-muted);
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  background: #fff;
  font: inherit;
  color: var(--color-ink);
}

.form-field textarea,
.inquiry-form textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--color-indigo-soft);
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 61, 92, 0.18);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field .is-invalid,
.inquiry-form .is-invalid {
  border-color: var(--color-danger);
}

.form-field--photo,
.form-grid label:has(input[type="file"]) {
  padding: 1.15rem;
  border: 1.5px dashed rgba(27, 39, 64, 0.28);
  border-radius: var(--radius-block);
  background:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 10px,
      rgba(27, 39, 64, 0.02) 10px,
      rgba(27, 39, 64, 0.02) 11px
    ),
    rgba(255, 255, 255, 0.55);
}

.form-field--photo:focus-within,
.form-grid label:has(input[type="file"]):focus-within {
  border-color: var(--color-sage);
  background-color: rgba(15, 92, 82, 0.05);
}

.form-field--photo input[type="file"],
.form-grid input[type="file"] {
  min-height: 44px;
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.photo-preview {
  margin-top: 0.75rem;
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
}

.photo-preview.is-visible {
  display: flex;
}

.photo-preview img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: var(--radius-control);
  border: 1px solid var(--color-line);
}

.form-actions .btn--ghost {
  border-color: rgba(27, 39, 64, 0.38);
  color: var(--color-indigo);
}

.form-actions .btn--ghost:hover {
  background: rgba(27, 39, 64, 0.06);
  color: var(--color-indigo);
  border-color: var(--color-indigo-mid);
}

.form-status {
  margin-top: 1rem;
  min-height: 1.25rem;
  font-size: 0.98rem;
}

.form-status.is-error {
  color: var(--color-danger);
}

.form-status.is-notice,
.form-status.is-ok {
  color: var(--color-ok);
}

.form-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-top: 0.75rem;
}

.form-status__action {
  font: inherit;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-indigo-mid);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}

.form-status__copy {
  width: 100%;
  margin-top: 0.75rem;
  min-height: 7rem;
  font: inherit;
  font-size: var(--text-small);
}

.visually-hidden,
.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;
}

.form-field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ——— Closing band ——— */
.section-closing {
  text-align: left;
  background:
    linear-gradient(120deg, rgba(27, 39, 64, 0.94), rgba(42, 61, 92, 0.9)),
    var(--color-indigo);
  color: var(--color-on-dark);
  padding-block: clamp(3rem, 7vw, 4.5rem);
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.section-closing > * {
  width: min(100% - 2 * var(--space-gutter), 40rem);
  margin-inline: auto;
}

.section-closing h2 {
  color: var(--color-on-dark);
}

.section-closing p {
  color: var(--color-on-dark-muted);
}

.section-closing .section-links a {
  color: var(--color-on-dark);
  text-decoration-color: rgba(232, 238, 244, 0.4);
}

.section-closing .btn--primary,
.section-closing .cta-primary {
  background: var(--color-on-dark);
  color: var(--color-indigo);
}

.section-closing .btn--primary:hover,
.section-closing .cta-primary:hover {
  background: #fff;
  color: var(--color-indigo);
}

/* ——— Prose pages ——— */
.prose {
  max-width: 42rem;
  padding-block: 0.5rem 1.5rem;
}

.prose > * + * {
  margin-top: 0.9rem;
}

main .wrap.prose,
main > .prose {
  width: min(100% - 2 * var(--space-gutter), 42rem);
  margin-inline: auto;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: 0;
  padding: 2.75rem 0 3.25rem;
  background: var(--color-indigo);
  color: var(--color-on-dark-muted);
}

.site-footer a {
  color: var(--color-linen-warm);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer .wrap p {
  margin-bottom: 0.65rem;
}

.site-footer .canary {
  margin-top: 1.25rem;
  font-size: var(--text-small);
  opacity: 0.65;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1rem 0 1.5rem;
}

.footer-nav a {
  text-decoration: none;
}

.site-footer__note {
  font-size: var(--text-small);
  max-width: 36rem;
  opacity: 0.92;
}

/* ——— Mobile CTA ——— */
.mobile-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem var(--space-gutter) calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(21, 26, 36, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 240ms var(--ease);
}

.mobile-cta .btn {
  flex: 1;
  min-height: 44px;
}

.mobile-cta .btn--ghost {
  border-color: rgba(232, 238, 244, 0.72);
  color: var(--color-on-dark);
}

@media (min-width: 900px) {
  .mobile-cta {
    display: none;
  }

  body.has-mobile-cta {
    padding-bottom: 0;
  }
}

/* ——— Support contact (if present) ——— */
.support-contact {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--mobile-cta-height) + 1rem + env(safe-area-inset-bottom, 0px));
  z-index: 45;
}

@media (min-width: 900px) {
  .support-contact {
    bottom: 1.25rem;
  }
}

.support-contact__toggle {
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: var(--radius-control);
  background: var(--color-cta);
  color: var(--color-cta-text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.support-contact__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.5rem);
  width: min(18rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: var(--radius-block);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
}

/* ——— Texture band helper ——— */
.band-texture {
  position: relative;
  overflow: hidden;
}

.band-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--weave-pattern);
  opacity: 0.9;
  pointer-events: none;
}

/* Home section wrappers */
.page-home > .section,
.page-home > .inquiry {
  width: min(100% - 2 * var(--space-gutter), var(--max-content));
  margin-inline: auto;
}

.page-home > .inquiry,
.page-home > .section-closing {
  width: 100%;
  max-width: none;
}

.page-home > .inquiry > .wrap {
  width: min(100% - 2 * var(--space-gutter), 42rem);
  margin-inline: auto;
}

/* Craft compare banner + proof grid (Phase A/B climb) */
.craft-compare-banner {
  position: relative;
  margin: 1.5rem 0 0.5rem;
}
.craft-compare-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.craft-compare-banner figcaption {
  margin-top: 0.65rem;
  font-size: var(--text-small);
  color: var(--color-ink-muted);
  max-width: 48rem;
}
.compare-tag {
  position: absolute;
  top: 0.75rem;
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.5rem;
  background: rgba(21, 26, 36, 0.78);
  color: #fff;
  border-radius: 2px;
}
.compare-tag--print {
  left: 0.75rem;
}
.compare-tag--woven {
  right: 0.75rem;
}
.proof-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 720px) {
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .proof-grid--restrained {
    grid-template-columns: repeat(3, 1fr);
    max-width: 52rem;
  }
}
.section-proof .section-intro {
  max-width: 36rem;
}
.proof-grid figure {
  margin: 0;
}
.proof-grid img {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.proof-img--portrait {
  height: 18rem;
  object-position: center 20%;
}
.proof-grid figcaption,
.proof-grid .honesty-chip {
  display: block;
  width: fit-content;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: var(--color-ink);
  background: rgba(27, 39, 64, 0.06);
  border: 1px solid rgba(27, 39, 64, 0.16);
  padding: 0.25rem 0.45rem;
  font-weight: 500;
}
.proof-grid .reveal img,
.proof-grid img.reveal {
  opacity: 0;
  transform: translateY(0.25rem);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}
.proof-grid .reveal.is-in img,
.proof-grid img.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* btn legacy aliases climb */
a.btn-primary,
button.btn-primary,
.btn.btn-primary {
  background: var(--color-cta);
  color: var(--color-cta-text);
  border-color: transparent;
}
a.btn-secondary,
.btn.btn-secondary {
  background: transparent;
  color: var(--color-indigo);
  border: 1px solid rgba(27, 39, 64, 0.35);
}

/* Phase B honesty + decision + gift/occasions nav */
.honesty-chip,
.hero-concept-note {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.35;
  padding: 0.35rem 0.6rem;
  background: rgba(27, 39, 64, 0.1);
  border-radius: 2px;
  margin-top: 0.5rem;
  color: var(--color-ink);
  letter-spacing: 0.02em;
  border: 1px solid rgba(27, 39, 64, 0.22);
  font-weight: 500;
}
.hero-home .honesty-chip,
.hero-home .hero-concept-note {
  display: inline-block;
  margin-top: 1rem;
  color: #f4f7fa;
  background: rgba(21, 26, 36, 0.72);
  border: 1px solid rgba(232, 238, 244, 0.55);
  text-shadow: none;
  opacity: 1;
  max-width: max-content;
}
.hero-home.is-ready .honesty-chip,
.hero-home.is-ready .hero-concept-note {
  opacity: 1 !important;
}
.decision-box {
  margin: 1.5rem 0;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--color-indigo);
  background: rgba(27, 39, 64, 0.04);
}
.decision-box h2,
.decision-box h3 {
  margin-top: 0;
}
.decision-box h3 {
  margin: 0.85rem 0 0.4rem;
  font-size: var(--text-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}
.decision-box ul {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.15rem;
  color: var(--color-ink-muted);
  font-size: var(--text-small);
}
.decision-box li + li {
  margin-top: 0.25rem;
}
.decision-box p {
  margin: 0.45rem 0;
  font-size: var(--text-small);
  color: var(--color-ink-muted);
}
.decision-box p:first-of-type {
  color: var(--color-ink);
}

/* Narrow ambient craft strips (facts / legal / about panel) */
.craft-strip {
  margin: 0.75rem auto 1.25rem;
}
.craft-strip img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  object-fit: cover;
}
.craft-strip--narrow img {
  max-height: 11rem;
  object-position: center 30%;
}
.craft-strip--legal {
  margin: 0.5rem auto 1rem;
  opacity: 0.85;
}
.craft-strip--legal img {
  max-height: 5.5rem;
  object-position: center;
  filter: grayscale(0.15);
}
.hero-panel--photo {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.hero-panel--photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.trust-strip {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}
@media (min-width: 720px) {
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
.trust-strip p {
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-line);
  font-size: var(--text-small);
  color: var(--color-ink-muted);
}
details.nav-gift,
details.nav-occasions {
  position: relative;
}
details.nav-gift summary,
details.nav-occasions summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  list-style: none;
  cursor: pointer;
  font: inherit;
  color: var(--color-indigo);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
details.nav-gift summary::-webkit-details-marker,
details.nav-occasions summary::-webkit-details-marker {
  display: none;
}
.nav-gift__menu,
.nav-occasions__menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 12rem;
  padding: 0.55rem;
  background: var(--color-linen-warm);
  border: 1px solid var(--color-line);
  box-shadow: 0 10px 28px rgba(27, 39, 64, 0.12);
  z-index: 40;
  display: grid;
  gap: 0.15rem;
}
.nav-gift__menu a,
.nav-occasions__menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.55rem;
  color: var(--color-ink) !important;
  text-decoration: none;
}
.nav-gift__menu a:hover,
.nav-occasions__menu a:hover {
  background: var(--color-linen);
}
@media (max-width: 899px) {
  .nav-gift__menu,
  .nav-occasions__menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.25rem 0.75rem;
    background: transparent;
  }
}
.proof-note {
  font-size: var(--text-small);
  color: var(--color-ink-muted);
  max-width: 36rem;
  margin-top: 0.85rem;
}

/* Phase C mobile nav-gift + contrast */
@media (max-width: 899px) {
  .nav.is-open details.nav-gift,
  .site-nav.is-open details.nav-gift,
  .nav.is-open details.nav-occasions,
  .site-nav.is-open details.nav-occasions {
    display: block;
    width: 100%;
  }
  .nav-gift__menu a,
  .nav-occasions__menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
.hero-bleed--banner .hero-note,
.hero-bleed--banner .lead,
.hero-bleed--banner .hero-lead {
  color: var(--color-on-dark-muted);
}

.inquiry .form-actions,
.inquiry .form-status {
  position: relative;
  z-index: 2;
}
@media (max-width: 899px) {
  .inquiry__panel,
  .inquiry .wrap {
    padding-bottom: calc(var(--mobile-cta-height) + 1.5rem);
  }
}

/* Phase D reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-home__media img,
  .hero-home__media picture img { animation: none !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto !important; }
}

/* Phase D: desktop nav keep compact; mobile already ≥44px via base rules */
@media (min-width: 900px) {
  details.nav-gift summary,
  details.nav-occasions summary {
  display: flex;
  align-items: center;
  min-height: 44px;
    min-height: 0;
    padding-block: 0.35rem;
  }
  .nav-gift__menu a,
  .nav-occasions__menu a {
    min-height: 44px;
  }
}

/* Phase D mobile touch · occasions */
details.nav-gift summary,
details.nav-occasions summary {
  display: flex;
  align-items: center;
  min-height: 44px;
}
@media (max-width: 899px) {
  .hero-home { padding-bottom: calc(var(--mobile-cta-height) + 0.5rem); }
}


.legal-ambient {
  margin: 1.5rem auto 2rem;
  max-width: 42rem;
}
.legal-ambient img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-block);
  display: block;
  opacity: 0.9;
}
.legal-ambient figcaption {
  margin-top: 0.5rem;
  font-size: var(--text-small);
  color: var(--color-ink-muted);
}

/* 2026 storefront refinement */
.v2-page {
  overflow: clip;
  background: #f6f2eb;
}

.v2-page h1 {
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  letter-spacing: -0.035em;
}

.v2-page h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: -0.025em;
}

.v2-page h3 {
  font-size: 1.18rem;
}

.v2-page p,
.v2-page li {
  text-wrap: pretty;
}

.v2-page a:not(.btn) {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.nav-v2 {
  align-items: center;
}

.nav-v2 .nav-design-link {
  gap: 0.42rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(139, 95, 69, 0.24);
  border-radius: 999px;
  background: #f0dfc7;
  color: #172033;
  font-weight: 700;
  box-shadow: 0 5px 18px rgba(23, 32, 51, 0.08);
}

.nav-v2 .nav-design-link::before {
  content: "✦";
  color: #8b5f45;
}

.nav-v2 .nav-design-link small {
  padding: 0.14rem 0.35rem;
  border-radius: 999px;
  background: #172033;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-v2 .nav-design-link:hover {
  border-color: rgba(139, 95, 69, 0.4);
  background: #f7e9d5;
  color: #172033;
  transform: translateY(-1px);
}

.nav-v2 details {
  position: relative;
}

.nav-v2 summary {
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-v2 summary::-webkit-details-marker {
  display: none;
}

.nav-v2 summary::after {
  content: "⌄";
  margin-left: 0.35rem;
  font-size: 0.8rem;
}

.nav-v2 .nav-gift__menu {
  min-width: 14rem;
}

.v2-hero {
  position: relative;
  min-height: min(76rem, calc(100svh - var(--nav-height)));
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #fff;
}

.home-design-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 3.2rem;
  padding: 0.7rem var(--space-gutter);
  background: #0f5c52;
  color: #fff;
  text-decoration: none;
}

.home-design-ribbon:hover {
  background: #0b4c44;
  color: #fff;
  text-decoration: none;
}

.home-design-ribbon__badge {
  flex: 0 0 auto;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #f1e0c8;
  color: #172033;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-design-ribbon__copy {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.home-design-ribbon__copy strong {
  font-size: 0.94rem;
}

.home-design-ribbon__copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.home-design-ribbon__action {
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.v2-hero__media,
.v2-hero__shade {
  position: absolute;
  inset: 0;
}

.v2-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.v2-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 19, 29, 0.86) 0%, rgba(14, 19, 29, 0.54) 42%, rgba(14, 19, 29, 0.08) 76%),
    linear-gradient(0deg, rgba(14, 19, 29, 0.54) 0%, transparent 45%);
}

.v2-hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 13vh, 9rem);
}

.v2-hero__content h1 {
  max-width: 12ch;
  color: #fff;
}

.v2-hero__lead {
  max-width: 38rem;
  margin: 1.4rem 0;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.v2-hero .eyebrow,
.v2-section--dark .eyebrow {
  color: #d6c2a7;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.v2-hero .btn--primary {
  background: #f2e6d5;
  border-color: #f2e6d5;
  color: #172033;
}

.v2-hero .btn--primary:hover {
  background: #fff;
  border-color: #fff;
}

.v2-hero__design-cta {
  display: inline-flex;
  min-width: 13.5rem;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.08rem;
  text-align: left;
}

.v2-hero__design-cta small {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.72;
}

.v2-hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(7px);
}

.v2-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.v2-hero__proof li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: #f2e6d5;
}

.v2-hero__caption {
  margin: 1.2rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.home-designer-spotlight {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  border-block: 1px solid rgba(23, 32, 51, 0.1);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.72), transparent 32%),
    #dfe9e4;
}

.home-designer-spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(28rem, 1.12fr);
  align-items: center;
  gap: clamp(2.25rem, 6vw, 6.5rem);
}

.home-designer-spotlight__copy h2 {
  max-width: 13ch;
}

.home-designer-spotlight__copy .lead {
  max-width: 36rem;
  color: #414754;
}

.home-designer-benefits {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 2rem 0 2.2rem;
  list-style: none;
}

.home-designer-benefits li {
  display: grid;
  grid-template-columns: 9.2rem minmax(0, 1fr);
  gap: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(23, 32, 51, 0.15);
}

.home-designer-benefits strong {
  color: #172033;
}

.home-designer-benefits span {
  color: #48505d;
}

.home-designer-demo {
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 32px 80px rgba(23, 32, 51, 0.18);
  color: #172033;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.home-designer-demo:hover {
  color: #172033;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 38px 90px rgba(23, 32, 51, 0.22);
}

.home-designer-demo__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.1rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(23, 32, 51, 0.1);
  font-size: 0.78rem;
}

.home-designer-demo__bar > span {
  display: flex;
  gap: 0.28rem;
}

.home-designer-demo__bar i {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #d9c8b4;
}

.home-designer-demo__bar i:nth-child(2) {
  background: #b8c7c0;
}

.home-designer-demo__bar i:nth-child(3) {
  background: #8b5f45;
}

.home-designer-demo__bar strong {
  text-align: center;
}

.home-designer-demo__bar em {
  justify-self: end;
  color: #0f5c52;
  font-style: normal;
  font-weight: 700;
}

.home-designer-demo__scene {
  position: relative;
  margin: clamp(1rem, 2.5vw, 1.5rem);
  overflow: hidden;
  border-radius: 0.7rem;
  background: #d4c6b7;
}

.home-designer-demo__scene img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.home-designer-demo__scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 2px, rgba(16, 20, 28, 0.035) 2px 4px);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.home-designer-demo__scene > span {
  position: absolute;
  z-index: 2;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(23, 32, 51, 0.82);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.home-designer-demo__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.5rem 1rem;
}

.home-designer-demo__tools span {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(23, 32, 51, 0.14);
  border-radius: 999px;
  background: #f4f0ea;
  font-size: 0.72rem;
  font-weight: 650;
}

.home-designer-demo__tools .is-active {
  border-color: #0f5c52;
  background: #dceae5;
  color: #0f5c52;
}

.home-designer-demo > p {
  margin: 0;
  padding: 0 1.5rem 1.35rem;
  color: #606773;
  font-size: 0.72rem;
}

.v2-section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.v2-section--compact {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.v2-section--tint {
  background: #ebe3d8;
}

.v2-section--dark {
  background: #172033;
  color: rgba(255, 255, 255, 0.84);
}

.v2-section--dark h2,
.v2-section--dark h3 {
  color: #fff;
}

.v2-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.v2-split__media,
.v2-split figure,
.v2-page-hero figure {
  margin: 0;
}

.v2-split__media img,
.v2-split figure img,
.v2-page-hero figure img {
  width: 100%;
  border-radius: 1.1rem;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.visual-caption {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #646772;
}

.v2-section--dark .visual-caption {
  color: rgba(255, 255, 255, 0.62);
}

.v2-checks {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.v2-checks li {
  position: relative;
  padding-left: 1.65rem;
}

.v2-checks li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #8b5f45;
}

.text-link {
  font-weight: 700;
  text-decoration: underline;
}

.text-link--light {
  color: #f2e6d5;
}

.v2-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.v2-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-card-grid article,
.v2-policy-grid article {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.52);
}

.v2-card-grid article > span {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #8b5f45;
}

.v2-card-grid article p,
.v2-policy-grid article p {
  margin-bottom: 0;
  color: #404653;
}

.v2-steps,
.v2-process {
  padding: 0;
  margin: 2.5rem 0 0;
  list-style: none;
}

.v2-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.v2-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(23, 32, 51, 0.2);
  padding-top: 1.4rem;
}

.v2-steps li > span,
.v2-process li > span {
  font-family: var(--font-display);
  color: #8b5f45;
}

.v2-gallery-section {
  background: #151c2a;
  color: rgba(255, 255, 255, 0.82);
}

.v2-gallery-section h2 {
  color: #fff;
}

.v2-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.v2-gallery a {
  position: relative;
  overflow: hidden;
  min-height: 25rem;
  border-radius: 0.75rem;
  color: #fff;
}

.v2-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.v2-gallery picture {
  display: block;
  width: 100%;
  height: 100%;
}

.v2-gallery a:hover img {
  transform: scale(1.025);
}

.v2-gallery span {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.7);
}

.v2-gallery span small {
  display: block;
  margin-top: 0.22rem;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-life-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.v2-life-section__head > p {
  margin-bottom: 0.35rem;
  color: #4a505c;
}

.v2-life-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.v2-life-card {
  position: relative;
  grid-column: span 5;
  min-height: 24rem;
  overflow: hidden;
  border-radius: 0.8rem;
  color: #fff;
  background: #172033;
}

.v2-life-card--wide {
  grid-column: span 7;
}

.v2-life-card picture,
.v2-life-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.v2-life-card img {
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.v2-life-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 17, 27, 0.78) 0%, rgba(12, 17, 27, 0.04) 60%);
  pointer-events: none;
}

.v2-life-card > span {
  position: absolute;
  z-index: 1;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1rem;
}

.v2-life-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.v2-life-card small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-life-card:hover img {
  transform: scale(1.025);
}

.v2-product-scenes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.v2-product-scenes figure {
  margin: 0;
}

.v2-product-scenes picture,
.v2-product-scenes img {
  display: block;
  width: 100%;
}

.v2-product-scenes img {
  border-radius: 0.8rem;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.v2-confidence {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
}

.v2-page-hero,
.v2-simple-hero {
  background: #e8ded1;
}

.v2-page-hero {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.v2-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.v2-page-hero .lead,
.v2-simple-hero .lead {
  max-width: 44rem;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.v2-simple-hero {
  padding-block: clamp(5rem, 12vw, 10rem);
}

.v2-simple-hero--compact {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.v2-simple-hero .wrap {
  max-width: 58rem;
  margin-inline: auto;
}

.v2-facts-table {
  margin-top: 2rem;
  border-top: 1px solid rgba(23, 32, 51, 0.2);
}

.v2-facts-table > div {
  display: grid;
  grid-template-columns: minmax(11rem, 0.4fr) 1fr;
  gap: 1.5rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(23, 32, 51, 0.14);
}

.v2-compare,
.v2-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.v2-compare article {
  padding: clamp(1.7rem, 4vw, 3rem);
  border-radius: 0.9rem;
  background: #ebe3d8;
}

.v2-compare article:last-child {
  background: #dde3e5;
}

.v2-policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-process {
  max-width: 54rem;
  margin-inline: auto;
}

.v2-process li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding-block: 2.2rem;
  border-bottom: 1px solid rgba(23, 32, 51, 0.14);
}

.v2-process li > span {
  font-size: 1.5rem;
}

.v2-faq {
  max-width: 54rem;
}

.v2-faq details {
  border-bottom: 1px solid rgba(23, 32, 51, 0.18);
}

.v2-faq summary {
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.v2-faq details p {
  max-width: 46rem;
  padding-bottom: 1.25rem;
  color: #404653;
}

.v2-legal {
  max-width: 52rem;
}

.v2-legal h2:not(:first-child) {
  margin-top: 2.7rem;
}

.v2-legal a,
.form-privacy a,
.site-footer-v2 a {
  text-decoration: underline;
}

.inquiry-v2 {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  background: #d8cbbd;
}

.inquiry-v2__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(30rem, 1.28fr);
  align-items: start;
  gap: clamp(2.2rem, 7vw, 7rem);
}

.inquiry-v2__intro {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.inquiry-v2__intro h2 {
  color: #172033;
}

.inquiry-v2__promises {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.2rem;
}

.inquiry-form-v2 {
  padding: clamp(1.35rem, 4vw, 2.4rem);
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.08);
}

.inquiry-form-v2 .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inquiry-form-v2 .form-field--wide {
  grid-column: 1 / -1;
}

.inquiry-form-v2 input,
.inquiry-form-v2 select,
.inquiry-form-v2 textarea {
  width: 100%;
  background: #fff;
}

.inquiry-form-v2 textarea {
  resize: vertical;
}

.site-footer-v2 {
  padding-block: 4.5rem 2rem;
  background: #101724;
  color: rgba(255, 255, 255, 0.72);
}

.footer-v2__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
}

.site-footer-v2 h2,
.site-footer-v2 .footer-v2__brand {
  color: #fff;
}

.site-footer-v2 h2 {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-v2 .footer-v2__brand {
  font-family: var(--font-display);
  font-size: 2rem;
}

.site-footer-v2 a {
  display: block;
  padding-block: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-v2__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
}

.footer-v2__bottom p {
  max-width: 46rem;
  margin-bottom: 0;
}

@media (max-width: 1050px) {
  .header-cta {
    display: none;
  }

  .v2-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 899px) {
  .nav-v2 .nav-design-link {
    justify-content: center;
    margin-bottom: 0.35rem;
    border-radius: 0.65rem;
  }

  .home-design-ribbon {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.65rem;
    padding-block: 0.8rem;
  }

  .home-design-ribbon__copy {
    align-items: flex-start;
    flex: 1;
    flex-direction: column;
    gap: 0.08rem;
  }

  .home-design-ribbon__copy small {
    display: none;
  }

  .home-design-ribbon__action {
    align-self: center;
  }

  .v2-page h1 {
    font-size: clamp(2.5rem, 12vw, 4.15rem);
  }

  .v2-page h2 {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .v2-hero {
    min-height: calc(100svh - var(--nav-height));
  }

  .v2-hero__media img {
    object-position: 66% center;
  }

  .v2-hero__shade {
    background:
      linear-gradient(0deg, rgba(12, 17, 27, 0.92) 0%, rgba(12, 17, 27, 0.62) 53%, rgba(12, 17, 27, 0.14) 100%);
  }

  .v2-hero__content {
    padding-block: 11rem 3.5rem;
  }

  .v2-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .v2-actions .btn {
    width: 100%;
  }

  .v2-hero__design-cta {
    align-items: center;
    text-align: center;
  }

  .v2-hero__proof {
    display: grid;
    gap: 0.3rem;
  }

  .v2-split,
  .v2-confidence,
  .home-designer-spotlight__grid,
  .v2-life-section__head,
  .v2-page-hero__grid,
  .inquiry-v2__layout {
    grid-template-columns: 1fr;
  }

  .home-designer-spotlight__grid {
    gap: 3rem;
  }

  .home-designer-spotlight__copy h2 {
    max-width: 15ch;
  }

  .home-designer-benefits li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .v2-page-hero__grid figure {
    grid-row: 1;
  }

  .v2-card-grid,
  .v2-card-grid--four,
  .v2-steps,
  .v2-gallery,
  .v2-compare,
  .v2-policy-grid {
    grid-template-columns: 1fr;
  }

  .v2-gallery a {
    min-height: 22rem;
  }

  .v2-life-grid,
  .v2-product-scenes {
    grid-template-columns: 1fr;
  }

  .v2-life-card,
  .v2-life-card--wide {
    grid-column: auto;
    min-height: 21rem;
  }

  .v2-facts-table > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .inquiry-v2__intro {
    position: static;
  }

  .inquiry-form-v2 .form-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-form-v2 .form-field--wide {
    grid-column: auto;
  }

  .footer-v2__grid,
  .footer-v2__bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-v2__bottom {
    gap: 1rem;
  }

  body:has(.nav.is-open) .mobile-cta,
  body:has(#inquiry:target) .mobile-cta {
    transform: translateY(110%);
    pointer-events: none;
  }
}

@media (min-width: 900px) {
  body.has-mobile-cta {
    padding-bottom: 0;
  }

  .mobile-cta {
    display: none;
  }
}

/* Browser-only blanket design studio */
.designer-promo {
  border-block: 1px solid rgba(23, 32, 51, 0.08);
}

.designer-hero .wrap {
  max-width: 66rem;
}

.design-studio-section {
  padding-block: clamp(1.5rem, 4vw, 3.5rem);
  background: #ede6dc;
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.design-studio-section--home {
  padding-block: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid rgba(23, 32, 51, 0.08);
}

.design-studio-section--standalone {
  padding-block: 1.1rem 3.5rem;
}

.design-studio-section--standalone .studio-intro {
  grid-template-columns: minmax(23rem, 0.8fr) minmax(28rem, 1.2fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-bottom: 0.85rem;
}

.design-studio-section--standalone .studio-intro .eyebrow {
  margin-bottom: 0.35rem;
}

.design-studio-section--standalone .studio-intro h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.7vw, 4rem);
  line-height: 0.98;
}

.design-studio-section--standalone .studio-essentials {
  margin-bottom: 1.2rem;
}

.design-studio-section--standalone .studio-essentials li {
  padding-block: 0.7rem;
}

.studio-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.studio-intro > p {
  max-width: 42rem;
  margin-bottom: 0.35rem;
  color: #414754;
}

.studio-essentials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 clamp(1.5rem, 3vw, 2.2rem);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.56);
  list-style: none;
}

.studio-essentials li {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 1rem;
}

.studio-essentials li + li {
  border-left: 1px solid rgba(23, 32, 51, 0.1);
}

.studio-essentials strong {
  color: #172033;
  font-size: 0.84rem;
}

.studio-essentials span {
  color: #59606d;
  font-size: 0.76rem;
}

.studio-mobile-start {
  display: none;
}

.design-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(25rem, 0.88fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.studio-preview-panel {
  position: sticky;
  top: calc(var(--nav-height) + 1.2rem);
  min-width: 0;
}

.studio-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.studio-preview-header h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.studio-kicker {
  margin: 0 0 0.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f5c52;
}

.quality-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  background: #ece8e1;
  color: #4f5662;
}

.quality-pill--good {
  background: #dbe9df;
  color: #24533b;
}

.quality-pill--check {
  background: #f1e3c2;
  color: #664a16;
}

.quality-pill--low {
  background: #f2d9d6;
  color: #7a2e28;
}

.preview-view-switch {
  display: inline-flex;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
  padding: 0.25rem;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.preview-view-switch button {
  min-height: 2.25rem;
  padding: 0.42rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4f5662;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.preview-view-switch button:hover {
  color: #172033;
}

.preview-view-switch button.is-active {
  background: #172033;
  color: #fff;
  box-shadow: 0 4px 12px rgba(23, 32, 51, 0.18);
}

.blanket-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.6rem;
  background: #121927;
  box-shadow: 0 28px 70px rgba(23, 32, 51, 0.22);
  isolation: isolate;
}

.blanket-stage--design.blanket-stage--landscape {
  aspect-ratio: 4 / 3;
}

.blanket-stage--design.blanket-stage--portrait {
  width: min(74%, 35rem);
  margin-inline: auto;
  aspect-ratio: 3 / 4;
}

.blanket-stage--product,
.blanket-stage--product.blanket-stage--landscape,
.blanket-stage--product.blanket-stage--portrait {
  width: 100%;
  margin-inline: 0;
  aspect-ratio: 4 / 3;
  background: #d8cbbc;
}

.blanket-stage--design::before,
.blanket-stage--design::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset-inline: 0;
  height: 0.55rem;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(245, 236, 224, 0.78) 0 2px,
    rgba(23, 32, 51, 0.44) 2px 4px
  );
  opacity: 0.65;
}

.blanket-stage--design::before {
  top: 0;
}

.blanket-stage--design::after {
  bottom: 0;
}

#design-canvas,
#product-mockup-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}

#product-mockup-canvas {
  cursor: default;
}

.blanket-stage--product #design-canvas,
.blanket-stage--design #product-mockup-canvas {
  display: none;
}

.blanket-stage--product #product-mockup-canvas,
.blanket-stage--design #design-canvas {
  display: block;
}

#design-canvas.is-dragging,
#product-mockup-canvas.is-dragging {
  cursor: grabbing;
}

.designer-safe-zone {
  position: absolute;
  z-index: 4;
  inset: 7.5%;
  border: 2px dashed rgba(255, 255, 255, 0.9);
  border-radius: 0.25rem;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

.designer-safe-zone span {
  position: absolute;
  top: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.22rem 0.45rem;
  border-radius: 0.2rem;
  background: rgba(14, 19, 29, 0.74);
  color: #fff;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.preview-guidance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #4f5662;
}

.preview-guidance p {
  margin: 0;
}

.studio-controls {
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 52px rgba(23, 32, 51, 0.08);
}

.studio-step {
  min-width: 0;
  margin: 0;
  padding: 1.45rem;
  border: 0;
  border-bottom: 1px solid rgba(23, 32, 51, 0.1);
}

.studio-step legend {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: #172033;
}

.studio-step legend span {
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.5rem;
  place-items: center;
  border-radius: 50%;
  background: #172033;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
}

.designer-upload {
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem;
  border: 1.5px dashed rgba(23, 32, 51, 0.32);
  border-radius: 0.55rem;
  background: #f8f5f0;
  cursor: pointer;
}

.designer-upload:hover {
  border-color: #0f5c52;
}

.designer-upload:focus-within {
  outline: 3px solid rgba(15, 92, 82, 0.2);
  outline-offset: 2px;
}

.designer-upload span,
.field-help {
  color: #59606d;
  font-size: 0.82rem;
}

.designer-upload .designer-upload__button {
  justify-self: start;
  min-height: 2.4rem;
  margin-top: 0.65rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid #172033;
  border-radius: 0.3rem;
  background: #172033;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.designer-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field-help {
  margin: 0.55rem 0 0;
}

.template-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.template-options label {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.18rem;
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid rgba(23, 32, 51, 0.14);
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
}

.template-options label:has(input:checked) {
  border-color: #0f5c52;
  box-shadow: 0 0 0 2px rgba(15, 92, 82, 0.13);
}

.template-options label:has(input:focus-visible) {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.template-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.template-options strong {
  font-size: 0.84rem;
}

.template-options small {
  color: #636a75;
  font-size: 0.72rem;
  line-height: 1.25;
}

.template-swatch {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
  background:
    linear-gradient(135deg, rgba(15, 92, 82, 0.6), rgba(23, 32, 51, 0.72)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.18) 3px 4px);
}

.template-swatch--border {
  border: 0.45rem solid #d8cbbd;
}

.template-swatch--caption::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 28%;
  background: #172033;
}

.studio-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.studio-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.control-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #303744;
}

.control-field input,
.control-field select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(23, 32, 51, 0.24);
  border-radius: 0.3rem;
  background: #fff;
  color: #172033;
  font: inherit;
  font-weight: 500;
}

.range-field {
  margin-top: 0.55rem;
}

.range-field label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.range-field input[type="range"] {
  width: 100%;
  min-height: 2.2rem;
  accent-color: #0f5c52;
}

.studio-inline-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
}

.studio-text-button,
.studio-reset {
  padding: 0;
  border: 0;
  background: transparent;
  color: #173b55;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.safe-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.safe-toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: #0f5c52;
}

.studio-finish {
  padding: 1.45rem;
  background: #172033;
  color: rgba(255, 255, 255, 0.82);
}

.studio-finish > p {
  font-size: 0.9rem;
}

.studio-finish__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.studio-finish .btn--secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.studio-finish .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.studio-finish .btn[disabled] {
  opacity: 0.46;
}

.studio-reset {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.studio-status {
  min-height: 1.4rem;
  margin-top: 0.65rem;
  font-size: 0.82rem;
}

.studio-status--success {
  color: #c8ecd5;
}

.studio-status--error {
  color: #ffd0cb;
}

.saved-designs {
  padding: 1.4rem;
  border-top: 1px solid rgba(23, 32, 51, 0.12);
  background: #fbfaf7;
}

.saved-designs__header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(12rem, 1.2fr);
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.saved-designs__header .eyebrow {
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
}

.saved-designs__header h3 {
  margin: 0;
  font-size: 1.35rem;
}

.saved-designs__header > p,
.saved-designs__empty {
  color: #59606d;
  font-size: 0.82rem;
}

.saved-designs__list {
  display: grid;
  gap: 0.7rem;
}

.saved-design-card {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid rgba(23, 32, 51, 0.13);
  border-radius: 0.45rem;
  background: #fff;
}

.saved-design-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.3rem;
  background: #e8e2d9;
}

.saved-design-card__details {
  min-width: 0;
}

.saved-design-card__details h4 {
  margin: 0;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-design-card__details > p {
  margin-top: 0.2rem;
  color: #69707b;
  font-size: 0.75rem;
}

.saved-design-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.55rem;
}

.saved-designs__delete {
  padding: 0;
  border: 0;
  background: transparent;
  color: #8a3931;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.designer-explainer {
  margin-top: 0;
}

.designer-explainer h2 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.design-summary-notice {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid #0f5c52;
  background: #e3eee9;
  color: #25483c;
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 1180px) and (min-width: 900px) {
  .nav,
  .site-nav {
    gap: 0.1rem 0.7rem;
  }

  .nav a,
  .site-nav a,
  .nav-v2 summary {
    font-size: 0.9rem;
  }
}

@media (max-width: 899px) {
  .studio-intro,
  .design-studio {
    grid-template-columns: 1fr;
  }

  .studio-intro {
    gap: 0.8rem;
  }

  .design-studio-section {
    padding-block: 1.4rem 3rem;
  }

  .design-studio-section--home {
    padding-block: 2.8rem 4rem;
  }

  .design-studio-section--standalone {
    padding-block: 1rem 3rem;
  }

  .design-studio-section--standalone .studio-intro {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
  }

  .design-studio-section--standalone .studio-intro h1 {
    max-width: 14ch;
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .design-studio-section--standalone .studio-intro > p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .studio-essentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-essentials li:nth-child(3) {
    border-left: 0;
  }

  .studio-essentials li:nth-child(n + 3) {
    border-top: 1px solid rgba(23, 32, 51, 0.1);
  }

  .studio-mobile-start {
    display: grid;
    gap: 0.1rem;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 0.45rem;
    background: #172033;
    color: #fff;
    cursor: pointer;
  }

  .studio-mobile-start span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
  }

  .studio-preview-panel {
    position: static;
  }

  .blanket-stage--portrait {
    width: min(88%, 31rem);
  }

  .preview-guidance {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .studio-grid--three {
    grid-template-columns: 1fr;
  }

  .page-designer.has-mobile-cta {
    padding-bottom: 0;
  }

  .page-designer .mobile-cta {
    display: none;
  }

  body.designer-in-view .mobile-cta {
    transform: translateY(110%);
    pointer-events: none;
  }
}

@media (max-width: 560px) {
  .studio-preview-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .template-options,
  .studio-grid--two,
  .studio-finish__actions {
    grid-template-columns: 1fr;
  }

  .template-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .template-options label {
    padding: 0.45rem;
  }

  .template-options small {
    display: none;
  }

  .studio-inline-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .saved-designs__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .saved-design-card {
    grid-template-columns: 6.5rem minmax(0, 1fr);
  }
}
