@import url("tokens.css");

/* ============ base ============ */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* quarry grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brass); color: #fff; }

.wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brass-deep), var(--brass-bright));
}

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--brass);
  color: #fff;
  background: linear-gradient(110deg, var(--brass-deep), var(--brass) 45%, var(--brass-bright) 55%, var(--brass));
  background-size: 220% 100%;
  background-position: 0% 0;
  cursor: pointer;
  transition: background-position var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-fast) ease;
}
.btn:hover { background-position: 95% 0; transform: translateY(-2px); }
.btn:focus-visible,
a:focus-visible { outline: 2px solid var(--brass-bright); outline-offset: 3px; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  transition: border-color var(--duration-fast) ease, color var(--duration-fast) ease, transform var(--duration-fast) ease;
}
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-bright); }

/* ============ header ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background var(--duration-fast) ease, border-color var(--duration-fast) ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: color-mix(in oklab, var(--bg-deep) 88%, transparent);
  backdrop-filter: blur(14px);
  border-color: var(--line-faint);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand svg, .brand img { width: 2.4rem; height: 2.4rem; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.brand-name span { color: var(--brass); }

.site-nav { display: flex; align-items: center; gap: 2.4rem; }
.site-nav a:not(.btn) {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-block: 0.4rem;
  transition: color var(--duration-fast) ease;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}
.site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav .btn { padding: 0.75rem 1.5rem; }

.nav-toggle { display: none; }

/* ============ hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroDrift 18s var(--ease-out-expo) both;
}
@keyframes heroDrift {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(19, 26, 44, 0.6), rgba(26, 35, 56, 0.28) 40%, var(--bg) 96%),
    linear-gradient(100deg, rgba(19, 26, 44, 0.85) 8%, transparent 60%);
}
.hero .wrap { padding-block: 8.5rem clamp(3rem, 7vh, 6rem); width: 100%; }

.hero h1 {
  font-size: var(--text-hero);
  max-width: 11ch;
  margin-block: 1.4rem 1.8rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--brass-bright);
}
.hero-sub {
  max-width: 44ch;
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 2.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  margin-top: clamp(3rem, 6vh, 5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--brass-bright);
}
.hero-stats div span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* staggered load-in */
.hero [data-rise] {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--i, 0) * 130ms + 150ms);
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============ marquee ============ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-deep);
  overflow: hidden;
  padding-block: 1.1rem;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee-track b { color: var(--brass); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ sections ============ */
.section { padding-block: var(--space-section); position: relative; }
.section--deep { background: var(--bg-deep); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head h2 { font-size: var(--text-h2); margin-block: 1.2rem 1rem; }
.section-head p { color: var(--muted); max-width: 52ch; }

/* gold vein divider */
.vein {
  display: block;
  width: 100%;
  height: 90px;
  color: var(--silver);
}
.vein path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
  opacity: 0.55;
}
html.js .vein path {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.is-visible .vein path,
.vein.is-visible path { animation: veinDraw 2.6s var(--ease-out-expo) forwards; }
@keyframes veinDraw { to { stroke-dashoffset: 0; } }

/* scroll reveal */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 90ms);
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ============ editorial split ============ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split-media {
  position: relative;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--line);
  z-index: -1;
}
.split h2 { font-size: var(--text-h2); margin-block: 1.2rem 1.4rem; }
.split p + p { margin-top: 1rem; }
.split p { color: var(--ink-soft); }
.split .btn { margin-top: 2.2rem; }

/* ============ materials ============ */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-faint);
  border: 1px solid var(--line-faint);
}
.material {
  position: relative;
  background: var(--bg-card);
  padding: 2.2rem 1.9rem 2.4rem;
  overflow: hidden;
  isolation: isolate;
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.5s var(--ease-out-expo);
}
.material img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.95);
  transition: opacity 0.6s ease, transform 1.2s var(--ease-out-expo);
}
.material::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(19,26,44,0.08) 30%, rgba(19,26,44,0.94) 82%);
}
.material:hover img { opacity: 0.75; transform: scale(1.06); }
.material .num {
  position: absolute;
  top: 1.6rem; right: 1.7rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.material h3 { font-size: 1.65rem; margin-bottom: 0.6rem; }
.material p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.material .more {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.material .more::after { content: " →"; }

/* ============ process ============ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -0.85rem;
  left: 0;
  background: var(--bg);
  padding-right: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass);
}
.section--deep .step::before { background: var(--bg-deep); }
.step h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }
.step p { font-size: 0.94rem; color: var(--muted); }
.step em {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ============ gallery bento ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 15rem;
  gap: 1rem;
}
.bento figure {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}
.bento img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out-expo), filter 0.5s ease;
  filter: saturate(0.9);
}
.bento figure:hover img { transform: scale(1.05); filter: saturate(1.05); }
.bento figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem 1.3rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(180deg, transparent, rgba(14,13,11,0.85));
}
.bento .b-wide { grid-column: span 2; }
.bento .b-tall { grid-row: span 2; }

/* ============ service area ============ */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.areas li {
  list-style: none;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: border-color var(--duration-fast) ease, color var(--duration-fast) ease;
}
.areas li:hover { border-color: var(--brass); color: var(--brass-bright); }

/* ============ quote band ============ */
.quote-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding-block: var(--space-section);
}
.quote-band img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(80% 90% at 50% 100%, rgba(20,18,15,0.35), var(--bg-deep) 90%);
}
.quote-band h2 { font-size: var(--text-h2); max-width: 20ch; margin: 1.2rem auto 1rem; }
.quote-band p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 2.4rem; }
.quote-band .eyebrow { justify-content: center; }
.quote-band .eyebrow::before { display: none; }

/* ============ form ============ */
.quote-form {
  max-width: 44rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  text-align: left;
}
.quote-form .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(237, 231, 220, 0.04);
  border: 1px solid var(--line-faint);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color var(--duration-fast) ease, background var(--duration-fast) ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: rgba(237, 231, 220, 0.07);
}
.field select { appearance: none; }
.field textarea { min-height: 8rem; resize: vertical; }
.quote-form .btn { justify-self: start; margin-top: 0.6rem; }

/* ============ footer ============ */
.site-footer {
  border-top: 1px solid var(--line-faint);
  background: var(--bg-deep);
  padding-block: 4rem 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-grid a, .footer-grid li { font-size: 0.92rem; color: var(--ink-soft); }
.footer-grid a:hover { color: var(--brass-bright); }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 30ch; margin-top: 1rem; }
.footer-legal {
  padding-top: 2rem;
  border-top: 1px solid var(--line-faint);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============ page hero (inner pages) ============ */
.page-hero {
  padding: 11rem 0 4.5rem;
  border-bottom: 1px solid var(--line-faint);
  background:
    radial-gradient(60% 120% at 85% 0%, rgba(192, 36, 40, 0.10), transparent 60%), radial-gradient(45% 90% at 0% 100%, rgba(201, 205, 214, 0.05), transparent 55%),
    var(--bg-deep);
}
.page-hero h1 { font-size: clamp(2.6rem, 2rem + 4vw, 5rem); margin-top: 1.2rem; max-width: 16ch; }
.page-hero p { color: var(--muted); max-width: 52ch; margin-top: 1.2rem; }

/* material detail rows */
.mat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.mat-row + .mat-row { border-top: 1px solid var(--line-faint); }
.mat-row:nth-child(even) .mat-media { order: 2; }
.mat-media img { aspect-ratio: 5 / 4; object-fit: cover; width: 100%; }
.mat-row h2 { font-size: clamp(1.9rem, 1.5rem + 2vw, 3rem); margin-bottom: 1rem; }
.mat-row .lede { color: var(--ink-soft); margin-bottom: 1.6rem; }
.spec-list { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.spec-list li {
  display: flex;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.spec-list li::before { content: "—"; color: var(--brass); }

/* ============ responsive ============ */
@media (max-width: 980px) {
  .materials-grid, .process { grid-template-columns: 1fr 1fr; }
  .split, .mat-row { grid-template-columns: 1fr; }
  .mat-row:nth-child(even) .mat-media { order: 0; }
  .split-media::after { inset: 1rem -0.8rem -0.8rem 1rem; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 13rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(14, 13, 11, 0.97);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-fast) ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; }
  .site-nav a:not(.btn) { font-size: 1rem; }
  .nav-toggle {
    display: grid;
    place-items: center;
    gap: 5px;
    z-index: 60;
    width: 2.6rem;
    height: 2.6rem;
    background: none;
    border: 1px solid var(--line);
    cursor: pointer;
  }
  .nav-toggle span {
    width: 1.2rem;
    height: 1px;
    background: var(--ink);
    transition: transform var(--duration-fast) ease;
  }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .materials-grid, .process { grid-template-columns: 1fr; }
  .material { min-height: 20rem; }
  .quote-form { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], .hero [data-rise] { opacity: 1; transform: none; }
}

/* ============ money-page additions ============ */
.crumbs {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brass-bright); }
.crumbs span { color: var(--brass); }

.mat-row--text { grid-template-columns: 1fr; max-width: 52rem; }
.mat-row .lede { line-height: 1.75; }

.faq-list { max-width: 52rem; display: grid; gap: 0.9rem; }
.faq {
  border: 1px solid var(--line-faint);
  background: var(--bg-card);
  transition: border-color var(--duration-fast) ease;
}
.faq[open] { border-color: var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--brass);
  font-size: 1.3rem;
  transition: transform var(--duration-fast) ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: 0.96rem; }

.also { margin-top: 2.2rem; color: var(--muted); font-size: 0.95rem; }
.also a { color: var(--brass); }
.also a:hover { color: var(--brass-bright); }

/* ============ comparison table ============ */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line-faint); }
.cmp-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 0.92rem; }
.cmp-table th, .cmp-table td { padding: 1.05rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line-faint); }
.cmp-table thead th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  background: var(--bg-card);
}
.cmp-table tbody th { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; white-space: nowrap; }
.cmp-table tbody th a { color: var(--brass-bright); }
.cmp-table tbody th a:hover { text-decoration: underline; }
.cmp-table tbody tr:hover { background: color-mix(in oklab, var(--bg-card) 60%, transparent); }
.cmp-table td { color: var(--ink-soft); }

/* anchor targets clear the fixed header */
[id] { scroll-margin-top: 6rem; }

/* ============ density upgrade ============ */
.nav-phone {
  font-family: var(--font-display);
  font-size: 0.92rem !important;
  letter-spacing: 0.08em !important;
  text-transform: none !important;
  color: var(--silver) !important;
  white-space: nowrap;
}

.value-band {
  background: linear-gradient(110deg, var(--brass-deep), var(--brass) 60%, var(--brass-bright));
  color: #fff;
  padding-block: 1.1rem;
}
.value-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.value-band p { font-size: 0.98rem; font-weight: 400; }
.value-band strong { font-weight: 500; }
.value-band .btn {
  background: var(--bg-deep);
  color: #fff;
  border-color: var(--bg-deep);
  padding: 0.8rem 1.6rem;
}
.value-band .btn:hover { background: var(--bg); }

.intro-copy { max-width: 56rem; }
.intro-copy p { margin-bottom: 1.2rem; color: var(--ink-soft); line-height: 1.8; }
.intro-copy strong { color: var(--ink); font-weight: 500; }

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}
.trust-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.trust-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 0.7rem;
  top: 0.3rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.testimonial {
  margin: 0;
  padding: 2rem 1.8rem;
  border: 1px solid var(--line-faint);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: border-color var(--duration-fast) ease, transform var(--duration-fast) ease;
}
.testimonial:hover { border-color: var(--brass); transform: translateY(-3px); }
.testimonial blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.testimonial blockquote::before { content: "“"; display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--brass); line-height: 0.6; margin-bottom: 0.8rem; }
.testimonial figcaption { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--muted); }
.testimonial figcaption strong { color: var(--brass-bright); font-weight: 500; }

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

/* ============ blog ============ */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.post-card {
  border: 1px solid var(--line-faint);
  background: var(--bg-card);
  display: flex; flex-direction: column;
  transition: border-color var(--duration-fast) ease, transform var(--duration-fast) ease;
}
.post-card:hover { border-color: var(--brass); transform: translateY(-3px); }
.post-card img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.post-card .pad { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.post-card h3 { font-size: 1.25rem; line-height: 1.25; }
.post-card h3 a:hover { color: var(--brass-bright); }
.post-card p { font-size: 0.92rem; color: var(--muted); flex: 1; }
.post-card .meta { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); }

.article { max-width: 46rem; margin-inline: auto; }
.article > p { margin-bottom: 1.3rem; color: var(--ink-soft); line-height: 1.8; }
.article h2 { font-size: 1.7rem; margin: 3rem 0 1.1rem; }
.article h3 { font-size: 1.2rem; margin: 2rem 0 0.8rem; color: var(--brass-bright); }
.article ul, .article ol { margin: 0 0 1.3rem 1.3rem; color: var(--ink-soft); line-height: 1.8; }
.article li { margin-bottom: 0.45rem; }
.article strong { color: var(--ink); font-weight: 500; }
.article a { color: var(--brass); }
.article a:hover { color: var(--brass-bright); text-decoration: underline; }
.article .cmp-wrap { margin-block: 1.6rem; }
.article .callout {
  border-left: 2px solid var(--brass);
  background: var(--bg-card);
  padding: 1.3rem 1.5rem;
  margin-block: 1.8rem;
  color: var(--ink-soft);
}
.post-byline { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 1.4rem; }
.post-byline b { color: var(--brass); font-weight: 500; }

/* ============ gsap motion layer ============ */
html.gsap .hero h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
html.gsap .hero h1 .wi { display: inline-block; will-change: transform; }
html.gsap .vein path { animation: none !important; }
html.gsap .hero-media img { will-change: transform; animation: none; }
@media (min-width: 900px) { html.gsap .site-header { will-change: transform; } }

/* crest stars */
.stars { color: var(--brass-bright); letter-spacing: 0.3em; font-size: 0.65rem; vertical-align: 1px; }

/* ============ depth & atmosphere pass ============ */
.section--deep {
  position: relative;
  overflow: hidden;
}
.section--deep::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55rem 38rem at 88% -12%, rgba(192, 36, 40, 0.14), transparent 62%),
    radial-gradient(46rem 32rem at -8% 112%, rgba(201, 205, 214, 0.08), transparent 60%);
}
.section--deep > .wrap { position: relative; }

/* hero: crimson aura + crest watermark */
.hero .wrap { position: relative; }
.hero .wrap::before {
  content: "";
  position: absolute;
  right: -14rem;
  bottom: -16rem;
  width: 46rem;
  height: 64rem;
  background: url("../assets/img/crest-shield-400.webp") no-repeat center / contain;
  opacity: 0.09;
  pointer-events: none;
  filter: grayscale(35%);
}

/* quote bands: crest watermark anchor */
.quote-band { overflow: hidden; }
.quote-band::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 30rem;
  height: 44rem;
  background: url("../assets/img/crest-shield-400.webp") no-repeat center / contain;
  opacity: 0.10;
  pointer-events: none;
}
.quote-band .wrap { position: relative; z-index: 1; }

/* ghost display words behind section heads */
.section-head { position: relative; }
.section-head[data-ghost]::before {
  content: attr(data-ghost);
  position: absolute;
  top: -0.52em;
  left: -0.04em;
  z-index: -1;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 205, 214, 0.17);
  pointer-events: none;
}

/* process numerals: oversized outlined */
.step::before {
  font-size: 3.4rem;
  top: -1.9rem;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--brass-bright);
  opacity: 0.85;
}

/* material cards: crimson accent + richer hover */
.material {
  border: 1px solid var(--line-faint);
}
.material::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--brass), transparent 70%);
  z-index: 1;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}
.material:hover::before { transform: scaleX(1); }
.material:hover { transform: translateY(-6px); }
.material .num {
  font-size: 1.9rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(224, 74, 78, 0.6);
}

/* testimonial & post cards: depth shadows */
.testimonial, .post-card, .faq {
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset, 0 18px 44px -22px rgba(9, 13, 24, 0.85);
}

/* button glare sweep */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease-out-expo);
}
.btn:hover::after { left: 160%; }

/* hero stats: crimson ticks */
.hero-stats div { position: relative; padding-left: 1.1rem; }
.hero-stats div::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--brass-bright), transparent);
}

/* ============ kitchen assembly ============ */
.assembly-stage {
  position: relative;
  border: 1px solid var(--line-faint);
  background:
    radial-gradient(40rem 26rem at 70% 0%, rgba(192, 36, 40, 0.07), transparent 60%),
    var(--bg-deep);
  box-shadow: 0 24px 60px -30px rgba(9, 13, 24, 0.9);
  padding: clamp(1rem, 3vw, 2.5rem);
}
.assembly-stage svg { display: block; width: 100%; height: auto; }
.assembly-replay {
  position: absolute;
  right: 1rem; bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  background: transparent;
  border: 1px solid var(--line-faint);
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: color var(--duration-fast) ease, border-color var(--duration-fast) ease;
}
.assembly-replay:hover { color: var(--brass-bright); border-color: var(--brass); }

/* ============ BRIGHT CREST THEME — dark-context scoping ============ */
.hero, .site-header, .page-hero, .section--deep, .quote-band, .site-footer, .marquee, .assembly-stage {
  --ink: #eef0f4;
  --ink-soft: #c6ccd9;
  --muted: #96a0b6;
  --line-faint: rgba(238, 240, 244, 0.1);
  --bg-card: #202b45;
  color: var(--ink);
}
.section--deep, .quote-band, .site-footer, .marquee { background-color: var(--bg-deep); }
.page-hero { color: var(--ink); }

/* body grain: lighter on white */
body::after { opacity: 0.035; }

/* veins: crimson thread on light pages */
.vein { color: var(--brass); }
.section--deep .vein, .assembly-stage .vein { color: var(--silver); }

/* ghost words: navy stroke on light, silver on dark */
.section-head[data-ghost]::before { -webkit-text-stroke: 1px rgba(28, 39, 67, 0.14); }
.section--deep .section-head[data-ghost]::before { -webkit-text-stroke: 1px rgba(201, 205, 214, 0.17); }

/* cards on light: white + navy shadow */
.testimonial, .post-card, .faq {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 16px 40px -20px rgba(19, 26, 44, 0.25);
}
.section--deep .testimonial, .section--deep .post-card, .section--deep .faq {
  background: var(--bg-card);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset, 0 18px 44px -22px rgba(9, 13, 24, 0.85);
}

/* header glass over light pages */
.site-header.is-scrolled { background: rgba(19, 26, 44, 0.92); }

/* comparison tables on light sections */
.section:not(.section--deep) .cmp-table thead th { background: #eef0f5; }
.section:not(.section--deep) .cmp-table tbody tr:hover { background: #f2f4f8; }
.cmp-wrap { background: var(--bg-card); }

/* auras on light sections: red/navy tints */
.section:not(.section--deep) { position: relative; }
.section--light-aura::before,
.section:not(.section--deep)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(52rem 34rem at 92% -8%, rgba(192, 36, 40, 0.06), transparent 60%),
    radial-gradient(44rem 30rem at -6% 108%, rgba(28, 39, 67, 0.05), transparent 58%);
}
.section:not(.section--deep) > .wrap { position: relative; }

/* buttons: navy ghost on light */
.btn--ghost { color: var(--ink); }

/* value band pops on white */
.value-band { box-shadow: 0 14px 34px -18px rgba(143, 24, 28, 0.55); }

/* ============ bright hero (home) ============ */
.hero--bright, .hero {  /* home hero goes light via image; scrims below */
}
.hero::before {
  background:
    linear-gradient(180deg, rgba(246, 247, 250, 0.18), rgba(246, 247, 250, 0.05) 40%, var(--bg) 97%),
    linear-gradient(100deg, rgba(246, 247, 250, 0.88) 4%, rgba(246, 247, 250, 0.5) 36%, transparent 64%);
}
.hero {
  --ink: #1c2743;
  --ink-soft: #2e3a58;
  --muted: #5a6580;
  color: var(--ink);
}
.hero .eyebrow { color: var(--brass); }
.hero-stats { border-top-color: rgba(28, 39, 67, 0.18); }
.hero-stats div strong { color: var(--brass); }
.hero-stats div span { color: #4a5570; }
.hero .btn--ghost { border-color: rgba(28, 39, 67, 0.35); }

/* header over the bright hero: navy ink until scrolled */
.site-header--onlight:not(.is-scrolled) {
  --ink: #1c2743;
  --ink-soft: #2e3a58;
  color: var(--ink);
}
.site-header--onlight:not(.is-scrolled) .nav-phone { color: var(--brass-deep) !important; }
.site-header--onlight:not(.is-scrolled) .brand-name { color: #1c2743; }

/* ============ split editorial hero ============ */
.hero--split {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: stretch;
  min-height: 100svh;
  background: var(--bg);
}
.hero--split::before { display: none; }
.hero--split .hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 12vh, 9rem) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vh, 5rem);
  position: relative;
}
.hero--split .hero-panel::before {
  content: "";
  position: absolute;
  left: 0; top: 22%;
  width: 4px; height: 34%;
  background: linear-gradient(180deg, var(--brass), transparent);
}
.hero--split h1 { font-size: clamp(2.9rem, 1.4rem + 5.2vw, 6.2rem); max-width: none; margin-block: 1.6rem 1.8rem; }
.hero--split .hero-sub { max-width: 46ch; }
.hero--split .hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero--split .hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: none;
}
.hero--split .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 14%);
}
.hero-chip {
  position: absolute;
  left: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 4vh, 2.5rem);
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: #1c2743;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 1.3rem;
  border-left: 3px solid var(--brass);
  box-shadow: 0 14px 34px -16px rgba(19, 26, 44, 0.4);
}
.hero--split .hero-stats { border-top-color: rgba(28, 39, 67, 0.15); }
@media (max-width: 860px) {
  .hero--split { grid-template-columns: 1fr; min-height: auto; }
  .hero--split .hero-visual { order: -1; min-height: 46svh; }
  .hero--split .hero-visual::after { background: linear-gradient(180deg, transparent 70%, var(--bg) 100%); }
  .hero--split .hero-panel { padding-top: 2.5rem; }
}

/* ============ crest color amplification ============ */
/* marquee: crimson ribbon */
.marquee {
  background: linear-gradient(110deg, var(--brass-deep), var(--brass) 55%, var(--brass-bright));
  border-block: none;
}
.marquee-track { color: #fff; }
.marquee-track b { color: #ffd9da; }

/* red rule under every section heading */
.section-head h2::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 3px;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--brass), var(--brass-bright));
}

/* ghost words: warm crimson tint on light pages */
.section:not(.section--deep) .section-head[data-ghost]::before {
  -webkit-text-stroke: 1px rgba(192, 36, 40, 0.13);
}

/* footer: crest edge */
.site-footer { border-top: 4px solid var(--brass); }

/* faq summary markers + open state accent */
.faq[open] { border-left: 3px solid var(--brass); }

/* page-hero h1 punch: crimson full-stop */
.page-hero h1::after { content: ""; display: inline-block; width: 0.18em; height: 0.18em; margin-left: 0.12em; background: var(--brass); border-radius: 50%; }

/* material cards: red numerals brighter + red frame on hover */
.material:hover { outline: 2px solid var(--brass); outline-offset: -2px; }

/* testimonial names already red; add red quote marks brightness */
.testimonial blockquote::before { color: var(--brass-bright); }

/* bento figcaptions: red tag chips */
.bento figcaption { color: #fff; }
.bento figure::after { border-color: var(--brass); }

/* ============ photographic kitchen assembly ============ */
.kr-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 1000;
  overflow: hidden;
  background: #17202f;
  border-radius: 2px;
}
.kr-layer {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.kr-flash {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(60% 45% at 50% 60%, rgba(255,255,255,0.9), transparent 72%);
}

/* ============ hero legibility boost ============ */
.hero::before {
  background:
    linear-gradient(180deg, rgba(246,247,250,0.5) 0%, rgba(246,247,250,0) 20%, transparent 58%, var(--bg) 98%),
    linear-gradient(100deg, rgba(246,247,250,0.98) 0%, rgba(246,247,250,0.9) 32%, rgba(246,247,250,0.45) 54%, transparent 70%) !important;
}
.hero h1 { text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
.hero-sub { color: #2a3654; font-weight: 400; text-shadow: 0 1px 2px rgba(255,255,255,0.7); }
.hero .eyebrow { text-shadow: 0 1px 2px rgba(255,255,255,0.8); }
/* header nav over bright hero: readability scrim */
.site-header--onlight:not(.is-scrolled)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(246,247,250,0.85), rgba(246,247,250,0) 100%);
  pointer-events: none;
}

/* ============================================================
   MOBILE OPTIMIZATION PASS
   ============================================================ */
html { -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: rgba(192, 36, 40, 0.15); }

@media (max-width: 720px) {
  /* ---- fixed full-screen nav overlay (navy, big tap targets) ---- */
  .site-nav {
    background: rgba(19, 26, 44, 0.985);
    backdrop-filter: blur(10px);
    gap: 0.4rem;
    padding: 5rem 1.5rem 3rem;
    justify-content: center;
  }
  .site-nav a:not(.btn) {
    color: #eef0f4 !important;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0.85rem 1rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav .nav-phone {
    display: flex !important;
    color: var(--brass-bright) !important;
    font-size: 1.25rem !important;
  }
  .site-nav .btn {
    margin-top: 1.4rem;
    width: 100%;
    justify-content: center;
    padding: 1.15rem 2rem;
    font-size: 0.85rem;
    color: #fff;
  }
  /* toggle: sits above overlay, ≥44px, adapts color */
  .nav-toggle { z-index: 70; width: 2.9rem; height: 2.9rem; }
  .site-header--onlight:not(.is-scrolled) .nav-toggle span { background: #1c2743; }
  .nav-toggle[aria-expanded="true"] span { background: #fff !important; }
  .site-header:has(.site-nav.is-open) { background: transparent; border: none; }

  /* ---- hero: fit above the fold, full-width CTAs ---- */
  .hero { min-height: auto; }
  .hero .wrap { padding-block: 7rem 3rem; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(246,247,250,0.55) 0%, rgba(246,247,250,0.15) 30%, rgba(246,247,250,0.35) 60%, var(--bg) 99%) !important;
  }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; min-height: 52px; }
  .hero-stats { gap: 1.4rem 2rem; }
  .hero-stats div { flex: 1 1 40%; }

  /* ---- touch targets ≥44px across interactive bits ---- */
  .assembly-replay { min-height: 44px; padding: 0.7rem 1.1rem; }
  .more, .also a, .crumbs a { display: inline-block; padding-block: 0.35rem; }
  .site-nav .btn, .btn { min-height: 48px; }
  .faq summary { min-height: 52px; padding-block: 1.1rem; }

  /* ---- rhythm: tighten section padding, keep readable measure ---- */
  :root { --space-section: clamp(3.25rem, 8vw, 4.5rem); }
  .section-head h2 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .value-band .wrap { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .value-band .btn { width: 100%; justify-content: center; }

  /* ---- ghost words: dial back so they don't overwhelm small screens ---- */
  .section-head[data-ghost]::before { font-size: clamp(3.5rem, 18vw, 5.5rem); opacity: 0.7; }

  /* ---- tables: clearly scrollable ---- */
  .cmp-wrap { position: relative; }
  .cmp-wrap::after {
    content: "→ swipe";
    position: absolute; right: 0.6rem; top: 0.5rem;
    font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--brass); opacity: 0.8; pointer-events: none;
  }

  /* ---- testimonials / posts: single column, comfortable ---- */
  .testimonials, .post-grid { grid-template-columns: 1fr; }

  /* ---- footer: single column, stacked ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-direction: column; gap: 0.6rem; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(2.3rem, 12vw, 3rem); }
  .brand-name { font-size: 1rem; letter-spacing: 0.18em; }
  .hero-stats div strong { font-size: 1.4rem; }
  .wrap { --gutter: 1.15rem; }
}

@media (max-width: 720px) {
  html.gsap .site-header { will-change: auto; }
  .site-nav { width: 100vw; left: 0; right: 0; }
}

/* mobile hero: stronger even veil so navy text reads over any part of the image */
@media (max-width: 720px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(246,247,250,0.86) 0%, rgba(246,247,250,0.64) 46%, rgba(246,247,250,0.34) 70%, var(--bg) 99%) !important;
  }
  .hero h1, .hero-sub, .hero .eyebrow { text-shadow: 0 1px 3px rgba(246,247,250,0.9); }
  body { overflow-x: clip; }
}

/* ============ Rocky — granite installer mascot ============ */
#sf-mascot {
  position: fixed;
  left: 16px;
  bottom: 14px;
  width: 110px;
  z-index: 45;
  text-decoration: none;
  filter: drop-shadow(0 8px 14px rgba(9, 13, 24, 0.3));
  -webkit-tap-highlight-color: transparent;
}
#sf-mascot svg { width: 100%; height: auto; display: block; overflow: visible; }
#sf-mascot .sf-bubble {
  position: absolute;
  left: 58%;
  top: -8px;
  transform: translate(-40%, -100%) scale(0.82);
  background: var(--brass);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 22px -10px rgba(143, 24, 28, 0.6);
}
#sf-mascot .sf-bubble::after {
  content: "";
  position: absolute;
  left: 38%;
  bottom: -4px;
  width: 9px; height: 9px;
  background: var(--brass);
  transform: rotate(45deg);
}
#sf-mascot:hover .sf-bubble { opacity: 1; transform: translate(-40%, -100%) scale(1); }
#sf-mascot svg { transition: transform 0.25s var(--ease-out-expo); }
#sf-mascot:hover svg { transform: translateY(-4px) scale(1.04); }
@media (max-width: 680px) {
  #sf-mascot { width: 74px; left: 10px; bottom: 10px; }
  #sf-mascot .sf-bubble { display: none; }
}

/* ============ quote page 2-column ============ */
.quote-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.quote-aside { display: flex; flex-direction: column; gap: 1.4rem; position: sticky; top: 6rem; }
.qa-card { border: 1px solid var(--line-faint); background: var(--bg-card); padding: 1.7rem; box-shadow: 0 16px 40px -22px rgba(19,26,44,0.25); }
.qa-card h2 { font-size: 1.35rem; margin: 0.5rem 0 1.2rem; }
.qa-steps { list-style: none; counter-reset: qa; display: grid; gap: 1.1rem; margin: 0; padding: 0; }
.qa-steps li { position: relative; padding-left: 2.8rem; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.qa-steps li strong { color: var(--ink); }
.qa-steps li::before { counter-increment: qa; content: counter(qa); position: absolute; left: 0; top: -1px; width: 1.9rem; height: 1.9rem; display: grid; place-items: center; border-radius: 50%; background: var(--brass); color: #fff; font-family: var(--font-display); font-size: 1rem; }
.qa-trust { list-style: none; display: grid; gap: 0.65rem; margin: 0; padding: 0; }
.qa-trust li { padding-left: 1.6rem; position: relative; font-size: 0.94rem; color: var(--ink-soft); }
.qa-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--brass); font-weight: 700; }
.qa-quote { margin: 0; border-left: 3px solid var(--brass); padding: 0.3rem 0 0.3rem 1.3rem; }
.qa-quote blockquote { margin: 0; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; }
.qa-quote figcaption { margin-top: 0.7rem; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--muted); }
.qa-quote figcaption b { color: var(--brass); font-weight: 500; }
.qa-call { display: block; text-align: center; padding: 1.05rem; border: 1px solid var(--line); font-family: var(--font-display); font-size: 1.05rem; color: var(--brass-bright); transition: background var(--duration-fast) ease; }
.qa-call:hover { background: var(--bg-card); }
@media (max-width: 820px) { .quote-grid { grid-template-columns: 1fr; } .quote-aside { position: static; } }
