:root {
  --color-background: #f6f2eb;
  --color-background-deep: #fffaf5;
  --color-panel: rgba(255, 255, 255, 0.8);
  --color-panel-strong: #ffffff;
  --color-panel-dark: rgba(77, 97, 88, 0.92);
  --color-panel-dark-strong: #43584f;
  --color-text: #1f2320;
  --color-text-soft: #5a5d5a;
  --color-text-light: rgba(31, 35, 32, 0.76);
  --color-line: rgba(209, 196, 183, 0.44);
  --color-line-light: rgba(67, 88, 79, 0.14);
  --color-accent: #b98d71;
  --color-accent-soft: #f2dfd3;
  --color-gold: #d1c4b7;
  --color-sage: #6b7e73;
  --color-sage-soft: #d6e6dd;
  --font-sans: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Bodoni Moda", "Times New Roman", serif;
  --radius-xl: 42px;
  --radius-large: 30px;
  --radius-medium: 22px;
  --radius-small: 14px;
  --shadow-soft: 0 24px 60px rgba(64, 84, 74, 0.12);
  --shadow-strong: 0 34px 84px rgba(64, 84, 74, 0.16);
  --shadow-card: 0 18px 34px rgba(41, 39, 34, 0.08);
  --max-width: 1260px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(242, 223, 211, 0.8), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(214, 230, 221, 0.72), transparent 22%),
    linear-gradient(180deg, #fffaf5 0%, #f6f2eb 38%, #f5eee5 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 8vh;
  left: -12vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(242, 223, 211, 0.64), rgba(242, 223, 211, 0));
  filter: blur(18px);
}

body::after {
  right: -10vw;
  bottom: 6vh;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(214, 230, 221, 0.52), rgba(214, 230, 221, 0));
  filter: blur(22px);
}

::selection {
  background: rgba(185, 141, 113, 0.18);
  color: var(--color-text);
}

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

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

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
dt {
  margin-top: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

body.intro-active {
  overflow: hidden;
}

#intro-overlay {
  display: none;
}

.js #intro-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  background-color: #f8f4ee;
  background:
    linear-gradient(180deg, #fffaf5 0%, #f6f2eb 58%, #f1e8dd 100%),
    radial-gradient(circle at 20% 18%, rgba(242, 223, 211, 0.72), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(214, 230, 221, 0.58), transparent 20%),
    repeating-linear-gradient(90deg, rgba(95, 110, 100, 0.028) 0, rgba(95, 110, 100, 0.028) 1px, transparent 1px, transparent 12px);
  transition: opacity 0.65s ease;
}

#intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.intro-wrapper {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  width: min(92vw, 760px);
  padding: 2rem;
  text-align: center;
}

.intro-video-frame {
  width: min(100%, 620px);
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(101, 95, 87, 0.12);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 30px 80px rgba(31, 44, 37, 0.18);
}

.intro-video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.intro-message {
  max-width: 28ch;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.intro-message.show {
  opacity: 1;
  transform: translateY(0);
}

.intro-skip {
  border: 1px solid rgba(101, 95, 87, 0.2);
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(101, 95, 87, 0.36);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

[data-speed] {
  --base-x: 0px;
  --base-y: 0px;
  --base-rotate: 0deg;
  --base-scale: 1;
  --motion-x: 0px;
  --motion-y: 0px;
  --motion-rotate: 0deg;
  --motion-scale: 0;
  --hover-x: 0px;
  --hover-y: 0px;
  --hover-rotate: 0deg;
  --hover-scale: 0;
  transform:
    translate3d(
      calc(var(--base-x) + var(--motion-x) + var(--hover-x)),
      calc(var(--base-y) + var(--motion-y) + var(--hover-y)),
      0
    )
    rotate(calc(var(--base-rotate) + var(--motion-rotate) + var(--hover-rotate)))
    scale(calc(var(--base-scale) + var(--motion-scale) + var(--hover-scale)));
  will-change: transform;
}

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

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 40;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(209, 196, 183, 0.35);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(33, 30, 25, 0.08);
  transform: translateY(var(--header-y, 0px)) scale(var(--header-scale, 1));
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  padding: 0.3rem;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(29, 33, 28, 0.72);
}

.site-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 141, 113, 0.92), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  padding: 0;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 0.28s ease, opacity 0.28s ease, background 0.28s ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  transform: translateY(-6px);
}

.nav-toggle-icon::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(0) rotate(-45deg);
}

main {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.6rem 0 5rem;
}

section {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: stretch;
  min-height: min(88vh, 920px);
  margin-top: 1rem;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(242, 223, 211, 0.82), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(214, 230, 221, 0.72), transparent 24%),
    radial-gradient(circle at 58% 68%, rgba(223, 231, 240, 0.68), transparent 30%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(246, 242, 235, 0.92));
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(0deg, rgba(107, 126, 115, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 126, 115, 0.05) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.32;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 100%);
}

.hero::after {
  right: -12%;
  bottom: -24%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(209, 196, 183, 0.32);
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  padding: clamp(0.2rem, 1vw, 1rem) 0;
  color: var(--color-text);
}

.hero-eyebrow,
.eyebrow--light {
  color: rgba(31, 35, 32, 0.6);
}

.hero-kicker {
  max-width: 36ch;
  margin: 0;
  color: rgba(31, 35, 32, 0.62);
  font-size: 0.98rem;
  letter-spacing: 0.05em;
}

.hero h1 {
  max-width: 8.6ch;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-lede {
  max-width: 42ch;
  font-size: 1.05rem;
  color: rgba(31, 35, 32, 0.76);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-gold));
  color: var(--color-text);
  box-shadow: 0 18px 34px rgba(185, 141, 113, 0.16);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(185, 141, 113, 0.22);
}

.button.ghost {
  border-color: rgba(209, 196, 183, 0.55);
  background: rgba(255, 255, 255, 0.62);
  color: var(--color-text);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(185, 141, 113, 0.42);
  background: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 0;
}

.hero-metric {
  padding: 1rem 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(209, 196, 183, 0.35);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
}

.hero-metric dt {
  margin-bottom: 0.22rem;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  letter-spacing: -0.03em;
}

.hero-metric dd {
  margin: 0;
  color: rgba(31, 35, 32, 0.6);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-stage {
  display: grid;
  align-items: center;
  min-height: 620px;
}

.hero-stage-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.62fr);
  grid-template-areas:
    "tall small"
    "tall wide";
  gap: 1rem;
  align-items: stretch;
}

.hero-stage-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(209, 196, 183, 0.28);
  box-shadow: 0 24px 56px rgba(64, 84, 74, 0.14);
}

.hero-stage-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(67, 88, 79, 0), rgba(67, 88, 79, 0.82));
}

.hero-stage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage-card figcaption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  color: #fff7ee;
}

.hero-stage-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stage-meta {
  font-size: 0.74rem;
  opacity: 0.74;
  letter-spacing: 0.08em;
}

.hero-stage-card--tall {
  grid-area: tall;
  min-height: 560px;
}

.hero-stage-card--small {
  grid-area: small;
  min-height: 250px;
}

.hero-stage-card--wide {
  grid-area: wide;
  min-height: 290px;
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(209, 196, 183, 0.32);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.hero-float-card--quote {
  left: -4%;
  bottom: 4%;
  width: min(280px, 48%);
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
}

.hero-float-card--quote p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.hero-float-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-float-card--stamp {
  right: 2%;
  top: 3%;
  width: 138px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.96)),
    linear-gradient(135deg, var(--color-accent-soft), var(--color-gold));
  border: 1px solid rgba(185, 141, 113, 0.18);
  animation: pulse-stamp 7s ease-in-out infinite;
}

.hero-float-card--stamp span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-float-card--stamp strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.55rem;
}

.marquee-band {
  position: relative;
  overflow: hidden;
  margin-top: 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(101, 95, 87, 0.12);
  background: rgba(255, 250, 243, 0.6);
  box-shadow: var(--shadow-card);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  min-width: 100%;
  padding: 1rem 1.4rem;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  position: relative;
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(29, 33, 28, 0.72);
}

.marquee-track span::after {
  content: "\00B7";
  position: absolute;
  right: -1.3rem;
  opacity: 0.4;
}

.about,
.feature-strip,
.signature,
.gallery,
.cta {
  margin-top: 6.5rem;
}

.section-header {
  display: grid;
  gap: 0.9rem;
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header--left {
  margin: 0;
  text-align: left;
}

.section-header--left .eyebrow {
  margin-left: 0;
}

.section-header h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-header p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.about-intro,
.gallery-top,
.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: 2rem;
  align-items: end;
}

.about-note,
.gallery-note,
.contact-note {
  padding: 1.4rem 1.5rem;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(101, 95, 87, 0.12);
  box-shadow: var(--shadow-card);
}

.about-note-label,
.gallery-note-kicker,
.contact-note-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.about-note p,
.gallery-note p,
.contact-note p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
  margin-top: 2.4rem;
}

.about-visual {
  display: grid;
  gap: 1.3rem;
  align-self: start;
}

.about-photo-stack {
  position: relative;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 34px;
  background:
    linear-gradient(155deg, rgba(255, 250, 243, 0.88), rgba(233, 221, 209, 0.72));
  border: 1px solid rgba(101, 95, 87, 0.1);
  box-shadow: var(--shadow-soft);
}

.about-photo {
  object-fit: cover;
  box-shadow: 0 22px 48px rgba(38, 34, 29, 0.16);
}

.about-photo--primary {
  width: min(100%, 500px);
  aspect-ratio: 4 / 5;
  border-radius: 30px;
}

.about-photo--secondary {
  position: absolute;
  right: -2%;
  bottom: -6%;
  width: min(44%, 220px);
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  border: 8px solid rgba(255, 250, 243, 0.95);
  transform: rotate(6deg);
}

.about-badge {
  position: absolute;
  left: -4%;
  top: 8%;
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(67, 88, 79, 0.92);
  color: #f8f0e7;
  box-shadow: 0 20px 50px rgba(64, 84, 74, 0.18);
}

.badge-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.badge-subtitle {
  font-size: 0.78rem;
  color: rgba(248, 240, 231, 0.7);
}

.about-stat-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat {
  padding: 1.15rem 1rem;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(101, 95, 87, 0.12);
  box-shadow: var(--shadow-card);
}

.about-stat strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.about-stat span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.about-content {
  display: grid;
  gap: 1.6rem;
}

.about-lede {
  margin-bottom: 0;
  max-width: 54ch;
  font-size: 1.08rem;
  color: var(--color-text);
}

.about-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-pill {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(101, 95, 87, 0.12);
  background: rgba(255, 250, 243, 0.68);
  box-shadow: var(--shadow-card);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-card {
  padding: 1.6rem;
  border-radius: 26px;
  background: rgba(255, 250, 243, 0.76);
  border: 1px solid rgba(101, 95, 87, 0.12);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover,
.about-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(39, 36, 31, 0.14);
}

.about-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.about-card p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.feature-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(242, 223, 211, 0.72), transparent 30%),
    radial-gradient(circle at 80% 15%, rgba(214, 230, 221, 0.72), transparent 24%),
    linear-gradient(145deg, rgba(255, 251, 245, 0.94), rgba(242, 239, 233, 0.9));
  box-shadow: var(--shadow-strong);
}

.feature-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(107, 126, 115, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 126, 115, 0.05) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.24;
}

.feature-lead,
.feature {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  border: 1px solid rgba(209, 196, 183, 0.3);
}

.feature-lead {
  padding: 1.9rem;
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-text);
}

.feature-lead h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.feature-lead p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.feature {
  display: grid;
  align-content: space-between;
  gap: 1.4rem;
  min-height: 280px;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
}

.feature-number {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.06em;
  color: rgba(67, 88, 79, 0.85);
}

.feature h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.feature p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.signature-inner {
  position: relative;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 250, 243, 0.82), rgba(236, 226, 216, 0.8));
  border: 1px solid rgba(101, 95, 87, 0.12);
  box-shadow: var(--shadow-soft);
}

.signature-copy p {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--color-text-soft);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.signature-card {
  padding: 1.7rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(101, 95, 87, 0.1);
  box-shadow: var(--shadow-card);
}

.signature-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 198, 171, 0.46), rgba(214, 181, 127, 0.42));
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signature-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.signature-card p {
  margin-bottom: 1rem;
  color: var(--color-text-soft);
}

.signature-note {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-sage);
}

.gallery-top {
  align-items: center;
}

.gallery-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  margin-top: 2.2rem;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(220px, 260px));
  grid-auto-columns: minmax(240px, 320px);
  gap: 1rem;
  padding: 1.2rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1.2rem;
  border-radius: 34px;
  border: 1px solid rgba(101, 95, 87, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.9), rgba(241, 232, 221, 0.82));
  box-shadow: var(--shadow-soft);
}

.gallery-grid::-webkit-scrollbar {
  height: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(101, 95, 87, 0.18);
}

.gallery-grid::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 0;
  height: 100%;
  border-radius: 26px;
  cursor: pointer;
  scroll-snap-align: start;
  border: 1px solid rgba(101, 95, 87, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  --hover-y: -4px;
  box-shadow: 0 22px 44px rgba(40, 36, 31, 0.16);
  z-index: 1;
}

.gallery-item--featured {
  grid-row: span 2;
}

.gallery-item--featured .gallery-media::after {
  opacity: 0.92;
}

.gallery-item--tilted {
  --base-rotate: -1deg;
}

.gallery-item--tilted:hover,
.gallery-item--tilted:focus-visible {
  --hover-y: -4px;
}

.gallery-media {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
}

.gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 18, 16, 0) 30%, rgba(14, 18, 16, 0.78) 100%);
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover .gallery-media img,
.gallery-item:focus-visible .gallery-media img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  color: #fff7ee;
}

.gallery-caption-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-caption-meta {
  font-size: 0.74rem;
  opacity: 0.78;
  letter-spacing: 0.08em;
}

.gallery-nav {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(101, 95, 87, 0.12);
  background: rgba(255, 250, 243, 0.88);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(40, 36, 31, 0.12);
}

.gallery-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-card);
}

.gallery-nav span {
  font-size: 1.8rem;
  line-height: 1;
}

.gallery-hint {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(29, 33, 28, 0.56);
}

.cta-card {
  position: relative;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(242, 223, 211, 0.72), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(214, 230, 221, 0.72), transparent 24%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(246, 242, 235, 0.92));
  box-shadow: var(--shadow-strong);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(107, 126, 115, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 126, 115, 0.04) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.22;
}

.contact-intro,
.contact-content {
  position: relative;
  z-index: 1;
}

.contact-highlight .section-header,
.contact-highlight .section-header p {
  color: var(--color-text);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.contact-card {
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(209, 196, 183, 0.26);
  box-shadow: 0 22px 44px rgba(64, 84, 74, 0.12);
  display: grid;
  gap: 0.85rem;
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.contact-card p,
.contact-card ul {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card a {
  font-weight: 500;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239, 198, 171, 0.78), rgba(214, 181, 127, 0.68));
  color: #43584f;
  box-shadow: 0 14px 28px rgba(64, 84, 74, 0.12);
  overflow: hidden;
}

.contact-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.email-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 2v.17l8 5 8-5V7H4Zm16 10V9.17l-8 5-8-5V17h16Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 2v.17l8 5 8-5V7H4Zm16 10V9.17l-8 5-8-5V17h16Z'/%3E%3C/svg%3E");
}

.studio-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m12 3 8 6v12h-6v-5H10v5H4V9l8-6Zm0 2.5L6 10v9h2v-5h8v5h2v-9l-6-4.5Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m12 3 8 6v12h-6v-5H10v5H4V9l8-6Zm0 2.5L6 10v9h2v-5h8v5h2v-9l-6-4.5Z'/%3E%3C/svg%3E");
}

.social-icon {
  gap: 0.3rem;
  padding: 0.28rem 0.4rem;
}

.social-icon::before {
  display: none;
}

.social-icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.social-link-list {
  display: grid;
  gap: 0.75rem;
}

.social-link a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.social-link-icon img {
  max-width: 68%;
  max-height: 68%;
  object-fit: contain;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 2.8rem 0 4rem;
  text-align: center;
  color: rgba(29, 33, 28, 0.56);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(12, 18, 15, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-shell {
  position: relative;
  width: min(92vw, 1080px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.lightbox-figure {
  position: relative;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.lightbox-figure img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  color: #fff7ee;
}

.lightbox-caption-text {
  display: grid;
  gap: 0.15rem;
}

.lightbox-caption-title {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lightbox-caption-meta {
  font-size: 0.88rem;
  color: rgba(255, 247, 238, 0.72);
}

.lightbox-counter {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 247, 238, 0.6);
}

.lightbox-close,
.lightbox-nav {
  border: none;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: 1.5rem;
  box-shadow: var(--shadow-card);
}

.lightbox-nav {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff7ee;
  font-size: 1.8rem;
  display: grid;
  place-items: center;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  transform: translateY(-2px);
}

.lightbox-nav,
.lightbox-close,
.gallery-nav,
.button,
.nav-toggle {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse-stamp {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(3deg);
  }
}

@media (min-width: 961px) {
  .about-visual {
    position: sticky;
    top: 7.4rem;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-stage {
    min-height: 0;
  }

  .hero-stage-grid {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-float-card--quote {
    left: 2%;
    bottom: 5%;
  }

  .about-layout,
  .about-intro,
  .gallery-top,
  .contact-intro {
    grid-template-columns: 1fr;
  }

  .about-card-grid,
  .signature-grid,
  .contact-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .site-header {
    border-radius: 28px;
  }

  .hero {
    padding: 1.7rem;
  }

  .hero-metrics,
  .about-stat-rail {
    grid-template-columns: 1fr;
  }

  .hero-stage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "tall small"
      "wide wide";
  }

  .hero-stage-card--tall {
    min-height: 420px;
  }

  .hero-stage-card--small,
  .hero-stage-card--wide {
    min-height: 220px;
  }

  .about-photo--secondary {
    width: min(42%, 180px);
  }

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

  .gallery-nav {
    display: none;
  }

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

  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 6rem;
  }

  .site-header {
    width: min(calc(100% - 1rem), var(--max-width));
    padding: 0.9rem 1rem;
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.94);
    box-shadow: var(--shadow-soft);
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .js .site-nav.is-open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    padding: 1rem 1.1rem 1.2rem;
  }

  .site-nav a {
    width: 100%;
  }

  main,
  .site-footer {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-stage-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tall"
      "wide"
      "small";
  }

  .hero-stage-card--tall,
  .hero-stage-card--wide,
  .hero-stage-card--small {
    min-height: 240px;
  }

  .hero-float-card--quote {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-float-card--stamp {
    width: 110px;
  }

  .marquee-track {
    gap: 1.8rem;
    padding: 0.9rem 1rem;
  }

  .about,
  .feature-strip,
  .signature,
  .gallery,
  .cta {
    margin-top: 5rem;
  }

  .section-header h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-photo-stack {
    padding: 1rem;
  }

  .about-badge {
    left: auto;
    right: 1rem;
    top: 1rem;
  }

  .about-card-grid,
  .signature-grid,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-columns: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .gallery-item--featured {
    grid-row: auto;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 640px) {
  .intro-wrapper {
    padding: 1.2rem;
  }

  .intro-video-frame {
    border-radius: 30px;
  }

  .site-header {
    top: 0.5rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .hero,
  .feature-strip,
  .signature-inner,
  .cta-card {
    border-radius: 30px;
  }

  .hero {
    padding: 1.35rem;
  }

  .hero-copy {
    gap: 1rem;
  }

  .hero-kicker,
  .hero-lede,
  .section-header p,
  .about-lede {
    font-size: 0.98rem;
  }

  .hero-metric {
    padding: 0.9rem;
  }

  .about-photo--secondary {
    display: none;
  }

  .about-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1rem;
    width: fit-content;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .gallery-item--tilted,
  .gallery-item--tilted:hover,
  .gallery-item--tilted:focus-visible {
    transform: none;
  }

  .contact-card {
    padding: 1.4rem;
  }
}

.hero-scene {
  position: relative;
  height: 280vh;
  margin-top: 1rem;
}

.hero-scene .hero {
  --hero-progress: 0;
  --hero-ease: 0;
  position: sticky;
  top: 1.1rem;
  min-height: calc(100vh - 2.2rem);
  height: calc(100vh - 2.2rem);
  margin-top: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  grid-column: 1 / -1;
  grid-row: 1;
  height: 100%;
}

.hero-background-words {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-background-word {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(4.8rem, 12vw, 11.4rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: lowercase;
  color: rgba(185, 141, 113, 0.085);
  user-select: none;
}

.hero-background-word--one {
  left: -1%;
  bottom: -3%;
  transform: translate3d(
    calc(var(--hero-ease) * -62px),
    calc(var(--hero-ease) * -120px),
    0
  );
}

.hero-background-word--two {
  right: 2%;
  top: 6%;
  color: rgba(107, 126, 115, 0.11);
  transform: translate3d(
    calc(var(--hero-ease) * 60px),
    calc(var(--hero-ease) * -92px),
    0
  );
}

.hero-scene .hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: min(100%, 31rem);
  max-width: 31rem;
  padding-top: clamp(0.6rem, 2vh, 1.8rem);
  transform: translate3d(
    calc(var(--hero-ease) * -32px),
    calc(var(--hero-ease) * -112px),
    0
  );
}

.hero-scene .hero-kicker {
  max-width: 25ch;
  transform: translate3d(0, calc(var(--hero-ease) * -18px), 0);
}

.hero-scene .hero h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 5.8vw, 5.4rem);
  line-height: 0.92;
  text-wrap: balance;
  transform-origin: left top;
  transform: translate3d(0, calc(var(--hero-ease) * -82px), 0)
    scale(calc(1 - var(--hero-ease) * 0.08));
}

.hero-scene .hero-lede {
  max-width: 34ch;
  transform: translate3d(0, calc(var(--hero-ease) * -40px), 0);
}

.hero-scene .hero-actions {
  transform: translate3d(0, calc(var(--hero-ease) * -44px), 0);
}

.hero-scene .hero-metrics {
  transform: translate3d(0, calc(var(--hero-ease) * -52px), 0);
  opacity: calc(0.64 + var(--hero-progress) * 0.36);
}

.hero-scene .hero-stage {
  position: absolute;
  inset: 0 0 0 45%;
  display: grid;
  align-items: center;
  overflow: visible;
  padding-top: clamp(0.2rem, 1vh, 1rem);
  transform: translate3d(
    calc(var(--hero-ease) * 34px),
    calc(var(--hero-ease) * -54px),
    0
  );
}

.hero-scene .hero-stage::before {
  content: "";
  position: absolute;
  inset: 9% 0 10% 6%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 22% 18%, rgba(246, 217, 208, 0.6), rgba(246, 217, 208, 0) 38%),
    radial-gradient(circle at 74% 80%, rgba(220, 229, 224, 0.54), rgba(220, 229, 224, 0) 42%),
    linear-gradient(145deg, rgba(255, 251, 246, 0.92), rgba(250, 248, 243, 0.78));
  border: 1px solid rgba(209, 196, 183, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 32px 80px rgba(97, 89, 78, 0.08);
}

.hero-scene .hero-stage::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: clamp(260px, 34vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(209, 196, 183, 0.3);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 72%);
  opacity: 0.7;
}

.hero-scene .hero-stage-grid {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  margin-left: auto;
  padding-right: 0;
}

.hero-scene .hero-stage-grid::before {
  content: "";
  position: absolute;
  left: 22%;
  top: 20%;
  width: 30%;
  height: 38%;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  transform: translate3d(
      calc(var(--hero-ease) * -18px),
      calc(var(--hero-ease) * 18px),
      0
    )
    rotate(-8deg);
}

.hero-scene .hero-stage-grid::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 10%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.86), rgba(255, 248, 240, 0.16));
  opacity: 0.56;
  filter: blur(4px);
}

.hero-scene .hero-stage-card {
  position: absolute;
  z-index: 3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-scene .hero-stage-card--tall {
  right: 18%;
  top: 13%;
  width: 38%;
  height: 70%;
  transform: translate3d(
    calc(46px - var(--hero-progress) * 46px + var(--hero-ease) * -14px),
    calc(18px - var(--hero-progress) * 18px + var(--hero-ease) * 10px),
    0
  )
  rotate(calc(-7deg + var(--hero-progress) * 6deg + var(--hero-ease) * 1.5deg))
  scale(calc(0.94 + var(--hero-progress) * 0.09));
}

.hero-scene .hero-stage-card--wide {
  right: -6%;
  bottom: 12%;
  width: 52%;
  height: 32%;
  z-index: 2;
  opacity: clamp(0.46, calc(0.46 + var(--hero-progress) * 0.54), 1);
  transform: translate3d(
    calc(110px - var(--hero-progress) * 110px + var(--hero-ease) * 16px),
    calc(70px - var(--hero-progress) * 70px + var(--hero-ease) * 10px),
    0
  )
  rotate(calc(8deg - var(--hero-progress) * 7deg - var(--hero-ease) * 2deg))
  scale(calc(0.92 + var(--hero-progress) * 0.08));
}

.hero-scene .hero-stage-card--small {
  right: 4%;
  top: 18%;
  width: 22%;
  height: 30%;
  z-index: 4;
  opacity: clamp(0, calc(var(--hero-progress) * 4 - 0.2), 1);
  transform: translate3d(
    calc(74px - var(--hero-progress) * 74px + var(--hero-ease) * 26px),
    calc(-26px + var(--hero-progress) * 26px + var(--hero-ease) * -18px),
    0
  )
  rotate(calc(-10deg + var(--hero-progress) * 8deg + var(--hero-ease) * 1deg))
  scale(calc(0.88 + var(--hero-progress) * 0.12));
}

.hero-scene .hero-stage-cutout {
  position: absolute;
  right: -4%;
  bottom: 8%;
  z-index: 5;
  width: min(28vw, 340px);
  pointer-events: none;
  opacity: clamp(0.62, calc(0.62 + var(--hero-progress) * 0.38), 1);
  transform: translate3d(
      calc(120px - var(--hero-progress) * 120px + var(--hero-ease) * -26px),
      calc(44px - var(--hero-progress) * 44px + var(--hero-ease) * -10px),
      0
    )
    rotate(calc(-10deg + var(--hero-progress) * 10deg));
  filter: drop-shadow(0 30px 52px rgba(64, 84, 74, 0.22));
}

.hero-scene .hero-stage-cutout img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-scene .hero-float-card--quote {
  right: 34%;
  bottom: 16%;
  width: 250px;
  padding: 1.15rem 1.25rem 1.2rem;
  backdrop-filter: blur(18px);
  opacity: clamp(0, calc(var(--hero-progress) * 4 - 0.7), 1);
  transform: translate3d(
    calc(-90px + var(--hero-progress) * 90px + var(--hero-ease) * -12px),
    calc(38px - var(--hero-progress) * 38px + var(--hero-ease) * -10px),
    0
  )
  rotate(calc(-5deg + var(--hero-progress) * 4deg));
}

.hero-scene .hero-float-card--stamp {
  left: 8%;
  top: 10%;
  right: auto;
  z-index: 6;
  transform: translate3d(
    calc(var(--hero-ease) * 14px),
    calc(var(--hero-ease) * -18px),
    0
  )
  rotate(calc(4deg - var(--hero-ease) * 2deg));
}

.hero-progress {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  height: 2px;
  margin-top: auto;
  background: rgba(209, 196, 183, 0.45);
  overflow: hidden;
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(calc(0.12 + var(--hero-progress) * 0.88));
  background: linear-gradient(90deg, rgba(185, 141, 113, 0.8), rgba(107, 126, 115, 0.88));
}

.hero-scroll-cue {
  position: absolute;
  right: clamp(1.8rem, 3vw, 2.8rem);
  bottom: 1.2rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(31, 35, 32, 0.48);
  opacity: calc(1 - var(--hero-progress) * 1.4);
}

.gallery-journey {
  position: relative;
  height: 300vh;
  margin-top: 6.5rem;
}

.gallery-journey-sticky {
  position: sticky;
  top: 1.1rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.6rem;
  height: calc(100vh - 2.2rem);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(242, 223, 211, 0.84), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(214, 230, 221, 0.84), transparent 26%),
    linear-gradient(145deg, rgba(255, 251, 245, 0.96), rgba(246, 242, 235, 0.92));
  border: 1px solid rgba(209, 196, 183, 0.34);
  box-shadow: var(--shadow-strong);
}

.gallery-journey-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(107, 126, 115, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 126, 115, 0.04) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.22;
  pointer-events: none;
}

.gallery-journey .gallery-top,
.gallery-journey-window,
.gallery-journey-footer {
  position: relative;
  z-index: 1;
}

.gallery-journey-window {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.4rem);
  width: max-content;
  padding-right: 4rem;
  will-change: transform;
}

.gallery-card {
  --card-lift: 0px;
  --card-rotate: 0deg;
  --card-scale: 1;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid rgba(209, 196, 183, 0.26);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  transform: translate3d(0, var(--card-lift), 0) rotate(var(--card-rotate)) scale(var(--card-scale));
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(67, 88, 79, 0), rgba(67, 88, 79, 0.84));
  pointer-events: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  box-shadow: 0 24px 48px rgba(64, 84, 74, 0.18);
}

.gallery-card--tall {
  width: clamp(250px, 20vw, 320px);
  height: clamp(360px, 58vh, 520px);
}

.gallery-card--wide {
  width: clamp(380px, 33vw, 500px);
  height: clamp(300px, 46vh, 380px);
}

.gallery-card--square {
  width: clamp(300px, 24vw, 360px);
  height: clamp(300px, 42vh, 360px);
}

.gallery-card-media {
  position: absolute;
  inset: 0;
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-card-media img,
.gallery-card:focus-visible .gallery-card-media img {
  transform: scale(1.05);
}

.gallery-card-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  color: #fff7ee;
}

.gallery-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-card-meta {
  font-size: 0.76rem;
  opacity: 0.8;
  letter-spacing: 0.08em;
}

.gallery-journey-footer {
  display: grid;
  gap: 0.9rem;
}

.gallery-journey .gallery-hint {
  margin-top: 0;
  text-align: left;
}

.gallery-progress {
  width: min(100%, 480px);
  height: 2px;
  background: rgba(209, 196, 183, 0.45);
  overflow: hidden;
}

.gallery-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(var(--gallery-progress, 0.12));
  background: linear-gradient(90deg, rgba(185, 141, 113, 0.86), rgba(107, 126, 115, 0.86));
}

@media (max-width: 1180px) {
  .hero-scene {
    height: auto;
  }

  .hero-scene .hero {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-scene .hero h1 {
    max-width: 10ch;
  }

  .hero-scene .hero-copy,
  .hero-scene .hero-kicker,
  .hero-scene .hero-lede,
  .hero-scene .hero-actions,
  .hero-scene .hero-metrics,
  .hero-scene .hero-stage,
  .hero-scene .hero-stage-card--tall,
  .hero-scene .hero-stage-card--wide,
  .hero-scene .hero-stage-card--small,
  .hero-scene .hero-stage-cutout,
  .hero-scene .hero-float-card--quote,
  .hero-scene .hero-float-card--stamp,
  .hero-background-word--one,
  .hero-background-word--two {
    transform: none;
  }

  .hero-progress {
    width: 100%;
  }

  .hero-scene .hero-stage-grid {
    display: grid;
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .hero-scene .hero-stage {
    position: relative;
    inset: auto;
  }

  .hero-scene .hero-stage::after,
  .hero-scene .hero-stage-grid::before,
  .hero-scene .hero-stage-grid::after {
    display: none;
  }

  .hero-scene .hero-stage-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
  }

  .hero-scene .hero-stage-cutout {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(68%, 280px);
    margin: -2rem 0 0 auto;
  }

  .hero-scene .hero-float-card--quote {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    margin: 1rem 0 0 auto;
    opacity: 1;
  }

  .hero-scene .hero-float-card--stamp {
    left: auto;
    right: 4%;
    top: 4%;
  }

  .hero-scroll-cue {
    position: static;
    margin-top: 0.8rem;
  }

  .gallery-journey {
    height: auto;
  }

  .gallery-journey-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .gallery-journey-window {
    overflow: visible;
  }

  .gallery-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding-right: 0;
  }

  .gallery-card--wide,
  .gallery-card--square,
  .gallery-card--tall {
    width: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 768px) {
  .hero-background-word {
    font-size: clamp(4rem, 24vw, 7rem);
  }

  .hero-background-word--one {
    left: -3%;
    bottom: 12%;
  }

  .hero-background-word--two {
    right: -8%;
    top: 10%;
  }

  .gallery-track {
    grid-template-columns: 1fr;
  }

  .gallery-card--wide,
  .gallery-card--square,
  .gallery-card--tall {
    aspect-ratio: 4 / 5;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
