:root {
  --ivory: #fbf7ef;
  --pearl: #fffdf8;
  --champagne: #eadfcc;
  --sand: #d7c2a5;
  --travertine: #efe5d4;
  --charcoal: #23211e;
  --muted: #746f67;
  --navy: #132d3a;
  --teal: #2e6f70;
  --coral: #c98273;
  --gold: #b89654;
  --line: rgba(35, 33, 30, 0.14);
  --shadow: 0 26px 80px rgba(35, 33, 30, 0.14);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(184, 150, 84, 0.04) 1px, transparent 1px),
    var(--ivory);
  background-size: 72px 72px;
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--pearl);
  background: var(--teal);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 16px clamp(20px, 4vw, 58px);
  color: var(--pearl);
  transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  color: var(--charcoal);
  background: rgba(251, 247, 239, 0.88);
  box-shadow: 0 12px 38px rgba(35, 33, 30, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(0.86rem, 1.05vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a,
.site-footer a {
  position: relative;
}

.nav-links a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.nav-cta {
  padding: 0 20px;
  border: 1px solid currentColor;
}

.button {
  width: fit-content;
  padding: 0 25px;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.button.primary {
  color: var(--pearl);
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(19, 45, 58, 0.18);
}

.button.ghost {
  color: var(--pearl);
  border-color: rgba(255, 253, 248, 0.62);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(10px);
}

.section-pad {
  position: relative;
  padding: clamp(84px, 11vw, 154px) clamp(20px, 6vw, 88px);
}

.section-pad + .section-pad::before {
  position: absolute;
  top: 0;
  right: clamp(20px, 6vw, 88px);
  left: clamp(20px, 6vw, 88px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(184, 150, 84, 0.78), rgba(46, 111, 112, 0.24), transparent);
}

.section-pad + .section-pad::after {
  position: absolute;
  top: 1px;
  right: 0;
  left: 0;
  height: 56px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(35, 33, 30, 0.045), transparent);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  color: var(--pearl);
  font-size: clamp(4rem, 8.4vw, 8.6rem);
  line-height: 0.9;
}

h2 {
  color: var(--charcoal);
  font-size: clamp(3rem, 6.4vw, 6.6rem);
  line-height: 0.92;
}

h3 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 0.96;
}

p {
  line-height: 1.75;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-position: center;
  transform: scale(1.04);
  transition:
    opacity 1600ms ease,
    transform 7200ms ease;
}

.hero-slide-skyline {
  object-position: center;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-media::before {
  position: absolute;
  inset: -20%;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 66% 36%, rgba(234, 223, 204, 0.28), transparent 18rem),
    linear-gradient(112deg, transparent 28%, rgba(255, 253, 248, 0.16) 42%, transparent 56%);
  mix-blend-mode: screen;
  opacity: 0.64;
  transform: translate3d(-8%, 0, 0);
  animation: coastalLight 18s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(19, 45, 58, 0.84), rgba(19, 45, 58, 0.36) 56%, rgba(35, 33, 30, 0.5)),
    linear-gradient(180deg, rgba(19, 45, 58, 0.08), rgba(19, 45, 58, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(860px, calc(100% - 40px));
  margin: 0 0 clamp(78px, 11vh, 122px) clamp(20px, 7vw, 112px);
  color: var(--pearl);
}

.hero-content .eyebrow {
  color: var(--champagne);
}

.hero-content p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 34px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

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

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(24px, 6vh, 74px);
  z-index: 1;
  display: grid;
  gap: 5px;
  width: min(250px, calc(100% - 40px));
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 204, 0.26);
  border-left-color: rgba(234, 223, 204, 0.58);
  color: rgba(255, 253, 248, 0.82);
  background: rgba(19, 45, 58, 0.26);
  backdrop-filter: blur(14px);
}

.hero-note::before {
  position: absolute;
  inset: -1px;
  content: "";
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(234, 223, 204, 0.42), transparent 8rem),
    linear-gradient(120deg, transparent, rgba(184, 150, 84, 0.28), transparent);
  opacity: 0.5;
  pointer-events: none;
  transform: translateX(-28%);
  animation: noteGleam 7s ease-in-out infinite;
}

.hero-note > * {
  position: relative;
  z-index: 1;
}

.hero-note span:first-child {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.experiences {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.76), rgba(239, 229, 212, 0.78)),
    var(--travertine);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 64px);
}

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

.experience {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--pearl);
  background: var(--navy);
  isolation: isolate;
}

.experience.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 856px;
}

.experience::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(19, 45, 58, 0.04), rgba(19, 45, 58, 0.75));
}

.experience::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 253, 248, 0.28), transparent 11rem),
    linear-gradient(135deg, transparent 24%, rgba(234, 223, 204, 0.16), transparent 46%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.experience:hover::before {
  opacity: 1;
}

.experience img {
  transition: transform 700ms ease, opacity 700ms ease;
}

.experience:hover img {
  opacity: 0.94;
  transform: scale(1.045);
}

.experience div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.experience span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
}

.experience p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.98rem;
}

.process {
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) minmax(320px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.9)),
    var(--pearl);
}

.process-copy {
  position: sticky;
  top: 122px;
  align-self: start;
}

.process-copy p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
}

.process-steps {
  display: grid;
  border-top: 1px solid var(--line);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 72px clamp(210px, 15ch, 360px) minmax(220px, 1fr);
  column-gap: clamp(28px, 3.6vw, 58px);
  row-gap: 12px;
  align-items: baseline;
  padding: clamp(28px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--line);
}

.step::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(46, 111, 112, 0.42), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms ease;
}

.step:hover::before,
.step.is-visible::before {
  transform: scaleX(1);
}

.step span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

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

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(215, 194, 165, 0.22), transparent 42%),
    linear-gradient(180deg, #f6efe3, #fbf7ef);
}

.about-image {
  position: relative;
  min-height: clamp(440px, 62vw, 720px);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-position: 50% 50%;
  transform: scale(1.02);
  transition:
    opacity 1200ms ease,
    transform 4200ms ease;
}

.about-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-slide-speaker {
  object-position: 50% 42%;
}

.about-slide-tablescape {
  object-position: 50% 56%;
}

.about-slide-bloom {
  object-position: 50% 42%;
}

.about-copy p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.1rem;
}

.about-copy ul {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.about-copy li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moments {
  background:
    linear-gradient(180deg, rgba(184, 150, 84, 0.16), transparent 32%),
    var(--pearl);
}

.moments-heading {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.moments-heading h2 {
  max-width: 720px;
}

.moments-heading p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.moments-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.moment-feature {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 620px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 247, 239, 0.96), rgba(234, 223, 204, 0.7)),
    var(--travertine);
  box-shadow: var(--shadow);
}

.moment-feature img {
  object-fit: cover;
  object-position: 50% 50%;
  transition: opacity 220ms ease, transform 700ms ease;
}

.moment-feature img.is-contained {
  padding: clamp(12px, 2vw, 22px);
  object-fit: contain;
}

.moment-feature.is-changing img {
  opacity: 0.18;
  transform: scale(1.015);
}

.moment-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(184, 150, 84, 0.28);
  background: rgba(251, 247, 239, 0.76);
  box-shadow: 0 18px 54px rgba(17, 42, 54, 0.08);
}

.moment-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.moment-panel h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  font-weight: 500;
  line-height: 0.96;
}

.moment-panel p:not(.moment-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.moment-controls {
  align-self: end;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 12px;
  align-items: center;
  margin-top: clamp(22px, 5vw, 72px);
}

.moment-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(35, 33, 30, 0.2);
  color: var(--charcoal);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
  transition: border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.moment-arrow:hover,
.moment-arrow:focus-visible {
  border-color: var(--gold);
  color: var(--teal);
  transform: translateY(-1px);
}

.moment-count {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-align: center;
}

.moment-thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  gap: 10px;
  align-items: stretch;
  overflow-x: auto;
  padding: 2px 0 12px;
  scrollbar-color: rgba(184, 150, 84, 0.72) rgba(184, 150, 84, 0.16);
}

.moment-thumb-divider {
  display: grid;
  width: clamp(92px, 8vw, 128px);
  min-height: clamp(82px, 8vw, 118px);
  place-items: center;
  padding: 12px;
  border-left: 1px solid rgba(184, 150, 84, 0.42);
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.moment-thumb {
  width: clamp(82px, 8vw, 118px);
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: var(--travertine);
  cursor: pointer;
  opacity: 0.56;
  overflow: hidden;
  padding: 0;
  transition: border-color 240ms ease, opacity 240ms ease, transform 240ms ease;
}

.moment-thumb img {
  transition: transform 500ms ease;
}

.moment-thumb:hover,
.moment-thumb:focus-visible,
.moment-thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
}

.moment-thumb:hover img,
.moment-thumb:focus-visible img,
.moment-thumb.is-active img {
  transform: scale(1.05);
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(38px, 7vw, 96px);
  background:
    linear-gradient(135deg, rgba(46, 111, 112, 0.14), transparent 44%),
    linear-gradient(180deg, #f5efe3, var(--pearl));
}

.inquiry-copy {
  position: sticky;
  top: 122px;
  align-self: start;
}

.inquiry-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 24px 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.inquiry-contact {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.inquiry-contact a {
  color: var(--teal);
  font-weight: 800;
}

.inquiry-contact span {
  color: var(--muted);
  font-size: 0.94rem;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(184, 150, 84, 0.26);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 9px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(35, 33, 30, 0.16);
  color: var(--charcoal);
  background: rgba(251, 247, 239, 0.78);
  border-radius: 0;
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  outline: none;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 111, 112, 0.14);
}

.form-button {
  margin-top: 4px;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  gap: 32px;
  justify-content: space-between;
  padding: clamp(44px, 7vw, 76px) clamp(20px, 6vw, 88px);
  color: rgba(255, 253, 248, 0.74);
  background: var(--navy);
}

.footer-brand {
  display: block;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.94;
}

.site-footer p {
  max-width: 440px;
  margin: 18px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-content: start;
  justify-content: end;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

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

@keyframes slowDrift {
  from {
    transform: scale(1.02) translate3d(-0.6%, -0.4%, 0);
  }

  to {
    transform: scale(1.08) translate3d(0.6%, 0.4%, 0);
  }
}

@keyframes coastalLight {
  from {
    opacity: 0.34;
    transform: translate3d(-9%, -2%, 0) rotate(-2deg);
  }

  to {
    opacity: 0.72;
    transform: translate3d(7%, 2%, 0) rotate(2deg);
  }
}

@keyframes noteGleam {
  0%,
  100% {
    transform: translateX(-34%);
  }

  50% {
    transform: translateX(34%);
  }
}

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

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

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

  .hero-media::before,
  .hero-note::before {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience.large {
    min-height: 620px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .section-heading,
  .process,
  .about,
  .inquiry,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .process-copy,
  .inquiry-copy {
    position: static;
  }

  .step {
    grid-template-columns: 56px 1fr;
  }

  .step p {
    grid-column: 2;
  }

  .moments-carousel {
    grid-template-columns: 1fr;
  }

  .moment-feature {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .moment-panel {
    min-height: clamp(260px, 42vw, 360px);
    align-content: start;
  }

  .site-footer nav {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .brand {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }

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

  .nav-cta {
    display: none;
  }

  .section-pad {
    padding: 76px 18px;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 48px;
  }

  h1 {
    font-size: clamp(3.5rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-note {
    display: none;
  }

  .hero-actions,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .experience,
  .experience.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step p {
    grid-column: auto;
  }

  .about-image {
    min-height: 360px;
  }

  .moment-feature {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .moment-panel {
    padding: 22px 18px;
  }

  .moment-controls {
    grid-template-columns: 44px 1fr 44px;
  }

  .moment-arrow {
    width: 44px;
    height: 44px;
  }

  .moment-thumbs {
    grid-auto-columns: 76px;
  }

  .inquiry-form {
    padding: 22px 18px;
  }
}
