:root {
  --ivory: #f3eee6;
  --paper: #faf8f3;
  --ink: #241c17;
  --muted: #73675e;
  --gold: #b99a6d;
  --line: rgba(36, 28, 23, 0.18);
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4.8vw, 76px);
  color: var(--ivory);
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
}

.brand-mark {
  width: 33px;
  height: 33px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ivory);
}

.brand-mark img,
.contact-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name,
.footer-brand {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  gap: 38px;
  font-size: 13px;
}

.header-contact {
  justify-self: end;
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.desktop-nav a,
.header-contact,
.text-link,
footer a {
  transition: opacity 180ms ease;
}

.desktop-nav a:hover,
.header-contact:hover,
.text-link:hover,
footer a:hover {
  opacity: 0.62;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  color: var(--ivory);
  background: var(--ink);
}

.hero-copy {
  align-self: center;
  padding: 164px clamp(30px, 7vw, 110px) 100px clamp(30px, 8vw, 126px);
}

.eyebrow {
  margin: 0 0 36px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  font-size: clamp(70px, 7.6vw, 126px);
  line-height: 0.88;
}

h2 {
  font-size: clamp(56px, 6.8vw, 104px);
  line-height: 0.96;
}

em {
  color: var(--gold);
  font-weight: 400;
}

.hero-intro {
  max-width: 525px;
  margin: 50px 0 34px;
  color: rgba(243, 238, 230, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(243, 238, 230, 0.45);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 900px;
  margin: 0;
  overflow: hidden;
}

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

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 28, 23, 0.24), transparent 25%);
  pointer-events: none;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 34px;
  left: 38px;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.manifesto,
.channels,
.contact {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 60px;
  padding: clamp(100px, 11vw, 180px) clamp(28px, 8vw, 126px);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--gold);
}

.section-label p {
  margin: 0;
}

.manifesto-copy .lead {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.body-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px;
  max-width: 810px;
  margin: 78px 0 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.body-columns p {
  margin: 0;
}

.operations {
  padding: clamp(100px, 11vw, 170px) clamp(28px, 8vw, 126px);
  color: var(--ivory);
  background: #2e241e;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 60px;
  padding-bottom: 95px;
}

.section-label.light {
  color: rgba(243, 238, 230, 0.56);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: calc(34% + 20px);
  border-top: 1px solid rgba(243, 238, 230, 0.2);
  border-left: 1px solid rgba(243, 238, 230, 0.2);
}

.activity-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 34px 35px;
  border-right: 1px solid rgba(243, 238, 230, 0.2);
  border-bottom: 1px solid rgba(243, 238, 230, 0.2);
}

.activity-card > span {
  color: var(--gold);
  font-size: 11px;
}

.activity-card h3 {
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.activity-card p {
  max-width: 340px;
  margin: 0;
  color: rgba(243, 238, 230, 0.58);
  font-size: 13px;
  line-height: 1.75;
}

.channels {
  align-items: start;
}

.channels-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1fr);
  grid-column: 1 / -1;
  gap: 60px;
}

.channels-intro h2,
.channels-intro > p {
  grid-column: 2;
}

.channels-intro > p {
  max-width: 520px;
  margin: 34px 0 70px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.channel-list {
  grid-column: 2;
  border-top: 1px solid var(--line);
}

.channel-row {
  min-height: 116px;
  display: grid;
  grid-template-columns: 50px 1.4fr 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.channel-row > span:first-child {
  color: var(--gold);
  font-size: 10px;
}

.channel-row strong {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 400;
}

.channel-row p {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.market-note {
  padding: clamp(100px, 11vw, 170px) clamp(28px, 8vw, 126px);
  text-align: center;
  background: var(--ivory);
}

.market-note blockquote {
  max-width: 1100px;
  margin: 0 auto 70px;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 1.02;
}

.market-meta {
  display: flex;
  justify-content: center;
  gap: 52px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact {
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  color: var(--ivory);
  background: var(--ink);
}

.contact-mark {
  width: min(100%, 520px);
  aspect-ratio: 1;
}

.contact-copy h2 {
  margin-bottom: 62px;
}

address {
  padding-top: 30px;
  border-top: 1px solid rgba(243, 238, 230, 0.2);
  color: rgba(243, 238, 230, 0.66);
  font-size: 14px;
  font-style: normal;
  line-height: 1.85;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 30px;
  padding: 46px clamp(28px, 8vw, 126px);
  color: var(--ivory);
  background: var(--ink);
  border-top: 1px solid rgba(243, 238, 230, 0.17);
  font-size: 11px;
}

footer p {
  margin: 0;
  color: rgba(243, 238, 230, 0.46);
}

footer p:last-child {
  grid-column: 3;
  margin-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .site-header {
    height: 82px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 12;
    display: grid;
    gap: 7px;
    width: 42px;
    padding: 10px 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 90px 28px;
    background: var(--ink);
    font-family: var(--serif);
    font-size: 44px;
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
  }

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

  .hero-copy {
    min-height: 760px;
    padding-top: 150px;
  }

  .hero-visual {
    min-height: 700px;
  }

  .manifesto,
  .section-heading,
  .channels,
  .channels-intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .manifesto-copy,
  .section-heading h2,
  .channels-intro h2,
  .channels-intro > p,
  .channel-list {
    grid-column: 1;
  }

  .section-label {
    margin-bottom: 35px;
  }

  .activity-grid {
    margin-left: 0;
  }

  .contact-mark {
    max-width: 440px;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 15px;
  }

  .hero-copy {
    min-height: 680px;
    padding-top: 140px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .body-columns,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .body-columns {
    gap: 28px;
    margin-top: 52px;
  }

  .activity-card {
    min-height: 250px;
  }

  .channel-row {
    grid-template-columns: 38px 1fr auto;
  }

  .channel-row p {
    display: none;
  }

  .market-meta {
    flex-direction: column;
    gap: 15px;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p:first-of-type {
    display: none;
  }

  footer p:last-child {
    grid-column: 1 / -1;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
