@charset "UTF-8";

:root {
  --black: #070707;
  --black-soft: #111111;
  --white: #f7f5f1;
  --paper: #eeeae3;
  --red: #df161f;
  --red-dark: #8f070d;
  --gold: #c89e68;
  --muted: #9b9b9b;
  --line: rgba(255,255,255,.14);
  --container: min(1180px, calc(100vw - 40px));
  --header-h: 82px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
::selection { color: white; background: var(--red); }
.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px; background: white; color: black; border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1380px) / 2));
  color: white;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, height .4s ease;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(7,7,7,.88);
  border-color: rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  color: white; background: var(--red);
  font-family: Georgia, serif; font-size: 25px; font-style: italic;
}
.brand-copy { display: grid; line-height: 1; gap: 5px; }
.brand-copy strong { letter-spacing: .18em; font-size: 14px; }
.brand-copy small { color: #aaa; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  position: relative; color: #e6e6e6; text-decoration: none;
  font-size: 12px; text-transform: uppercase; letter-spacing: .15em;
}
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px;
  height: 1px; background: var(--red); transition: right .3s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(255,255,255,.35); }
.nav-cta:hover { background: white; color: black; }
.menu-toggle { display: none; }

.hero {
  position: relative; min-height: 100svh; color: white; background: black;
  display: grid; align-items: end; overflow: hidden;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.34) 48%, rgba(0,0,0,.05) 75%),
    linear-gradient(0deg, rgba(0,0,0,.84) 0%, transparent 48%, rgba(0,0,0,.28) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(140px, 18vh, 220px); }
.eyebrow {
  margin: 0 0 16px; color: var(--red); font-weight: 700;
  font-size: 11px; line-height: 1.2; text-transform: uppercase; letter-spacing: .22em;
}
.hero .eyebrow { color: #ff6268; }
.hero-title {
  max-width: 940px; margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7.4vw, 112px); font-weight: 400;
  line-height: .93; letter-spacing: -.045em;
}
.hero-title span, .hero-title strong { display: block; }
.hero-title span { color: #ddd3c8; }
.hero-title strong { font-weight: 400; color: white; }
.hero-lead {
  max-width: 650px; margin: 30px 0 0; color: #d2d2d2;
  font-size: clamp(16px, 1.4vw, 20px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 13px 20px;
  color: inherit; border: 1px solid transparent; text-decoration: none;
  text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease, border .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--red); border-color: var(--red); }
.button-primary:hover { background: #ff232d; border-color: #ff232d; }
.button-ghost { color: white; border-color: rgba(255,255,255,.42); backdrop-filter: blur(5px); }
.button-ghost:hover { color: black; background: white; border-color: white; }
.button-light { color: black; background: white; border-color: white; }

.hero-meta {
  position: absolute; z-index: 2; left: max(20px, calc((100vw - 1180px) / 2)); right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 35px; display: flex; gap: 22px; padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.22); color: #b7b7b7;
  font-size: 10px; text-transform: uppercase; letter-spacing: .18em;
}
.hero-meta span:not(:last-child)::after { content: "·"; margin-left: 22px; color: var(--red); }
.scroll-cue {
  position: absolute; z-index: 3; right: 28px; bottom: 34px;
  width: 34px; height: 54px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px;
}
.scroll-cue span {
  position: absolute; top: 9px; left: 50%; width: 3px; height: 7px;
  margin-left: -1.5px; border-radius: 3px; background: white;
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translateY(21px); } }

.section { padding: clamp(86px, 11vw, 160px) 0; }
.section-dark { color: white; background: var(--black); }
.section-heading { max-width: 850px; margin: 0 auto 64px; text-align: center; }
.section-heading-left { margin-inline: 0; text-align: left; }
.section-heading h2, .interior-copy h2, .editorial-copy h2, .contact h2 {
  margin: 0; font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 78px); line-height: .98; font-weight: 400; letter-spacing: -.04em;
}
.section-heading > p:last-child, .interior-copy > p, .editorial-copy > p {
  max-width: 680px; margin: 24px auto 0; color: #555; font-size: 17px;
}
.section-heading-left > p:last-child { margin-left: 0; }
.section-dark .section-heading > p:last-child, .section-dark .interior-copy > p { color: #aaa; }

.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-bottom: 72px; background: #c9c4bb; border: 1px solid #c9c4bb;
}
.metric { min-height: 170px; padding: 30px; background: var(--paper); }
.metric strong {
  display: inline; font-family: Georgia, serif; font-size: clamp(40px, 5vw, 68px);
  font-weight: 400; line-height: 1;
}
.metric > span { margin-left: 6px; color: var(--red); font-weight: 700; }
.metric small { display: block; margin-top: 15px; color: #777; text-transform: uppercase; letter-spacing: .14em; }

.feature-grid { display: grid; grid-template-columns: 1.55fr .75fr; gap: 20px; }
.feature-card { position: relative; min-height: 460px; overflow: hidden; background: #ddd; }
.feature-card img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .7s var(--ease); }
.feature-card:hover img { transform: scale(1.025); }
.card-caption {
  position: absolute; inset: auto 0 0; padding: 44px 32px 28px;
  color: white; background: linear-gradient(transparent, rgba(0,0,0,.84));
}
.card-caption p { margin: 0 0 4px; color: #ccc; text-transform: uppercase; font-size: 10px; letter-spacing: .16em; }
.card-caption h3 { margin: 0; font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.feature-card-dark { padding: 44px; color: white; background: var(--black-soft); }
.feature-card-dark h3 { margin: 0; font-family: Georgia, serif; font-size: 48px; font-weight: 400; }
.feature-card-dark > p:not(.eyebrow) { color: #aaa; }
.clean-list { list-style: none; padding: 0; margin: 38px 0 0; }
.clean-list li { padding: 14px 0; border-top: 1px solid var(--line); font-size: 13px; }
.clean-list li::before { content: "↗"; margin-right: 10px; color: var(--red); }

.design-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.design-copy { position: sticky; top: 110px; }
.design-points { margin-top: 52px; }
.design-point {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px;
  padding: 23px 0; border-top: 1px solid var(--line);
}
.design-point > span { color: var(--red); font-size: 12px; letter-spacing: .16em; }
.design-point h3 { margin: 0 0 6px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.design-point p { margin: 0; color: #9b9b9b; }
.heritage-visual { margin: 0; }
.heritage-visual img { width: 100%; max-height: 910px; object-fit: cover; cursor: zoom-in; }
.heritage-visual figcaption { padding: 15px 0; color: #888; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }

.interior-panel {
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 0; align-items: stretch;
  margin-top: clamp(80px, 11vw, 150px); background: #171717; border: 1px solid var(--line);
}
.interior-image { margin: 0; min-height: 540px; overflow: hidden; }
.interior-image img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .7s var(--ease); }
.interior-image:hover img { transform: scale(1.03); }
.interior-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 72px); }
.interior-copy h2 { font-size: clamp(38px, 4.8vw, 68px); }
.material-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.material-tags span { padding: 9px 11px; border: 1px solid #3a3a3a; color: #bbb; font-size: 10px; text-transform: uppercase; letter-spacing: .10em; }

.studio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.studio-card {
  position: relative; margin: 0; overflow: hidden; background: #b80008; aspect-ratio: 1 / 1;
}
.studio-card-wide { aspect-ratio: 1.45 / 1; }
.studio-card img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .7s var(--ease); }
.studio-card:hover img { transform: scale(1.035); }
.studio-card figcaption {
  position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; gap: 20px;
  padding: 30px; color: white; background: linear-gradient(transparent, rgba(0,0,0,.78));
}
.studio-card figcaption span { font-family: Georgia, serif; font-size: 24px; }
.studio-card figcaption small { align-self: end; color: #d3d3d3; text-transform: uppercase; letter-spacing: .12em; }

.manifesto { position: relative; min-height: 88svh; display: grid; place-items: center; overflow: hidden; color: white; }
.manifesto-media, .manifesto-overlay { position: absolute; inset: 0; }
.manifesto-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 64%; }
.manifesto-overlay { background: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.20) 72%), linear-gradient(0deg, rgba(0,0,0,.35), transparent); }
.manifesto-content { position: relative; z-index: 1; }
.manifesto blockquote {
  max-width: 1000px; margin: 0;
  font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 6.5vw, 88px);
  line-height: 1.02; letter-spacing: -.04em;
}

.story-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 330px; gap: 16px;
}
.story-card {
  position: relative; grid-column: span 5; margin: 0; overflow: hidden; background: #161616;
}
.story-card-tall { grid-column: span 7; grid-row: span 2; }
.story-card-wide { grid-column: span 6; }
.story-card img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .8s var(--ease), filter .5s ease; }
.story-card:hover img { transform: scale(1.04); filter: brightness(.82); }
.story-copy {
  position: absolute; inset: auto 0 0; padding: 70px 26px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.90));
}
.story-copy small { color: #ff747a; text-transform: uppercase; letter-spacing: .16em; }
.story-copy h3 { margin: 6px 0 0; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }

.editorial { background: #d8d2c9; }
.editorial-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.editorial-copy h2 { font-size: clamp(42px, 5.4vw, 76px); }
.editorial-copy > p { margin-left: 0; }
.editorial-copy .button { margin-top: 22px; }
.editorial-image { margin: 0; box-shadow: 0 35px 80px rgba(0,0,0,.22); transform: rotate(1deg); }
.editorial-image img { width: 100%; cursor: zoom-in; }

.contact { color: white; background: var(--red); }
.contact-panel { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.contact .eyebrow { color: #ffd0d2; }
.contact h2 { font-size: clamp(55px, 8vw, 112px); }
.contact p { margin-bottom: 0; color: #ffd7d9; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; min-width: 230px; }
.text-link { color: white; text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: .15em; }

.site-footer { color: #aaa; background: var(--black); border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: .7fr 1.6fr .5fr; gap: 50px;
  padding-block: 44px; font-size: 11px; line-height: 1.7;
}
.footer-grid p { margin: 0; }
.footer-grid p:last-child { text-align: right; }
.footer-grid strong { color: white; letter-spacing: .14em; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.lightbox {
  width: min(94vw, 1500px); max-width: none; height: min(92vh, 1100px);
  padding: 0; border: 0; color: white; background: rgba(5,5,5,.96);
  box-shadow: 0 30px 100px rgba(0,0,0,.7);
}
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; height: calc(100% - 50px); object-fit: contain; }
.lightbox p { margin: 0; padding: 13px 55px 13px 18px; color: #aaa; font-size: 12px; }
.lightbox-close {
  position: absolute; z-index: 2; top: 10px; right: 12px;
  width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%; color: white; background: rgba(0,0,0,.55); cursor: pointer; font-size: 25px;
}

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 760px); }
  .main-nav {
    position: fixed; inset: 0; z-index: -1;
    display: grid; align-content: center; justify-items: center; gap: 24px;
    background: rgba(7,7,7,.98); opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; }
  .main-nav a { font-size: 18px; }
  .menu-toggle {
    position: relative; z-index: 2; display: grid; align-content: center; gap: 7px;
    width: 44px; height: 44px; padding: 10px; border: 0; color: white; background: transparent;
  }
  .menu-toggle span { display: block; width: 24px; height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .hero-content { padding-bottom: 150px; }
  .hero-title { font-size: clamp(48px, 10vw, 82px); }
  .scroll-cue { display: none; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .design-layout, .interior-panel, .editorial-layout { grid-template-columns: 1fr; }
  .design-copy { position: static; }
  .heritage-visual img { max-height: 780px; }
  .interior-image { min-height: 400px; }
  .story-grid { grid-auto-rows: 310px; }
  .story-card, .story-card-tall, .story-card-wide { grid-column: span 6; grid-row: span 1; }
  .story-card-tall { grid-row: span 2; }
  .editorial-copy { max-width: 650px; }
  .contact-panel { align-items: flex-start; flex-direction: column; }
  .contact-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1.5fr; }
  .footer-grid p:last-child { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 680px) {
  :root { --container: calc(100% - 26px); --header-h: 66px; }
  .site-header { padding-inline: 13px; height: 66px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy small { display: none; }
  .hero-media img { object-position: center 54%; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.30) 75%, rgba(0,0,0,.46) 100%);
  }
  .hero-content { padding-bottom: 132px; }
  .hero-title { font-size: clamp(43px, 14vw, 69px); }
  .hero-lead { font-size: 15px; max-width: 92%; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 300px; }
  .hero-meta { left: 13px; right: 13px; bottom: 24px; gap: 10px; flex-wrap: wrap; font-size: 8px; }
  .hero-meta span:not(:last-child)::after { margin-left: 10px; }
  .section { padding-block: 82px; }
  .section-heading { margin-bottom: 45px; text-align: left; }
  .section-heading h2, .interior-copy h2, .editorial-copy h2 { font-size: clamp(39px, 12vw, 58px); }
  .section-heading > p:last-child { margin-left: 0; font-size: 15px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 135px; padding: 20px 16px; }
  .metric strong { font-size: 38px; }
  .metric small { font-size: 8px; }
  .feature-card { min-height: 330px; }
  .feature-card-dark { padding: 30px 23px; }
  .feature-card-dark h3 { font-size: 40px; }
  .design-layout { gap: 25px; }
  .heritage-visual img { max-height: none; }
  .interior-panel { margin-top: 70px; }
  .interior-image { min-height: 280px; }
  .interior-copy { padding: 32px 23px 40px; }
  .studio-grid { grid-template-columns: 1fr; gap: 12px; }
  .studio-card, .studio-card-wide { aspect-ratio: 1 / 1; }
  .studio-card figcaption { padding: 25px 18px 17px; }
  .studio-card figcaption span { font-size: 20px; }
  .studio-card figcaption small { font-size: 8px; }
  .manifesto { min-height: 74svh; }
  .manifesto-media img { object-position: center 68%; }
  .manifesto blockquote { font-size: clamp(36px, 11vw, 55px); }
  .story-grid { display: block; }
  .story-card { min-height: 500px; margin-bottom: 12px; }
  .story-copy h3 { font-size: 26px; }
  .editorial-layout { gap: 46px; }
  .contact h2 { font-size: clamp(52px, 17vw, 82px); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-block: 36px; }
  .footer-grid p:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
