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

:root {
  --ink: #171614;
  --paper: #f3f0e9;
  --muted: #777269;
  --line: rgba(23,22,20,.18);
  --bronze: #9a7650;
  --dark: #11110f;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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


/* --------------------------------------------------
   HEADER
-------------------------------------------------- */

.site-header {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243,240,233,.92);
  backdrop-filter: blur(12px);
}

.brand {
  letter-spacing: .18em;
  font-weight: 500;
  font-size: 14px;
}

.brand img {
  display: block;
  width: 115px;
  height: auto;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.header-cta {
  justify-self: end;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}


/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
}

.hero-image {
  min-height: 720px;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(150,115,75,.55),
      transparent 25%
    ),
    linear-gradient(135deg, #24211d, #0f0f0e);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.28);
  letter-spacing: .18em;
  font-size: 11px;
  overflow: hidden;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
  max-width: 700px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: .98;
  margin: 0;
}

h1 {
  font-size: clamp(64px, 8vw, 120px);
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -.035em;
}

.hero-line {
  font-family: Georgia, serif;
  font-size: 25px;
  margin: 28px 0 10px;
}

.intro {
  max-width: 430px;
  color: var(--muted);
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin: 38px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-meta span:first-child {
  font-size: 18px;
  letter-spacing: 0;
  color: var(--ink);
}


/* --------------------------------------------------
   BUTTON
-------------------------------------------------- */

.button {
  display: inline-block;
  width: fit-content;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.button:hover {
  background: transparent;
  color: var(--ink);
}

.button:disabled {
  opacity: .55;
  cursor: wait;
}


/* --------------------------------------------------
   GENERAL CONTENT SECTIONS
-------------------------------------------------- */

.split,
.edition,
.process {
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px 5vw;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.body-copy {
  max-width: 560px;
  color: #514e48;
  font-size: 18px;
}


/* --------------------------------------------------
   HISTORY
-------------------------------------------------- */

.history-section {
  border-top: 1px solid var(--line);
}

.history-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 5vw;
}

.history-intro {
  max-width: 900px;
}

.history-intro h2 {
  max-width: 850px;
}

.history-intro > p:last-child {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.history-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 70px;
  margin-top: 100px;
}

.history-block {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.history-number {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  margin-bottom: 42px;
}

.history-block h3 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 18px;
}

.history-block p {
  max-width: 500px;
  color: #514e48;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}


/* --------------------------------------------------
   DARK PROJECT SECTION
-------------------------------------------------- */

.dark-section {
  background: var(--dark);
  color: var(--paper);
}

.section-inner {
  max-width: var(--max);
  margin: auto;
  padding: 130px 5vw;
}

.dark-section .eyebrow {
  color: #a8a197;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-top: 90px;
}

.project-grid article {
  border-top: 1px solid rgba(243,240,233,.25);
  padding-top: 20px;
}

.project-grid span {
  color: #a8a197;
  font-size: 11px;
  letter-spacing: .1em;
}

.project-grid h3 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  margin: 45px 0 10px;
}

.project-grid p {
  color: #b7b1a8;
  max-width: 300px;
}


/* --------------------------------------------------
   EDITION
-------------------------------------------------- */

.edition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.edition-copy p:last-child {
  max-width: 500px;
  color: var(--muted);
  margin-top: 32px;
}

.edition-specs {
  border-top: 1px solid var(--line);
}

.edition-specs div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.edition-specs span {
  color: var(--muted);
}

.edition-specs strong {
  font-weight: 500;
  text-align: right;
}


/* --------------------------------------------------
   PROCESS
-------------------------------------------------- */

.process {
  border-top: 1px solid var(--line);
}

.process h2 {
  max-width: 700px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
}

.timeline div {
  min-height: 170px;
  padding: 20px 14px 0 0;
  border-right: 1px solid var(--line);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 65px;
}

.timeline strong {
  font-weight: 500;
  font-size: 14px;
}


/* --------------------------------------------------
   WAITING LIST
-------------------------------------------------- */

.waiting-list {
  max-width: none;
  padding-left: max(5vw, calc((100vw - var(--max)) / 2));
  padding-right: max(5vw, calc((100vw - var(--max)) / 2));
  background: #ddd7cc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.waiting-list > div:first-child {
  max-width: 620px;
}

.waiting-list p:last-child {
  max-width: 500px;
  color: #514e48;
}


/* --------------------------------------------------
   SIGNUP FORM
-------------------------------------------------- */

.signup {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.signup label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 20px 0 8px;
}

.signup input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 12px 0;
  font: inherit;
  outline: none;
}

.signup input:focus {
  border-bottom-color: var(--bronze);
}


/* --------------------------------------------------
   COUNTRY SELECT
-------------------------------------------------- */

.signup select {
  width: 100%;
  height: auto;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px 30px 12px 0;
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
  outline: none;
  cursor: pointer;
}

.signup select:focus {
  border-bottom-color: var(--bronze);
}

.signup select:invalid {
  color: var(--muted);
}

.signup select option {
  color: var(--ink);
  background: var(--paper);
}


/* --------------------------------------------------
   CONSENT
-------------------------------------------------- */

.signup .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .08em;
}

.signup .consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 1px 0 0;
  padding: 0;
  border: 1px solid var(--ink);
  accent-color: var(--ink);
  cursor: pointer;
}


/* --------------------------------------------------
   TURNSTILE
-------------------------------------------------- */

/*
   Turnstile is rendered inside a Cloudflare iframe.
   Its internal colours cannot be controlled by this CSS.
*/

.cf-turnstile {
  max-width: 100%;
  margin-top: 26px;
  margin-bottom: 4px;
}


/* --------------------------------------------------
   SUBMIT / MESSAGE
-------------------------------------------------- */

.signup .button {
  margin-top: 32px;
}

.signup small {
  color: var(--muted);
  margin-top: 14px;
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

footer {
  display: grid;
  grid-template-columns: 1.5fr 2fr 2fr 1fr;
  gap: 24px;
  padding: 35px 5vw;
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.copyright {
  text-align: right;
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 800px) {

  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .split,
  .edition,
  .waiting-list {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 58vh;
  }

  .hero-image img {
    min-height: 58vh;
  }

  .hero-copy {
    padding: 70px 7vw 90px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .project-grid h3 {
    margin-top: 25px;
  }


  /* HISTORY */

  .history-inner {
    padding: 90px 7vw;
  }

  .history-intro > p:last-child {
    font-size: 16px;
  }

  .history-content {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 65px;
  }

  .history-number {
    margin-bottom: 28px;
  }

  .history-block h3 {
    font-size: 27px;
  }


  /* TIMELINE */

  .timeline {
    grid-template-columns: repeat(2,1fr);
  }

  .timeline div:nth-child(2) {
    border-right: 0;
  }

  .timeline div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }


  /* FOOTER */

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

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    text-align: left;
  }
}


/* --------------------------------------------------
   GLOBAL OVERFLOW
-------------------------------------------------- */

html,
body {
  overflow-x: hidden;
}