:root {
  --ink: #11110f;
  --ink-soft: #1a1916;
  --charcoal: #25231e;
  --ivory: #f6f0e3;
  --cream: #ece1c9;
  --paper: #fffdf7;
  --gold: #b89448;
  --gold-bright: #d3b96f;
  --gold-dark: #84682f;
  --muted: #6f695e;
  --line: rgba(184, 148, 72, 0.35);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow: 0 28px 70px rgba(17, 17, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 2px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 92px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(17,17,15,0.96);
  box-shadow: 0 12px 34px rgba(0,0,0,0.22);
  backdrop-filter: blur(16px);
}

.header-shell,
.section-shell,
.footer-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  text-decoration: none;
}

.brand-seal {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(211,185,111,0.08);
}

.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand-kicker {
  margin-bottom: 3px;
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.brand-copy strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.38rem);
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  padding: 9px 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 35%, rgba(184,148,72,0.17), transparent 28%),
    linear-gradient(125deg, #0d0e0d 0%, #181712 58%, #0d0d0c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 65%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  padding-top: 84px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark { color: var(--gold-dark); }
.eyebrow-light { color: var(--gold-bright); }

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.8vw, 7.5rem);
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: -0.035em;
}

.hero h1 > span {
  display: block;
  margin-top: 0.35em;
  color: var(--ivory);
  font-size: 0.52em;
  line-height: 1;
  letter-spacing: -0.015em;
}

.hero-intro {
  max-width: 500px;
  margin: 38px 0 0;
  padding-left: 22px;
  color: rgba(255,255,255,0.76);
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-gold {
  color: var(--ink);
  background: var(--gold-bright);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #e0ca8a;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.26);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold-bright);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: rgba(255,255,255,0.63);
}

.hero-location svg {
  width: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.35;
}

.hero-location p {
  margin: 0;
  font-size: 0.82rem;
}

.hero-location p span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-bright);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  max-width: 480px;
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(211,185,111,0.38);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(211,185,111,0.12);
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
}

.frame-corner-tl {
  top: -8px;
  left: -8px;
  border-top: 2px solid var(--gold-bright);
  border-left: 2px solid var(--gold-bright);
}

.frame-corner-br {
  right: -8px;
  bottom: -8px;
  border-right: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
}

.logo-stage {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  place-items: center;
  background: #e8dfc9;
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 48px rgba(41,32,14,0.42);
  pointer-events: none;
}

.logo-stage img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.visual-frame:hover .logo-stage img {
  transform: scale(1.035);
}

.visual-caption {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 20px 22px;
  color: var(--ink);
  background: var(--ivory);
  border-top: 3px solid var(--gold);
  text-align: center;
}

.visual-caption span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.visual-caption strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 600;
}

.hero-ornament {
  position: absolute;
  border: 1px solid rgba(211,185,111,0.15);
  border-radius: 50%;
}

.hero-ornament-one {
  top: 18%;
  right: -12%;
  width: 580px;
  height: 580px;
}

.hero-ornament-two {
  top: 27%;
  right: -5%;
  width: 390px;
  height: 390px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.5);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(255,255,255,0.22);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

.section {
  padding: clamp(86px, 10vw, 142px) 0;
}

.intro {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.intro::after {
  content: "PATRICIA";
  position: absolute;
  right: -10px;
  bottom: -72px;
  color: rgba(132,104,47,0.045);
  font-family: var(--serif);
  font-size: min(20vw, 18rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.section-number {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.section-heading h2,
.services-heading h2,
.location h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.intro-copy {
  padding-left: clamp(30px, 5vw, 70px);
  border-left: 1px solid var(--line);
}

.intro-copy > p {
  max-width: 730px;
  margin: 0;
  color: #38352f;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  line-height: 1.45;
}

.gold-rule {
  display: flex;
  align-items: center;
  width: 100%;
  height: 1px;
  margin-top: 38px;
  background: rgba(184,148,72,0.18);
}

.gold-rule span {
  width: 18%;
  height: 1px;
  background: var(--gold);
}

.services {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink-soft);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(var(--gold-bright) 0.8px, transparent 0.8px);
  background-size: 20px 20px;
}

.services .section-shell {
  position: relative;
  z-index: 1;
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  margin-bottom: 62px;
}

.services-heading > p {
  max-width: 340px;
  margin: 0 0 9px;
  padding-left: 22px;
  color: rgba(255,255,255,0.6);
  border-left: 1px solid var(--gold);
}

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

.service-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 32px 28px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid transparent;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184,148,72,0.18);
  pointer-events: none;
}

.service-card:hover {
  z-index: 2;
  background: #fffaf0;
  border-color: var(--gold);
  transform: translateY(-10px);
}

.service-index {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(132,104,47,0.45);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(184,148,72,0.11);
  transform: rotate(-3deg) scale(1.05);
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 600;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.card-line {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  height: 1px;
  background: var(--line);
}

.card-line::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.statement {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 100px 24px;
  color: #fff;
  background: #0b0b0a;
  text-align: center;
}

.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(10,10,8,0.66), #0b0b0a 72%);
}

.statement-logo {
  position: absolute;
  inset: -45%;
  opacity: 0.09;
  filter: grayscale(1) sepia(0.5);
  transform: rotate(-4deg);
}

.statement-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-shell {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.statement-mark {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 2rem;
}

.statement p {
  margin: 8px 0 0;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.statement h2 {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  font-weight: 500;
  line-height: 1;
}

.statement-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  width: min(490px, 80%);
  margin: 30px auto;
}

.statement-rule i {
  height: 1px;
  background: rgba(211,185,111,0.45);
}

.statement-rule span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-bright);
  transform: rotate(45deg);
}

.statement .statement-areas {
  color: #fff;
  font-size: clamp(0.67rem, 1.5vw, 0.82rem);
  letter-spacing: 0.17em;
}

.statement-areas b {
  margin: 0 7px;
  color: var(--gold-bright);
}

.statement .statement-city {
  margin-top: 25px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22em;
}

.location {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.location-lead {
  margin: 34px 0 12px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.address-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 28px;
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-style: normal;
}

.address-card::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 3px;
  background: var(--gold);
}

.address-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.address-icon svg {
  width: 22px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.4;
}

.address-card strong,
.address-card small {
  display: block;
}

.address-card strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.address-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.location-art {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.location-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 44px 44px;
}

.compass {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 245px;
  height: 245px;
  border: 1px solid rgba(132,104,47,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.compass-ring {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(132,104,47,0.28);
  border-radius: 50%;
}

.compass-cross::before,
.compass-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(132,104,47,0.2);
  transform: translate(-50%, -50%);
}

.compass-cross::before { width: 100%; height: 1px; }
.compass-cross::after { width: 1px; height: 100%; }

.compass-pin {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border: 7px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(17,17,15,0.25);
  transform: translate(-50%, -50%);
}

.compass-pin svg {
  width: 37px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.3;
}

.map-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: rgba(132,104,47,0.26);
  transform-origin: left center;
}

.map-line-one { top: 18%; left: -5%; width: 70%; transform: rotate(18deg); }
.map-line-two { top: 68%; left: 36%; width: 75%; transform: rotate(-24deg); }
.map-line-three { top: 88%; left: 3%; width: 48%; transform: rotate(-48deg); }

.site-footer {
  color: rgba(255,255,255,0.72);
  background: var(--ink);
  border-top: 1px solid rgba(211,185,111,0.18);
}

.footer-shell {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 50px;
  padding-block: 44px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 68px;
  height: 68px;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand span,
.footer-brand strong {
  display: block;
}

.footer-brand span {
  color: var(--gold-bright);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.footer-brand strong {
  margin-top: 3px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.footer-data p {
  margin: 4px 0;
  font-size: 0.76rem;
}

.back-to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-to-top svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.2;
  border: 1px solid rgba(211,185,111,0.32);
  transition: transform 0.25s ease, background 0.25s ease;
}

.back-to-top:hover svg,
.back-to-top:focus-visible svg {
  background: rgba(211,185,111,0.1);
  transform: translateY(-4px);
}

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

.reveal.is-prepared {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.75,.2,1);
}

.reveal.is-prepared.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 920px;
    height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 65px;
    padding-top: 150px;
    padding-bottom: 120px;
  }

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

  .hero-visual {
    width: min(570px, 88%);
    margin-inline: auto;
  }

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

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

  .location-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .header-shell,
  .section-shell,
  .footer-shell,
  .hero-shell {
    width: min(100% - 32px, 650px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 76px;
  }

  .brand-seal {
    width: 49px;
    height: 49px;
  }

  .brand-copy strong {
    max-width: 220px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 100px 32px 50px;
    background: rgba(17,17,15,0.985);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav-link {
    width: 100%;
    padding: 13px 0;
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-link::after {
    right: auto;
    width: 52px;
  }

  .hero {
    min-height: 0;
  }

  .hero-shell {
    gap: 55px;
    padding-top: 136px;
    padding-bottom: 110px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.8rem);
  }

  .hero h1 > span {
    font-size: 0.48em;
  }

  .logo-stage,
  .logo-stage img {
    min-height: 260px;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 42px;
  }

  .services-heading > p {
    margin: 0;
  }

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

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

  .location-art {
    min-height: 350px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .back-to-top {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    max-width: 176px;
    font-size: 1.05rem;
  }

  .brand-kicker {
    font-size: 0.56rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-location {
    align-items: flex-start;
  }

  .hero-visual {
    width: 100%;
  }

  .visual-frame {
    padding: 14px;
  }

  .logo-stage,
  .logo-stage img {
    min-height: 215px;
  }

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

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

  .address-card {
    padding: 22px 20px;
  }

  .location-art {
    min-height: 315px;
  }

  .compass {
    width: 215px;
    height: 215px;
  }
}

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

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

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