:root {
  --ink: #171412;
  --muted: #625b54;
  --soft: #f1eee8;
  --paper: #fbfaf6;
  --white: #fffdf9;
  --line: #ded7cd;
  --charcoal: #151311;
  --accent: #a45d38;
  --accent-dark: #6d3a24;
  --accent-soft: #f3e5dc;
  --sage: #514b43;
  --clay: #c29556;
  --font-body: "Instrument Sans", Inter, system-ui, sans-serif;
  --font-heading: "Fraunces", Georgia, serif;
  --success: #008069;
  --shadow: 0 28px 80px rgba(18, 23, 21, 0.1);
  --radius: 3px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.icon {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
}

.topbar__inner,
.site-header__inner,
.section__inner,
.footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__links {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  opacity: 0.9;
}

.topbar__links a:hover {
  opacity: 1;
  color: #ffd8ce;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: invert(1);
}

.footer .brand img {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  opacity: 0.72;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 1;
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.language-switch > .icon {
  width: 16px;
  height: 16px;
  margin: 0 4px 0 3px;
  color: var(--muted);
}

.language-switch a,
.language-switch span {
  min-width: 34px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 4px;
  text-decoration: none;
}

.language-switch span {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button .icon {
  width: 17px;
  height: 17px;
}

.button:hover {
  transform: translateY(-1px);
}

.button--accent,
.button--gold {
  background: var(--accent);
  color: var(--white);
}

.button--accent:hover,
.button--gold:hover {
  background: var(--accent-dark);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--ghost,
.button--outline {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.cta-band .button--outline {
  border-color: rgba(255, 255, 255, 0.35);
}

.hero {
  min-height: 690px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(31, 35, 38, 0.88), rgba(31, 35, 38, 0.58) 46%, rgba(31, 35, 38, 0.20)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero__inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr);
  row-gap: 18px;
  align-items: center;
}

.hero__copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 790px;
  margin: 0 0 22px;
  font-size: 4.05rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.62;
}

.hero__helper {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.hero__proof div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero__proof .icon {
  color: var(--clay);
  grid-row: span 2;
  margin-top: 2px;
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  font-size: 0.98rem;
}

.hero__proof span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  font-size: 0.9rem;
}

.hero-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 42% 45%;
}

.hero-card div {
  padding: 22px;
}

.hero-card h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.hero-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.hero-card li .icon {
  color: var(--clay);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: min(390px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(31, 35, 38, 0.94);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(31, 35, 38, 0.28);
  backdrop-filter: blur(14px);
}

.floating-cta[hidden] {
  display: none;
}

.floating-cta.is-docked-away {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.floating-cta__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.floating-cta__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
}

.floating-cta__copy {
  padding-right: 22px;
}

.floating-cta__copy strong,
.floating-cta__copy span {
  display: block;
}

.floating-cta__copy strong {
  margin-bottom: 6px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.floating-cta__copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.floating-cta__actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
}

.floating-cta__actions .button {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 0.86rem;
}

.section {
  padding: 88px 0;
}

.hero + .section {
  padding-top: 36px;
}

.section--white {
  background: var(--white);
}

.section--paper,
.section--sage {
  background: var(--soft);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 40px;
}

.section__head--center {
  display: block;
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.section__head--center .eyebrow {
  margin-bottom: 14px;
}

.section__head--center .eyebrow::before {
  display: none;
}

.section__head h2,
.page-hero h1,
.quality__content h2,
.faq-teaser h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section__head p,
.page-hero p,
.faq-teaser p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 30px;
  align-items: stretch;
}

.audience-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.audience-copy h2 {
  margin: 0 0 16px;
  font-size: 2.55rem;
  line-height: 1.12;
}

.audience-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.audience-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.audience-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.audience-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-card,
.value-card,
.step-card,
.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  display: grid;
  gap: 12px;
}

.value-card > .icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.audience-card {
  box-shadow: 0 16px 36px rgba(31, 35, 38, 0.06);
}

.audience-card > .icon,
.step-card::before {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.audience-card > .icon {
  padding: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.audience-card h3,
.value-card h3,
.step-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.audience-card p,
.value-card p,
.step-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-focus__head {
  display: grid;
  max-width: 930px;
  gap: 14px;
}

.service-focus__head h2 {
  max-width: 820px;
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.1;
}

.service-focus__head p:not(.eyebrow) {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-focus__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.service-focus__grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(31, 35, 38, 0.05);
}

.service-focus__grid .icon {
  color: var(--accent-dark);
}

.service-focus__grid h3 {
  margin: 0;
  font-size: 1.18rem;
}

.service-focus__grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr) minmax(230px, 0.72fr) auto;
  gap: 24px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card__number {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 950;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  margin: 0 0 9px;
  color: var(--ink);
  line-height: 1.45;
  font-size: 0.94rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 16px;
  margin-bottom: 28px;
}

.service-showcase figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.service-showcase figure:first-child {
  grid-row: span 2;
}

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

.service-showcase figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(31, 35, 38, 0.78);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.text-link {
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.text-link::after {
  content: " ->";
}

.service-foot,
.faq-teaser,
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 28px;
  border-radius: var(--radius);
}

.service-foot {
  border: 1px solid var(--line);
  background: var(--soft);
}

.service-foot h3 {
  margin: 0 0 7px;
  font-size: 1.2rem;
}

.service-foot p {
  margin: 0;
  color: var(--muted);
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.service-gallery figcaption {
  padding: 14px 16px;
  font-weight: 900;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-intro h2 {
  max-width: 720px;
  margin: 0 0 12px;
  font-size: 2.3rem;
  line-height: 1.14;
}

.contact-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quality {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.quality__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.quality__content p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.72;
  font-size: 1.05rem;
}

.quality__photo {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.quality__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.quality__panel {
  display: grid;
  gap: 12px;
}

.quality__panel article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.quality__panel strong {
  color: var(--white);
}

.quality__panel .icon {
  color: var(--clay);
  grid-row: span 2;
  margin-top: 2px;
}

.quality__panel p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.home-signature {
  overflow: hidden;
}

.home-signature__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.46fr);
  gap: 30px;
  align-items: end;
}

.home-signature__head h2 {
  max-width: 840px;
  margin: 0 0 18px;
  font-size: 2.8rem;
  line-height: 1.1;
}

.home-signature__head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  font-size: 1.04rem;
}

.home-signature__proof {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.home-signature__proof strong {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.home-signature__steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.home-signature__steps article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.home-signature__steps .icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(199, 154, 97, 0.16);
  color: var(--clay);
}

.home-signature__steps h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.16rem;
}

.home-signature__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.62;
}

.process .section__head {
  max-width: 820px;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
  margin: 0 auto 38px;
  text-align: center;
}

.process .section__head .eyebrow::before {
  display: none;
}

.process .section__head p {
  max-width: 680px;
}

.process .grid--4 {
  gap: 14px;
}

.process .step-card {
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(31, 35, 38, 0.06);
}

.process .step-card::before {
  display: none;
}

.process .step-card > .icon {
  position: static;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.step-card {
  counter-increment: step;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  background: var(--sage);
}

.step-card > .icon {
  position: absolute;
  right: 22px;
  top: 24px;
  color: var(--clay);
}

.process .grid {
  counter-reset: step;
}

.service-journey__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.service-journey figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-journey img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-journey h2 {
  margin: 0 0 14px;
  font-size: 2.45rem;
  line-height: 1.12;
}

.service-journey p {
  color: var(--muted);
  line-height: 1.72;
}

.service-journey__steps {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.service-journey__steps article {
  display: grid;
  grid-template-columns: auto minmax(80px, 0.2fr) 1fr;
  gap: 10px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.service-journey__steps .icon {
  color: var(--accent-dark);
}

.service-journey__steps strong {
  color: var(--ink);
}

.service-journey__steps span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__content h2 {
  margin: 0 0 20px;
  font-size: 2.55rem;
  line-height: 1.14;
}

.split__content p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.founder-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.founder-story h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: 2.65rem;
  line-height: 1.1;
}

.founder-story p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.76;
}

.founder-story__cards {
  display: grid;
  gap: 12px;
}

.founder-story__cards article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.founder-story__cards .icon {
  color: var(--accent-dark);
  grid-row: span 2;
  margin-top: 3px;
}

.founder-story__cards h3,
.founder-story__cards p {
  margin: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 1.05rem;
}

.stat span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.85rem;
}

.page-hero {
  padding: 74px 0;
  background: linear-gradient(180deg, var(--white), #fbfaf7);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 44px;
  align-items: center;
}

.page-hero__copy {
  min-width: 0;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
}

.page-hero__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.page-hero__chips span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-guide {
  padding: 42px;
  border-right: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
}

.quote-guide h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.16;
}

.quote-guide p {
  color: var(--muted);
  line-height: 1.7;
}

.quote-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.quote-benefits div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quote-benefits strong,
.quote-benefits span {
  display: block;
}

.quote-benefits strong {
  color: var(--accent-dark);
}

.quote-benefits span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.quote-guide a {
  color: var(--accent-dark);
  font-weight: 950;
  text-decoration: none;
}

.quote-guide__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(0, 128, 105, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--success);
}

.quote-guide__phone-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 128, 105, 0.1);
}

.quote-guide__phone strong,
.quote-guide__phone small {
  display: block;
}

.quote-guide__phone small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.form {
  padding: 34px;
}

.form__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form__badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.form__top h3 {
  margin: 0 0 5px;
  font-size: 1.18rem;
}

.form__top p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.form-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: -8px 0 22px;
}

.form-assurance span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.form-assurance .icon {
  color: var(--accent-dark);
}

.form-prefill {
  margin: -8px 0 20px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 95, 74, 0.28);
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.form-prefill[hidden] {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 900;
}

.control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid #d8dce0;
  border-radius: 6px;
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.control:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(216, 95, 74, 0.12);
}

.control > .icon {
  color: var(--sage);
}

.control input,
.control select,
.control textarea {
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}

.control input:focus,
.control select:focus,
.control textarea:focus {
  outline: none;
}

.control--textarea {
  align-items: flex-start;
  padding-top: 13px;
}

.control--textarea > .icon {
  margin-top: 2px;
}

.control--textarea textarea {
  padding-bottom: 13px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8dce0;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.control input,
.control select,
.control textarea {
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}

.control select {
  background-position: calc(100% - 8px) 20px, calc(100% - 2px) 20px;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.check {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 58px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 850;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.check:hover {
  border-color: rgba(216, 95, 74, 0.45);
  box-shadow: 0 8px 22px rgba(31, 35, 38, 0.06);
}

.check input {
  width: auto;
  min-width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 4px;
  padding: 0;
  appearance: none;
  border: 1.5px solid #b9c1c0;
  border-radius: 4px;
  background: var(--white);
}

.check input[type="radio"] {
  border-radius: 50%;
}

.check input:checked {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  box-shadow: inset 0 0 0 4px var(--white);
}

.check:has(input:checked) {
  border-color: var(--accent-dark);
  background: var(--accent-soft);
}

.check span {
  line-height: 1.35;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-privacy .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--sage);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.contact-card--channel {
  position: relative;
  display: flex;
  min-height: 236px;
  flex-direction: column;
  overflow: hidden;
}

.contact-card--channel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.channel-link {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.contact-channels {
  background: var(--soft);
}

.contact-decision {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(31, 35, 38, 0.08);
}

.contact-decision h2 {
  max-width: 780px;
  margin: 0 0 12px;
  font-size: 2.15rem;
  line-height: 1.16;
}

.contact-decision p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-decision__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.channel-link:hover {
  border-color: rgba(216, 95, 74, 0.38);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.channel-link__main {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.channel-link__main span {
  overflow-wrap: normal;
  white-space: nowrap;
  font-size: 0.95rem;
}

.channel-link__main .icon {
  color: var(--sage);
}

.channel-link small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  padding-left: 26px;
}

.page-hero--quote {
  background:
    radial-gradient(circle at 86% 16%, rgba(216, 95, 74, 0.12), transparent 0 250px),
    linear-gradient(180deg, #fff, #fbfaf7 58%, var(--soft));
}

.page-hero--quote .page-hero__media {
  border: 1px solid var(--line);
  background: #171513;
  box-shadow: 0 24px 70px rgba(31, 35, 38, 0.12);
}

.page-hero--quote .page-hero__media img {
  object-position: center;
}

.quote-shell {
  grid-template-columns: minmax(320px, 0.54fr) minmax(0, 1fr);
  border-color: rgba(31, 35, 38, 0.1);
  background: linear-gradient(90deg, #1f2326, #fff 40%);
  box-shadow: 0 28px 80px rgba(31, 35, 38, 0.1);
}

.quote-guide {
  position: relative;
  border-right: 0;
  background:
    linear-gradient(180deg, rgba(216, 95, 74, 0.12), transparent 34%),
    linear-gradient(180deg, #25221f, #171513);
  color: var(--white);
}

.quote-guide::after {
  content: "";
  position: absolute;
  right: 0;
  top: 42px;
  bottom: 42px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.quote-guide .eyebrow {
  color: #eab29e;
}

.quote-guide h2 {
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.quote-guide p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-benefits div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  padding: 16px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.quote-benefits .icon {
  grid-row: span 2;
  margin-top: 2px;
  color: #eab29e;
}

.quote-benefits strong {
  color: var(--white);
}

.quote-benefits span {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.68);
}

.quote-guide__phone {
  margin-top: 24px;
  border-color: rgba(0, 128, 105, 0.22);
  background: var(--white);
  color: var(--success);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.quote-guide__phone:hover {
  transform: translateY(-2px);
}

.quote-guide__phone small,
.quote-guide__phone em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.quote-guide__phone em {
  margin-top: 6px;
  color: var(--ink);
  font-weight: 950;
}

.form--quote {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.96)),
    var(--white);
}

.form--quote .form__top {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(31, 35, 38, 0.05);
}

.form--quote .form__badge {
  border-radius: 50%;
}

.form__kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.form--quote .form-assurance {
  margin: 0 0 20px;
}

.form--quote .form-assurance span {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(31, 35, 38, 0.04);
}

.form--quote .control {
  min-height: 54px;
  border-color: #ddd7cf;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form--quote .control input,
.form--quote .control select {
  min-height: 52px;
}

.form--quote .check {
  min-height: 56px;
  border-radius: var(--radius);
  background: var(--white);
}

.form--quote .check:has(input:checked) {
  border-color: rgba(216, 95, 74, 0.48);
  background: var(--accent-soft);
  box-shadow: 0 10px 24px rgba(216, 95, 74, 0.08);
}

.form--quote .form-actions .button {
  flex: 1 1 230px;
}

.form-status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(0, 128, 105, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 128, 105, 0.08);
  color: var(--success);
  font-weight: 900;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none;
}

.contact-channels--quote {
  background: var(--soft);
}

.contact-section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.contact-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.12;
}

.contact-section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-channels--quote .contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card--channel {
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(31, 35, 38, 0.06);
}

.contact-card--channel::before {
  inset: 0 auto 0 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--clay));
}

.contact-card__body {
  flex: 1 1 auto;
}

.contact-card--channel .contact-card__icon {
  border-radius: 50%;
}

.channel-link {
  border-radius: var(--radius);
  background: #fbfaf7;
}

.channel-link__main span {
  overflow-wrap: anywhere;
  white-space: normal;
}

@media (max-width: 1080px) {
  .contact-channels--quote .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .contact-channels--quote .contact-grid {
    grid-template-columns: 1fr;
  }
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #171513;
}

.location__info {
  padding: 42px;
}

.location__info h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.16;
}

.location__info p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.location__map-wrap {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(40, 58, 71, 0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(40, 58, 71, 0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 48% 48%, rgba(216, 95, 74, 0.18), transparent 0 8px, transparent 9px),
    linear-gradient(135deg, #fbfaf7, #edf3ee);
}

.location__map {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  display: block;
  background: transparent;
  opacity: 0.9;
}

.location__brand-marker {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(380px, calc(100% - 36px));
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(31, 35, 38, 0.14);
}

.location__map-note {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 35, 38, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(31, 35, 38, 0.12);
  pointer-events: none;
}

.location__map-note span {
  font-weight: 900;
}

.location__map-note small {
  color: var(--muted);
  font-weight: 750;
}

.location__brand-marker img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.location__brand-marker strong,
.location__brand-marker small {
  display: block;
}

.location__brand-marker small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-layout {
  display: grid;
  gap: 34px;
}

.faq-intro {
  max-width: 920px;
  margin-bottom: 42px;
}

.faq-intro h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.14;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 32px;
}

.faq-group h2 {
  margin: 0;
  font-size: 1.55rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(31, 35, 38, 0.045);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 20px 58px 20px 22px;
  list-style: none;
  font-weight: 950;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-dark);
}

details[open] summary::after {
  content: "-";
  background: var(--accent-soft);
}

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

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-teaser {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(31, 35, 38, 0.08);
}

.faq-teaser::before {
  content: "";
  width: 6px;
  align-self: stretch;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--clay));
}

.faq-teaser > div {
  flex: 1 1 auto;
}

.faq-teaser .button {
  align-self: center;
}

.faq-teaser__questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.faq-teaser__questions span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.cta-band {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink), #2a2622);
  color: var(--white);
}

.cta-band::after {
  display: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .eyebrow {
  margin-bottom: 10px;
  color: var(--clay);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  padding: 64px 0 32px;
  background: #171513;
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #201d1a;
}

.footer__top p {
  max-width: 520px;
  margin: 16px 0 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.70);
}

.footer-map-link {
  display: flex !important;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 100%;
  margin-top: 0 !important;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  line-height: 1.45;
}

.footer-map-link .icon {
  color: var(--clay);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr 1fr;
  gap: 14px;
  padding-right: 0;
}

.footer__grid > div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.footer p,
.footer a,
.footer__bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
}

.footer-link {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
  width: 100%;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-link .icon {
  width: 16px;
  height: 16px;
  color: var(--clay);
  grid-row: span 2;
  margin-top: 2px;
}

.footer-link small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
  font-weight: 850;
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  padding-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-meta .icon {
  width: 16px;
  height: 16px;
  color: var(--clay);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 128, 105, 0.28);
}

body:not(.page-home) .whatsapp-float {
  display: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.system-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--soft);
}

.system-page section {
  width: min(620px, 100%);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.system-page h1 {
  font-size: 2.2rem;
}

.system-page p {
  color: var(--muted);
  line-height: 1.7;
}

.system-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .nav {
    gap: 16px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .service-card {
    grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  }

  .service-card ul,
  .service-card .text-link {
    grid-column: 2;
  }

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

@media (max-width: 860px) {
  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__links {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 74px 0 58px;
  }

  .hero h1,
  .section__head h2,
  .quality__content h2,
  .page-hero h1,
  .split__content h2,
  .faq-teaser h2 {
    font-size: 2.2rem;
  }

  .hero__proof,
  .hero__inner,
  .page-hero__inner,
  .audience-layout,
  .founder-story__inner,
  .section__head,
  .split,
  .quality__grid,
  .quote-shell,
  .contact-intro,
  .contact-decision,
  .location,
  .footer__grid,
  .footer__top,
  .faq-group {
    grid-template-columns: 1fr;
  }

  .footer__top,
  .contact-decision {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-card {
    max-width: 520px;
  }

  .service-gallery,
  .service-showcase,
  .audience-cards,
  .service-focus__grid,
  .service-journey__inner,
  .contact-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .service-foot,
  .faq-teaser,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .location__map {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .topbar {
    display: none;
  }

  .topbar__inner,
  .site-header__inner,
  .section__inner,
  .footer__inner,
  .hero__inner,
  .page-hero__inner {
    width: min(100% - 32px, var(--max));
  }

  .hero__inner {
    padding: 54px 0 32px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .language-switch {
    padding: 8px;
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: 2.08rem;
  }

  .hero__actions,
  .form-actions,
  .contact-intro__actions,
  .cta-band__actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .form--quote .form-actions {
    gap: 10px;
  }

  .form--quote .form-actions .button {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 13px 16px;
  }

  .contact-channels--quote .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero__proof span {
    display: none;
  }

  .hero__proof div,
  .audience-card,
  .value-card,
  .service-focus__grid article,
  .founder-story__cards article,
  .step-card,
  .contact-card,
  .service-card,
  .service-foot,
  .quality__panel article,
  .quote-guide,
  .form,
  .location__info,
  .contact-intro,
  .faq-teaser,
  .cta-band {
    padding: 22px;
  }

  .floating-cta {
    left: 14px;
    right: 14px;
    bottom: 12px;
    width: auto;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 12px;
  }

  .floating-cta__copy {
    padding-right: 26px;
  }

  .floating-cta__copy strong {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .floating-cta__copy span {
    display: none;
  }

  .floating-cta__actions {
    gap: 8px;
  }

  .floating-cta__actions .button {
    flex: 1 1 0;
    width: auto;
    min-height: 38px;
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .hero__proof div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px;
  }

  .hero__proof .icon {
    flex: 0 0 auto;
    margin-top: 0;
  }

  .hero__proof strong {
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .form-grid,
  .form-assurance,
  .checks,
  .service-showcase,
  .audience-cards,
  .service-focus__grid,
  .values-grid,
  .contact-grid,
  .grid--4,
  .grid--3,
  .grid--2,
  .stats {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card ul,
  .service-card .text-link {
    grid-column: auto;
  }

  .service-card__media img,
  .service-showcase figure {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .service-showcase figure:first-child {
    grid-row: auto;
  }

  .hero-card {
    display: none;
  }

  .page-hero__media {
    margin-top: 6px;
  }

  .page-hero__media img {
    aspect-ratio: 16 / 10;
  }

  .audience-copy h2,
  .service-focus__head h2,
  .founder-story h2,
  .service-journey h2,
  .contact-decision h2,
  .faq-intro h2 {
    font-size: 1.85rem;
  }

  .quote-guide h2 {
    font-size: 1.65rem;
  }

  .location__map {
    min-height: 300px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .channel-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .channel-link small {
    white-space: normal;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 1.88rem;
  }

  .hero__proof {
    display: none;
  }
}

/* Premium direction override: editorial, lighter chrome, less template-card UI. */
body {
  background:
    linear-gradient(90deg, rgba(15, 111, 97, 0.035) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(180deg, #fffefa 0%, #f7f8f5 48%, #eef3ef 100%);
  color: var(--ink);
  font-family: "Instrument Sans", Inter, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

h1,
h2,
.hero h1,
.page-hero h1,
.section__head h2,
.quality__content h2,
.faq-teaser h2,
.quote-guide h2,
.contact-section-head h2,
.contact-intro h2,
.contact-decision h2,
.founder-story h2,
.service-focus__head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
}

p {
  letter-spacing: 0;
}

.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header {
  background: rgba(255, 254, 250, 0.88);
  border-bottom: 1px solid rgba(18, 23, 21, 0.1);
  box-shadow: 0 12px 36px rgba(18, 23, 21, 0.05);
}

.brand {
  font-weight: 800;
}

.brand img {
  width: 46px;
  height: 46px;
}

.nav a {
  position: relative;
  color: rgba(18, 23, 21, 0.72);
  font-weight: 700;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav a.active {
  color: var(--accent-dark);
}

.language-switch {
  border-radius: 0;
  border-color: rgba(18, 23, 21, 0.12);
  background: transparent;
  box-shadow: none;
}

.language-switch a,
.language-switch span {
  border-radius: 0;
}

.language-switch .active {
  background: var(--charcoal);
  color: var(--white);
}

.button {
  min-height: 52px;
  gap: 10px;
  border-radius: 2px;
  border: 1px solid transparent;
  box-shadow: none;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.button:hover {
  transform: translateY(-2px);
}

.button--accent,
.button--gold {
  background: var(--accent);
  color: var(--white);
}

.button--accent:hover,
.button--gold:hover {
  background: var(--accent-dark);
}

.button--dark {
  background: var(--charcoal);
  color: var(--white);
}

.button--light {
  background: var(--white);
  border-color: rgba(18, 23, 21, 0.12);
  color: var(--ink);
}

.button--ghost,
.button--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.section {
  padding: clamp(82px, 8vw, 132px) 0;
}

.section--white {
  background: rgba(255, 254, 250, 0.82);
}

.section--paper {
  background: #f0f4ef;
}

.section--sage {
  background: #e9efea;
}

.section__head {
  align-items: end;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(30px, 4vw, 56px);
}

.section__head h2 {
  font-size: clamp(2.4rem, 4.5vw, 5.1rem);
  line-height: 0.98;
  max-width: 800px;
}

.section__head p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  width: 34px;
  background: currentColor;
}

.page-hero {
  padding: clamp(74px, 9vw, 136px) 0 clamp(64px, 8vw, 112px);
  background:
    linear-gradient(135deg, rgba(15, 111, 97, 0.09), transparent 42%),
    linear-gradient(180deg, #fffefa 0%, #f1f5f1 100%);
  border-bottom: 1px solid rgba(18, 23, 21, 0.1);
}

.page-hero__inner {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: clamp(34px, 6vw, 94px);
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 7.1rem);
  line-height: 0.92;
  max-width: 900px;
}

.page-hero p {
  color: #4f5d57;
  font-size: clamp(1.08rem, 1.65vw, 1.34rem);
  line-height: 1.7;
  max-width: 710px;
}

.page-hero__media {
  border: 1px solid rgba(18, 23, 21, 0.12);
  border-radius: 0;
  box-shadow: 0 30px 90px rgba(18, 23, 21, 0.13);
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 12%);
}

.page-hero__media img {
  min-height: 420px;
  object-fit: cover;
}

.page-hero__chips {
  margin-top: 26px;
  gap: 10px 16px;
}

.page-hero__chips span {
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(15, 111, 97, 0.36);
  border-radius: 0;
  background: transparent;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.page-quote .page-hero {
  background:
    linear-gradient(115deg, rgba(15, 111, 97, 0.13), transparent 38%),
    linear-gradient(180deg, #fffefa 0%, #eef3ef 100%);
}

.page-quote .page-hero__media {
  transform: translateY(22px);
}

.quote-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(15, 111, 97, 0.06) 38% 100%),
    #fffefa;
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.43fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote-guide {
  position: sticky;
  top: 118px;
  padding: clamp(30px, 4vw, 48px);
  border: 0;
  border-radius: 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
}

.quote-guide .eyebrow {
  color: #d5bf8f;
}

.quote-guide h2 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.25rem, 3.5vw, 3.6rem);
  line-height: 0.98;
}

.quote-guide p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.03rem;
}

.quote-benefits {
  gap: 0;
  margin-top: 34px;
}

.quote-benefits div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 2px 12px;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
}

.quote-benefits div .icon {
  grid-row: span 2;
  color: #d5bf8f;
}

.quote-benefits strong {
  color: var(--white);
}

.quote-benefits span {
  color: rgba(255, 255, 255, 0.66);
}

.quote-guide__phone {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--white) !important;
}

.quote-guide__phone-icon {
  border-radius: 0;
  background: var(--accent);
  color: var(--white);
}

.quote-guide__phone small,
.quote-guide__phone em {
  color: rgba(255, 255, 255, 0.62);
}

.quote-guide__phone strong {
  color: var(--white);
  font-size: 1rem;
}

.quote-guide__phone small {
  line-height: 1.35;
}

.quote-guide__phone em {
  display: block;
  margin-top: 9px;
  color: var(--white);
  font-style: normal;
  font-weight: 800;
}

.form--quote {
  position: relative;
  padding: clamp(26px, 4.5vw, 54px);
  border: 1px solid rgba(18, 23, 21, 0.12);
  border-radius: 0;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 36px 100px rgba(18, 23, 21, 0.12);
}

.form--quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--clay), var(--charcoal));
}

.form--quote .form__top {
  gap: 18px;
  margin-bottom: 24px;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid rgba(18, 23, 21, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.form__badge {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.form__kicker {
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.form--quote h3 {
  margin-top: 4px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 650;
}

.form--quote .form__top p {
  color: var(--muted);
  line-height: 1.55;
}

.form--quote .form-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 28px;
  border-top: 1px solid rgba(18, 23, 21, 0.1);
  border-bottom: 1px solid rgba(18, 23, 21, 0.1);
}

.form--quote .form-assurance span {
  justify-content: flex-start;
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid rgba(18, 23, 21, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.form--quote .form-assurance span:last-child {
  border-right: 0;
}

.form-grid {
  gap: 22px 20px;
}

.field label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.form--quote .control {
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid rgba(18, 23, 21, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.form--quote .control:focus-within {
  border-color: var(--accent);
  box-shadow: 0 8px 0 -7px rgba(15, 111, 97, 0.5);
}

.form--quote .control input,
.form--quote .control select,
.form--quote .control textarea {
  color: var(--ink);
}

.form--quote .control input::placeholder,
.form--quote .control textarea::placeholder {
  color: rgba(89, 103, 97, 0.76);
}

.form--quote .control--textarea {
  align-items: flex-start;
  padding-top: 15px;
}

.checks {
  gap: 12px;
}

.form--quote .check {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 23, 21, 0.12);
  border-radius: 0;
  background: rgba(255, 254, 250, 0.72);
  box-shadow: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.form--quote .check:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 111, 97, 0.36);
}

.form--quote .check:has(input:checked) {
  border-color: rgba(15, 111, 97, 0.58);
  background: var(--accent-soft);
  box-shadow: none;
}

.form--quote .check input {
  accent-color: var(--accent);
}

.form--quote .form-actions {
  gap: 12px;
  margin-top: 28px;
}

.form--quote .form-actions .button {
  flex: 1 1 240px;
  min-height: 58px;
}

.form-status {
  border-radius: 0;
  background: #e8f4ef;
  color: var(--accent-dark);
}

.form-privacy {
  align-items: flex-start;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 23, 21, 0.1);
  color: var(--muted);
}

.contact-channels--quote {
  padding-top: 0;
  background: #f1f5f1;
}

.contact-section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: 30px;
}

.contact-section-head .eyebrow {
  grid-column: 1;
}

.contact-section-head h2 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.contact-section-head p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-grid {
  gap: 16px;
}

.contact-card--channel {
  min-height: auto;
  padding: 24px;
  border: 1px solid rgba(18, 23, 21, 0.12);
  border-radius: 0;
  background: rgba(255, 254, 250, 0.74);
  box-shadow: none;
}

.contact-card--channel::before {
  inset: 0 auto 0 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}

.contact-card--channel .contact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(18, 23, 21, 0.12);
  color: var(--accent-dark);
}

.contact-card--channel h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 650;
}

.channel-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid rgba(18, 23, 21, 0.12);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.channel-link:hover {
  background: transparent;
  border-color: var(--accent);
  transform: translateX(3px);
}

.channel-link__main span {
  overflow-wrap: anywhere;
  white-space: normal;
}

.channel-link small {
  color: var(--accent-dark);
  font-weight: 800;
  white-space: nowrap;
}

.service-card__number {
  display: none;
}

.service-list {
  gap: 18px;
}

.service-card {
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr) minmax(220px, 0.58fr) auto;
  gap: 26px;
  padding: 18px;
  border: 1px solid rgba(18, 23, 21, 0.11);
  border-radius: 0;
  background: rgba(255, 254, 250, 0.76);
  box-shadow: none;
}

.service-card:hover {
  border-color: rgba(15, 111, 97, 0.28);
  box-shadow: 0 26px 70px rgba(18, 23, 21, 0.08);
}

.service-card__media {
  border-radius: 0;
  background: var(--charcoal);
}

.service-card__media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
}

.audience-photo,
.quality__photo {
  border-radius: 0;
  background: var(--charcoal);
}

.audience-photo img,
.quality__photo img {
  object-fit: contain;
  object-position: center;
  background: var(--charcoal);
}

.faq-teaser,
.cta-band {
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.faq-teaser {
  border: 1px solid rgba(18, 23, 21, 0.12);
  background: rgba(255, 254, 250, 0.82);
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(213, 191, 143, 0.18), transparent 44%),
    var(--charcoal);
}

.footer {
  background:
    linear-gradient(180deg, #111613 0%, #0c100e 100%);
  color: var(--white);
}

.footer__top {
  align-items: end;
}

.footer__grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__grid > div {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
}

.footer__grid > div:last-child {
  border-right: 0;
}

.footer-link,
.footer-map-link {
  border-radius: 0;
}

.footer__bottom {
  gap: 18px;
}

@media (max-width: 980px) {
  .page-hero__inner,
  .quote-shell,
  .contact-section-head {
    grid-template-columns: 1fr;
  }

  .page-quote .page-hero__media {
    transform: none;
  }

  .quote-guide {
    position: relative;
    top: auto;
  }

  .contact-section-head .eyebrow,
  .contact-section-head h2,
  .contact-section-head p {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card {
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  }

  .service-card ul,
  .service-card .text-link {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 70px 0;
  }

  .page-hero {
    padding: 58px 0 66px;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
    line-height: 0.96;
  }

  .page-hero__media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .quote-section {
    background: #fffefa;
  }

  .quote-guide {
    padding: 28px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  }

  .quote-guide h2 {
    font-size: 2rem;
  }

  .form--quote {
    padding: 26px 18px;
  }

  .form--quote .form-assurance {
    grid-template-columns: 1fr;
  }

  .form--quote .form-assurance span {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 23, 21, 0.1);
  }

  .form--quote .form-assurance span:last-child {
    border-bottom: 0;
  }

  .form-actions,
  .form--quote .form-actions {
    flex-direction: column;
  }

  .form--quote .form-actions .button {
    width: 100%;
    flex: 0 0 auto;
  }

  .service-card,
  .service-card ul,
  .service-card .text-link {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .channel-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__grid {
    border: 0;
  }

  .footer__grid > div {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-right: 0;
  }
}

/* Owner-configurable polish layer. Keep this at the end so the panel can steer the identity. */
body {
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.035) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(180deg, var(--white) 0%, var(--paper) 48%, var(--soft) 100%);
  font-family: var(--font-body);
}

h1,
h2,
.hero h1,
.page-hero h1,
.section__head h2,
.quality__content h2,
.faq-teaser h2,
.quote-guide h2,
.contact-section-head h2,
.contact-intro h2,
.contact-decision h2,
.founder-story h2,
.service-focus__head h2,
.contact-card--channel h3,
.faq-intro h2,
.faq-group h2 {
  font-family: var(--font-heading);
}

.button--accent,
.button--gold {
  background: var(--accent);
}

.button--accent:hover,
.button--gold:hover {
  background: var(--accent-dark);
}

.page-hero {
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--accent-soft) 70%, transparent), transparent 40%),
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

.page-about .page-hero__media,
.page-contact .page-hero__media {
  clip-path: none;
  overflow: visible;
  background: var(--charcoal);
}

.page-about .page-hero__media img,
.page-contact .page-hero__media img {
  min-height: 0;
  aspect-ratio: 1 / 0.95;
  object-fit: contain;
  object-position: center;
  background: var(--charcoal);
}

.page-about .page-hero__media::after,
.page-contact .page-hero__media::after {
  content: "";
  position: absolute;
  inset: auto 20px -16px auto;
  width: 44%;
  height: 1px;
  background: var(--clay);
}

.contact-dock-section {
  padding-top: 0;
  background: var(--paper);
}

.contact-dock {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(24px, 4vw, 42px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.contact-dock__head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  line-height: 1;
}

.contact-dock__head p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-dock__actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.contact-dock__item {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px 12px;
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  background: color-mix(in srgb, var(--white) 88%, var(--accent-soft));
}

.contact-dock__item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-dock__item .icon {
  color: var(--accent);
}

.contact-dock__item strong,
.contact-dock__item small,
.contact-dock__item em {
  display: block;
}

.contact-dock__item small {
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-dock__item em {
  grid-column: 2;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 850;
}

.contact-channels,
.contact-channels--quote {
  background:
    linear-gradient(180deg, var(--paper), var(--white));
}

.contact-channels .section__inner {
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-card--channel {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: transparent;
}

.contact-card--channel::before {
  display: none;
}

.contact-card--channel .contact-card__icon {
  border-color: var(--line);
  color: var(--accent);
}

.contact-card--channel h3 {
  font-size: 1.35rem;
}

.channel-link {
  border-top-color: var(--line);
}

html[data-copy-density="concise"] .contact-card__body p,
html[data-copy-density="concise"] .page-hero__chips,
html[data-copy-density="concise"] .faq-intro p {
  display: none;
}

.quality {
  background:
    linear-gradient(90deg, rgba(194, 149, 86, 0.08), transparent 34%),
    var(--charcoal);
}

.quality__grid {
  width: min(var(--max), calc(100% - 40px));
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-about .quality__grid {
  padding: clamp(34px, 5vw, 58px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.quality__content h2 {
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.quality__content p {
  max-width: 650px;
}

.quality__panel {
  gap: 0;
}

.quality__panel article {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  padding: 22px 0;
}

.quality__panel article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.location {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #171412;
}

.location__map-wrap {
  background: var(--paper);
}

.location__map {
  position: relative;
  z-index: 1;
  opacity: 1;
  filter: saturate(0.9) contrast(1.02);
}

.location__brand-marker,
.location__map-note {
  z-index: 2;
  border-radius: 2px;
  background: rgba(255, 253, 249, 0.94);
}

.location__map-note {
  border-left: 3px solid var(--accent);
}

.faq-section {
  background:
    linear-gradient(90deg, var(--charcoal) 0 28%, transparent 28%),
    var(--paper);
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 36px;
}

.faq-intro .eyebrow {
  color: var(--clay);
}

.faq-intro h2 {
  grid-column: 2;
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 5rem);
  line-height: 1;
}

.faq-layout {
  display: grid;
  gap: 22px;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(180px, 0.25fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.faq-group h2 {
  position: sticky;
  top: 120px;
  margin: 0;
  color: var(--white);
  font-size: 1.9rem;
}

.faq-list {
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.faq-list summary {
  min-height: 64px;
  padding: 18px 22px;
  font-size: 1rem;
}

.faq-list details[open] {
  border-color: color-mix(in srgb, var(--accent) 36%, var(--line));
  box-shadow: 0 18px 50px rgba(23, 20, 18, 0.06);
}

.faq-list details p {
  max-width: 850px;
  padding: 0 22px 22px;
}

.footer {
  background:
    linear-gradient(180deg, #171412 0%, #100e0d 100%);
}

.footer__top {
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  align-items: stretch;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__top > div,
.footer-map-link {
  border: 0;
  background: transparent;
  padding: 0;
}

.footer-map-link {
  justify-content: flex-start;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 28px;
}

.footer__grid {
  border: 0;
  gap: 0;
}

.footer__grid > div {
  padding: 28px 28px 28px 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__grid > div + div {
  padding-left: 28px;
}

.footer-link {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 0 12px;
  background: transparent;
}

.footer-link span {
  overflow-wrap: anywhere;
}

.footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

html[data-card-style="minimal"] .contact-card--channel,
html[data-card-style="minimal"] .faq-list details,
html[data-card-style="minimal"] .service-card {
  border-left-width: 1px;
  background: transparent;
}

html[data-card-style="contrast"] .contact-card--channel,
html[data-card-style="contrast"] .faq-list details,
html[data-card-style="contrast"] .service-card {
  background: var(--charcoal);
  color: var(--white);
}

html[data-card-style="contrast"] .contact-card--channel p,
html[data-card-style="contrast"] .faq-list details p,
html[data-card-style="contrast"] .service-card p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .contact-dock,
  .faq-intro,
  .faq-group {
    grid-template-columns: 1fr;
  }

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

  .faq-section {
    background: var(--paper);
  }

  .faq-group h2 {
    position: static;
    color: var(--ink);
  }

  .footer-map-link {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .contact-dock__actions {
    grid-template-columns: 1fr;
  }

  .quality__grid {
    width: min(100% - 32px, var(--max));
  }

  .footer__grid > div,
  .footer__grid > div + div {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
}

/* Final premium controls and clarity pass */
.page-about .page-hero__media,
.page-contact .page-hero__media {
  padding: clamp(18px, 2.2vw, 34px);
}

.page-about .page-hero__media img,
.page-contact .page-hero__media img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.founder-story__cards article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent-soft) 42%, transparent), transparent 58%),
    rgba(255, 253, 249, 0.92);
}

.founder-story__cards article::before,
.founder-story__cards article::after,
.value-card::before,
.value-card::after {
  display: none !important;
}

.founder-story__cards article > * {
  position: relative;
  z-index: 1;
}

.values-section .section__head {
  align-items: end;
}

.value-card {
  min-height: 210px;
  border-left: 3px solid var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.95), rgba(255, 253, 249, 0.78)),
    var(--soft);
}

.contact-channels {
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

.contact-channels .section__inner {
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.72);
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.contact-card--channel {
  min-height: 270px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: clamp(20px, 2vw, 30px);
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.74));
  transition: background 160ms ease, transform 160ms ease;
}

.contact-card--channel:last-child {
  border-right: 0;
}

.contact-card--channel:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.contact-card--channel .contact-card__icon {
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 64%, var(--white));
}

.contact-card--channel h3 {
  margin-bottom: 8px;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
}

.contact-card__body p {
  max-width: 26ch;
}

.channel-link {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-top: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.channel-link:hover {
  transform: none;
}

.channel-link__main {
  min-width: 0;
  align-items: flex-start;
}

.channel-link__main span {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
  font-size: clamp(0.78rem, 0.78vw, 0.94rem);
  line-height: 1.2;
}

.contact-card--mail .channel-link__main span,
.contact-card--instagram .channel-link__main span {
  white-space: normal;
  overflow-wrap: anywhere;
}

.channel-link small {
  align-self: center;
  white-space: nowrap;
  color: var(--accent-dark);
  font-size: 0.82rem;
}

.contact-dock-section {
  background: var(--paper);
}

.contact-dock {
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--charcoal) 0 34%, transparent 34%),
    rgba(255, 253, 249, 0.86);
}

.contact-dock__head {
  color: var(--white);
}

.contact-dock__head p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-dock__item {
  background: var(--white);
  box-shadow: 0 18px 46px rgba(23, 20, 18, 0.08);
}

.location__map-wrap {
  isolation: isolate;
}

.location__map {
  background: #e6dccf;
}

.location__brand-marker {
  box-shadow: 0 18px 52px rgba(23, 20, 18, 0.16);
}

.faq-section {
  background:
    linear-gradient(90deg, var(--charcoal) 0 24%, transparent 24%),
    linear-gradient(90deg, rgba(23, 20, 18, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

.faq-intro {
  min-height: 220px;
  align-items: center;
}

.faq-intro h2 {
  max-width: 780px;
}

.faq-group {
  padding: 0;
  border-top: 0;
}

.faq-group + .faq-group {
  margin-top: 22px;
}

.faq-group h2 {
  padding: 18px 0;
}

.faq-list {
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-list details {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list details[open] {
  background: color-mix(in srgb, var(--accent-soft) 34%, var(--white));
  box-shadow: inset 3px 0 0 var(--accent);
}

.faq-list summary {
  min-height: 72px;
  padding-right: 68px;
}

.footer {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    #151311;
}

.footer__inner {
  padding-top: clamp(52px, 6vw, 82px);
}

.footer__top {
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.footer__grid {
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card--channel:nth-child(2n) {
    border-right: 0;
  }

  .contact-card--channel:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .contact-dock {
    background: var(--charcoal);
  }
}

@media (max-width: 620px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card--channel {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .contact-card--channel:first-child {
    border-top: 0;
  }

  .faq-section {
    background: var(--paper);
  }
}

/* Premium identity pass: final layer for panel-driven visual control */
.button,
.language-switch,
.menu-toggle,
.floating-cta,
.page-hero__media,
.service-card,
.service-foot,
.quote-guide,
.form--quote,
.form--quote .control,
.form--quote .check,
.contact-channels .section__inner,
.contact-card--channel,
.contact-dock,
.contact-dock__item,
.location,
.location__brand-marker,
.location__map-note,
.faq-list,
.faq-list details,
.footer__top {
  border-radius: min(var(--radius), 8px);
}

body {
  background:
    linear-gradient(90deg, rgba(23, 18, 14, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--paper);
}

.button {
  min-height: 50px;
  padding-inline: 20px;
}

.button--accent,
.button--gold {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent-dark) 82%, #000));
}

.button--dark {
  background: linear-gradient(135deg, var(--ink), var(--charcoal));
}

.page-hero {
  background:
    radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--accent-soft) 72%, transparent), transparent 0 300px),
    linear-gradient(180deg, var(--white), var(--paper));
}

.page-hero h1 {
  max-width: 860px;
}

.page-about .page-hero__media,
.page-contact .page-hero__media {
  overflow: hidden;
  padding: clamp(16px, 2vw, 28px);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.08), transparent 38%),
    var(--charcoal);
  box-shadow: 0 26px 80px rgba(23, 18, 14, 0.16);
}

.page-about .page-hero__media::after,
.page-contact .page-hero__media::after {
  display: none;
}

.page-about .page-hero__media img,
.page-contact .page-hero__media img {
  width: 100%;
  max-height: 460px;
  min-height: 0;
  aspect-ratio: 1 / 0.92;
  object-fit: contain;
  object-position: center;
}

html[data-hero-media-fit="cover"] .page-hero__media img {
  object-fit: cover;
}

.quote-section {
  padding-top: clamp(44px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(23, 18, 14, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(90deg, transparent 0 42%, color-mix(in srgb, var(--accent-soft) 35%, transparent) 42% 100%),
    var(--white);
}

.quote-shell {
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.quote-guide {
  top: 110px;
  clip-path: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 100% 0, rgba(200, 155, 82, 0.18), transparent 0 240px),
    linear-gradient(180deg, #241b16, var(--charcoal));
  box-shadow: 0 24px 70px rgba(23, 18, 14, 0.18);
}

.quote-guide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--clay), var(--accent));
}

.quote-guide h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.quote-benefits div {
  grid-template-columns: 28px 1fr;
}

.quote-guide__phone {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: min(var(--radius), 8px);
  background: rgba(255, 253, 249, 0.08);
}

.form--quote {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 253, 249, 0.88)),
    var(--white);
  box-shadow: 0 32px 90px rgba(23, 18, 14, 0.12);
}

.form--quote::before {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--clay) 45%, var(--sage));
}

.form--quote .form__top {
  align-items: start;
}

.form__badge,
.contact-card--channel .contact-card__icon,
.floating-cta__icon {
  border-radius: min(var(--radius), 8px);
}

.form--quote .form-assurance {
  overflow: hidden;
  border: 1px solid rgba(23, 18, 14, 0.1);
  border-radius: min(var(--radius), 8px);
}

.form--quote .form-assurance span {
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.54);
}

.form--quote .control {
  border: 1px solid rgba(23, 18, 14, 0.13);
  background: rgba(255, 255, 255, 0.72);
}

.form--quote .control:focus-within {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-soft) 55%, transparent);
}

.form--quote .check {
  border-color: rgba(23, 18, 14, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.form--quote .check:has(input:checked) {
  border-color: var(--accent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 78%, var(--white)), var(--white));
}

.contact-channels {
  background:
    linear-gradient(90deg, rgba(23, 18, 14, 0.04) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--paper);
}

.contact-channels .section__inner {
  overflow: hidden;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 26px 78px rgba(23, 18, 14, 0.08);
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.contact-card--channel {
  min-height: 300px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: clamp(22px, 2.2vw, 32px);
  border: 0;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.72));
  box-shadow: none;
}

.contact-card--channel::before {
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--clay));
}

.contact-card--channel:last-child {
  border-right: 0;
}

.contact-card--channel:hover {
  background: var(--white);
}

.contact-card__body p {
  max-width: 28ch;
  line-height: 1.55;
}

.channel-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 0;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: min(var(--radius), 8px);
  background: color-mix(in srgb, var(--accent-soft) 36%, var(--white));
}

.channel-link:hover {
  border-color: var(--accent);
  background: var(--white);
  transform: translateY(-1px);
}

.channel-link__main {
  min-width: 0;
}

.channel-link__main .icon {
  display: none;
}

.channel-link__main span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  font-size: clamp(0.8rem, 0.82vw, 0.95rem);
  line-height: 1.18;
}

.contact-card--phone .channel-link__main span,
.contact-card--whatsapp .channel-link__main span {
  white-space: nowrap;
}

.contact-card--mail .channel-link,
.contact-card--instagram .channel-link {
  grid-template-columns: 1fr;
  gap: 7px;
}

.contact-card--mail .channel-link__main span,
.contact-card--instagram .channel-link__main span {
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: clamp(0.72rem, 0.72vw, 0.86rem);
}

.contact-card--mail .channel-link small,
.contact-card--instagram .channel-link small {
  justify-self: end;
}

.channel-link small {
  white-space: nowrap;
  color: var(--accent-dark);
  font-weight: 900;
}

.contact-dock {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  background: var(--white);
  box-shadow: 0 22px 70px rgba(23, 18, 14, 0.08);
}

.contact-dock__head {
  padding: clamp(26px, 3vw, 38px);
  background: var(--charcoal);
}

.contact-dock__actions {
  padding: clamp(18px, 2.4vw, 30px);
}

.contact-dock__item {
  border: 1px solid var(--line);
  box-shadow: none;
}

.founder-story__cards .icon {
  display: none;
}

.founder-story__cards article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 24px 26px 24px 28px;
  overflow: hidden;
  border-left: 4px solid var(--accent);
}

.founder-story__cards h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-story__cards h3::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.values-section .section__head {
  align-items: start;
}

.value-card {
  border-radius: min(var(--radius), 8px);
}

.service-journey__inner {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: min(var(--radius), 8px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 54%, transparent), transparent 52%),
    var(--white);
}

.service-journey figure {
  display: none;
}

.service-journey__intro > p:not(.eyebrow) {
  max-width: 54ch;
}

.service-journey__steps {
  margin-top: 0;
}

.page-about .quality__grid {
  width: min(var(--max), calc(100% - 40px));
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 0.78fr);
  align-items: stretch;
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: min(var(--radius), 8px);
  background:
    radial-gradient(circle at 0 100%, rgba(200, 155, 82, 0.14), transparent 0 280px),
    rgba(255, 255, 255, 0.035);
}

.quality__panel article {
  border-radius: min(var(--radius), 8px);
}

.location {
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(173, 107, 59, 0.1), transparent 36%),
    var(--charcoal);
}

.location__info {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 58px);
}

.location__map-wrap {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(23, 18, 14, 0.07) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(23, 18, 14, 0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 50% 52%, rgba(173, 107, 59, 0.38), transparent 0 8px, transparent 10px),
    linear-gradient(135deg, #f8f2e7, #dce9df);
}

.location__map {
  opacity: 0.88;
  mix-blend-mode: multiply;
}

.location__brand-marker,
.location__map-note {
  background: rgba(255, 253, 249, 0.95);
}

.faq-section {
  background:
    linear-gradient(90deg, var(--charcoal) 0 32%, transparent 32%),
    linear-gradient(90deg, rgba(23, 18, 14, 0.04) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--paper);
}

.faq-section .section__inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
  min-height: 0;
  display: block;
  padding: 28px 0;
  color: var(--white);
}

.faq-intro .eyebrow,
.faq-intro h2 {
  color: var(--white);
}

.faq-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  line-height: 1.02;
}

.faq-layout {
  gap: 18px;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: min(var(--radius), 8px);
  background: var(--white);
}

.faq-group + .faq-group {
  margin-top: 18px;
}

.faq-group h2 {
  position: static;
  padding: 24px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  background: color-mix(in srgb, var(--accent-soft) 42%, var(--white));
  border-right: 1px solid var(--line);
}

.faq-list {
  border: 0;
  border-radius: 0;
}

.faq-list summary {
  min-height: 70px;
  padding: 20px 64px 20px 24px;
}

.faq-list summary::after {
  right: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.faq-list details[open] summary::after {
  background: var(--accent);
  color: var(--white);
}

.footer {
  background:
    radial-gradient(circle at 85% 18%, rgba(200, 155, 82, 0.14), transparent 0 280px),
    linear-gradient(180deg, #1a1511 0%, #100d0b 100%);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 3vw, 36px);
}

.footer__top .brand {
  margin-bottom: 14px;
}

.footer-map-link {
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: min(var(--radius), 8px);
  background: rgba(255, 255, 255, 0.04);
}

.footer__grid {
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: min(var(--radius), 8px);
}

.footer__grid > div,
.footer__grid > div + div {
  padding: clamp(22px, 2.8vw, 34px);
}

.footer-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 2px 10px;
  padding: 13px 0;
}

.footer-link small {
  grid-column: 2;
}

.footer__bottom {
  align-items: center;
  padding-top: 22px;
}

html[data-copy-density="concise"] .service-card__body p,
html[data-copy-density="concise"] .contact-card__body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

html[data-card-style="contrast"] .channel-link,
html[data-card-style="contrast"] .faq-group {
  background: var(--charcoal);
  color: var(--white);
}

@media (max-width: 1120px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card--channel:nth-child(2n) {
    border-right: 0;
  }

  .contact-card--channel:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .quote-shell,
  .location,
  .faq-section .section__inner,
  .faq-group,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .quote-guide,
  .faq-intro {
    position: static;
  }

  .faq-section {
    background: var(--paper);
  }

  .faq-intro,
  .faq-intro .eyebrow,
  .faq-intro h2 {
    color: var(--ink);
  }

  .faq-group h2 {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-map-link {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 680px) {
  .page-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .form--quote .form-assurance,
  .contact-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .contact-card--channel {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .contact-card--channel:first-child {
    border-top: 0;
  }

  .channel-link {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
