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

:root {
  --ink: #664900;
  --paper: #ededed;
  --soft: #e6e2df;
  --white: #ffffff;
  --line: rgba(102, 73, 0, 0.35);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behaviour: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
}

a { color: inherit; }

button, input { font: inherit; }

.site-header {
  min-height: 78px;
  padding: 0 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  z-index: 20;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  text-decoration: none;
}

.menu-button,
.menu-close {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
}

.site-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 50;
}

.site-menu.open { display: flex; }

.site-menu a {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 6rem);
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(220px, .92fr) minmax(420px, 1.16fr) minmax(220px, .92fr);
  overflow: hidden;
}

.hero-image {
  min-height: 620px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-image-left {
  background-image: url("https://static.wixstatic.com/media/c9adad_d2af945f04af4597b5808c9f2158f47f~mv2.png/v1/fill/w_710,h_708,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/Screenshot%202026-03-24%20065033.png");
}

.hero-image-right {
  background-image: url("https://static.wixstatic.com/media/c9adad_197c87dbd9d5499199027a3e9b376eab~mv2.png/v1/fill/w_849,h_707,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/Screenshot%202026-03-24%20063837.png");
}

.hero-copy {
  padding: 8vh 4vw 7vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: var(--soft);
  border-inline: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
}

h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
}

h1 {
  font-size: clamp(3.4rem, 6.2vw, 7.4rem);
  letter-spacing: -.045em;
}

.countdown {
  margin-top: clamp(58px, 9vh, 110px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.countdown div {
  padding: 22px 8px 18px;
  border-right: 1px solid var(--line);
}

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

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
}

.countdown span {
  margin-top: 5px;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-strip a {
  padding: 22px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background .2s ease, color .2s ease;
}

.social-strip a:last-child { border-right: 0; }

.social-strip a:hover {
  background: var(--ink);
  color: var(--paper);
}

.subscribe {
  padding: clamp(70px, 10vw, 150px) 7vw;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  align-items: end;
}

.subscribe h2 {
  font-size: clamp(4rem, 8vw, 9rem);
  letter-spacing: -.05em;
}

.subscribe-form label {
  display: block;
  margin-bottom: 10px;
  font-size: .8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--ink);
}

.form-row input {
  min-width: 0;
  padding: 15px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.form-row button {
  border: 0;
  padding: 0 5px 0 28px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}

.consent {
  margin-top: 22px;
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}

.consent input {
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
}

.form-message {
  min-height: 1.4em;
  margin: 18px 0 0;
  font-size: .82rem;
}

.site-footer {
  padding: 28px 3.5vw;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  font-size: .72rem;
}

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 72vh;
    border-inline: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-image {
    min-height: 52vw;
  }

  .subscribe {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 560px) {
  .site-header { min-height: 66px; }

  .hero-copy {
    min-height: 76vh;
    padding: 60px 22px 45px;
  }

  h1 { font-size: clamp(3.2rem, 16vw, 5.1rem); }

  .countdown {
    margin-top: 52px;
  }

  .countdown div { padding-inline: 2px; }

  .hero-image { min-height: 63vw; }

  .social-strip {
    grid-template-columns: 1fr;
  }

  .social-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .social-strip a:last-child { border-bottom: 0; }

  .subscribe {
    padding: 75px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row button {
    padding: 15px 0;
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
