:root {
  --bg: #FAF7F2;
  --bg-alt: #F1EBE0;
  --bg-deep: #2C2016;
  --ink: #2C2016;
  --ink-soft: #5b4c3e;
  --ink-mute: #8a7a6a;
  --line: rgba(44, 32, 22, .14);
  --line-soft: rgba(44, 32, 22, .08);
  --accent: #B8965A;
  --accent-2: #C87941;
  --on-dark: #F1EBE0;
  --on-dark-mute: rgba(241, 235, 224, .6);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Jost", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 11vw, 160px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .005em;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg)
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad)
}

/* ═══════════════ TYPOGRAPHY SYSTEM ═══════════════ */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.015em;
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-2)
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.eyebrow .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-1px)
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 54ch
}

.body {
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background .4s ease, backdrop-filter .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
  color: var(--on-dark);
}

.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--ink);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1
}

.nav__logo em {
  font-style: italic;
  color: var(--accent-2)
}

.nav__links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 13px;
  letter-spacing: .04em
}

.nav__links a {
  position: relative;
  padding: 6px 0;
  opacity: .85;
  transition: opacity .25s ease
}

.nav__links a:hover {
  opacity: 1
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right .35s ease
}

.nav__links a:hover::after {
  right: 0
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .75
}

.nav__lang button {
  padding: 4px 2px;
  opacity: .55;
  transition: opacity .25s ease
}

.nav__lang button.active {
  opacity: 1;
  color: var(--accent-2)
}

.nav__lang span {
  opacity: .4
}

.nav__burger {
  display: none;
  width: 28px;
  height: 18px;
  position: relative
}

.nav__burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor
}

.nav__burger span:nth-child(1) {
  top: 2px
}

.nav__burger span:nth-child(2) {
  top: 50%
}

.nav__burger span:nth-child(3) {
  bottom: 2px
}

@media (max-width:780px) {
  .nav__links {
    display: none
  }

  .nav__burger {
    display: block
  }

  body:has(.nav--open) {
    overflow: hidden;
  }

  .nav.nav--open {
    background: var(--bg);
    color: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    inset: 0;
    background: var(--bg);
    padding: 100px var(--pad) 48px;
    z-index: 49;
  }

  .nav--open .nav__links a {
    font-size: 28px;
    font-family: var(--serif);
    font-weight: 300;
    letter-spacing: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    width: 100%;
    opacity: 1;
    color: var(--ink);
  }

  .nav--open .nav__burger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .nav--open .nav__burger span:nth-child(2) {
    opacity: 0;
  }

  .nav--open .nav__burger span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  .nav__burger span {
    transition: transform .3s ease, opacity .3s ease, top .3s ease;
  }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  color: var(--on-dark);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  position: absolute;
  inset: 0
}

.hero__media video {
  z-index: 1
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .05) 30%, rgba(0, 0, 0, .15) 60%, rgba(0, 0, 0, .65) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--pad) clamp(60px, 10vw, 120px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero__eyebrow {
  color: var(--on-dark-mute);
  margin-bottom: 24px
}

.hero__eyebrow .dot {
  background: var(--accent)
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7.2vw, 116px);
  line-height: .96;
  letter-spacing: -.02em;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-2)
}

.hero__sub {
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  font-weight: 400;
}

.hero__cta {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid rgba(241, 235, 224, .45);
  color: var(--on-dark);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
}

.hero__cta:hover {
  background: var(--on-dark);
  color: #1a120a;
  border-color: var(--on-dark);
  padding-right: 36px
}

.hero__cta .arrow {
  display: inline-block;
  transition: transform .35s ease
}

.hero__cta:hover .arrow {
  transform: translateX(6px)
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--on-dark-mute);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.hero__scroll .line {
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, transparent, var(--on-dark));
  position: relative;
  overflow: hidden;
}

.hero__scroll .line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--accent);
  animation: scrollPulse 2.4s cubic-bezier(.6, 0, .4, 1) infinite;
}

@keyframes scrollPulse {
  0% {
    top: -50%
  }

  100% {
    top: 100%
  }
}

/* ═══════════════ SECTIONS ═══════════════ */
section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative
}

.section-num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}

.section-num .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: var(--accent-2);
  letter-spacing: 0
}

/* ABOUT */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.about__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden
}

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

.about__photo::before {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 60%;
  height: 60%;
  border: 1px solid var(--accent);
  z-index: -1;
}

.about__photo {
  margin-left: 18px
}

.about h2 {
  font-size: clamp(38px, 5vw, 72px);
  margin-bottom: 28px
}

.about p {
  margin-bottom: 1em;
  font-size: 17px
}

.about .pull {
  margin: 48px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  color: var(--ink);
  border-left: 1px solid var(--accent);
  padding-left: 24px;
  max-width: 30ch;
}

.about__sig {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
}

.about__sig::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ink-mute)
}

@media (max-width:880px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px
  }

  .about__photo {
    max-width: 420px
  }
}

/* MANIFIESTO */
.manifesto {
  background: var(--bg-deep);
  color: var(--on-dark)
}

.manifesto .section-num {
  color: var(--on-dark-mute)
}

.manifesto .section-num .roman {
  color: var(--accent)
}

.manifesto h2 {
  font-size: clamp(38px, 4.6vw, 64px);
  max-width: 18ch;
  margin-bottom: 80px
}

.manifesto h2 em {
  color: var(--accent)
}

.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 72px)
}

.pillar {
  position: relative
}

.pillar__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
}

.pillar__icon {
  margin-bottom: 24px;
  color: var(--accent)
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.005em;
}

.pillar p {
  color: var(--on-dark-mute);
  font-size: 15px;
  line-height: 1.65;
  max-width: 32ch
}

.pillar__rule {
  height: 1px;
  background: rgba(241, 235, 224, .18);
  margin-bottom: 28px
}

@media (max-width:780px) {
  .hero__scroll {
    display: none;
  }

  .hero__inner {
    padding-bottom: 80px;
  }
}

@media (max-width:780px) {
  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

/* PORTFOLIO */
.portfolio__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 72px;
  flex-wrap: wrap
}

.portfolio h2 {
  font-size: clamp(40px, 5.4vw, 84px);
  max-width: 14ch
}

.portfolio h2 em {
  color: var(--accent-2)
}

.portfolio__meta {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 32ch;
  text-align: right
}

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

.tile {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt)
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2, .6, .2, 1), filter 1s ease;
  filter: saturate(.85);
}

.tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.05)
}

.tile__cap {
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: #fff;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.tile:hover .tile__cap {
  opacity: 1;
  transform: translateY(0)
}

.t1 {
  grid-column: span 7;
  grid-row: span 6
}

.t2 {
  grid-column: span 5;
  grid-row: span 4
}

.t3 {
  grid-column: span 3;
  grid-row: span 4
}

.t4 {
  grid-column: span 4;
  grid-row: span 5
}

.t5 {
  grid-column: span 5;
  grid-row: span 5
}

.t6 {
  grid-column: span 4;
  grid-row: span 4
}

.t7 {
  grid-column: span 4;
  grid-row: span 4
}

.t8 {
  grid-column: span 4;
  grid-row: span 4
}

.t9 {
  grid-column: span 6;
  grid-row: span 5
}

.t10 {
  grid-column: span 6;
  grid-row: span 5
}

@media (max-width:880px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 72px
  }

  .t1 {
    grid-column: span 6;
    grid-row: span 5
  }

  .t2,
  .t3,
  .t4,
  .t5,
  .t6,
  .t7,
  .t8,
  .t9 {
    grid-column: span 3;
    grid-row: span 4
  }

  .t10 {
    grid-column: span 6;
    grid-row: span 4
  }
}

.portfolio__cta {
  margin-top: 64px;
  display: flex;
  justify-content: center
}

.ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .35s, color .35s, padding .35s;
}

.ghost:hover {
  background: var(--ink);
  color: var(--bg);
  padding-right: 40px
}

.ghost .arrow {
  transition: transform .35s
}

.ghost:hover .arrow {
  transform: translateX(6px)
}

/* PORTFOLIO — VIDEO */
.videos {
  background: var(--bg-alt)
}

.videos .portfolio__head h2 em {
  color: var(--accent-2)
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vtile {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-deep);
  cursor: pointer;
}

.vtile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
  filter: saturate(.92) contrast(1.02);
}

.vtile.is-playing video {
  opacity: 1
}

.vtile__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2, .6, .2, 1), filter .8s ease, opacity .6s ease;
  filter: saturate(.85);
}

.vtile:hover .vtile__poster {
  transform: scale(1.04);
  filter: saturate(1.05)
}

.vtile.is-playing .vtile__poster {
  opacity: 0
}

.vtile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .0) 35%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
  transition: opacity .5s ease;
}

.vtile.is-playing .vtile__shade {
  opacity: .5
}

.vtile__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(241, 235, 224, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark);
  transition: opacity .4s ease, transform .5s cubic-bezier(.2, .6, .2, 1), background .4s, border-color .4s;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.vtile__play svg {
  margin-left: 3px
}

.vtile:hover .vtile__play {
  background: rgba(241, 235, 224, .12);
  border-color: var(--on-dark)
}

.vtile.is-playing .vtile__play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.7)
}

.vtile__cap {
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: var(--on-dark);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
  z-index: 3;
}

.vtile__cap span {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--on-dark-mute);
}

@media (max-width:780px) {
  .videos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }
}

/* SERVICES */
.services {
  background: var(--bg-alt)
}

.services__head {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end
}

.services h2 {
  font-size: clamp(40px, 5vw, 76px);
  max-width: 12ch
}

.services h2 em {
  color: var(--accent-2)
}

.services__intro {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 42ch
}

.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.pack {
  background: var(--bg);
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .5s cubic-bezier(.2, .6, .2, 1), box-shadow .5s ease;
  position: relative;
}

.pack:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(44, 32, 22, .18)
}

.pack__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--accent-2);
  letter-spacing: .04em
}

.pack__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.01em
}

.pack__sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 16px;
  margin-top: -8px
}

.pack ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px
}

.pack ul li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative
}

.pack ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.pack__cta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .25s;
}

.pack__cta:hover {
  color: var(--accent-2)
}

.pack--feature {
  background: var(--bg-deep);
  color: var(--on-dark)
}

.pack--feature .pack__sub,
.pack--feature .pack ul li {
  color: var(--on-dark-mute)
}

.pack--feature ul li {
  color: var(--on-dark-mute)
}

.pack--feature .pack__cta {
  color: var(--on-dark);
  border-color: rgba(241, 235, 224, .18)
}

.pack--feature .pack__num {
  color: var(--accent)
}

@media (max-width:880px) {
  .services__head {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .packs {
    grid-template-columns: 1fr;
    gap: 18px
  }
}

/* TESTIMONIALS */
.testimonials__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  flex-wrap: wrap;
  gap: 24px
}

.testimonials h2 {
  font-size: clamp(40px, 5vw, 72px);
  max-width: 14ch
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.quote {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quote__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  line-height: .5;
  color: var(--accent);
  height: 24px
}

.quote p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.4;
  color: var(--ink);
}

.quote__by {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.quote__by strong {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: .18em
}

.quote__by span {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mute)
}

@media (max-width:880px) {
  .quotes {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

/* CONTACT */
.contact {
  background: var(--bg-alt);
  overflow: hidden
}

.contact__grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: flex-start
}

.contact h2 {
  font-size: clamp(48px, 5.6vw, 88px);
  margin-bottom: 36px
}

.contact h2 em {
  color: var(--accent-2)
}

.contact__lede {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 38ch;
  margin-bottom: 48px
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 32px
}

.contact__meta .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 14px
}

.contact__meta .lbl {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-mute)
}

.contact__meta .val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink)
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 8px
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}

.socials a:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px)
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.field {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding-top: 28px;
  padding-bottom: 14px
}

.field label {
  position: absolute;
  left: 0;
  top: 30px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: .04em;
  transition: transform .3s ease, font-size .3s ease, color .3s ease, top .3s;
  pointer-events: none;
  font-family: var(--sans);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: var(--ink);
  font-size: 16px;
  padding: 0;
  resize: none;
  font-family: var(--sans);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.field textarea {
  min-height: 120px;
  line-height: 1.5
}

.field:has(.select)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--ink-mute);
  border-bottom: 1px solid var(--ink-mute);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: transform .2s ease;
}

.field:has(.select[aria-expanded="true"])::after {
  transform: translateY(-30%) rotate(225deg);
}

.select {
  width: 100%;
  cursor: pointer;
  outline: 0;
  position: relative;
  min-height: 24px;
}

.select__val {
  display: block;
  font-size: 16px;
  font-family: var(--sans);
  color: var(--ink);
  min-height: 24px;
}

.select__opts {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: -24px;
  right: -24px;
  background: var(--bg);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(44,32,22,.08);
}

.select[aria-expanded="true"] .select__opts {
  display: block;
}

.select__opts li {
  padding: 12px 24px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  cursor: pointer;
  letter-spacing: .03em;
  transition: background .15s, color .15s;
}

.select__opts li:hover,
.select__opts li[aria-selected="true"] {
  background: transparent;
  color: var(--accent-2);
}

.field:has(.select.has-value) label {
  top: 6px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.field input:focus+label,
.field input:not(:placeholder-shown)+label,
.field textarea:focus+label,
.field textarea:not(:placeholder-shown)+label,
.field select:focus+label,
.field select:not([value=""])+label,
.field select.has-value+label {
  top: 6px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.field:focus-within {
  border-bottom-color: var(--accent-2)
}

.field .opt {
  position: absolute;
  right: 0;
  top: 30px;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: .04em;
  font-style: italic;
  font-family: var(--serif)
}

.submit {
  margin-top: 32px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s, padding .35s, transform .3s;
}

.submit:hover {
  background: var(--accent-2);
  padding-right: 42px
}

.submit:disabled {
  opacity: .6;
  cursor: not-allowed
}

.submit .arrow {
  transition: transform .35s
}

.submit:hover .arrow {
  transform: translateX(6px)
}

.form-status {
  margin-top: 18px;
  font-size: 13px;
  color: var(--accent-2);
  font-style: italic;
  font-family: var(--serif);
  min-height: 1.4em;
  opacity: 0;
  transition: opacity .4s
}

.form-status.show {
  opacity: 1
}

@media (max-width:880px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 60px
  }
}

/* LEGAL PAGES */
.legal {
  padding: 160px 0 100px;
}

.legal__inner {
  max-width: 680px;
}

.legal__inner h1 {
  margin-bottom: 12px;
}

.legal__date {
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 64px;
}

.legal__inner h2 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal__inner p,
.legal__inner li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.legal__inner ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal__inner li {
  margin-bottom: 6px;
}

.legal__inner a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-deep);
  color: var(--on-dark);
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 200;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p { margin: 0; opacity: .85; }

.cookie-banner a {
  color: var(--on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__actions button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--on-dark);
  background: transparent;
  color: var(--on-dark);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.cookie-banner__actions button:first-child:hover {
  background: var(--on-dark);
  color: var(--bg-deep);
}

.cookie-banner__actions button:last-child {
  opacity: .6;
  border-color: transparent;
}

.cookie-banner__actions button:last-child:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.legal__section-title {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

/* FOOTER */
footer {
  background: var(--bg-deep);
  color: var(--on-dark);
  padding: 80px 0 40px
}

.ft__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(241, 235, 224, .12)
}

.ft__brand {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.005em
}

.ft__brand em {
  color: var(--accent);
  font-style: italic
}

.ft__tag {
  margin-top: 18px;
  color: var(--on-dark-mute);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  max-width: 30ch
}

.ft__col h4 {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  font-weight: 500;
  margin-bottom: 18px
}

.ft__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ft__col a {
  color: var(--on-dark);
  opacity: .85;
  font-size: 14px;
  transition: opacity .25s, color .25s
}

.ft__col a:hover {
  opacity: 1;
  color: var(--accent)
}

.ft__bot {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}

@media (max-width:780px) {
  .ft__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .ft__brand {
    font-size: 32px
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important
  }
}