/* Production site styles — homepage, shared chrome, and polished production theme */

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/source-sans-3-400.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/source-sans-3-500.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/source-sans-3-600.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/source-sans-3-700.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/source-serif-4-400.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/source-serif-4-600.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/source-serif-4-700.woff2") format("woff2");
}

:root {
  --ink: #171511;
  --paper: #f5efe4;
  --muted: rgba(23, 21, 17, 0.68);
  --line: rgba(23, 21, 17, 0.14);
  --accent: #9d3327;
  --accent-2: #0f6f60;
  --panel: rgba(255, 252, 244, 0.88);
  --shadow: 0 30px 90px rgba(32, 24, 14, 0.18);
  --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  color-scheme: light;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 21, 17, 0.055) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 38%);
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

main,
section,
article,
aside,
div,
figure {
  min-width: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.micro {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-polished {
  --ink: var(--theme-ink, #171511);
  --paper: var(--theme-paper, #f5efe4);
  --muted: color-mix(in srgb, var(--ink) 66%, transparent);
  --line: color-mix(in srgb, var(--ink) 16%, transparent);
  --panel: var(--theme-panel, #fffaf0);
  --accent: var(--theme-accent, #9d3327);
  --accent-2: var(--theme-accent-2, #0f6f60);
  --font-sans: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --type-page-title: clamp(2.15rem, 4.8vw, 3.35rem);
  --type-section-title: clamp(1.35rem, 2.4vw, 1.75rem);
  --shadow: 0 20px 60px rgba(32, 24, 14, 0.12);
  --space-section: clamp(40px, 6vw, 72px);
  color: var(--ink);
  background: var(--paper);
  animation: page-in 520ms ease both;
}

.site-polished::after {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 34%),
    radial-gradient(circle at 88% 14%, color-mix(in srgb, var(--accent-2) 16%, transparent), transparent 32%);
}

.site-polished .skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-polished .skip-link:focus {
  top: 12px;
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  min-height: 62px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: max(9px, env(safe-area-inset-top)) clamp(14px, 4vw, 54px) 9px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(18px);
}

.topbar a,
.topbar-contact a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.topbar .home-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 72%, transparent);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--ink) 8%, transparent);
}

.topbar .home-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.topbar-brand {
  min-width: 0;
}

.topbar-brand-link {
  display: grid;
  gap: 2px;
  text-decoration: none;
  text-transform: none;
}

.topbar-brand-name {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.topbar-brand-detail {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.topbar-contact {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.topbar-contact-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 70%, transparent);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--ink) 6%, transparent);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-polished .topbar-contact-link--primary {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--accent) 92%, #fff);
  color: var(--paper);
  font-weight: 700;
}

.topbar .home-link:hover,
.topbar .home-link:focus-visible,
.topbar-contact-link:not(.topbar-contact-link--primary):hover,
.topbar-contact-link:not(.topbar-contact-link--primary):focus-visible {
  background: color-mix(in srgb, var(--accent-2) 14%, transparent);
  outline: none;
}

.site-polished .topbar-contact-link--primary:hover,
.site-polished .topbar-contact-link--primary:focus-visible {
  background: color-mix(in srgb, var(--accent) 82%, #000);
  border-color: color-mix(in srgb, var(--accent) 82%, #000);
  color: var(--paper);
  outline: none;
}

.topbar-page-label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  cursor: default;
}

.site-polished .topbar-page-label {
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--accent) 92%, #fff);
  color: var(--paper);
}

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

.site-faq-page .faq-page-intro {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0 clamp(16px, 3vw, 24px);
}

.site-faq-page .faq-page-intro h1 {
  font-size: var(--type-page-title);
  line-height: 1.02;
  margin-top: 8px;
}

.site-faq-page .site-faq {
  margin-top: 0;
}

.site-about-page .about-page-intro {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0 clamp(16px, 3vw, 24px);
}

.site-about-page .about-page-intro h1 {
  font-size: var(--type-page-title);
  line-height: 1.02;
  margin-top: 8px;
}

.site-about-page .about-profile {
  width: min(1160px, calc(100% - 42px));
  margin: 0 auto clamp(36px, 6vw, 72px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.site-about-page .about-portrait {
  margin: 0;
}

.site-about-page .about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.site-about-page .about-portrait figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-about-page .about-section + .about-section {
  margin-top: clamp(20px, 3vw, 28px);
}

.site-about-page .about-section h2 {
  font-size: var(--type-section-title);
  line-height: 1.06;
}

.site-about-page .about-section p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.site-about-page .about-section a {
  color: var(--accent-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.site-about-page .about-section a:hover,
.site-about-page .about-section a:focus-visible {
  color: var(--accent);
  outline: none;
}

.site-about-page .about-response {
  margin-top: 16px;
}

.site-about-page .about-cta {
  margin-top: clamp(24px, 4vw, 32px);
}

.site-polished .faq-teaser {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto var(--space-section);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  box-shadow: var(--shadow);
}

.site-polished .faq-teaser h2 {
  font-size: var(--type-section-title);
  line-height: 1.06;
}

.site-polished .faq-teaser-intro {
  margin-top: clamp(12px, 2vw, 18px);
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.12rem);
  line-height: 1.55;
}

.site-polished .faq-teaser-list {
  display: grid;
  gap: clamp(16px, 2.5vw, 22px);
  margin: clamp(18px, 3vw, 28px) 0 0;
}

.site-polished .faq-teaser-item dt {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.2;
}

.site-polished .faq-teaser-item dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.site-polished .faq-teaser-action {
  margin-top: clamp(20px, 3vw, 28px);
}

.proof-grid,
.studio-contact {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.56;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button.primary {
  border-color: transparent;
  background: var(--accent);
  color: var(--paper);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: color-mix(in srgb, var(--accent) 82%, #000);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #111;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: var(--photo-filter, none);
  transform: scale(1.02);
  transition: transform 900ms ease;
}

.hero-photo:hover img {
  transform: scale(1.07);
}

.hero-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-photo--mobile {
  display: none;
}

.hero-photo--mobile img {
  object-position: center 20%;
}

.proof-modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--panel) 96%, transparent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.module-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.module-card h3 {
  max-width: 13ch;
  margin-top: 64px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.module-card p {
  color: var(--muted);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.proof-modules .module-card {
  min-height: 170px;
}

.proof-modules .module-card h3 {
  margin-top: 28px;
}

.site-polished .module-card {
  min-height: 160px;
  box-shadow: var(--shadow);
}

.site-polished .module-card h3 {
  max-width: none;
  margin-top: 20px;
  font-size: var(--type-section-title);
}

.site-polished .module-card--rates {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
  background: color-mix(in srgb, var(--accent) 7%, var(--panel));
}

.site-polished .module-card--rates span {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  color: var(--accent);
}

.site-polished .module-card--rates p {
  font-variant-numeric: tabular-nums;
}

a.module-card--action {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

a.module-card--action:hover,
a.module-card--action:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent-2) 42%, var(--line));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.1);
  outline: none;
}

a.module-card--action::after {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  content: "Ask about lessons →";
}

.trust-bio {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  width: min(1160px, calc(100% - 42px));
  margin: clamp(36px, 6vw, 72px) auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.bio-copy h2 {
  font-size: var(--type-section-title);
  line-height: 1.06;
}

.bio-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.trust-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) 0 20px;
}

.site-polished .trust-hero {
  width: min(1180px, calc(100% - 40px));
  padding: clamp(40px, 6vw, 88px) 0 clamp(24px, 4vw, 40px);
}

.trust-copy h1 {
  font-size: var(--type-page-title);
  line-height: 0.94;
  text-wrap: balance;
}

.site-polished .trust-copy h1 {
  line-height: 1.02;
}

.trust-copy .lead {
  margin-top: 20px;
  max-width: min(54rem, 100%);
}

.site-polished .trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.site-polished .trust-pills li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 90%, transparent);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-polished .trust-pills strong {
  color: var(--ink);
  font-weight: 700;
}

.site-polished .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-polished .hero-cta .button {
  min-height: 46px;
  padding: 0 22px;
  gap: 8px;
}

.site-polished .hero-cta .button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.site-polished .proof-grid {
  gap: clamp(20px, 3vw, 28px);
  margin-bottom: var(--space-section);
}

.proof-grid .hero-photo {
  min-height: 560px;
}

.site-polished .proof-grid .hero-photo {
  min-height: clamp(380px, 52vw, 520px);
  border-radius: 28px;
}

.site-polished .hero-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(15, 14, 12, 0.55));
}

.site-polished .hero-photo figcaption {
  z-index: 1;
  border: 0;
  background: transparent;
  color: color-mix(in srgb, var(--paper) 92%, transparent);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.site-polished .proof-modules {
  margin-top: 0;
  margin-bottom: 0;
}

.site-polished .trust-bio {
  display: block;
  width: min(1180px, calc(100% - 40px));
  margin-top: 0;
  margin-bottom: var(--space-section);
}

.site-polished .context-photo {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  max-height: clamp(280px, 38vw, 440px);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.site-polished .context-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter, none);
}

.site-polished .bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.52fr);
  gap: clamp(22px, 4vw, 36px);
  align-items: start;
}

.site-polished .site-faq {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto var(--space-section);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  box-shadow: var(--shadow);
}

.site-polished .site-faq h2 {
  font-size: var(--type-section-title);
  line-height: 1.06;
}

.site-polished .faq-list {
  display: grid;
  gap: clamp(16px, 2.5vw, 22px);
  margin-top: clamp(18px, 3vw, 28px);
}

.site-polished .faq-group {
  grid-column: 1 / -1;
  margin-top: clamp(8px, 2vw, 16px);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-polished .faq-group:first-child {
  margin-top: 0;
}

.site-polished .faq-item {
  padding-top: clamp(16px, 2.5vw, 20px);
  border-top: 1px solid var(--line);
}

.site-polished .faq-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.site-polished .faq-item h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.25;
}

.site-polished .faq-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.site-polished .faq-item a {
  font-weight: 700;
}

.site-polished details.faq-item {
  padding-top: 0;
  border-top: 1px solid var(--line);
}

.site-polished details.faq-item:first-of-type {
  border-top: 0;
}

.site-polished details.faq-item summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(14px, 2.5vw, 18px) 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.site-polished details.faq-item summary::-webkit-details-marker {
  display: none;
}

.site-polished details.faq-item summary::after {
  flex-shrink: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  content: "+";
}

.site-polished details.faq-item[open] summary::after {
  content: "−";
}

.site-polished details.faq-item[open] summary {
  padding-bottom: 8px;
}

.site-polished details.faq-item > p {
  margin-top: 0;
  padding-bottom: clamp(14px, 2.5vw, 18px);
}

.studio-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(34px, 6vw, 84px);
  padding: 18px 0 112px;
}

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

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-address {
  min-width: 0;
  padding-top: clamp(18px, 3vw, 34px);
  font-style: normal;
}

.footer-address strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.footer-address span,
.footer-address p {
  color: var(--muted);
  line-height: 1.62;
}

.footer-address span,
.footer-address .footer-address-line {
  display: block;
  max-width: 42rem;
  margin-top: 10px;
}

.footer-address .footer-address-line + .footer-address-line {
  margin-top: 4px;
}

.footer-address p {
  margin-top: 12px;
}

.footer-address a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.site-polished .footer-address--linked {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel) 70%, transparent);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.site-polished .footer-address--linked:hover,
.site-polished .footer-address--linked:focus-visible {
  border-color: color-mix(in srgb, var(--accent-2) 40%, var(--line));
  background: color-mix(in srgb, var(--accent-2) 8%, var(--panel));
  outline: none;
}

.site-polished .footer-address--linked strong,
.site-polished .footer-address--linked span {
  color: inherit;
}

.footer-map {
  grid-column: 1 / -1;
}

.map-frame {
  width: 100%;
  min-height: 330px;
  margin-top: 12px;
  border: 0;
  border-radius: 18px;
  filter: grayscale(0.72) contrast(1.04);
}

.footer-map .map-frame {
  margin-top: 0;
}

.footer-map .map-frame--deferred:not(.is-loaded) {
  display: none;
}

.map-load-button {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.map-load-button:hover,
.map-load-button:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  outline: 2px solid color-mix(in srgb, var(--accent) 20%, transparent);
  outline-offset: 2px;
}

.map-load-button[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transition: opacity 700ms ease calc(var(--i, 0) * 80ms);
}

.reveal.is-visible {
  opacity: 1;
}

@keyframes page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 1040px) {
  .site-polished .trust-pills {
    flex-wrap: nowrap;
  }
}

@media (max-width: 820px) {
  .trust-hero,
  .proof-grid,
  .studio-contact,
  .trust-bio {
    grid-template-columns: 1fr;
  }

  .hero-photo--mobile {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 3;
    max-height: clamp(180px, 34vw, 260px);
    min-height: 0;
    margin: 16px 0 6px;
    border-radius: 18px;
  }

  .site-polished .trust-pills {
    margin-top: 18px;
  }

  .hero-photo--desktop {
    display: none;
  }

  .site-polished .bio-layout {
    grid-template-columns: 1fr;
  }

  .site-polished .context-photo {
    order: -1;
    max-height: clamp(220px, 48vw, 320px);
  }
}

@media (max-width: 520px) {
  .proof-grid,
  .site-polished .bio-layout,
  .trust-bio,
  .studio-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar-page-label {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  .topbar {
    padding: max(9px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) 9px
      max(14px, env(safe-area-inset-left));
    gap: 8px;
  }

  .topbar-brand-detail {
    display: none;
  }

  .topbar-contact-link {
    min-height: 44px;
    padding: 0 12px;
  }

  .site-polished .trust-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-polished .trust-pills li {
    text-align: center;
  }

  .site-polished details.faq-item summary {
    min-height: 48px;
  }

  .map-load-button {
    width: 100%;
    min-height: 48px;
  }

  .footer-address--linked {
    padding: 16px 18px;
    line-height: 1.55;
  }

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

  .proof-grid .hero-photo {
    min-height: 0;
    max-height: clamp(200px, 52vw, 280px);
  }

  .trust-hero {
    padding-top: 34px;
  }

  .button {
    width: 100%;
  }

  .trust-copy h1 {
    line-height: 0.98;
  }

  .site-polished .trust-copy h1 {
    max-width: none;
  }

  .site-polished .hero-cta {
    flex-direction: column;
  }

  .site-polished .hero-cta .button {
    width: 100%;
  }
}

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

  .reveal {
    opacity: 1;
  }
}
