/* ==========================================================================
   Glory Multi Services — stylesheet
   Palette derived from the printed business card: deep brick red, muted
   lavender, cream. Hexes and type match the Claude Design canvas
   ("Website from business card"); the neutral ramp is warm, mixed down from
   --ink-800 rather than pure grey, so it sits on cream without going cold.
   No build step; plain CSS with custom properties.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* brand red — the card's dominant colour */
  --red-900: #5e1017;
  --red-800: #7e1420;
  --red-700: #a81f2d;
  --red-600: #c4303c;
  --red-100: #f7dee1;
  --red-50: #fdf2f3;

  /* muted lavender — the card's service band */
  --lav-800: #3a2e52;
  --lav-600: #5a4c78;
  --lav-400: #bdb4e4;
  --lav-200: #ddd7f0;
  --lav-100: #e4dff5;
  --lav-50: #f2eefb;
  --lav-25: #f0ebff;

  /* dusty rose — the canvas uses it only to separate items on deep red */
  --rose-300: #d79aa3;

  /* neutrals — warm, mixed from --ink-800 over --cream */
  --cream: #f6f2ec;
  --band: #efe9e1;
  --paper: #ffffff;
  --ink-900: #161112;
  --ink-800: #201a1b;
  --ink-700: #2f2729;
  --gray-700: #4e4749;
  --gray-600: #716c6a;
  --gray-500: #8b8582;
  --gray-300: #cbc4bd;
  --gray-200: #e0dcd7;
  --gray-100: #f0ebe4;

  --focus: #2f6fd0;

  /* type */
  --font-display:
    "Oswald", "Haettenschweiler", "Arial Narrow", system-ui, sans-serif;
  --font-body:
    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* spacing + shape */
  --container: 1180px;
  --gutter: 1.25rem;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 18px;

  --shadow-sm:
    0 1px 2px rgba(32, 26, 27, 0.05), 0 2px 8px rgba(32, 26, 27, 0.04);
  --shadow:
    0 4px 12px rgba(32, 26, 27, 0.06), 0 12px 32px rgba(32, 26, 27, 0.07);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.14), 0 24px 60px rgba(0, 0, 0, 0.24);

  --header-h: 68px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-800);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--red-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--red-800);
}

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

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

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.25rem, 6.5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.005em;
}

h2 {
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  letter-spacing: 0.03em;
}

h4 {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

p {
  margin: 0 0 1rem;
}

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

.lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--gray-700);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-700);
  margin: 0 0 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--lav-400);
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */

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

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

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

.section-head {
  max-width: 60ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

/* the canvas pairs every heading with a lavender rule: a bar under centred
   heads, a line running out to the margin on left-aligned ones */
.section-head--center h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 0.75rem auto 0;
  background: var(--lav-400);
}

.section-head:not(.section-head--center) h2 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.section-head:not(.section-head--center) h2::after {
  content: "";
  height: 2px;
  flex: 1;
  min-width: 40px;
  background: var(--lav-400);
}

/* dark sections */
.section--dark {
  background: var(--ink-900);
  color: var(--gray-200);
}

.section--dark h2,
.section--dark h3 {
  color: var(--paper);
}

.section--dark .lede {
  color: var(--gray-300);
}

.section--dark .eyebrow {
  color: var(--lav-400);
}

.section--dark .eyebrow::before {
  background: var(--red-600);
}

.section--lav {
  background: var(--lav-50);
}

/* warm band — the canvas's ground for the work gallery */
.section--band {
  background: var(--band);
  border-block: 1px solid var(--gray-200);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.5rem;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.18s var(--ease),
    border-color 0.18s var(--ease),
    color 0.18s var(--ease),
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

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

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn--primary {
  background: var(--red-700);
  border-color: var(--red-700);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(168, 31, 45, 0.28);
}

.btn--primary:hover {
  background: var(--red-800);
  border-color: var(--red-800);
  color: var(--paper);
  box-shadow: 0 8px 24px rgba(168, 31, 45, 0.34);
}

.btn--outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--ink-800);
}

.btn--outline:hover {
  border-color: var(--ink-800);
  background: var(--ink-800);
  color: var(--paper);
}

.hero .btn--primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--red-700);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.hero .btn--primary:hover {
  background: var(--lav-25);
  border-color: var(--lav-25);
  color: var(--red-800);
}

.section--dark .btn--outline,
.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--paper);
}

.section--dark .btn--outline:hover,
.hero .btn--outline:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink-900);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.btn-row--center {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -100px;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--ink-900);
  color: var(--paper);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 0.5rem;
  color: var(--paper);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  /* gap: 0.625rem; */
  margin-right: auto;
  text-decoration: none;
  color: var(--ink-900);
}

/* The supplied logo is 289x228 and carries its own light plate, so it is sized
   by height at its natural aspect and given the rounded corners the design
   canvas used for the logo slot. */
.brand__mark {
  width: auto;
  height: 46px;
  border-radius: 6px;
  flex: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red-800);
}

.brand__tag {
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-800);
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s var(--ease),
    border-color 0.15s var(--ease);
}

.nav a:hover {
  color: var(--red-700);
  border-bottom-color: var(--red-700);
}

.header__cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink-800);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--cream);
  padding: 0.75rem var(--gutter) 1.25rem;
}

.mobile-nav[data-open="true"] {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.8125rem 0.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-800);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav .btn {
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .nav,
  .header__cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   7. Mobile call/text bar
   -------------------------------------------------------------------------- */

.action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom));
  background: rgba(22, 17, 18, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.action-bar .btn {
  min-height: 46px;
  font-size: 0.875rem;
  padding-inline: 0.75rem;
}

.action-bar .btn--outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--paper);
}

body {
  padding-bottom: 74px;
}

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

  body {
    padding-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--red-700);
  color: var(--paper);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2.25rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.375rem) clamp(2.75rem, 5vw, 4.5rem);
}

.hero h1 {
  color: var(--paper);
  font-size: clamp(2.375rem, 5.4vw, 4.25rem);
  line-height: 1.02;
  margin-bottom: 1.125rem;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--lav-400);
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
  margin-bottom: 1.75rem;
  text-wrap: pretty;
}

/* the eyebrow becomes a pill badge on the crimson field */
.hero .eyebrow {
  padding: 0.375rem 0.8125rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
}

.hero .eyebrow::before {
  display: none;
}

.hero__note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
}

/* framed artwork panel */
.hero__figure {
  position: relative;
  margin-bottom: 0.5rem;
}

.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__tag {
  position: absolute;
  left: -0.875rem;
  bottom: -1.125rem;
  margin: 0;
  padding: 0.8125rem 1.125rem;
  border-radius: 12px;
  background: var(--lav-400);
  color: var(--lav-800);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 719px) {
  .hero__figure {
    margin-bottom: 1.5rem;
  }

  .hero__tag {
    left: 0;
    bottom: -1rem;
    font-size: 0.875rem;
  }
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.14);
  position: relative;
}

.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 1.125rem 0;
  list-style: none;
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.trust-strip svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--lav-400);
}

/* service band ----------------------------------------------------------- */

.marquee {
  background: var(--red-800);
  color: var(--paper);
}

.marquee p {
  margin: 0;
  padding-block: 0.875rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.75rem, 1.15vw, 0.9375rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.9;
  text-align: center;
}

.marquee span {
  color: var(--rose-300);
  padding-inline: 0.25rem;
}

/* --------------------------------------------------------------------------
   9. Cards + service grids
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--lav-200);
}

.card h3 {
  margin-bottom: 0.4rem;
  color: var(--ink-900);
}

.card p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--red-50);
  color: var(--red-700);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

/* --------------------------------------------------------------------------
   10. Packages
   -------------------------------------------------------------------------- */

.packages {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.package {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.package--featured {
  border: 2px solid var(--red-700);
  box-shadow: var(--shadow);
}

.package__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--red-700);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.package h3 {
  color: var(--ink-900);
  margin-bottom: 0.25rem;
}

.package__for {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

/* Price slot. Numbers are intentionally absent — see CONTENT-CHECKLIST.md.
   To publish prices, replace .package__price contents with e.g.
   <span class="package__amount">From $149</span> */
.package__price {
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  border-block: 1px solid var(--gray-200);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-800);
}

.package__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray-600);
  margin-top: 0.15rem;
}

.package ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.package li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 1rem;
  height: 0.55rem;
  border-left: 2.5px solid var(--red-700);
  border-bottom: 2.5px solid var(--red-700);
  transform: rotate(-45deg);
}

.package .btn {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   11. Home + property services
   -------------------------------------------------------------------------- */

.split-card {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.split-card > article {
  background: var(--paper);
  border: 1px solid var(--lav-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.split-card h3 {
  color: var(--ink-900);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.125rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.tag-list li {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--lav-50);
  border: 1px solid var(--lav-200);
  color: var(--lav-800);
}

/* --------------------------------------------------------------------------
   12. Gallery
   -------------------------------------------------------------------------- */

/* Fixed column counts rather than auto-fill: the six slots must tile evenly
   (2x3, then 3x2) instead of leaving a single orphan on the last row. */
.gallery {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 760px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: var(--gray-100);
}

.gallery-note {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-note p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
  max-width: 52ch;
}

/* --------------------------------------------------------------------------
   13. Why us / steps
   -------------------------------------------------------------------------- */

.why-item h3 {
  color: var(--ink-900);
  margin-bottom: 0.35rem;
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
}

.why-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.875rem;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--lav-200);
  color: var(--red-700);
}

.why-item__icon svg {
  width: 22px;
  height: 22px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--paper);
  border-left: 3px solid var(--red-700);
  border-radius: 0 12px 12px 0;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--lav-400);
}

.step h3 {
  color: var(--ink-900);
  margin-bottom: 0;
}

.step p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
}

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */

.faq {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq details[open] {
  border-color: var(--lav-200);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-900);
  list-style: none;
}

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

.faq summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--red-700);
  border-bottom: 2px solid var(--red-700);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(-135deg) translateY(-2px);
}

.faq .faq__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

/* --------------------------------------------------------------------------
   15. Quote form
   -------------------------------------------------------------------------- */

/* the canvas floats the white form card on a crimson field */
.section--quote {
  background: var(--red-700);
  color: var(--paper);
}

.section--quote h2 {
  color: var(--paper);
}

.section--quote .eyebrow {
  color: var(--lav-400);
}

.section--quote .eyebrow::before {
  background: rgba(255, 255, 255, 0.45);
}

.section--quote .lede {
  color: rgba(255, 255, 255, 0.85);
}

.quote {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 940px) {
  .quote {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
  }
}

.quote__aside .contact-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.quote__aside .contact-list a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  color: var(--paper);
  font-weight: 600;
  word-break: break-word;
}

.quote__aside .contact-list a:hover {
  color: var(--lav-100);
}

.contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--paper);
}

.contact-list__icon svg {
  width: 20px;
  height: 20px;
}

.contact-list small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.form-card {
  background: var(--paper);
  color: var(--ink-800);
  border: 0;
  border-radius: var(--radius-lg);
  padding: clamp(1.375rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
}

.field {
  margin-bottom: 1.125rem;
}

.field-row {
  display: grid;
  gap: 1.125rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 1.125rem;
}

.field-row .field {
  margin-bottom: 0;
}

.label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.label .req {
  color: var(--red-700);
}

.label .opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray-500);
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  min-height: 48px;
  background: var(--paper);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition:
    border-color 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
}

.input:hover,
.select:hover,
.textarea:hover {
  border-color: var(--gray-500);
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--red-700);
  box-shadow: 0 0 0 3px var(--red-100);
}

.textarea {
  min-height: 118px;
  resize: vertical;
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b6473' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 12px;
  padding-right: 2.25rem;
}

.input[aria-invalid="true"],
.select[aria-invalid="true"],
.textarea[aria-invalid="true"] {
  border-color: var(--red-600);
}

.field-error {
  display: none;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: var(--red-800);
}

.field-error[data-show="true"] {
  display: block;
}

/* segmented radio chips */
.chips {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 1fr;
  border: 0;
  padding: 0;
  margin: 0 0 1.125rem;
}

/* Three fixed options — keep them on a single row once there is room, so the
   set reads as one control rather than two plus a stray. */
@media (min-width: 520px) {
  .chips {
    grid-template-columns: repeat(3, 1fr);
  }
}

.chips legend {
  padding: 0;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  grid-column: 1 / -1;
}

.chip {
  position: relative;
  display: block;
}

.chip input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.625rem 0.875rem;
  text-align: center;
  border: 1.5px solid var(--gray-300);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition:
    border-color 0.15s var(--ease),
    background-color 0.15s var(--ease),
    color 0.15s var(--ease);
}

.chip input:hover + span {
  border-color: var(--gray-500);
}

.chip input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.chip input:checked + span {
  border-color: var(--red-700);
  background: var(--red-700);
  color: var(--paper);
}

/* checkbox list — the canvas draws these as toggle chips. The native checkbox
   stays visible rather than being swapped for a styled span: it keeps the
   checked state legible if :has() is unavailable, and keeps the control's own
   semantics intact. */
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border: 0;
  padding: 0;
  margin: 0 0 1.125rem;
}

.check-grid legend {
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  width: 100%;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.5rem 0.875rem;
  border: 1.5px solid rgba(126, 20, 32, 0.25);
  border-radius: 999px;
  background: var(--paper);
  color: var(--red-800);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.15s var(--ease),
    border-color 0.15s var(--ease),
    color 0.15s var(--ease);
}

.check:hover {
  border-color: var(--red-700);
  background: var(--red-50);
}

.check:has(input:checked) {
  background: var(--red-700);
  border-color: var(--red-700);
  color: var(--paper);
}

.check:has(input:focus-visible) {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.check input {
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--red-700);
  cursor: pointer;
}

.check:has(input:checked) input {
  accent-color: var(--paper);
}

/* conditional blocks */
.branch[hidden] {
  display: none;
}

.branch {
  padding: 1.25rem;
  margin-bottom: 1.125rem;
  border: 1px solid var(--lav-200);
  border-radius: var(--radius);
  background: var(--lav-50);
}

.branch > h4 {
  margin-bottom: 1rem;
  color: var(--lav-800);
  letter-spacing: 0.1em;
}

/* honeypot — visually gone but not display:none, so bots still fill it */
.form-foot {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-foot .btn {
  flex: 1 1 220px;
}

.form-foot p {
  flex: 1 1 200px;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.btn[data-loading="true"] {
  pointer-events: none;
  opacity: 0.72;
}

.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.125rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  border: 1px solid transparent;
}

.form-status[data-state="error"] {
  display: block;
  background: var(--red-50);
  border-color: var(--red-100);
  color: var(--red-900);
}

.form-status[data-state="success"] {
  display: block;
  background: #edf7ee;
  border-color: #c9e6cc;
  color: #1e5024;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--ink-800);
  color: var(--gray-300);
  padding-block: clamp(2.5rem, 6vw, 4rem) 2rem;
  font-size: 0.9375rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer h4 {
  color: var(--paper);
  letter-spacing: 0.12em;
  margin-bottom: 0.875rem;
}

.footer a {
  color: var(--gray-300);
  text-decoration: none;
}

.footer a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer .brand__name {
  color: var(--paper);
}

.footer .brand__tag {
  color: var(--gray-500);
}

.footer__about {
  margin-top: 1rem;
  max-width: 34ch;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* --------------------------------------------------------------------------
   17. Utilities + motion
   -------------------------------------------------------------------------- */

.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;
}

/* Scoped to .js (set by an inline script in <head>) so that if JavaScript never
   runs, nothing is left invisible — the content simply appears without animation. */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
