@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Italiana&display=swap');

:root {
  --ink: #0d0d0b;
  --ivory: #f2eee5;
  --gold: #c59a42;
  --wine: #4b202d;
  --line: rgba(242, 238, 229, .22);
  --pad: clamp(22px, 5vw, 86px);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--ivory); font-family: var(--sans); }
a { color: inherit; }
img { display: block; width: 100%; }
.skip { position: fixed; left: -999px; top: 12px; z-index: 100; }
.skip:focus { left: 12px; padding: 10px 14px; background: var(--gold); color: var(--ink); }

header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 92px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.brand span, nav a, .eyebrow, footer { font-size: 10px; font-weight: 500; letter-spacing: .18em; }
nav { display: flex; gap: clamp(18px, 3vw, 46px); }
nav a { text-decoration: none; transition: color .2s ease; }
nav a:hover, nav a:focus-visible { color: var(--gold); }

.hero { position: relative; min-height: 100svh; overflow: hidden; display: grid; align-items: end; }
.hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 38%; filter: saturate(.65) contrast(1.08); }
.veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,13,11,.83) 0%, rgba(13,13,11,.28) 55%, rgba(13,13,11,.08) 100%), linear-gradient(0deg, rgba(13,13,11,.62), transparent 48%); }
.hero-copy { position: relative; z-index: 2; padding: 150px var(--pad) clamp(70px, 10vh, 130px); }
.hero-copy p { margin: 0 0 28px; color: var(--gold); font-size: 10px; letter-spacing: .21em; }
h1, h2, blockquote { font-family: var(--serif); font-weight: 400; }
h1 { max-width: 1100px; margin: 0; font-size: clamp(60px, 9.6vw, 156px); line-height: .88; letter-spacing: -.045em; }
h1 em { color: var(--gold); font-style: normal; }
.down { position: absolute; z-index: 2; right: var(--pad); bottom: 55px; text-decoration: none; font-size: 28px; color: var(--gold); }

.philosophy { min-height: 92svh; padding: clamp(80px, 11vw, 180px) var(--pad); display: grid; grid-template-columns: .35fr 1.65fr; align-items: start; background: var(--ivory); color: var(--ink); position: relative; overflow: hidden; }
.eyebrow { margin: 12px 0 0; color: var(--wine); }
blockquote { position: relative; z-index: 2; margin: 0; font-size: clamp(47px, 7.5vw, 124px); line-height: .98; letter-spacing: -.035em; }
blockquote span { display: block; }
blockquote span:nth-child(2) { color: var(--wine); }
.seal { position: absolute; right: -7vw; bottom: -15vw; width: min(48vw, 720px); opacity: .055; filter: invert(1); }

.work { min-height: 96svh; display: grid; grid-template-columns: 1.15fr .85fr; }
.work figure { margin: 0; min-height: 760px; overflow: hidden; }
.work figure img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.55) contrast(1.08); }
.work-copy { padding: var(--pad); display: flex; flex-direction: column; justify-content: center; background: var(--wine); }
.work-copy .eyebrow { color: var(--gold); }
h2 { margin: clamp(34px, 5vw, 72px) 0; font-size: clamp(66px, 8vw, 126px); line-height: .87; letter-spacing: -.04em; }
.work-copy > a { width: fit-content; padding-bottom: 7px; border-bottom: 1px solid var(--gold); color: var(--gold); text-decoration: none; font-size: 10px; letter-spacing: .16em; }

footer { min-height: 150px; padding: 42px var(--pad); display: grid; grid-template-columns: 1fr auto auto; gap: 35px; align-items: center; border-top: 1px solid var(--line); }
footer a { text-decoration: none; }
footer span { color: #8c887f; }

@media (max-width: 760px) {
  header { height: 76px; }
  .brand img { width: 34px; height: 34px; }
  .brand span { display: none; }
  nav { gap: 15px; }
  nav a { font-size: 8px; letter-spacing: .12em; }
  .hero { min-height: 820px; }
  .hero > img { object-position: 58% center; }
  .veil { background: linear-gradient(0deg, rgba(13,13,11,.84) 0%, rgba(13,13,11,.18) 75%); }
  .hero-copy { padding-bottom: 95px; }
  h1 { font-size: clamp(56px, 18vw, 88px); }
  .down { bottom: 28px; }
  .philosophy { min-height: 0; padding-top: 110px; padding-bottom: 120px; grid-template-columns: 1fr; align-content: start; gap: 50px; }
  blockquote { font-size: clamp(45px, 13vw, 70px); }
  .work { grid-template-columns: 1fr; }
  .work figure { min-height: 62svh; }
  .work-copy { min-height: 520px; }
  footer { grid-template-columns: 1fr; gap: 18px; }
}

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