:root {
  --ink: #1d252b;
  --ocean: #1b3e5f;
  --gold: #b8864a;
  --soft-white: #f7f6f2;
  --line: rgba(184, 134, 74, .38);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 4vw, 64px);
}
.brand-mini img {
  width: 116px;
  height: auto;
}
.top-link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
}

.hero {
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px 6vw 110px;
}

.hero-art-wrap {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}
.hero-art {
  width: min(100%, 510px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero-art-small {
  position: absolute;
  right: 2%;
  bottom: 3%;
  width: 150px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 16px 38px rgba(29,37,43,.12);
}
.hero-art-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.rule {
  width: 72px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 30px;
}
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.025em;
}
h1 {
  margin: 0;
  font-size: clamp(58px, 6.1vw, 94px);
  line-height: .9;
}
h1 em { font-weight: 400; }
.intro {
  max-width: 560px;
  margin: 34px 0 32px;
  font-size: 16px;
  line-height: 1.8;
  color: #596169;
}

.signup-form {
  display: flex;
  max-width: 590px;
}
.signup-form input {
  flex: 1;
  min-width: 0;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(29,37,43,.18);
  border-right: 0;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.signup-form input:focus { border-color: var(--gold); }
.signup-form button {
  height: 58px;
  border: 1px solid var(--ocean);
  background: var(--ocean);
  color: #fff;
  padding: 0 27px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.signup-form button:hover { transform: translateY(-1px); }
.fine-print {
  margin: 12px 0 0;
  color: #8a9094;
  font-size: 11px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 6vw;
}
.philosophy {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: center;
}
.section-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-copy h2 {
  margin: 0 0 30px;
  max-width: 700px;
  font-size: clamp(42px, 4.5vw, 67px);
  line-height: .98;
}
.section-copy p {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.9;
  color: #596169;
  margin: 0 0 22px;
}

.art-strip {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px 150px;
}
.art-tile {
  height: 390px;
  overflow: hidden;
}
.art-tile--wide { height: 520px; }
.art-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.art-tile:hover img { transform: scale(1.025); }

.more {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.more h2 {
  max-width: 700px;
  margin: 0 0 26px;
  font-size: clamp(42px, 4.5vw, 67px);
  line-height: .98;
}
.more-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #596169;
  font-size: 16px;
  line-height: 1.9;
}
.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
  font-size: 13px;
}
.more-mark {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: right;
}

.join {
  background: var(--ocean);
  color: #fff;
  padding: 150px 6vw;
}
.join-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow-light { color: #e5c18f; }
.join h2 {
  margin: 0 auto 25px;
  max-width: 900px;
  font-size: clamp(44px, 5vw, 74px);
  line-height: .98;
}
.join h2 strong { font-weight: 500; color: #d7b079; }
.join-inner > p:not(.eyebrow) {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  margin-bottom: 38px;
}
.signup-form--light {
  margin: 0 auto;
  max-width: 620px;
}
.signup-form--light input {
  border-color: rgba(255,255,255,.18);
  background: #fff;
}
.signup-form--light button {
  background: #fff;
  border-color: #fff;
  color: var(--ocean);
}

.footer {
  padding: 55px 22px 65px;
  text-align: center;
  background: #fff;
}
.footer-logo {
  width: 150px;
  margin: 0 auto 18px;
}
.footer p {
  margin: 0;
  color: #7b8389;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  font-size: 13px;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .site-header { padding: 18px 20px; }
  .brand-mini img { width: 94px; }
  .top-link { font-size: 9px; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
    min-height: auto;
    gap: 65px;
  }
  .hero-art-wrap { min-height: 430px; }
  .hero-art { width: min(78vw, 470px); }
  .hero-art-small { width: 110px; right: 6%; }
  .hero-copy { text-align: center; margin: 0 auto; }
  .rule { margin-left: auto; margin-right: auto; }
  .intro { margin-left: auto; margin-right: auto; }
  .signup-form { margin-left: auto; margin-right: auto; }
  .fine-print { text-align: center; }

  .philosophy, .more { grid-template-columns: 1fr; }
  .section { padding-top: 110px; padding-bottom: 110px; }
  .more-mark { text-align: left; }
  .art-strip { grid-template-columns: 1fr 1fr; padding-bottom: 110px; }
  .art-tile--wide { grid-column: 1 / -1; height: 430px; }
  .art-tile { height: 300px; }
}

@media (max-width: 560px) {
  .hero { padding-left: 22px; padding-right: 22px; }
  h1 { font-size: 57px; }
  .hero-art-wrap { min-height: 360px; }
  .hero-art { width: 86vw; }
  .hero-art-small { width: 92px; border-width: 5px; }
  .signup-form { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .signup-form input, .signup-form button { width: 100%; border: 1px solid rgba(29,37,43,.18); }
  .signup-form button { border-color: var(--ocean); }
  .section { padding-left: 22px; padding-right: 22px; }
  .art-strip { grid-template-columns: 1fr; padding-left: 22px; padding-right: 22px; }
  .art-tile, .art-tile--wide { height: 330px; grid-column: auto; }
  .join { padding-left: 22px; padding-right: 22px; }
  .join h2 { font-size: 48px; }
  .signup-form--light input, .signup-form--light button { border-color: rgba(255,255,255,.18); }
}

/* Final refinement: more breathing room, stronger wordmark, restored temporary artwork strip */
.brand-mini {
  display: inline-flex;
  align-items: center;
  padding-right: 34px;
}

.brand-mini img {
  width: 164px;
}

.hero {
  gap: clamp(58px, 9vw, 135px);
}

@media (max-width: 860px) {
  .brand-mini { padding-right: 20px; }
  .brand-mini img { width: 132px; }
  .hero { gap: 72px; }
}

@media (max-width: 560px) {
  .brand-mini { padding-right: 12px; }
  .brand-mini img { width: 124px; }
  .hero { gap: 58px; }
}
