:root {
  --ink: #111110;
  --ivory: #f1eee7;
  --muted: #a7a198;
  --line: rgba(241, 238, 231, 0.16);
  --gold: #b9a477;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.landing-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  background: var(--ink);
}

.intro-panel {
  min-height: 100svh;
  padding: clamp(24px, 3.6vw, 60px) clamp(26px, 5vw, 88px) clamp(22px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.intro-panel::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  left: -310px;
  top: 28%;
  border: 1px solid rgba(185, 164, 119, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.brand-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.brand-logo {
  width: clamp(168px, 16vw, 245px);
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.season-code {
  padding-top: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.hero-copy {
  max-width: 750px;
  margin: auto 0;
  padding: clamp(52px, 7vh, 90px) 0 clamp(58px, 8vh, 96px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow span { width: 34px; height: 1px; background: var(--gold); }

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6.2vw, 102px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

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

.season-title {
  margin: 33px 0 0;
  color: var(--ivory);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 535px;
  margin: 18px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

.primary-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 34px;
}

.primary-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 22px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.primary-button:hover { background: var(--gold); transform: translateY(-2px); }

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover { color: var(--gold); border-color: var(--gold); }

.contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d7d2c9;
  font-size: 11px;
  letter-spacing: 0.035em;
  line-height: 1.4;
  transition: color 180ms ease;
}

.address-item {
  align-items: flex-start;
}

.contact-item:hover { color: var(--gold); }

.contact-item small {
  display: block;
  margin-bottom: 5px;
  color: #78746d;
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.icon-wrap {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.icon-wrap svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-wrap .fill-dot { fill: currentColor; stroke: none; }

.visual-panel {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: #8f9497;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transition: transform 900ms cubic-bezier(.2,.75,.25,1);
}

.visual-panel:hover .hero-image { transform: scale(1.018); }

.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.08) 48%, rgba(10,10,10,.7) 100%);
  pointer-events: none;
}

.visual-caption {
  position: absolute;
  left: clamp(26px, 3vw, 48px);
  right: 74px;
  bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: white;
}

.visual-caption span {
  color: rgba(255,255,255,.62);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.visual-caption p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.25;
  text-align: right;
}

.vertical-mark {
  position: absolute;
  top: 42px;
  right: 28px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 8px;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

@media (max-width: 1120px) {
  .landing-shell { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); }
  .contact-strip { grid-template-columns: 1fr 1fr; }
  .address-item { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .landing-shell { display: flex; flex-direction: column; }
  .intro-panel { min-height: auto; padding: 24px 22px 28px; }
  .brand-logo { width: 174px; height: 70px; }
  .hero-copy { padding: 66px 0 62px; }
  h1 { font-size: clamp(50px, 13vw, 74px); }
  .hero-description { max-width: 560px; }
  .visual-panel { min-height: 76svh; order: -1; }
  .visual-panel::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,17,16,.45), transparent 35%);
  }
  .hero-image { object-position: 50% 28%; }
}

@media (max-width: 560px) {
  .visual-panel { min-height: 68svh; }
  .vertical-mark { top: 24px; right: 16px; }
  .visual-caption { left: 20px; right: 40px; bottom: 22px; }
  .hero-copy { padding: 55px 0 58px; }
  .eyebrow { margin-bottom: 22px; }
  .season-title { line-height: 1.7; }
  .primary-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .primary-button { justify-content: space-between; }
  .text-link { width: max-content; }
  .contact-strip { grid-template-columns: 1fr; gap: 17px; }
  .address-item { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
