:root {
  --surface-page: #f6f6f5;
  --surface-card: #ffffff;
  --text-heading: #121212;
  --text-body: #4f4f4f;
  --text-muted: #767676;
  --text-eyebrow: #6f4f18;
  --ochre-800: #6f4f18;
  --ochre-700: #8a6320;
  --ochre-600: #a67c35;
  --ochre-050: #f7f1e6;
  --action-primary: #8a6320;
  --border-hairline: #ededec;
  --shadow-rest: 0 18px 40px -24px rgba(18, 18, 18, 0.16);
  --shadow-hover: 0 22px 48px -20px rgba(18, 18, 18, 0.22);
  --ease-motion: cubic-bezier(0.2, 0.6, 0.2, 1);
  --radius-card: 20px;
  --radius-photo: 12px;
  --radius-field: 10px;
  --radius-pill: 999px;
  --space-page: 44px;
  --space-page-mobile: 20px;
  --space-section: 160px;
  --space-section-mobile: 72px;
  --space-col: 120px;
  --space-card-gap: 28px;
  --space-eyebrow: 24px;
  --content-max: 1040px;
  /* Content sections: classic centered gutter */
  --page-inline: max(var(--space-page), calc((100% - var(--content-max)) / 2));
  /* Header + hero only: half left inset */
  --page-inline-tight: max(22px, calc((100% - var(--content-max)) / 4));
  --page-edge-right: max(16px, env(safe-area-inset-right, 0px));
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: Arimo, "Segoe UI", sans-serif;
  /* legacy aliases */
  --bg: var(--surface-page);
  --paper: var(--surface-card);
  --ink: var(--text-heading);
  --muted: var(--text-muted);
  --line: var(--border-hairline);
  --accent: var(--action-primary);
  --accent-dark: var(--ochre-800);
  --shadow: var(--shadow-rest);
  --radius-sm: var(--radius-photo);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms var(--ease-motion);
}

a:hover {
  color: var(--action-primary);
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.social-link:focus-visible {
  outline: 2px solid var(--action-primary);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--page-edge-right) 22px var(--page-inline-tight);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
  font-family: var(--font-display);
  line-height: 1;
  color: var(--text-heading);
}

.brand-mark {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

.brand-mark.is-phone {
  letter-spacing: 0.04em;
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.brand-latin {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--text-muted);
}

.brand-latin[hidden] {
  display: none;
}

.main-nav,
.header-actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav {
  flex-wrap: wrap;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.header-actions {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1;
}

.social-link svg {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--action-primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--action-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition:
    background 200ms var(--ease-motion),
    color 200ms var(--ease-motion),
    transform 200ms var(--ease-motion),
    box-shadow 200ms var(--ease-motion);
}

.button:hover {
  background: var(--ochre-800);
  color: #fff;
}

.button:active {
  transform: scale(0.98);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.section {
  width: 100%;
  margin: 0;
  padding: var(--space-section) var(--page-inline);
  border-bottom: 1px solid var(--border-hairline);
  animation: section-in 420ms var(--ease-motion) both;
}

#landing-blocks > .section:nth-child(even):not(.hero) {
  background: var(--surface-card);
}

.hero {
  display: grid;
  min-height: 78vh;
  align-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding-left: var(--page-inline-tight);
  padding-right: var(--page-inline);
  padding-block: clamp(48px, 8vw, 96px);
  border-bottom: 1px solid var(--border-hairline);
  background-image: url("IMG20260601100048(1).webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-heading);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 246, 245, 0.28);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(72%, 820px);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.72) 42%,
    rgba(255, 255, 255, 0.28) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 var(--space-eyebrow);
  color: var(--text-eyebrow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.brand-latin {
  text-transform: lowercase;
  letter-spacing: 0.22em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1.1;
  overflow: visible;
}

h1 {
  max-width: 18ch;
  margin-bottom: 28px;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.hero h1 {
  max-width: none;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.15;
}

p {
  margin-bottom: 0;
}

.story-copy p + p,
.rent-copy > p + p,
.content > p + p,
.feature > p + p,
.hero > p + p,
.pillars article p + p,
.news article p + p {
  margin-top: 20px;
}

.hero-copy {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 28px;
  line-height: 1.35;
}

.hero > p:not(.hero-copy):not(.eyebrow) {
  color: var(--text-body);
  font-size: 16px;
}

.space-note,
.muted {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.rent {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-col);
  align-items: center;
}

.embed-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-col);
  align-items: start;
}

.embed-copy p {
  margin: 0 0 20px;
}

.embed-copy p:last-child {
  margin-bottom: 0;
}

.embed-block .embed-frame {
  width: 100%;
  min-height: 400px;
  overflow: hidden;
}

.embed-block .embed-frame iframe {
  display: block;
  width: 100%;
  min-height: 400px;
  border: 0;
  border-radius: var(--radius-photo);
}

.embed-block .embed-frame > * {
  max-width: 100%;
}

.embed-caption {
  margin-top: 20px;
}

.embed-caption p {
  margin: 0 0 20px;
  color: var(--text-body);
}

.embed-caption p:last-child {
  margin-bottom: 0;
}

.rent-visual {
  margin: 0;
}

.rent-visual img,
.photo-gallery-slide img,
.event-tile img {
  display: block;
  width: 100%;
  height: min(52vh, 520px);
  object-fit: cover;
  border-radius: var(--radius-photo);
}

.event-tile img {
  height: auto;
  max-height: 160px;
  margin-bottom: 10px;
}

.price {
  margin: 16px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text-heading);
  font-variant-numeric: oldstyle-nums;
}

.photo-gallery {
  --gallery-visible: 3;
  --gallery-gap: var(--space-card-gap);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.photo-gallery-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  container-type: inline-size;
  container-name: photo-gallery;
}

.photo-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.photo-gallery-track {
  display: flex;
  gap: var(--gallery-gap);
  width: max-content;
  min-width: 100%;
}

.photo-gallery-slide {
  flex: 0 0
    calc(
      (100cqi - (var(--gallery-visible) - 1) * var(--gallery-gap)) / var(--gallery-visible)
    );
  margin: 0;
  scroll-snap-align: start;
  min-width: 0;
}

.photo-gallery-nav {
  appearance: none;
  border: 1px solid var(--border-hairline);
  background: var(--surface-card);
  color: var(--ochre-800);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms var(--ease-motion), background 200ms var(--ease-motion),
    border-color 200ms var(--ease-motion), opacity 200ms var(--ease-motion);
}

.photo-gallery-nav:hover:not(:disabled) {
  color: var(--surface-card);
  background: var(--ochre-800);
  border-color: var(--ochre-800);
}

.photo-gallery-nav:active:not(:disabled) {
  transform: scale(0.98);
}

.photo-gallery-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.photo-gallery:not(.is-scrollable) .photo-gallery-nav {
  visibility: hidden;
}

.landing-video-block {
  border-bottom: 1px solid var(--border-hairline);
}

.landing-video {
  margin-top: 24px;
}

.landing-video video,
.media-preview video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(70vh, 640px);
  background: #111;
  border-radius: var(--radius-photo);
}

.media-preview video {
  max-height: 180px;
}

.split {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(0, 1.1fr);
  gap: var(--space-col);
  align-items: start;
  overflow: visible;
}

.story-copy,
.split > p,
.ceremony p,
.feature p {
  color: var(--text-body);
  font-size: 16px;
}

.feature {
  max-width: var(--content-max);
  text-align: left;
}

.services .section-heading {
  margin-bottom: 40px;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-hairline);
}

.service-item {
  margin: 0;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-hairline);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

.service-item:hover {
  box-shadow: none;
}

.service-item h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.service-item .eyebrow {
  margin-bottom: 12px;
}

.service-item .price {
  margin: 16px 0 20px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.service-item .button {
  margin-top: 8px;
}

.news,
.product-grid,
.region-grid,
.pillars {
  display: grid;
  gap: var(--space-card-gap);
}

.news {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news article,
.product-grid article,
.region-grid article,
.pillars article,
.class-card,
.event-tile,
.class-form-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  background: var(--surface-card);
  box-shadow: var(--shadow-rest);
  transition: box-shadow 200ms var(--ease-motion);
}

.news article:hover,
.product-grid article:hover,
.region-grid article:hover,
.pillars article:hover,
.class-card:hover,
.event-tile:hover {
  box-shadow: var(--shadow-hover);
}

.pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillars h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.pillars p,
.product-grid p,
.region-grid p {
  color: var(--text-body);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading a {
  color: var(--action-primary);
  font-weight: 700;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid article {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: flex-end;
}

.product-grid h3 {
  margin-bottom: 0;
}

.region-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.region-grid a {
  color: var(--action-primary);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.2fr);
  gap: 32px;
  padding: 72px var(--page-inline);
  background: var(--surface-card);
  color: var(--text-body);
  border-top: 1px solid var(--border-hairline);
}

.site-footer #site-footer-line.brand-latin {
  font-size: 1.44rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-heading);
}

.site-footer p,
.site-footer nav {
  color: var(--text-muted);
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.copyright {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-hairline);
  font-size: 0.86rem;
}

.landing-calendar .muted {
  margin-bottom: 18px;
}

.mini-cal-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
}

.mini-cal-week-label {
  margin: 0;
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-body);
}

.mini-cal-week-btn {
  appearance: none;
  border: 1px solid var(--border-hairline);
  background: var(--surface-card);
  color: var(--ochre-800);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms var(--ease-motion), background 200ms var(--ease-motion),
    border-color 200ms var(--ease-motion), opacity 200ms var(--ease-motion);
}

.mini-cal-week-btn:hover:not(:disabled) {
  color: var(--surface-card);
  background: var(--ochre-800);
  border-color: var(--ochre-800);
}

.mini-cal-week-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.mini-cal-week-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.mini-cal-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.mini-cal {
  display: grid;
  grid-template-columns: 40px repeat(7, minmax(64px, 1fr));
  gap: 1px;
  background: var(--border-hairline);
  min-width: 560px;
}

.mini-cal > div {
  background: var(--surface-card);
  padding: 6px;
  min-height: 36px;
  font-size: 0.75rem;
  text-align: center;
}

.mini-cal-head {
  background: var(--ochre-050) !important;
  font-weight: 700;
  color: var(--text-heading);
}

.mini-cal-cell.is-busy {
  background: var(--ochre-050);
  color: var(--ochre-800);
  font-weight: 700;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-cal-busy {
  position: relative;
  z-index: 2;
  padding: 0 !important;
  background: transparent !important;
  min-height: 0 !important;
  pointer-events: none;
}

.mini-cal-busy-fill {
  position: absolute;
  left: 1px;
  right: 1px;
  top: var(--busy-top, 0%);
  height: var(--busy-height, 100%);
  box-sizing: border-box;
  background: var(--ochre-050);
  color: var(--ochre-800);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  pointer-events: auto;
  border-radius: 2px;
}

.mini-cal-busy.is-class .mini-cal-busy-fill {
  cursor: pointer;
}

.mini-cal-busy.is-busy-span .mini-cal-busy-fill {
  padding: 8px 6px;
}

.mini-cal-label {
  display: block;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.signup-cta {
  position: fixed;
  right: var(--page-edge-right);
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 20;
  min-height: 48px;
  padding: 0 22px;
  box-shadow: var(--shadow-rest);
}

.classes-page h1 {
  margin-bottom: 8px;
}

.classes-brand {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  text-transform: none;
}

.class-select-label {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  max-width: 520px;
}

.class-select-label select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-field, 10px);
  font: inherit;
  background: var(--surface-card, #fff);
}

.class-prices {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
  max-width: 520px;
}

.class-visit-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.class-visit-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-field, 10px);
  cursor: pointer;
}

.mini-cal-busy.is-class {
  cursor: pointer;
}

.class-popup[hidden] {
  display: none !important;
}

.class-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.class-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.4);
}

.class-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 20px;
  background: var(--surface-card, #fff);
  border-radius: var(--radius-card, 20px);
  box-shadow: var(--shadow-rest);
}

.class-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.class-popup-head h2 {
  margin: 0;
  font-size: 1.4rem;
}

.class-popup-close {
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.class-popup-dialog img {
  width: 100%;
  border-radius: 12px;
  margin: 12px 0;
}

.class-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 36px;
}

.event-tile-grid {
  display: grid;
  gap: var(--space-card-gap);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 20px 0 28px;
}

.classes-events,
.classes-section {
  margin-top: 28px;
}

.class-card h2 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.class-form-card {
  margin-bottom: 48px;
}

.class-form {
  display: grid;
  gap: 14px;
}

.class-form label {
  display: grid;
  gap: 6px;
}

.class-form input,
.class-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-field);
  font: inherit;
  background: var(--surface-card);
  color: var(--text-heading);
}

.class-form .btnbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

img,
video {
  max-width: 100%;
  height: auto;
}

@keyframes section-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .section,
  .button,
  a,
  .news article,
  .product-grid article,
  .pillars article,
  .class-card,
  .event-tile {
    animation: none !important;
    transition: none !important;
  }

  .button:active {
    transform: none;
  }

  .photo-gallery-viewport {
    scroll-behavior: auto;
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .site-header,
  .site-footer,
  .split,
  .rent,
  .embed-layout,
  .section-heading {
    display: block;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    margin-top: 18px;
    row-gap: 10px;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 18px;
    row-gap: 10px;
  }

  .header-actions .main-nav {
    margin-top: 0;
  }

  .hero::after {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.55) 55%,
      rgba(255, 255, 255, 0.12) 85%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .news,
  .pillars,
  .product-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .product-grid article {
    min-height: 200px;
  }

  .photo-gallery {
    --gallery-visible: 2;
    gap: 8px;
  }

  .rent-visual img,
  .photo-gallery-slide img {
    height: min(42vh, 360px);
  }

  .rent,
  .split {
    gap: 40px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-edge-right: max(12px, env(safe-area-inset-right, 0px));
  }

  .section {
    padding: var(--space-section-mobile) var(--space-page-mobile);
  }

  .hero {
    padding-left: var(--space-page-mobile);
    padding-right: var(--space-page-mobile);
  }

  .site-header {
    padding: 16px var(--page-edge-right) 16px var(--space-page-mobile);
  }

  .hero-copy {
    font-size: 22px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .main-nav {
    gap: 12px 14px;
    font-size: 0.86rem;
  }

  .signup-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }

  .photo-gallery {
    --gallery-visible: 1;
  }

  .site-footer {
    padding: 48px var(--space-page-mobile);
  }
}
