@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-regular.min.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-semibold.min.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-italic.min.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-regular.min.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-medium.min.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-semibold.min.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --coffee: #4a3428;
  --coffee-dark: #302219;
  --caramel: #a67c52;
  --off-white: #f5f0e8;
  --paper: #fcfaf6;
  --greige: #b8b0a5;
  --greige-light: #f0ece5;
  --olive: #66705a;
  --olive-dark: #4f5846;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--coffee);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: 50px;
  line-height: 1.02;
}

h3 {
  font-size: 26px;
  line-height: 1.1;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--coffee);
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--caramel);
  content: "";
}

.eyebrow-light {
  color: var(--off-white);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 13px 21px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--coffee);
  color: var(--off-white);
}

.button-primary:hover {
  background: var(--coffee-dark);
}

.button-secondary {
  border-color: var(--coffee);
  background: transparent;
  color: var(--coffee);
}

.button-secondary:hover {
  background: var(--coffee);
  color: var(--off-white);
}

.button-light {
  border-color: var(--off-white);
  background: var(--off-white);
  color: var(--coffee);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--caramel);
  padding-bottom: 4px;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.text-link span {
  color: var(--caramel);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(74, 52, 40, 0.13);
  background: rgba(245, 240, 232, 0.97);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 240, 232, 0.99);
  box-shadow: 0 10px 30px rgba(48, 34, 25, 0.08);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-flex;
  min-width: 230px;
  flex-direction: column;
  justify-content: center;
  color: var(--coffee);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-line {
  margin-top: 7px;
  font-size: 7px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.main-navigation > a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.main-navigation > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--caramel);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-navigation > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--coffee);
  border-radius: 2px;
  padding: 10px 14px;
}

.nav-cta:hover {
  background: var(--coffee);
  color: var(--off-white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 52, 40, 0.28);
  border-radius: 2px;
  background: transparent;
  color: var(--coffee);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 31%;
  height: 100%;
  background: var(--greige-light);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
  align-items: center;
  gap: 72px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 670px;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: #5c4c42;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 34px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(74, 52, 40, 0.18);
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-facts li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--caramel);
  content: "";
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.portrait-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 0.846;
  background: var(--greige);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 240, 232, 0.35);
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  position: absolute;
  top: 0;
  left: -200%;
  width: 300%;
  height: auto;
  max-width: none;
}

.visual-caption {
  position: absolute;
  right: -22px;
  bottom: 30px;
  display: flex;
  width: 220px;
  min-height: 106px;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--caramel);
  padding: 20px 22px;
  background: var(--olive);
  color: var(--off-white);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.caption-kicker {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.hero-rule {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 61%;
  height: 6px;
  background: var(--caramel);
}

/* Reflection */

.reflection {
  background: var(--coffee);
  color: var(--off-white);
}

.reflection-inner {
  display: grid;
  min-height: 230px;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 34px;
}

.reflection-mark {
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 150px;
  font-weight: 400;
  line-height: 0.45;
}

.reflection-inner > p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  line-height: 1;
}

.reflection-note {
  padding-left: 36px;
  border-left: 1px solid rgba(245, 240, 232, 0.3);
  color: #ded5ca;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: uppercase;
}

/* Help section */

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

.section-heading {
  max-width: 690px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: #615249;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}

.split-heading h2 {
  max-width: 610px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 4px;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--greige);
  border-left: 1px solid var(--greige);
}

.issue-item {
  min-height: 260px;
  border-right: 1px solid var(--greige);
  border-bottom: 1px solid var(--greige);
  padding: 34px 32px;
  background: transparent;
  transition: background-color 180ms ease, transform 180ms ease;
}

.issue-item:hover {
  z-index: 1;
  background: var(--off-white);
  transform: translateY(-4px);
}

.issue-item > span {
  display: block;
  margin-bottom: 38px;
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
}

.issue-item h3 {
  margin-bottom: 14px;
}

.issue-item p {
  margin-bottom: 0;
  color: #66574d;
  font-size: 14px;
  line-height: 1.65;
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(74, 52, 40, 0.2);
}

.mid-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 25px;
  font-style: italic;
}

/* Process */

.process {
  background: var(--olive);
  color: var(--off-white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 100px;
}

.process-intro {
  position: sticky;
  top: 130px;
}

.process-intro h2 {
  font-size: 48px;
}

.process-intro > p:last-child {
  margin-bottom: 0;
  color: #ebe6de;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-steps li {
  display: grid;
  min-height: 180px;
  grid-template-columns: 84px 1fr;
  align-items: start;
  gap: 30px;
  border-top: 1px solid rgba(245, 240, 232, 0.28);
  padding: 34px 0;
}

.process-steps li:last-child {
  border-bottom: 1px solid rgba(245, 240, 232, 0.28);
}

.step-number {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--caramel);
  border-radius: 50%;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 23px;
  font-style: italic;
}

.process-steps h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 29px;
}

.process-steps p {
  max-width: 560px;
  margin-bottom: 0;
  color: #ebe6de;
  font-size: 14px;
}

/* About */

.about {
  background: var(--off-white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(460px, 1.12fr);
  align-items: stretch;
  gap: 90px;
}

.about-quote {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 48px;
  background: var(--coffee);
  color: var(--off-white);
}

.about-quote::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 9px;
  background: var(--caramel);
  content: "";
}

.about-quote::after {
  position: absolute;
  top: 62px;
  right: -30px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  border-radius: 50%;
  content: "";
}

.about-monogram {
  position: absolute;
  top: 14px;
  left: 34px;
  color: rgba(166, 124, 82, 0.42);
  font-family: var(--font-display);
  font-size: 250px;
  font-style: italic;
  line-height: 1;
}

.about-quote p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 39px;
  font-style: italic;
  line-height: 1.08;
}

.about-copy {
  align-self: center;
  padding: 32px 0;
}

.about-copy h2 {
  max-width: 620px;
}

.about-copy p {
  max-width: 650px;
  color: #5f5047;
}

.about-copy .about-lead {
  margin-bottom: 24px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 25px;
  font-style: italic;
  line-height: 1.35;
}

.about-copy .text-link {
  margin-top: 14px;
}

/* Service area */

.service-area {
  border-top: 1px solid rgba(74, 52, 40, 0.16);
  background: var(--greige-light);
}

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 110px;
}

.service-area .section-heading h2 {
  max-width: 580px;
}

.service-area .button {
  margin-top: 28px;
}

.location-list {
  border-top: 1px solid rgba(74, 52, 40, 0.35);
}

.location-list a {
  display: grid;
  min-height: 74px;
  grid-template-columns: 1fr 48px 24px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(74, 52, 40, 0.35);
  font-family: var(--font-display);
  font-size: 28px;
  transition: padding-left 180ms ease, background-color 180ms ease;
}

.location-list a:hover {
  padding-left: 14px;
  background: rgba(245, 240, 232, 0.5);
}

.location-list span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
}

.location-list b {
  color: var(--caramel);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
}

/* FAQ */

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1.28fr);
  align-items: start;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro p:last-child {
  max-width: 430px;
  margin-bottom: 0;
  color: #66574d;
}

.faq-list {
  border-top: 1px solid var(--greige);
}

.faq-list details {
  border-bottom: 1px solid var(--greige);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 58px 24px 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  right: 7px;
  width: 18px;
  height: 1px;
  background: var(--caramel);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 680px;
  margin: -2px 58px 26px 0;
  color: #66574d;
  font-size: 14px;
}

/* Contact and footer */

.contact {
  padding: 96px 0;
  background: var(--coffee);
  color: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 100px;
}

.contact h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 53px;
}

.contact-action {
  padding-left: 42px;
  border-left: 1px solid rgba(245, 240, 232, 0.28);
}

.contact-action p {
  margin-bottom: 26px;
  color: #e8dfd6;
}

.contact-action small {
  display: block;
  margin-top: 14px;
  color: #d8cec4;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer {
  padding: 58px 0 22px;
  background: var(--coffee-dark);
  color: var(--off-white);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 52px;
}

.brand-footer {
  color: var(--off-white);
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 30px;
}

.footer-main nav a {
  color: #dfd5cb;
  font-size: 12px;
}

.footer-main nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 240, 232, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: #bfb4aa;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
}

.mobile-contact {
  display: none;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 14px 18px;
  border-left: 4px solid var(--caramel);
  background: var(--coffee-dark);
  color: var(--off-white);
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 0 18px 48px rgba(48, 34, 25, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 44px;
  }

  .main-navigation {
    gap: 18px;
  }

  .main-navigation > a {
    font-size: 11px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 440px);
    gap: 48px;
  }

  .process-layout,
  .service-area-layout,
  .faq-layout {
    gap: 70px;
  }

  .about-layout {
    gap: 60px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 44px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-navigation {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    border-bottom: 1px solid rgba(74, 52, 40, 0.18);
    padding: 14px 22px 24px;
    background: var(--off-white);
    box-shadow: 0 22px 44px rgba(48, 34, 25, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-navigation > a {
    border-bottom: 1px solid rgba(74, 52, 40, 0.14);
    padding: 16px 4px;
    font-size: 13px;
  }

  .main-navigation > a::after {
    display: none;
  }

  .main-navigation .nav-cta {
    margin-top: 14px;
    border: 0;
    background: var(--coffee);
    color: var(--off-white);
    text-align: center;
  }

  .hero::before {
    width: 36%;
  }

  .hero-layout {
    min-height: 600px;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .visual-caption {
    right: -10px;
    bottom: 20px;
    width: 200px;
  }

  .reflection-inner {
    grid-template-columns: 70px 1fr auto;
  }

  .reflection-mark {
    font-size: 120px;
  }

  .reflection-inner > p {
    font-size: 42px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .process-intro,
  .faq-intro {
    position: static;
    max-width: 650px;
  }

  .about-layout,
  .service-area-layout {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
  }

  .about-quote {
    min-height: 500px;
    padding: 34px;
  }

  .about-quote p {
    font-size: 34px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-action {
    max-width: 630px;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
    font-size: 15px;
  }

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

  .section {
    padding: 72px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 28px;
  }

  .brand-line {
    display: none;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 44px;
    line-height: 0.98;
  }

  h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  h3 {
    font-size: 24px;
  }

  .hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 238px;
  }

  .hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .hero-intro {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    gap: 8px 18px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .hero-facts li {
    font-size: 9px;
  }

  .hero-visual {
    max-width: none;
  }

  .portrait-frame {
    height: 226px;
    aspect-ratio: auto;
  }

  .portrait-frame img {
    top: -10px;
  }

  .visual-caption {
    right: 0;
    bottom: 0;
    width: 176px;
    min-height: 72px;
    padding: 12px 14px;
    font-size: 7px;
  }

  .caption-kicker {
    font-size: 18px;
  }

  .hero-rule {
    width: 70%;
    height: 4px;
  }

  .reflection-inner {
    min-height: 172px;
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .reflection-mark {
    align-self: start;
    margin-top: 54px;
    font-size: 80px;
  }

  .reflection-inner > p {
    font-size: 35px;
  }

  .reflection-note {
    display: none;
  }

  .split-heading {
    margin-bottom: 44px;
  }

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

  .issue-item {
    min-height: 0;
    padding: 28px 24px;
  }

  .issue-item > span {
    margin-bottom: 20px;
  }

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

  .process-layout {
    gap: 36px;
  }

  .process-intro h2 {
    font-size: 38px;
  }

  .process-steps li {
    min-height: 0;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .process-steps h3 {
    font-size: 25px;
  }

  .about-layout,
  .service-area-layout {
    grid-template-columns: 1fr;
  }

  .about-quote {
    min-height: 390px;
    padding: 30px;
  }

  .about-monogram {
    font-size: 190px;
  }

  .about-quote p {
    font-size: 32px;
  }

  .about-copy {
    padding-bottom: 0;
  }

  .service-area-layout {
    gap: 46px;
  }

  .location-list a {
    min-height: 66px;
    grid-template-columns: 1fr 34px 18px;
    font-size: 24px;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-list summary {
    min-height: 76px;
    padding: 22px 44px 22px 0;
    font-size: 22px;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: 13px;
  }

  .contact {
    padding: 72px 0;
  }

  .contact h2 {
    font-size: 40px;
  }

  .contact-action .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .mobile-contact {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 56px;
    place-items: center;
    border-top: 1px solid rgba(245, 240, 232, 0.25);
    background: var(--coffee);
    color: var(--off-white);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 -10px 28px rgba(48, 34, 25, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-contact.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .toast {
    right: 16px;
    bottom: 72px;
    left: 16px;
    max-width: none;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 40px;
  }

  h2,
  .process-intro h2 {
    font-size: 35px;
  }

  .hero-layout {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .hero-extra,
  .hero-actions .text-link,
  .hero-facts {
    display: none;
  }

  .portrait-frame {
    height: 260px;
  }

  .reflection-inner > p {
    font-size: 32px;
  }

  .about-quote p {
    font-size: 29px;
  }

  .location-list a {
    font-size: 22px;
  }

  .contact h2 {
    font-size: 36px;
  }
}

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

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

/* Readability typography pass */
body {
  font-size: 17px;
}

.eyebrow {
  font-size: 13px;
}

.button,
.text-link {
  font-size: 14px;
}

.main-navigation > a {
  font-size: 13px;
}

.faq-list details > p {
  font-size: 16px;
  line-height: 1.75;
}

.footer-main nav a {
  font-size: 13px;
}

.footer-bottom p {
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .main-navigation > a {
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .main-navigation > a {
    font-size: 14px;
  }

  .faq-list details > p {
    font-size: 15px;
  }

  .mobile-contact {
    font-size: 14px;
  }
}

/* Client-approved larger typography */
body {
  font-size: 18px;
}

.eyebrow {
  font-size: 14px;
}

.button,
.text-link {
  font-size: 15px;
}

.main-navigation > a,
.footer-main nav a {
  font-size: 14px;
}

.faq-list details > p {
  font-size: 17px;
  line-height: 1.78;
}

.footer-bottom p {
  font-size: 14px;
}

@media (max-width: 1180px) {
  .main-navigation > a {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .main-navigation > a {
    font-size: 15px;
  }

  .faq-list details > p {
    font-size: 16px;
  }

  .mobile-contact {
    font-size: 15px;
  }
}

/* WhatsApp conversion actions */
button[data-contact-placeholder],
a.button[href^="https://wa.me/"] {
  min-height: 56px;
  justify-content: space-between;
  gap: 18px;
  border-color: #25D366 !important;
  border-radius: 999px !important;
  padding: 7px 7px 7px 24px !important;
  background: #25D366 !important;
  color: #FFFFFF !important;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

button[data-contact-placeholder] > span,
a.button[href^="https://wa.me/"] > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: transparent;
  font-size: 0;
  transition: background-color 180ms ease, transform 180ms ease;
}

button[data-contact-placeholder] > span::after,
a.button[href^="https://wa.me/"] > span::after {
  color: #FFFFFF;
  content: "›";
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-1px);
}

button[data-contact-placeholder]:hover,
a.button[href^="https://wa.me/"]:hover {
  border-color: #20C95F !important;
  background: #20C95F !important;
  color: #FFFFFF !important;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);
}

button[data-contact-placeholder]:hover > span,
a.button[href^="https://wa.me/"]:hover > span {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

button[data-contact-placeholder]:focus-visible,
a.button[href^="https://wa.me/"]:focus-visible,
.contact-channel[href^="https://wa.me/"]:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid #25D366;
  outline-offset: 4px;
}

.contact-channel[href^="https://wa.me/"] {
  border-color: #25D366;
  background: #25D366;
  color: #FFFFFF;
}

.contact-channel[href^="https://wa.me/"] small,
.contact-channel[href^="https://wa.me/"] strong,
.contact-channel[href^="https://wa.me/"] b {
  color: #FFFFFF;
}

.contact-channel[href^="https://wa.me/"] b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.contact-channel[href^="https://wa.me/"]:hover {
  border-color: #20C95F;
  background: #20C95F;
}

.contact-channel[href^="https://wa.me/"]:hover strong,
.contact-channel[href^="https://wa.me/"]:focus-visible strong {
  color: #FFFFFF;
}

.whatsapp-float {
  position: fixed;
  z-index: 180;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid #D4F7E2;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2), 0 12px 28px rgba(24, 139, 74, 0.28);
  animation: whatsapp-button-pulse 1.8s ease-in-out infinite;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float::before {
  position: absolute;
  z-index: -1;
  inset: -6px;
  border: 2px solid rgba(37, 211, 102, 0.38);
  border-radius: 50%;
  content: "";
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-float::after {
  position: absolute;
  right: calc(100% + 14px);
  padding: 9px 12px;
  border-radius: 4px;
  background: #4A3428;
  color: #FFFFFF;
  content: attr(aria-label);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(48, 34, 25, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover {
  background: #20C95F;
  color: #FFFFFF;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.22), 0 16px 34px rgba(24, 139, 74, 0.34);
  animation-play-state: paused;
  transform: translateY(-3px);
}

.whatsapp-float:hover::after,
.whatsapp-float:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.mobile-contact {
  display: none !important;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.6;
    transform: scale(0.96);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

@keyframes whatsapp-button-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18), 0 12px 28px rgba(24, 139, 74, 0.26);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.12), 0 16px 34px rgba(24, 139, 74, 0.34);
    transform: scale(1.07);
  }
}

@media (max-width: 760px) {
  .whatsapp-float {
    right: 16px;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }

  button[data-contact-placeholder],
  a.button[href^="https://wa.me/"] {
    min-height: 54px;
    padding-left: 21px !important;
  }

  button[data-contact-placeholder] > span,
  a.button[href^="https://wa.me/"] > span {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .whatsapp-float::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float::before {
    animation: none;
  }
}
