:root {
  --ivory: #f7f3eb;
  --paper: #fbf8f2;
  --navy: #102d37;
  --ink: #17323b;
  --gold: #ac8965;
  --muted: #596460;
  --line: rgba(24, 48, 55, 0.18);
  --display: "Bodoni 72", "Bodoni MT", Didot, Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; }
em { color: var(--gold); font-weight: 400; }

.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;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 50;
  background: white;
  padding: 0.8rem 1rem;
}
.skip-link:focus { top: 1rem; }

.section-shell,
.site-header,
.site-footer {
  width: min(100%, 1500px);
  margin-inline: auto;
}
.site-header {
  min-height: 80px;
  padding: 0 4.7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
}
.wordmark,
.site-footer span,
.site-footer a {
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav { display: flex; gap: clamp(1.5rem, 3.1vw, 3.7rem); }
.site-nav a {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; }

.hero {
  min-height: 550px;
  display: grid;
  grid-template-columns: 39.2% 60.8%;
  background: var(--ivory);
}
.hero-copy {
  padding: clamp(5rem, 9vw, 9.1rem) 9% 4rem 11%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: clamp(4rem, 6vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}
.hero h1 em { display: inline-block; margin-top: 0.16em; }
.short-rule {
  display: block;
  width: 14rem;
  max-width: 75%;
  height: 1px;
  margin: 2.1rem 0 1.5rem;
  background: var(--line);
}
.hero-copy > p {
  max-width: 31rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.42vw, 1.36rem);
  line-height: 1.5;
}
.hero-image { min-height: 550px; }
.hero-image img { height: 100%; object-fit: cover; object-position: 52% center; }
.image-frame { overflow: hidden; }

.portfolio { padding: clamp(4rem, 6.5vw, 7rem) 4.5%; background: var(--paper); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(16rem, 0.82fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 2rem;
}
.eyebrow {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.section-heading h2,
.experience h2,
.reach h2,
.contact h2 {
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.section-heading h2 { margin-top: 0.8rem; }
.section-note {
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1.45;
  padding-bottom: 0.55rem;
}
.portfolio-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.25fr 0.92fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.portfolio-card { position: relative; min-height: 0; }
.portfolio-card--arrival { grid-row: 1 / 3; }
.portfolio-card img { height: 100%; object-fit: cover; transition: transform 700ms ease; }
.portfolio-card:hover img { transform: scale(1.025); }
.portfolio-card figcaption {
  position: absolute;
  left: 1.3rem;
  bottom: 1.1rem;
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  text-transform: uppercase;
}

.story-page { background: var(--paper); }
.experience { display: grid; grid-template-columns: 1fr 1.12fr; background: var(--ivory); }
.experience-image { min-height: 350px; }
.experience-image img { height: 100%; object-fit: cover; object-position: center 47%; }
.experience-copy { padding: 7% 9%; display: flex; flex-direction: column; justify-content: center; }
.experience-copy .eyebrow { margin-bottom: 1rem; }
.experience-copy > p:last-child {
  max-width: 37rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.5;
}

.about-services { display: grid; grid-template-columns: 1fr 1.12fr; background: var(--paper); }
.creator-image { min-height: 365px; }
.creator-image img { height: 100%; object-fit: cover; object-position: center 58%; }
.services { padding: 6.5% 9%; display: flex; flex-direction: column; justify-content: center; }
.service-list { list-style: none; padding: 0; margin: 0.9rem 0 0; }
.service-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.service-list li:last-child { border-bottom: 0; }
.service-number { color: var(--gold); font-size: 0.6rem; letter-spacing: 0.18em; padding-top: 0.44rem; }
.service-list h3 { font-size: clamp(1.55rem, 2.1vw, 2rem); }
.service-list p { margin-top: 0.3rem; color: var(--muted); font-family: var(--display); font-size: 0.9rem; line-height: 1.5; }

.motion { background: var(--navy); color: white; }
.motion-inner { padding: clamp(4rem, 6vw, 6rem) 10% clamp(4rem, 6.5vw, 6.5rem); text-align: center; }
.motion h2 { color: white; font-size: clamp(3.25rem, 5vw, 5rem); line-height: 1; margin: 0.5rem 0 2.2rem; }
.motion h2 em { color: #d6b99a; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.4vw, 2.4rem); max-width: 650px; margin: 0 auto; }
.video-card {
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.video-card img { aspect-ratio: 0.74; object-fit: cover; transition: filter 250ms ease, transform 500ms ease; }
.video-card:hover img,
.video-card:focus-visible img { filter: brightness(0.78); transform: scale(1.015); }
.play-icon {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 3.4rem;
  height: 3.4rem;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 3px 20px rgba(0,0,0,0.2);
}
.play-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.72rem solid white;
  transform: translate(-35%, -50%);
}
.video-label {
  display: block;
  margin-top: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.33em;
  text-transform: uppercase;
}

.reach {
  display: grid;
  grid-template-columns: 1.4fr 0.86fr 0.86fr;
  grid-template-areas: "heading first second";
  align-items: center;
  padding: 3.7rem 4.5% 2.2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.reach-heading { grid-area: heading; }
.reach-heading h2 { font-size: clamp(2.2rem, 3.6vw, 3.7rem); margin-top: 0.7rem; }
.stat { min-height: 7.7rem; display: flex; flex-direction: column; align-items: center; justify-content: center; border-left: 1px solid var(--line); text-align: center; }
.stat--first { grid-area: first; }
.stat--second { grid-area: second; }
.stat strong { color: var(--gold); font-family: var(--display); font-size: clamp(3rem, 4vw, 4.6rem); font-weight: 400; line-height: 1; }
.stat span { margin-top: 0.75rem; font-size: 0.54rem; letter-spacing: 0.12em; line-height: 1.5; text-transform: uppercase; }
.disclaimer { max-width: 30rem; margin-top: 1.2rem; text-align: left; color: var(--muted); font-size: 0.58rem; line-height: 1.5; }

.contact { display: grid; grid-template-columns: 1.4fr 0.9fr auto; gap: 3rem; align-items: center; padding: 2.3rem 4.5%; background: var(--paper); }
.contact h2 { font-size: clamp(2rem, 3.1vw, 3.2rem); }
.contact p { max-width: 16rem; color: var(--muted); font-family: var(--display); line-height: 1.4; }
.contact-button {
  min-width: 14rem;
  padding: 1.25rem 1.7rem;
  border: 1px solid var(--gold);
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}
.contact-button:hover,
.contact-button:focus-visible { background: var(--navy); color: white; }
.site-footer {
  max-width: none;
  min-height: 70px;
  padding: 0 4.7%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  background: var(--navy);
  color: white;
}
.site-footer span:nth-child(2) { text-align: center; }
.site-footer a { text-align: right; }

@media (min-width: 901px) {
  .site-header { min-height: 64px; }
  .hero { height: calc(100vh - 64px); min-height: 560px; max-height: 820px; }
  .hero-image { width: 100%; min-height: 0; align-self: stretch; }
  .hero-image img { object-fit: cover; object-position: center 48%; }
  .portfolio {
    height: auto;
    min-height: 650px;
    max-height: none;
    padding: clamp(1.8rem, 4vh, 3.5rem) 4.5%;
    display: flex;
    flex-direction: column;
  }
  .section-heading { margin-bottom: clamp(1rem, 2vh, 1.6rem); }
  .section-heading h2 { font-size: clamp(3.1rem, 4.6vw, 4.8rem); }
  .portfolio-grid {
    width: 100%;
    flex: none;
    min-height: 0;
    margin: 0;
    grid-template-columns: 1.62fr 1fr 1fr;
    grid-template-rows: auto auto;
    max-height: none;
  }
  .portfolio-card { aspect-ratio: 1 / 1; }
  .portfolio-card--arrival { aspect-ratio: auto; }
  .portfolio-card img { object-position: center; }
  .portfolio-card--wellness img { object-position: center 58%; }
  .story-page {
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    display: grid;
    grid-template-rows: 1fr 1fr;
  }
  .experience,
  .about-services { min-height: 0; }
  .experience-image,
  .creator-image { min-height: 0; }
  .experience-image,
  .creator-image { aspect-ratio: auto; align-self: stretch; }
  .experience-copy,
  .services { padding-block: 3.5%; }
  .experience h2 { font-size: clamp(2.8rem, 4.5vw, 4.5rem); }
  .service-list li { padding: clamp(0.65rem, 1.45vh, 1rem) 0; }
  .service-list h3 { font-size: clamp(1.35rem, 1.8vw, 1.75rem); }
  .closing-page {
    min-height: calc(100vh - 56px);
    max-height: 900px;
    display: grid;
    grid-template-rows: minmax(330px, 1fr) auto auto;
  }
  .motion-inner { padding: clamp(1.75rem, 3.2vh, 3rem) 10%; }
  .motion h2 { font-size: clamp(2.7rem, 4vw, 4rem); margin: 0.35rem 0 1.3rem; }
  .video-grid { max-width: 470px; }
  .video-card img { aspect-ratio: 4 / 5; }
  .video-label { margin-top: 0.65rem; }
  .reach { padding-block: clamp(1.25rem, 2.5vh, 2rem); }
  .stat { min-height: 5.5rem; }
  .contact { padding-block: clamp(1rem, 2.1vh, 1.6rem); }
  .site-footer { min-height: 56px; }
}

@media (max-width: 900px) {
  .site-header { min-height: 68px; position: relative; z-index: 20; }
  .menu-button { width: 2.4rem; height: 2.4rem; padding: 0.55rem; border: 0; background: transparent; display: grid; align-content: center; gap: 4px; cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; height: 1px; background: var(--ink); }
  .site-nav {
    position: fixed;
    inset: 68px 0 0;
    padding: 3rem;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-family: var(--display); font-size: 2rem; letter-spacing: 0; text-transform: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 430px; padding: 5rem 7% 4rem; }
  .hero h1 { font-size: clamp(3.4rem, 12.5vw, 6rem); }
  .hero-image { min-height: 62vh; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-note { max-width: 32rem; }
  .portfolio-grid { min-height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 300px); }
  .portfolio-card--arrival { grid-row: 1 / 3; }
  .portfolio-card:last-child { grid-column: 1 / 3; }
  .experience,
  .about-services { grid-template-columns: 1fr; }
  .experience-image,
  .creator-image { min-height: 430px; }
  .creator-image img { object-position: center 54%; }
  .experience-copy,
  .services { padding: 5rem 7%; }
  .reach { grid-template-columns: 1fr 1fr; grid-template-areas: "heading heading" "first second"; gap: 2rem 0; }
  .reach-heading { text-align: center; margin-bottom: 1rem; }
  .contact { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 4rem 7%; }
  .site-footer { grid-template-columns: 1fr; gap: 0.8rem; padding-block: 1.6rem; text-align: center; }
  .site-footer span:nth-child(2), .site-footer a { text-align: center; }
}

@media (max-width: 600px) {
  .site-header { padding-inline: 5%; }
  .wordmark { font-size: 0.6rem; }
  .hero-copy { min-height: 405px; }
  .hero-image { min-height: 370px; }
  .hero-image img { object-position: 50% center; }
  .portfolio { padding: 4rem 5%; }
  .portfolio-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; gap: 0.7rem; }
  .portfolio-card,
  .portfolio-card--arrival,
  .portfolio-card:last-child { grid-column: auto; grid-row: auto; min-height: 275px; }
  .portfolio-card--arrival { min-height: 410px; }
  .experience-image,
  .creator-image { min-height: 330px; }
  .motion-inner { padding-inline: 5%; }
  .video-grid { grid-template-columns: 1fr; max-width: 235px; gap: 2.3rem; }
  .video-card img { aspect-ratio: 0.82; }
  .reach { grid-template-columns: 1fr; grid-template-areas: "heading" "first" "second"; padding: 4rem 7% 2.5rem; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .contact { gap: 1.7rem; }
  .site-footer span,
  .site-footer a { font-size: 0.54rem; }
}

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