:root {
  color-scheme: light;
  --ink: #183029;
  --ink-muted: #5d6d66;
  --pine: #0f4c4d;
  --pine-soft: #246f68;
  --sage: #d9e6df;
  --mist: #f5f7f3;
  --ivory: #fbf7ef;
  --sand: #d2a568;
  --clay: #8f684c;
  --sky: #d9edf0;
  --line: rgba(24, 48, 41, 0.14);
  --shadow: 0 24px 70px rgba(24, 48, 41, 0.18);
  --radius: 8px;
  --content: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(217, 237, 240, 0.45), transparent 360px),
    var(--ivory);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.cursor-aura {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 110;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(210, 165, 104, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(251, 247, 239, 0.2), transparent 56%),
    radial-gradient(circle at 35% 35%, rgba(217, 237, 240, 0.3), transparent 44%);
  box-shadow: 0 0 34px rgba(217, 237, 240, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0.86);
  transition: opacity 260ms ease, transform 260ms ease, border-color 260ms ease;
  mix-blend-mode: screen;
}

body.cursor-ready .cursor-aura {
  opacity: 0.78;
}

body.cursor-pressing .cursor-aura {
  border-color: rgba(251, 247, 239, 0.72);
  transform: translate3d(-50%, -50%, 0) scale(0.72);
}

.click-bloom {
  position: fixed;
  z-index: 109;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(210, 165, 104, 0.75);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.4);
  animation: click-bloom 720ms ease-out forwards;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--pine);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(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;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 90;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--sand), var(--pine-soft), var(--sky));
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 16px 0;
  color: var(--ivory);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding: 10px 0;
  color: var(--ink);
  background: rgba(251, 247, 239, 0.86);
  box-shadow: 0 16px 42px rgba(24, 48, 41, 0.12);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text span {
  font-weight: 800;
}

.brand-text small {
  font-size: 0.72rem;
  opacity: 0.78;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: currentColor;
  font-size: 0.93rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  outline: 0;
}

.site-header.is-scrolled .nav-list a:hover,
.site-header.is-scrolled .nav-list a:focus-visible,
.site-header.is-open .nav-list a:hover,
.site-header.is-open .nav-list a:focus-visible {
  background: rgba(15, 76, 77, 0.08);
}

.nav-list .nav-call {
  border: 1px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  padding: 128px max(20px, calc((100vw - 1120px) / 2)) 36px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-vignette,
.hero-sheen {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  animation: hero-breathe 18s ease-in-out infinite alternate;
  filter: saturate(0.96) contrast(0.96);
}

.hero-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 49, 48, 0.78), rgba(15, 49, 48, 0.34) 45%, rgba(15, 49, 48, 0.08)),
    linear-gradient(180deg, rgba(15, 49, 48, 0.28), rgba(15, 49, 48, 0.58));
}

.hero-sheen {
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.22) 34%, transparent 48%),
    radial-gradient(ellipse at bottom left, rgba(210, 165, 104, 0.34), transparent 46%);
  mix-blend-mode: screen;
  opacity: 0.44;
  animation: sheen-drift 12s ease-in-out infinite alternate;
}

.hero-content {
  width: min(760px, 100%);
  color: var(--ivory);
  padding-bottom: 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(251, 247, 239, 0.84);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  font-weight: 700;
}

h1 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(4rem, 10vw, 8.6rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 5.1rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(251, 247, 239, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
  min-height: 34px;
  margin-bottom: 18px;
  color: rgba(251, 247, 239, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-subtitle span {
  color: rgba(251, 247, 239, 0.72);
}

.hero-subtitle strong {
  position: relative;
  color: var(--ivory);
  font-weight: 800;
}

.hero-subtitle strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: linear-gradient(90deg, var(--sand), transparent);
  transform-origin: left;
  animation: subtitle-line 4.2s ease-in-out infinite;
}

.hero-subtitle strong.is-changing {
  animation: subtitle-swap 420ms ease;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  background: var(--ivory);
  color: var(--pine);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.button-quiet {
  border-color: rgba(251, 247, 239, 0.54);
  color: var(--ivory);
  background: rgba(251, 247, 239, 0.08);
  backdrop-filter: blur(12px);
}

.hero-status {
  position: absolute;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  display: grid;
  gap: 8px;
  width: min(330px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(251, 247, 239, 0.28);
  border-radius: var(--radius);
  background: rgba(15, 49, 48, 0.3);
  color: var(--ivory);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-status span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-status span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 6px rgba(210, 165, 104, 0.18);
}

.section {
  position: relative;
  padding: clamp(76px, 12vw, 132px) 0;
}

#services,
#process,
#approach,
#maggie,
#contact {
  scroll-margin-top: 88px;
}

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.section-heading h2 {
  max-width: 820px;
}

.centered {
  text-align: center;
}

.centered h2 {
  margin-inline: auto;
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.96), rgba(245, 247, 243, 0.88)),
    var(--ivory);
}

.intro-copy {
  max-width: 610px;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.intro-copy p:last-child,
.contact-copy p:last-child,
.maggie-copy p:last-child {
  margin-bottom: 0;
}

.reassurance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(46px, 8vw, 84px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 22px 62px rgba(24, 48, 41, 0.08);
  overflow: hidden;
}

.reassurance-strip div {
  display: grid;
  gap: 6px;
  min-height: 128px;
  padding: 24px;
  background: rgba(251, 247, 239, 0.8);
}

.reassurance-strip strong {
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1;
}

.reassurance-strip span {
  color: var(--ink-muted);
}

.services-section {
  background:
    linear-gradient(180deg, var(--mist), #eef5ef 55%, var(--ivory));
}

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

.service-card {
  position: relative;
  min-height: 298px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(217, 230, 223, 0.52)),
    var(--ivory);
  box-shadow: 0 16px 38px rgba(24, 48, 41, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--sand);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  border-color: rgba(36, 111, 104, 0.3);
  box-shadow: 0 22px 54px rgba(24, 48, 41, 0.12);
  transform: translateY(-5px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card p {
  margin-bottom: 42px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.service-card span {
  display: block;
  color: var(--ink-muted);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 6px 9px;
  border: 1px solid rgba(15, 76, 77, 0.14);
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.58);
  color: var(--pine);
  font-size: 0.79rem;
  font-weight: 800;
}

.process-section {
  background:
    linear-gradient(180deg, var(--ivory), rgba(217, 237, 240, 0.56)),
    var(--ivory);
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(15, 76, 77, 0.04) 12% 13%, transparent 13% 52%, rgba(210, 165, 104, 0.08) 52% 53%, transparent 53%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent);
  pointer-events: none;
}

.process-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: end;
}

.process-header h2 {
  margin-bottom: 0;
}

.process-header p:last-child {
  color: var(--ink-muted);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 39px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 76, 77, 0.28), transparent);
}

.process-step {
  position: relative;
  min-height: 265px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 247, 239, 0.78);
  box-shadow: 0 18px 46px rgba(24, 48, 41, 0.09);
}

.process-step span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  box-shadow: 0 0 0 8px rgba(15, 76, 77, 0.08);
}

.process-step p {
  color: var(--ink-muted);
  margin-bottom: 0;
}

.approach-section {
  background:
    linear-gradient(135deg, rgba(15, 76, 77, 0.96), rgba(24, 48, 41, 0.94)),
    var(--pine);
  color: var(--ivory);
  overflow: hidden;
}

.approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(255, 255, 255, 0.08) 18% 19%, transparent 19% 44%, rgba(210, 165, 104, 0.14) 44% 45%, transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 48%);
  opacity: 0.75;
  pointer-events: none;
}

.approach-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.quote-panel {
  margin: 0;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(251, 247, 239, 0.24);
  border-radius: var(--radius);
  background: rgba(251, 247, 239, 0.08);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.quote-panel blockquote {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3.55rem);
  line-height: 1.02;
}

.quote-panel figcaption {
  color: rgba(251, 247, 239, 0.72);
}

.approach-content .eyebrow {
  color: var(--sand);
}

.approach-content h2 {
  max-width: 660px;
}

.approach-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.approach-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(251, 247, 239, 0.2);
}

.approach-list span {
  grid-row: span 2;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.approach-list h3 {
  margin-bottom: 0;
}

.approach-list p {
  margin-bottom: 0;
  color: rgba(251, 247, 239, 0.74);
}

.maggie-section {
  background:
    linear-gradient(90deg, rgba(217, 237, 240, 0.52), transparent 58%),
    var(--ivory);
}

.maggie-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(32px, 8vw, 88px);
  align-items: center;
}

.maggie-portrait {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 76, 77, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(36, 111, 104, 0.16), rgba(210, 165, 104, 0.18)),
    var(--sage);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.maggie-portrait::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(15, 76, 77, 0.18);
  border-radius: 50%;
}

.maggie-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(15, 76, 77, 0.2));
}

.maggie-portrait span {
  position: relative;
  z-index: 1;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 0.8;
}

.maggie-portrait small {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--pine);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.maggie-copy {
  max-width: 730px;
}

.maggie-copy p {
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.credential-list span {
  padding: 8px 11px;
  border: 1px solid rgba(15, 76, 77, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--pine);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-section {
  background:
    linear-gradient(180deg, #eef5ef, var(--sky)),
    var(--sky);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.contact-copy p {
  max-width: 620px;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.contact-button {
  margin-top: 22px;
  background: var(--pine);
  color: var(--ivory);
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(15, 76, 77, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 247, 239, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-panel div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-panel span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel strong {
  font-size: 1.1rem;
  line-height: 1.4;
}

.contact-panel a {
  text-decoration: underline;
  text-decoration-color: rgba(15, 76, 77, 0.28);
  text-underline-offset: 4px;
}

.site-footer {
  background: var(--ink);
  color: rgba(251, 247, 239, 0.76);
  padding: 28px 0;
}

.footer-inner {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  max-width: 680px;
  margin: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from {
    transform: scale(1.04) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  }
  to {
    transform: scale(1.09) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  }
}

@keyframes sheen-drift {
  from {
    transform: translateX(-5%);
  }
  to {
    transform: translateX(5%);
  }
}

@keyframes subtitle-swap {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitle-line {
  0%,
  100% {
    transform: scaleX(0.12);
    opacity: 0.4;
  }
  40%,
  72% {
    transform: scaleX(1);
    opacity: 0.95;
  }
}

@keyframes click-bloom {
  0% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.4);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(7);
  }
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 32px, 720px);
  }

  .site-header {
    color: var(--ink);
    background: rgba(251, 247, 239, 0.88);
    backdrop-filter: blur(18px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    inset: 70px 16px auto;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(251, 247, 239, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-list a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 118px;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(15, 49, 48, 0.24), rgba(15, 49, 48, 0.72)),
      linear-gradient(90deg, rgba(15, 49, 48, 0.6), rgba(15, 49, 48, 0.16));
  }

  .hero-content {
    padding-bottom: 180px;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 4rem);
  }

  .split,
  .approach-layout,
  .maggie-layout,
  .contact-layout,
  .process-header {
    grid-template-columns: 1fr;
  }

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

  .reassurance-strip {
    grid-template-columns: 1fr;
  }

  .maggie-portrait {
    width: min(280px, 100%);
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  :root {
    --content: min(100% - 28px, 420px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding-bottom: 26px;
  }

  .hero-content {
    padding-bottom: 224px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-subtitle {
    min-height: 60px;
    align-items: flex-start;
  }

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

  .hero-status {
    left: 14px;
    right: 14px;
    bottom: 22px;
    width: auto;
  }

  .section {
    padding: 72px 0;
  }

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

  .service-card {
    min-height: 250px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    min-height: 220px;
  }

  .quote-panel {
    padding: 24px;
  }

  .approach-list div {
    grid-template-columns: 1fr;
  }

  .approach-list span {
    grid-row: auto;
  }

  .contact-panel {
    padding: 22px;
  }
}

@media (pointer: coarse), (max-width: 900px) {
  .cursor-aura {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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