@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

:root {
  --porcelain: #fffcf7;
  --bone: #f3ede4;
  --bone-deep: #e8ded2;
  --charcoal: #262421;
  --soft-ink: #5e554e;
  --oxblood: #742d3b;
  --oxblood-dark: #56202b;
  --terracotta: #c46f50;
  --walnut: #6c4a3a;
  --line: #d8cbbe;
  --light-line: rgba(255, 252, 247, 0.25);
  --focus-light: #f2b6a1;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: 79rem;
  --gutter: clamp(1.1rem, 4vw, 3.2rem);
  --section: clamp(5rem, 9vw, 8.5rem);
  --header-height: 4.8rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--porcelain);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

h1,
h2,
h3,
p { margin-block: 0; }

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.038em;
}

h1 { font-size: clamp(3.3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.6rem, 5.2vw, 5rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2.05rem); }

em { color: var(--oxblood); font-style: normal; }

::selection { background: var(--oxblood); color: var(--porcelain); }

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

.velora-hero :focus-visible,
.visit-planner :focus-visible,
.compact-cta--cobalt :focus-visible,
.scenario-service :focus-visible,
.contact-hero-new :focus-visible,
.estimate-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--focus-light);
}

.shell {
  width: min(100%, calc(var(--shell) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }

[id] { scroll-margin-top: calc(var(--header-height) + 1.5rem); }

.skip-link {
  position: fixed;
  z-index: 200;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  color: var(--porcelain);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--soft-ink);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding-inline: 0.55rem;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.84rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button span[aria-hidden] { font-size: 1.1em; }
.button--small { min-height: 2.85rem; padding: 0.7rem 1rem; }
.button--ink, .button--cobalt { background: var(--oxblood); color: var(--porcelain); }
.button--ink:hover, .button--cobalt:hover { background: var(--oxblood-dark); }
.button--coral { background: var(--oxblood); color: var(--porcelain); }
.button--coral:hover { background: var(--charcoal); }
.button--lime, .button--light { background: var(--porcelain); color: var(--charcoal); }
.button--lime:hover, .button--light:hover { background: var(--bone); }
.button--outline { border-color: var(--line); background: transparent; color: inherit; }
.button--outline:hover { border-color: var(--charcoal); }
.button:disabled { cursor: wait; opacity: 0.62; }

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.91rem;
  font-weight: 750;
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(0.2rem); }

.back-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 750;
}

.site-header {
  position: sticky;
  z-index: 100;
  inset-block-start: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(38, 36, 33, 0.12);
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(38, 36, 33, 0.08); }

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.brand__mark {
  position: relative;
  display: inline-block;
  width: 1.9rem;
  height: 2rem;
  flex: 0 0 auto;
}

.brand__mark i { position: absolute; display: block; }
.brand__mark i:first-child {
  inset: 0.15rem auto 0.15rem 0.15rem;
  width: 0.85rem;
  background: var(--oxblood);
  clip-path: polygon(0 0, 46% 0, 100% 100%, 54% 100%);
}
.brand__mark i:last-child {
  inset: 0.15rem 0.05rem 0.15rem auto;
  width: 1.05rem;
  background: var(--terracotta);
  clip-path: polygon(54% 0, 100% 0, 42% 100%, 0 100%);
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.38rem;
  letter-spacing: -0.035em;
}

.desktop-nav { display: flex; justify-content: center; gap: clamp(1rem, 2.2vw, 2rem); }
.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--soft-ink);
  font-size: 0.86rem;
  font-weight: 650;
}
.desktop-nav a::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0.2rem;
  height: 1px;
  background: var(--oxblood);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--charcoal); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { font-size: 0.78rem; font-weight: 750; white-space: nowrap; }
.menu-button { display: none; }
.mobile-menu[hidden] { display: none; }

.velora-hero {
  position: relative;
  min-height: min(52rem, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: var(--bone);
}

.velora-hero__media,
.velora-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.velora-hero__image { object-fit: cover; object-position: center; }
.velora-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,252,247,0.98) 0%, rgba(255,252,247,0.92) 27%, rgba(255,252,247,0.45) 48%, rgba(255,252,247,0) 69%), linear-gradient(0deg, rgba(38,36,33,0.22), transparent 32%);
  content: "";
}

.velora-hero__inner {
  position: relative;
  display: grid;
  min-height: inherit;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding-block: clamp(4.5rem, 9vh, 7rem) 2.2rem;
}

.velora-hero__copy { max-width: 47rem; }
.velora-hero__copy .eyebrow { margin-bottom: 1.5rem; }
.velora-hero__copy h1 { max-width: 12ch; font-size: clamp(3.6rem, 7.7vw, 7.1rem); }
.velora-hero__copy h1 strong { color: var(--oxblood); font-weight: 400; }
.velora-hero__copy > p:not(.eyebrow) { max-width: 39rem; margin-top: 1.6rem; color: #413b36; font-size: clamp(1rem, 1.5vw, 1.17rem); }
.velora-hero__actions { display: flex; align-items: center; gap: 1.25rem; margin-top: 2rem; }

.velora-hero__proof {
  display: grid;
  max-width: 52rem;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(38, 36, 33, 0.38);
}
.velora-hero__proof div { display: flex; gap: 0.8rem; align-items: center; padding: 1rem 1rem 0 0; }
.velora-hero__proof span { color: var(--oxblood); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; }
.velora-hero__proof strong { font-size: 0.8rem; font-weight: 700; }
.velora-hero__side-note {
  position: absolute;
  inset-block: 50% auto;
  inset-inline: auto 0.7rem;
  color: rgba(255, 252, 247, 0.9);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  padding-top: 1rem;
  border-top: 1px solid var(--charcoal);
}
.editorial-heading > div { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: end; }
.editorial-heading h2 { font-size: clamp(2.7rem, 5.1vw, 4.8rem); }
.editorial-heading > div > p { max-width: 30rem; color: var(--soft-ink); }

.service-index__list { border-bottom: 1px solid var(--line); }
.service-index__item { border-top: 1px solid var(--line); }
.service-index__item > a {
  display: grid;
  min-height: 11.5rem;
  grid-template-columns: 3.5rem 13rem minmax(0, 1fr) 8.5rem 2rem;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.3rem);
  padding-block: 1.3rem;
}
.service-index__number { align-self: start; padding-top: 0.25rem; color: var(--oxblood); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; }
.service-index__media { height: 8.8rem; overflow: hidden; background: var(--bone); }
.service-index__image { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72) sepia(0.12); transition: transform 400ms ease; }
.service-index__item:hover .service-index__image { transform: scale(1.025); }
.service-index__copy p { margin-bottom: 0.5rem; color: var(--oxblood); font-size: 0.74rem; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
.service-index__copy h3 { margin-bottom: 0.5rem; }
.service-index__copy > span { display: block; max-width: 35rem; color: var(--soft-ink); font-size: 0.9rem; }
.service-index__meta { display: grid; gap: 0.15rem; justify-items: start; }
.service-index__meta strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.service-index__meta span { color: var(--soft-ink); font-size: 0.75rem; }
.service-index__item > a > i { font-style: normal; font-size: 1.25rem; transition: transform 180ms ease; }
.service-index__item:hover > a > i { transform: translate(0.2rem, -0.2rem); }
.service-index__all { margin-top: 2.2rem; }

.visit-planner { padding-block: var(--section); background: var(--oxblood); color: var(--porcelain); }
.visit-planner__grid { display: grid; grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 8rem); }
.visit-planner .eyebrow { color: #f7ddd4; }
.visit-planner__intro h2 { margin-top: 1.5rem; font-size: clamp(3rem, 5.5vw, 5.4rem); }
.visit-planner__intro > p:last-child { max-width: 28rem; margin-top: 1.5rem; color: #f0ded9; }
.visit-planner__form { min-width: 0; }
.visit-planner__form fieldset { margin: 0; padding: 0 0 1.8rem; border: 0; }
.visit-planner__form fieldset + fieldset { padding-top: 1.8rem; border-top: 1px solid var(--light-line); }
.visit-planner__form legend { width: 100%; margin-bottom: 1rem; padding: 0; font-weight: 700; }
.visit-planner__form legend span { margin-right: 0.7rem; color: #f2b6a1; font-size: 0.72rem; letter-spacing: 0.12em; }
.planner-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.65rem; }
.planner-options--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.planner-options label { position: relative; cursor: pointer; }
.planner-options input { position: absolute; opacity: 0; pointer-events: none; }
.planner-options label > span {
  position: relative;
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  padding: 0.8rem 2.25rem 0.8rem 0.9rem;
  border: 1px solid rgba(255, 252, 247, 0.38);
  border-radius: 5px;
  color: #fffaf3;
  font-size: 0.86rem;
  font-weight: 650;
}
.planner-options label > span::after {
  position: absolute;
  inset-inline-end: 0.85rem;
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  font-size: 0.7rem;
}
.planner-options input:checked + span { border-color: var(--porcelain); background: var(--porcelain); color: var(--charcoal); }
.planner-options input:checked + span::after { border-color: var(--oxblood); background: var(--oxblood); color: var(--porcelain); content: "✓"; }
.planner-options input:focus-visible + span { outline: 3px solid var(--focus-light); outline-offset: 3px; }

.visit-planner__result { margin-top: 0.5rem; padding: clamp(1.3rem, 3vw, 2rem); border-radius: 7px; background: var(--bone); color: var(--charcoal); }
.visit-planner__result > p:first-child { margin-bottom: 0.8rem; color: var(--oxblood); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.visit-planner__result > div:nth-of-type(1) { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.visit-planner__result h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.visit-planner__result > div:nth-of-type(1) > span { color: var(--soft-ink); font-size: 0.79rem; text-align: right; }
.visit-planner__result > p:nth-of-type(2) { max-width: 42rem; margin-top: 0.65rem; color: var(--soft-ink); font-size: 0.9rem; }
.visit-planner__result-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.visit-planner__result-footer strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.visit-planner__result > a:last-child { display: inline-flex; min-height: 2.75rem; align-items: center; margin-top: 0.7rem; color: var(--soft-ink); font-size: 0.79rem; font-weight: 700; text-decoration: underline; text-underline-offset: 0.25rem; }

.velora-standard { padding-block: var(--section); background: var(--bone); }
.velora-standard__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr); gap: clamp(3rem, 9vw, 9rem); }
.velora-standard__statement { position: sticky; top: calc(var(--header-height) + 2rem); align-self: start; }
.velora-standard__statement h2 { margin-top: 1.5rem; }
.velora-standard__statement > p:not(.eyebrow) { max-width: 38rem; margin-top: 1.5rem; color: var(--soft-ink); }
.velora-standard__statement .text-link { margin-top: 1.5rem; }
.velora-standard__rules { border-bottom: 1px solid var(--line); }
.velora-standard__rules article { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding-block: 2rem; border-top: 1px solid var(--line); }
.velora-standard__rules article > span { color: var(--oxblood); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.12em; }
.velora-standard__rules h3 { margin-bottom: 0.65rem; }
.velora-standard__rules p { color: var(--soft-ink); }

.plan-preview__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.plan-card a { display: block; }
.plan-card:nth-child(even) { margin-top: 4rem; }
.plan-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--bone); }
.plan-card__image { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.68) sepia(0.15); transition: transform 400ms ease; }
.plan-card:hover .plan-card__image { transform: scale(1.025); }
.plan-card__media > span { position: absolute; inset: auto auto 0.75rem 0.75rem; padding: 0.35rem 0.55rem; background: rgba(255,252,247,0.94); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.plan-card__body { display: grid; grid-template-columns: 1fr auto; gap: 0.6rem 1rem; padding-block: 1.2rem 1.8rem; border-bottom: 1px solid var(--line); }
.plan-card__body > p { grid-column: 1 / -1; color: var(--oxblood); font-size: 0.72rem; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
.plan-card__body h3 { font-size: clamp(1.55rem, 2.7vw, 2.4rem); }
.plan-card__body > span { align-self: end; font-size: 0.78rem; font-weight: 750; white-space: nowrap; }
.plan-card__body i { font-style: normal; }
.plan-preview__all { margin-top: 2.5rem; }

.process-section { padding-block: var(--section); background: var(--charcoal); color: var(--porcelain); }
.process-section__grid { display: grid; grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr); gap: clamp(3rem, 8vw, 8rem); }
.process-section header .eyebrow { color: #e8c6bb; }
.process-section header h2 { margin-top: 1.5rem; }
.process-section header > p:last-child { max-width: 26rem; margin-top: 1.3rem; color: #d8d0c9; }
.process-list { margin: 0; padding: 0; border-bottom: 1px solid var(--light-line); list-style: none; counter-reset: none; }
.process-list li { display: grid; grid-template-columns: 2.8rem 1fr; gap: 1rem; padding-block: 1.6rem; border-top: 1px solid var(--light-line); }
.process-list li > span { color: #f2b6a1; font-size: 0.73rem; font-weight: 800; letter-spacing: 0.12em; }
.process-list h3 { margin-bottom: 0.45rem; font-size: 1.55rem; }
.process-list p { color: #d8d0c9; font-size: 0.91rem; }

.faq-section__grid { display: grid; grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 8rem); }
.faq-section .section-heading h2 { margin-top: 1.5rem; }
.faq-section .section-heading > p:not(.eyebrow) { max-width: 24rem; margin-top: 1.4rem; color: var(--soft-ink); }
.faq-section .section-heading .text-link { margin-top: 1.4rem; }
.faq-list { border-bottom: 1px solid var(--line); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list summary { display: grid; min-height: 5rem; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; cursor: pointer; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.25; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { font-family: var(--sans); font-size: 1.25rem; font-style: normal; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { max-width: 43rem; padding: 0 3rem 1.5rem 0; color: var(--soft-ink); }

.estimate-section { padding-block: var(--section); background: var(--oxblood); color: var(--porcelain); }
.estimate-section__grid { display: grid; grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.estimate-section__copy .eyebrow { color: #f2d7ce; }
.estimate-section__copy h2 { margin-top: 1.4rem; }
.estimate-section__copy > p:not(.eyebrow) { max-width: 29rem; margin-top: 1.4rem; color: #f0ded9; }
.estimate-section__note { display: grid; gap: 0.3rem; margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--light-line); font-size: 0.78rem; }
.estimate-section__note span { color: #e8ccc3; }
.estimate-section__form { padding: clamp(1.4rem, 3vw, 2.4rem); border-radius: 8px; background: var(--porcelain); color: var(--charcoal); }
.estimate-section--compact .estimate-section__copy h2 { font-size: clamp(2.7rem, 5vw, 4.6rem); }

.lead-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.lead-form label { display: grid; gap: 0.45rem; color: var(--charcoal); }
.lead-form label > span:first-child { font-size: 0.75rem; font-weight: 750; letter-spacing: 0.06em; }
.lead-form input:not([type="checkbox"]), .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.78rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--charcoal);
}
.lead-form textarea { min-height: 7.5rem; resize: vertical; }
.lead-form input:not([type="checkbox"]):focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--oxblood); outline: 2px solid rgba(116,45,59,0.18); outline-offset: 0; }
.lead-form [aria-invalid="true"] { border-color: #9d2a2a !important; }
.lead-form__wide { grid-column: 1 / -1; }
.consent { display: grid !important; grid-template-columns: 1.2rem 1fr; gap: 0.7rem !important; align-items: start; margin-top: 1.2rem; }
.consent input { width: 1.05rem; height: 1.05rem; margin-top: 0.18rem; accent-color: var(--oxblood); }
.consent span { color: var(--soft-ink); font-size: 0.76rem; font-weight: 500 !important; line-height: 1.55; letter-spacing: 0 !important; }
.consent a { color: var(--oxblood); text-decoration: underline; text-underline-offset: 0.2rem; }
.lead-form__submit { display: flex; align-items: center; gap: 1rem; margin-top: 1.35rem; }
.lead-form__submit > p { max-width: 18rem; color: var(--soft-ink); font-size: 0.72rem; line-height: 1.45; }
.field-error { color: #8b1e1e; font-size: 0.72rem; }
.form-status { margin-top: 1rem; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 4px; font-size: 0.83rem; }
.form-status--success { border-color: #557558; background: #edf5ec; color: #29442d; }
.form-status--error { border-color: #a64c4c; background: #fff0ed; color: #7c2626; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }

.page-hero { padding-block: clamp(5rem, 9vw, 8rem); border-bottom: 1px solid var(--line); background: var(--bone); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.page-hero h1 { max-width: 11ch; font-size: clamp(3.7rem, 7.5vw, 7rem); }
.page-hero .eyebrow { margin-bottom: 1.5rem; }
.page-hero__aside { padding-top: 1.2rem; border-top: 1px solid var(--charcoal); }
.page-hero__aside > p { color: var(--soft-ink); }
.page-hero__aside .button { margin-top: 1.5rem; }
.page-hero__note { display: inline-block; margin-top: 1.2rem; color: var(--oxblood); font-size: 0.72rem; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }

.catalog-grid { border-bottom: 1px solid var(--line); }
.catalog-card { border-top: 1px solid var(--line); }
.catalog-card > a { display: grid; grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 6vw, 6rem); padding-block: 2rem; }
.catalog-card:nth-child(even) > a { grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr); }
.catalog-card:nth-child(even) .catalog-card__media { order: 2; }
.catalog-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bone); }
.catalog-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) sepia(0.12); }
.catalog-card__media > span { position: absolute; inset: auto 0.8rem 0.8rem auto; padding: 0.4rem 0.6rem; background: var(--porcelain); font-size: 0.69rem; font-weight: 750; }
.catalog-card__body { display: flex; flex-direction: column; justify-content: center; }
.catalog-card__body h2 { margin-top: 0.9rem; font-size: clamp(2.5rem, 4.5vw, 4.3rem); }
.catalog-card__body > p:not(.eyebrow) { max-width: 38rem; margin-top: 1.2rem; color: var(--soft-ink); }
.catalog-card__body > div { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.catalog-card__body > div strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.catalog-card__body > div span { font-size: 0.78rem; font-weight: 750; }
.catalog-card__body i { font-style: normal; }

.price-logic { padding-block: var(--section); background: var(--charcoal); color: var(--porcelain); }
.price-logic__grid, .quote-factors__grid { display: grid; grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 8rem); }
.price-logic .eyebrow { color: #e7c9bf; }
.price-logic h2, .quote-factors h2 { margin-top: 1.5rem; }
.price-logic__items, .quote-factors__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--light-line); border-left: 1px solid var(--light-line); }
.price-logic__items > div, .quote-factors__cards article { min-height: 12rem; padding: 1.4rem; border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.price-logic__items span, .quote-factors__cards span { color: #f2b6a1; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.price-logic__items h3, .quote-factors__cards h3 { margin-top: 1.2rem; }
.price-logic__items p, .quote-factors__cards p { margin-top: 0.6rem; color: #d8d0c9; font-size: 0.88rem; }

.compact-cta { padding-block: clamp(4rem, 7vw, 6rem); background: var(--bone); }
.compact-cta--cobalt { background: var(--oxblood); color: var(--porcelain); }
.compact-cta--lime { background: var(--bone); }
.compact-cta__inner { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.compact-cta h2 { margin-top: 1rem; }
.compact-cta--cobalt .eyebrow { color: #f2d4ca; }

.detail-hero { padding-block: clamp(4rem, 7vw, 6.5rem); background: var(--bone); }
.detail-hero__grid { display: grid; grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.detail-hero__copy .eyebrow { margin-top: 2.5rem; color: var(--oxblood); }
.detail-hero__copy h1 { margin-top: 1rem; font-size: clamp(3.5rem, 7vw, 6.8rem); }
.detail-hero__lead { max-width: 35rem; margin-top: 1.3rem; color: var(--soft-ink); font-size: 1.05rem; }
.detail-hero__meta { display: flex; gap: 2rem; margin-block: 1.7rem; padding-block: 1rem; border-block: 1px solid var(--line); }
.detail-hero__meta div { display: grid; gap: 0.15rem; }
.detail-hero__meta span { color: var(--soft-ink); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.detail-hero__meta strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.detail-hero__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bone-deep); }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.68) sepia(0.14); }
.detail-hero__media > span { position: absolute; inset: auto 0.8rem 0.8rem auto; padding: 0.4rem 0.6rem; background: rgba(255,252,247,0.94); font-size: 0.68rem; font-weight: 750; }

.service-scope__grid, .case-plan__grid { display: grid; grid-template-columns: minmax(15rem, 0.78fr) minmax(0, 1.22fr); gap: clamp(3rem, 8vw, 8rem); }
.service-scope h2, .case-plan h2 { margin-top: 1.4rem; }
.service-scope__grid > div > p:last-child, .case-plan__grid > div > p:last-child { max-width: 34rem; margin-top: 1.2rem; color: var(--soft-ink); }
.service-scope ol, .case-plan ol { margin: 0; padding: 0; border-bottom: 1px solid var(--line); list-style: none; }
.service-scope li, .case-plan li { display: grid; min-height: 4.5rem; grid-template-columns: 3rem 1fr; align-items: center; border-top: 1px solid var(--line); }
.service-scope li span, .case-plan li span { color: var(--oxblood); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.service-scope li strong, .case-plan li strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }

.service-notes { padding-block: var(--section); background: var(--charcoal); color: var(--porcelain); }
.service-notes__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-notes article { min-height: 18rem; padding: 1.6rem; border: 1px solid var(--light-line); }
.service-notes article + article { border-left: 0; }
.service-notes article > span { color: #f2b6a1; font-size: 1.2rem; }
.service-notes h2 { margin-top: 3rem; font-size: 2rem; }
.service-notes p { margin-top: 0.8rem; color: #d8d0c9; font-size: 0.9rem; }

.case-catalog__intro { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 3rem; margin-bottom: 4rem; padding-top: 1rem; border-top: 1px solid var(--charcoal); }
.case-catalog__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.case-card:nth-child(even) { margin-top: 4rem; }
.case-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.68) sepia(0.15); }
.case-card__media > span { position: absolute; inset: auto auto 0.7rem 0.7rem; padding: 0.35rem 0.55rem; background: var(--porcelain); font-size: 0.66rem; font-weight: 800; text-transform: uppercase; }
.case-card__body { padding-block: 1.2rem 2rem; border-bottom: 1px solid var(--line); }
.case-card__body > div { display: flex; justify-content: space-between; gap: 1rem; color: var(--oxblood); font-size: 0.7rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.case-card__body h2 { margin-top: 0.8rem; font-size: clamp(1.8rem, 3.1vw, 2.8rem); }
.case-card__body > p { margin-top: 0.8rem; color: var(--soft-ink); }
.case-card__body > strong { display: inline-block; margin-top: 1.2rem; font-size: 0.78rem; }
.case-card__body i { font-style: normal; }

.case-detail-hero { padding-block: clamp(3.5rem, 7vw, 6rem); background: var(--bone); }
.case-detail-hero__heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr); gap: 2rem; align-items: end; margin-block: 2rem 3rem; }
.case-detail-hero__heading .eyebrow { grid-column: 1 / -1; }
.case-detail-hero__heading h1 { font-size: clamp(3.5rem, 7vw, 6.7rem); }
.case-detail-hero__heading > p:last-child { color: var(--soft-ink); }
.case-detail-hero__media { position: relative; aspect-ratio: 16 / 7; overflow: hidden; }
.case-detail-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.68) sepia(0.15); }
.case-detail-hero__media > span { position: absolute; inset: auto 0.8rem 0.8rem auto; padding: 0.4rem 0.6rem; background: var(--porcelain); font-size: 0.68rem; font-weight: 750; }
.scenario-service { padding-block: clamp(4rem, 7vw, 6rem); background: var(--oxblood); color: var(--porcelain); }
.scenario-service__inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.scenario-service h2 { margin-top: 0.8rem; }
.scenario-service p:not(.eyebrow) { max-width: 38rem; margin-top: 0.8rem; color: #efdcd6; }
.scenario-service__inner > div:last-child { display: grid; gap: 0.4rem; justify-items: start; }
.scenario-service__inner > div:last-child > strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.scenario-service__inner > div:last-child > span { color: #efdcd6; font-size: 0.8rem; }
.scenario-service .button { margin-top: 0.7rem; background: var(--porcelain); color: var(--charcoal); }

.pricing-list__heading { display: grid; grid-template-columns: 0.7fr 1.3fr 0.7fr; gap: 2rem; align-items: end; margin-bottom: 4rem; padding-top: 1rem; border-top: 1px solid var(--charcoal); }
.pricing-list__heading > p:last-child { color: var(--soft-ink); }
.pricing-list__items { border-bottom: 1px solid var(--line); }
.pricing-list__items article { display: grid; min-height: 8.5rem; grid-template-columns: 3rem minmax(0, 1fr) 9rem 3rem; gap: 1.5rem; align-items: center; border-top: 1px solid var(--line); }
.pricing-list__items article > span { color: var(--oxblood); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.12em; }
.pricing-list__items article > div:nth-of-type(1) p { margin-top: 0.35rem; color: var(--soft-ink); font-size: 0.87rem; }
.pricing-list__items article > div:nth-of-type(2) { display: grid; gap: 0.15rem; }
.pricing-list__items article > div:nth-of-type(2) strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.pricing-list__items article > div:nth-of-type(2) span { color: var(--soft-ink); font-size: 0.72rem; }
.pricing-list__items article > a { display: grid; min-width: 2.75rem; min-height: 2.75rem; place-items: center; }
.pricing-list__note { margin-top: 1.3rem; color: var(--soft-ink); font-size: 0.76rem; }
.quote-factors { padding-block: var(--section); background: var(--charcoal); color: var(--porcelain); }

.about-hero-new { padding-block: clamp(4.5rem, 8vw, 7rem); background: var(--bone); }
.about-hero-new__grid { display: grid; grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.about-hero-new__copy h1 { margin-top: 1.5rem; }
.about-hero-new__copy > p:not(.eyebrow) { max-width: 37rem; margin-top: 1.4rem; color: var(--soft-ink); }
.about-hero-new__copy .button { margin-top: 1.8rem; }
.about-hero-new__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.about-hero-new__media img { width: 100%; height: 100%; object-fit: cover; object-position: 67% center; filter: saturate(0.84) sepia(0.08); }
.about-hero-new__media > span { position: absolute; inset: auto 0.8rem 0.8rem auto; padding: 0.4rem 0.6rem; background: var(--porcelain); font-size: 0.68rem; font-weight: 750; }

.origin-story__grid, .roles-section__grid { display: grid; grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 8rem); }
.origin-story h2, .roles-section h2 { margin-top: 1.3rem; }
.origin-story ol { margin: 0; padding: 0; border-bottom: 1px solid var(--line); list-style: none; }
.origin-story li { display: grid; grid-template-columns: 5rem 1fr; gap: 1.2rem; padding-block: 1.5rem; border-top: 1px solid var(--line); }
.origin-story li > span { color: var(--oxblood); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; }
.origin-story li h3 { font-size: 1.5rem; }
.origin-story li p { margin-top: 0.4rem; color: var(--soft-ink); }
.values-section { padding-block: var(--section); background: var(--charcoal); color: var(--porcelain); }
.values-section .section-heading { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 3rem; }
.values-section .eyebrow { color: #e8c9c0; }
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 4rem; }
.values-grid article { min-height: 18rem; padding: 1.4rem; border: 1px solid var(--light-line); }
.values-grid article + article { border-left: 0; }
.values-grid article > span { color: #f2b6a1; font-size: 0.72rem; font-weight: 800; }
.values-grid h3 { margin-top: 3rem; }
.values-grid p { margin-top: 0.8rem; color: #d8d0c9; font-size: 0.88rem; }
.roles-section__grid > div:first-child > p:last-child { max-width: 30rem; margin-top: 1.2rem; color: var(--soft-ink); }
.roles-list { border-bottom: 1px solid var(--line); }
.roles-list article { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding-block: 1.5rem; border-top: 1px solid var(--line); }
.roles-list article > span { color: var(--oxblood); font-size: 0.72rem; font-weight: 800; }
.roles-list article > div { display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1rem; }
.roles-list h3 { font-size: 1.5rem; }
.roles-list strong { color: var(--oxblood); font-size: 0.72rem; text-transform: uppercase; }
.roles-list p { grid-column: 1 / -1; color: var(--soft-ink); }

.contact-hero-new { padding-block: clamp(4.5rem, 8vw, 7rem); background: var(--oxblood); color: var(--porcelain); }
.contact-hero-new__grid { display: grid; grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); }
.contact-hero-new .eyebrow { color: #f2d6cd; }
.contact-hero-new h1 { margin-top: 1.4rem; font-size: clamp(3.5rem, 7vw, 6.6rem); }
.contact-hero-new h1 em { color: #f4c1b0; }
.contact-hero-new__grid > div:first-child > p:last-child { max-width: 36rem; margin-top: 1.3rem; color: #f0ded9; }
.contact-channels { border-bottom: 1px solid var(--light-line); }
.contact-channels a { display: grid; min-height: 5rem; grid-template-columns: 5rem 1fr 2rem; align-items: center; gap: 1rem; border-top: 1px solid var(--light-line); }
.contact-channels a > span { color: #f2cdbf; font-size: 0.72rem; font-weight: 750; text-transform: uppercase; }
.contact-channels a > strong { overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 400; }
.contact-channels i { font-style: normal; }
.contact-estimate-new { padding-block: var(--section); background: var(--bone); }
.contact-estimate-new__grid { display: grid; grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 8rem); }
.contact-estimate-new__media { min-height: 34rem; padding: clamp(1.5rem, 4vw, 3rem); background: var(--charcoal); color: var(--porcelain); }
.contact-estimate-new__media img { display: none; }
.contact-estimate-new__media > div { display: grid; height: 100%; align-content: end; gap: 0.4rem; border-top: 1px solid var(--light-line); padding-top: 1rem; }
.contact-estimate-new__media strong { max-width: 9ch; font-family: var(--serif); font-size: clamp(2.4rem, 4.2vw, 4rem); font-weight: 400; line-height: 1.05; }
.contact-estimate-new__media span { color: #d8d0c9; }
.contact-estimate-new__form h2 { margin-block: 1.2rem 2rem; }
.contact-estimate-new__form .lead-form { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.contact-details { padding-block: clamp(4rem, 7vw, 6rem); border-top: 1px solid var(--line); }
.contact-details__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-details article { min-height: 15rem; padding: 1.5rem; border: 1px solid var(--line); }
.contact-details article + article { border-left: 0; }
.contact-details h2 { margin-top: 2.5rem; font-size: 2rem; }
.contact-details article > p:last-child { margin-top: 0.8rem; color: var(--soft-ink); font-size: 0.88rem; }

.legal-hero-new { padding-block: clamp(4rem, 7vw, 6rem); background: var(--bone); }
.legal-hero-new h1 { margin-top: 1.5rem; }
.legal-hero-new > .shell > p:last-child { max-width: 45rem; margin-top: 1.2rem; color: var(--soft-ink); }
.legal-content-new__grid { display: grid; grid-template-columns: 15rem minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); }
.legal-content-new nav { position: sticky; top: calc(var(--header-height) + 2rem); display: grid; align-self: start; border-bottom: 1px solid var(--line); }
.legal-content-new nav a { display: flex; min-height: 3.5rem; align-items: center; border-top: 1px solid var(--line); color: var(--soft-ink); font-size: 0.85rem; font-weight: 700; }
.legal-content-new nav a[aria-current="page"] { color: var(--oxblood); }
.legal-content-new article > section { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding-block: 2rem; border-top: 1px solid var(--line); }
.legal-content-new article > section > span { color: var(--oxblood); font-size: 0.72rem; font-weight: 800; }
.legal-content-new article h2 { font-size: 2rem; }
.legal-content-new article p { max-width: 50rem; margin-top: 0.8rem; color: var(--soft-ink); }
.legal-content-new article a { color: var(--oxblood); text-decoration: underline; }

.not-found-new { min-height: calc(100svh - var(--header-height)); display: grid; place-items: center; padding-block: 4rem; background: var(--bone); }
.not-found-new__inner { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.not-found-new__code { font-family: var(--serif); font-size: clamp(7rem, 20vw, 17rem); line-height: 0.8; color: var(--oxblood); }
.not-found-new h1 { margin-top: 1rem; font-size: clamp(3rem, 6vw, 5.5rem); }
.not-found-new__inner > div > p:not(.eyebrow) { max-width: 35rem; margin-top: 1rem; color: var(--soft-ink); }
.not-found-new__inner > div > div { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.6rem; }

.site-footer { padding-block: clamp(4rem, 7vw, 6rem) 2rem; background: var(--charcoal); color: var(--porcelain); }
.site-footer__top { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.brand--footer .brand__mark i:first-child { background: var(--porcelain); }
.brand--footer .brand__name { font-size: 1.8rem; }
.site-footer__brand > p { margin-top: 1.2rem; color: #d8d0c9; }
.footer-phone { display: inline-flex; min-height: 2.75rem; align-items: center; margin-top: 1rem; font-family: var(--serif); font-size: 1.45rem; }
.site-footer__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.site-footer__links > div { display: grid; align-content: start; }
.site-footer__links h2 { margin-bottom: 1rem; color: #e6c7bd; font-family: var(--sans); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer__links a, .site-footer__links button { display: flex; min-height: 2.75rem; align-items: center; padding: 0; border: 0; background: none; color: #d8d0c9; cursor: pointer; font-size: 0.83rem; text-align: left; }
.site-footer__links a:hover, .site-footer__links button:hover { color: var(--porcelain); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.2rem; border-top: 1px solid var(--light-line); color: #aaa19a; font-size: 0.71rem; }

.cookie-banner {
  position: fixed;
  z-index: 180;
  inset: auto 1rem 1rem auto;
  display: grid;
  width: min(32rem, calc(100vw - 2rem));
  gap: 1.2rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--porcelain);
  box-shadow: 0 22px 60px rgba(38,36,33,0.2);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner .eyebrow { margin-bottom: 0.6rem; }
.cookie-banner h2 { font-size: 1.65rem; }
.cookie-banner > div > p:last-child { margin-top: 0.6rem; color: var(--soft-ink); font-size: 0.8rem; }
.cookie-banner__actions { display: flex; justify-content: flex-end; gap: 0.6rem; }

.js [data-reveal] { opacity: 0; transform: translateY(1.3rem); transition: opacity 600ms ease, transform 600ms ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 70rem) {
  .header-phone { display: none; }
  .service-index__item > a { grid-template-columns: 3rem 10rem minmax(0, 1fr) 7.5rem 1.5rem; }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid article:nth-child(3) { border-left: 1px solid var(--light-line); border-top: 0; }
  .values-grid article:nth-child(4) { border-top: 0; }
}

@media (max-width: 56rem) {
  :root { --header-height: 4.5rem; --section: clamp(4.2rem, 13vw, 6rem); }
  h1 { font-size: clamp(3rem, 13vw, 4.8rem); }
  h2 { font-size: clamp(2.35rem, 10vw, 3.8rem); }
  .desktop-nav, .header-actions { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .menu-button {
    display: inline-flex;
    min-width: 4.4rem;
    min-height: 2.8rem;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 750;
  }
  .menu-button i { position: relative; width: 1.25rem; height: 0.75rem; border-block: 1px solid currentColor; }
  .menu-button[aria-expanded="true"] i { border-color: transparent; }
  .menu-button[aria-expanded="true"] i::before, .menu-button[aria-expanded="true"] i::after { position: absolute; inset: 50% 0 auto; height: 1px; background: currentColor; content: ""; }
  .menu-button[aria-expanded="true"] i::before { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] i::after { transform: rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    overflow-y: auto;
    padding: 1rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
    background: var(--porcelain);
  }
  .mobile-menu nav { display: grid; border-bottom: 1px solid var(--line); }
  .mobile-menu nav a { display: flex; min-height: 4.25rem; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); font-family: var(--serif); font-size: 1.65rem; }
  .mobile-menu__footer { display: grid; gap: 0.8rem; margin-top: 1.5rem; }
  .mobile-menu__footer > a:first-child { display: flex; min-height: 2.75rem; align-items: center; font-weight: 750; }

  .velora-hero { min-height: 46rem; }
  .velora-hero__media::after { background: linear-gradient(90deg, rgba(255,252,247,0.98) 0%, rgba(255,252,247,0.92) 47%, rgba(255,252,247,0.55) 72%, rgba(255,252,247,0.14) 100%), linear-gradient(0deg, rgba(38,36,33,0.3), transparent 38%); }
  .velora-hero__image { object-position: 60% center; }
  .velora-hero__copy { max-width: 34rem; }
  .velora-hero__copy h1 { font-size: clamp(3.25rem, 13vw, 5.6rem); }
  .velora-hero__proof { max-width: none; }
  .velora-hero__proof { padding: 0.25rem 0.75rem 0.7rem; border-top-color: rgba(255,252,247,0.55); background: rgba(38,36,33,0.72); color: var(--porcelain); backdrop-filter: blur(5px); }
  .velora-hero__proof div { display: grid; gap: 0.2rem; }
  .velora-hero__proof strong { color: var(--porcelain); font-size: 0.72rem; }
  .velora-hero__proof span { color: var(--focus-light); }
  .velora-hero__side-note { display: none; }

  .editorial-heading, .editorial-heading > div { grid-template-columns: 1fr; gap: 1.5rem; }
  .editorial-heading > div { gap: 1.2rem; }
  .service-index__item > a { grid-template-columns: 2.5rem 8rem minmax(0, 1fr) 1.5rem; gap: 0.8rem; }
  .service-index__media { height: 7rem; }
  .service-index__meta { grid-column: 3; }
  .service-index__item > a > i { grid-column: 4; grid-row: 1 / 3; }
  .service-index__copy > span { display: none; }

  .visit-planner__grid, .velora-standard__grid, .process-section__grid, .faq-section__grid, .estimate-section__grid,
  .page-hero__grid, .price-logic__grid, .quote-factors__grid, .detail-hero__grid, .service-scope__grid,
  .case-plan__grid, .case-detail-hero__heading, .origin-story__grid, .roles-section__grid, .contact-hero-new__grid,
  .contact-estimate-new__grid, .about-hero-new__grid { grid-template-columns: 1fr; }
  .velora-standard__statement { position: static; }
  .plan-card:nth-child(even), .case-card:nth-child(even) { margin-top: 2rem; }

  .catalog-card > a, .catalog-card:nth-child(even) > a { grid-template-columns: 1fr; gap: 1.5rem; }
  .catalog-card:nth-child(even) .catalog-card__media { order: 0; }
  .catalog-card__media { aspect-ratio: 16 / 10; }
  .service-notes__grid { grid-template-columns: 1fr; }
  .service-notes article { min-height: 13rem; }
  .service-notes article + article { border-top: 0; border-left: 1px solid var(--light-line); }
  .service-notes h2 { margin-top: 2rem; }
  .case-detail-hero__heading { gap: 1.2rem; }
  .case-detail-hero__heading .eyebrow { grid-column: auto; }
  .case-detail-hero__media { aspect-ratio: 4 / 3; }
  .pricing-list__heading { grid-template-columns: 1fr; gap: 1.2rem; }
  .pricing-list__items article { grid-template-columns: 2.5rem minmax(0, 1fr) 2.75rem; gap: 0.8rem; padding-block: 1rem; }
  .pricing-list__items article > div:nth-of-type(2) { grid-column: 2; }
  .pricing-list__items article > a { grid-column: 3; grid-row: 1 / 3; }
  .values-section .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-estimate-new__media { min-height: 22rem; }
  .legal-content-new__grid { grid-template-columns: 1fr; }
  .legal-content-new nav { position: static; }
  .not-found-new__inner { grid-template-columns: 1fr; }
  .not-found-new__code { font-size: clamp(7rem, 30vw, 12rem); }
  .site-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 42rem) {
  .brand__name { font-size: 1.18rem; }
  .velora-hero { min-height: 44rem; }
  .velora-hero__media::after { background: linear-gradient(180deg, rgba(255,252,247,0.97) 0%, rgba(255,252,247,0.9) 42%, rgba(255,252,247,0.16) 73%, rgba(38,36,33,0.44) 100%); }
  .velora-hero__image { object-position: 65% center; }
  .velora-hero__inner { align-items: start; padding-top: 3.5rem; }
  .velora-hero__copy > p:not(.eyebrow) { max-width: 31rem; font-size: 0.95rem; }
  .velora-hero__actions { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .velora-hero__actions .button { width: 100%; }
  .velora-hero__proof div { padding-right: 0.5rem; }
  .velora-hero__proof strong { color: var(--porcelain); font-size: 0.67rem; }
  .velora-hero__proof span { color: #f2b6a1; }

  .service-index__item > a { grid-template-columns: 2rem minmax(0, 1fr) 1.5rem; min-height: 0; }
  .service-index__media { grid-column: 2 / -1; width: 100%; height: auto; aspect-ratio: 16 / 9; }
  .service-index__copy { grid-column: 2; }
  .service-index__meta { grid-column: 2; }
  .service-index__item > a > i { grid-column: 3; grid-row: 2 / 4; }

  .planner-options, .planner-options--wide { grid-template-columns: 1fr; }
  .visit-planner__result > div:nth-of-type(1), .visit-planner__result-footer { align-items: flex-start; flex-direction: column; }
  .visit-planner__result > div:nth-of-type(1) > span { text-align: left; }
  .visit-planner__result-footer .button { width: 100%; }
  .plan-preview__grid, .case-catalog__grid { grid-template-columns: 1fr; }
  .plan-card:nth-child(even), .case-card:nth-child(even) { margin-top: 0; }
  .plan-card__body { grid-template-columns: 1fr; }
  .plan-card__body > span { margin-top: 0.4rem; }
  .lead-form__grid { grid-template-columns: 1fr; }
  .lead-form__wide { grid-column: auto; }
  .lead-form__submit { align-items: stretch; flex-direction: column; }
  .lead-form__submit .button { width: 100%; }
  .page-hero h1, .detail-hero__copy h1, .contact-hero-new h1 { font-size: clamp(3.2rem, 15vw, 4.5rem); }
  .price-logic__items, .quote-factors__cards { grid-template-columns: 1fr; }
  .compact-cta__inner { align-items: stretch; flex-direction: column; }
  .compact-cta__inner .button { width: 100%; }
  .scenario-service__inner { grid-template-columns: 1fr; }
  .scenario-service__inner .button { width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article, .values-grid article:nth-child(3), .values-grid article:nth-child(4) { min-height: 14rem; border-top: 0; border-left: 1px solid var(--light-line); }
  .values-grid article:first-child { border-top: 1px solid var(--light-line); }
  .roles-list article > div { grid-template-columns: 1fr; }
  .roles-list p { grid-column: auto; }
  .contact-channels a { grid-template-columns: 4rem minmax(0, 1fr) 1.5rem; gap: 0.6rem; }
  .contact-details__grid { grid-template-columns: 1fr; }
  .contact-details article { min-height: 12rem; }
  .contact-details article + article { border-top: 0; border-left: 1px solid var(--line); }
  .legal-content-new article > section { grid-template-columns: 2rem 1fr; }
  .site-footer__links { grid-template-columns: 1fr 1fr; }
  .site-footer__links > div:last-child { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
  .cookie-banner { inset: auto 0 0; width: 100%; max-height: min(80svh, 34rem); overflow-y: auto; border-radius: 0; padding-bottom: calc(1.3rem + env(safe-area-inset-bottom)); }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
}

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