:root {
  --rouge: #6d0813;
  --rouge-deep: #260407;
  --rouge-bright: #8f0e1b;
  --rose: #f2b9b6;
  --paper: #fff3e5;
  --cream: #f8dfc7;
  --ink: #190d0b;
  --brass: #d8a54b;
  --smoke: #3a2b28;
  --shadow: 0 30px 80px rgba(43, 5, 8, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--rouge-deep);
  color: var(--paper);
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 18%, rgba(109, 8, 19, 0.38), transparent 28rem),
    linear-gradient(180deg, var(--rouge-deep) 0%, #4b0710 52%, var(--paper) 52%, var(--paper) 100%);
}

a {
  color: inherit;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(18px, 3vw, 34px);
}

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

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

.hero-wash {
  background:
    linear-gradient(90deg, rgba(43, 5, 8, 0.94) 0%, rgba(43, 5, 8, 0.78) 38%, rgba(43, 5, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(25, 13, 11, 0.08) 0%, rgba(43, 5, 8, 0.82) 100%);
}

.nav,
.hero-content {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wordmark {
  width: clamp(126px, 18vw, 210px);
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.nav-cta,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  border: 1px solid color-mix(in srgb, var(--brass) 82%, white);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 88%, var(--brass));
  color: var(--rouge-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.primary-link:hover {
  transform: translateY(-2px);
  background: var(--brass);
  border-color: var(--paper);
}

.hero-content {
  align-self: end;
  max-width: min(820px, 94vw);
  padding: clamp(70px, 10vw, 150px) 0 clamp(56px, 8vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: clamp(0.72rem, 0.6vw + 0.62rem, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(5.2rem, 18vw, 15rem);
  text-wrap: balance;
}

.lede {
  max-width: 700px;
  margin: clamp(22px, 3vw, 34px) 0 28px;
  color: color-mix(in srgb, var(--paper) 88%, var(--rose));
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.18;
}

.intro {
  background: var(--paper);
  color: var(--rouge-deep);
  padding: clamp(54px, 9vw, 112px) clamp(20px, 6vw, 96px);
}

.intro p {
  max-width: 1060px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 5.8rem);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
}

.brand-notes {
  background: var(--paper);
  color: var(--ink);
  padding: 0 clamp(20px, 5vw, 72px) clamp(68px, 8vw, 104px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1320px;
  margin: 0 auto;
}

.brand-notes article {
  min-height: 245px;
  padding: clamp(24px, 3vw, 38px);
  background: #f6d7c8;
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.brand-notes article:nth-child(2) {
  background: var(--rouge);
  color: var(--paper);
}

.brand-notes article:nth-child(3) {
  background: var(--ink);
  color: var(--paper);
}

.brand-notes span {
  color: var(--rouge-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand-notes article:nth-child(2) span,
.brand-notes article:nth-child(3) span {
  color: var(--brass);
}

.brand-notes h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.brand-notes p {
  margin: 0;
  max-width: 31ch;
  font-size: 0.94rem;
  line-height: 1.55;
}

.values {
  background: var(--rouge-deep);
  color: var(--paper);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.values-heading {
  max-width: 1120px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  display: block;
  text-align: left;
}

.values-heading .eyebrow {
  color: var(--rose);
}

.values h2 {
  color: var(--paper);
}

.founding-note {
  max-width: 1120px;
  margin: 0 auto clamp(28px, 4vw, 52px);
  color: color-mix(in srgb, var(--paper) 82%, var(--rose));
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.28rem, 1.85vw, 2.05rem);
  font-style: italic;
  line-height: 1.18;
  text-align: left;
}

.people-grid {
  max-width: 1120px;
  margin: 0 auto clamp(46px, 6vw, 78px);
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.people-grid.founders {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.people-grid.leads {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
}

.people-grid article {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.people-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.people-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(38, 4, 7, 0.86) 100%);
}

.people-grid h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  margin: 0;
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 1.55vw, 1.85rem);
  line-height: 1;
}

.founder-moment {
  max-width: 760px;
  margin: clamp(-22px, -2vw, -12px) auto clamp(46px, 6vw, 78px);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.founder-moment img {
  display: block;
  width: 100%;
  aspect-ratio: 539 / 700;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.values-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid color-mix(in srgb, var(--brass) 44%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--brass) 44%, transparent);
}

.values-grid article {
  min-height: 270px;
  padding: clamp(22px, 2.4vw, 32px);
  border-right: 1px solid color-mix(in srgb, var(--brass) 44%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--brass) 44%, transparent);
  display: grid;
  align-content: start;
  gap: 18px;
}

.values-grid span {
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.values-grid h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 2.6vw, 2.7rem);
  line-height: 0.94;
}

.values-grid p {
  margin: 0;
  color: color-mix(in srgb, var(--paper) 78%, var(--rose));
  font-size: 0.9rem;
  line-height: 1.58;
}

.leads-section {
  max-width: 1120px;
  margin: clamp(52px, 7vw, 90px) auto 0;
}

.leads-section .eyebrow {
  color: var(--rose);
}

.leads-section h2 {
  max-width: 840px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.gallery-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px) clamp(72px, 9vw, 120px);
}

.gallery-heading {
  max-width: 1020px;
  margin: 0 auto clamp(26px, 4vw, 48px);
  display: block;
}

.gallery-heading .eyebrow {
  color: var(--rouge-bright);
}

h2 {
  margin: 0;
  color: var(--rouge);
  font-size: clamp(2.05rem, 4.2vw, 4.85rem);
  text-wrap: balance;
}

.gallery {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(12px, 2vw, 22px);
  align-items: start;
}

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--rouge-deep);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  grid-column: span 4;
}

figure img,
figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure video {
  display: block;
  background: var(--rouge-deep);
}

.landscape-media {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.portrait-media {
  grid-column: span 3;
  aspect-ratio: 9 / 16;
}

.feature-photo {
  grid-column: span 6;
  aspect-ratio: 1 / 1;
}

.media-number,
.media-duration {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  background: color-mix(in srgb, var(--rouge-deep) 88%, black);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-number {
  right: 10px;
  bottom: 10px;
}

.media-duration {
  left: 10px;
  top: 10px;
  background: color-mix(in srgb, var(--brass) 78%, var(--paper));
  color: var(--rouge-deep);
}

.play-button {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.play-button::before {
  content: "";
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rouge-deep) 78%, black);
  border: 1px solid color-mix(in srgb, var(--brass) 82%, white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.play-button span {
  position: absolute;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--paper);
}

.playable.is-playing .play-button {
  display: none;
}

.closing {
  min-height: 48svh;
  display: grid;
  place-items: center;
  gap: 28px;
  padding: clamp(58px, 10vw, 120px) 20px;
  background:
    linear-gradient(135deg, rgba(216, 165, 75, 0.15), transparent 42%),
    var(--rouge-deep);
  color: var(--paper);
  text-align: center;
}

.closing-copy {
  max-width: 880px;
}

.closing-kicker {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.93;
  text-wrap: balance;
}

.closing-copy p:not(.closing-kicker) {
  max-width: 680px;
  margin: clamp(18px, 3vw, 28px) auto 0;
  color: color-mix(in srgb, var(--paper) 82%, var(--rose));
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  font-style: italic;
  line-height: 1.16;
}

.primary-link.dark {
  background: var(--rouge);
  border-color: var(--rose);
  color: var(--paper);
}

.primary-link.dark:hover {
  background: var(--paper);
  color: var(--rouge-deep);
}

@media (max-width: 720px) {
  .hero {
    min-height: 88svh;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(43, 5, 8, 0.78) 0%, rgba(43, 5, 8, 0.64) 38%, rgba(43, 5, 8, 0.94) 100%);
  }

  .hero-media img {
    object-position: 55% 50%;
  }

  .nav-cta,
  .primary-link {
    min-height: 42px;
    padding: 12px 15px;
    font-size: 0.7rem;
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(4.6rem, 23vw, 7rem);
  }

  .lede {
    font-size: clamp(1.28rem, 6vw, 1.7rem);
  }

  .brand-notes {
    grid-template-columns: 1fr;
  }

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

  .people-grid.founders,
  .people-grid.leads {
    grid-template-columns: 1fr;
  }

  .people-grid article,
  .people-grid img {
    min-height: 360px;
  }

  .values-grid article {
    min-height: auto;
  }

  .brand-notes article {
    min-height: 205px;
  }

  .gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .media-card,
  .landscape-media {
    grid-column: span 6;
  }

  .portrait-media {
    grid-column: span 3;
  }

  .feature-photo {
    grid-column: span 6;
  }
}
