:root {
  --ink: #171312;
  --paper: #f8f4ed;
  --soft: #e7ded1;
  --gold: #b98b3b;
  --wine: #6f1d36;
  --pine: #183c36;
  --ivory: #fffaf0;
  --shadow: 0 24px 70px rgba(23, 19, 18, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(23, 19, 18, .72), rgba(23, 19, 18, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 240, .5);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(23, 19, 18, .55);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 250, 240, .72);
  font-size: 12px;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 6vw, 80px) 76px;
  overflow: hidden;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--pine), var(--wine));
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  opacity: .48;
  filter: saturate(.95) contrast(1.04);
}

.hero-image[src$=".jpg"] {
  background:
    linear-gradient(135deg, rgba(24, 60, 54, .7), rgba(111, 29, 54, .7)),
    radial-gradient(circle at 68% 28%, rgba(185, 139, 59, .55), transparent 34%),
    linear-gradient(120deg, #1c2726, #6f1d36);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 19, 18, .86), rgba(23, 19, 18, .24) 58%, rgba(23, 19, 18, .72)),
    linear-gradient(0deg, rgba(23, 19, 18, .88), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .96;
}

h1 {
  max-width: 820px;
  font-size: clamp(56px, 10vw, 128px);
}

h2 {
  font-size: clamp(38px, 6vw, 76px);
}

h3 {
  font-size: 34px;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, .84);
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #21150c;
  background: var(--gold);
}

.button.ghost {
  color: var(--ivory);
  border-color: rgba(255, 250, 240, .45);
  background: rgba(255, 255, 255, .05);
}

.hero-note {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 48px;
  z-index: 1;
  width: min(240px, 42vw);
  padding-left: 24px;
  border-left: 1px solid rgba(255, 250, 240, .34);
}

.hero-note span,
.hero-note small {
  display: block;
  color: rgba(255, 250, 240, .74);
  font-size: 13px;
}

.hero-note strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 64px;
  line-height: .9;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 520px) minmax(260px, 660px);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  background: var(--ivory);
}

.intro p:last-child,
.director-copy p,
.message p {
  margin: 0;
  color: rgba(23, 19, 18, .72);
  font-size: 18px;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  background: var(--ivory);
}

.stats article {
  padding: clamp(28px, 5vw, 52px);
  background: var(--paper);
}

.stats span {
  color: var(--gold);
  font-weight: 800;
}

.stats p {
  color: rgba(23, 19, 18, .66);
  line-height: 1.7;
}

.director {
  display: grid;
  grid-template-columns: minmax(260px, 460px) minmax(280px, 640px);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: #171312;
  color: var(--ivory);
}

.portrait-shell {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 250, 240, .24);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(185, 139, 59, .26), rgba(111, 29, 54, .4)),
    linear-gradient(120deg, #2e2521, #183c36);
}

.director-copy p {
  color: rgba(255, 250, 240, .78);
  margin-top: 24px;
}

blockquote {
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(185, 139, 59, .55);
  color: rgba(255, 250, 240, .9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
}

.gallery {
  background: var(--paper);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 60, 54, .18), rgba(111, 29, 54, .2)),
    var(--soft);
}

figure.wide {
  grid-column: span 2;
}

figure.tall {
  grid-row: span 2;
}

figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--ivory);
  font-weight: 800;
  background: rgba(23, 19, 18, .58);
  backdrop-filter: blur(14px);
}

.message {
  text-align: center;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(24, 60, 54, .95), rgba(111, 29, 54, .95)),
    var(--pine);
}

.message p {
  max-width: 850px;
  margin: 24px auto 32px;
  color: rgba(255, 250, 240, .82);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: rgba(255, 250, 240, .72);
  background: #171312;
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding-top: 116px;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 100%;
    margin-top: 42px;
  }

  .intro,
  .director,
  .stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
}

@media (max-width: 560px) {
  .brand small {
    max-width: 210px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  figure.wide,
  figure.tall {
    grid-column: auto;
    grid-row: auto;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 8px;
  }
}
