:root {
  --ink: #172016;
  --cream: #f4f1e9;
  --paper: #ebe7da;
  --green: #b6d441;
  --muted: rgba(244, 241, 233, 0.72);
  --line: rgba(244, 241, 233, 0.22);
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
}

.page-shell { min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr) 265px; }

.hero { min-height: 100svh; position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 34px 5.7vw 32px; isolation: isolate; }

.hero__image, .hero__veil { position: absolute; inset: 0; z-index: -2; }

.hero__image {
  background-image: url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero__veil { z-index: -1; background: linear-gradient(90deg, rgba(15, 24, 15, .93) 0%, rgba(15, 24, 15, .76) 48%, rgba(15, 24, 15, .38) 100%), linear-gradient(0deg, rgba(15, 24, 15, .58) 0%, transparent 45%); }

.site-header { display: flex; justify-content: space-between; align-items: flex-start; }

.wordmark { color: var(--cream); text-decoration: none; display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 12px; letter-spacing: .18em; line-height: .96; }
.wordmark em { color: var(--green); font-style: normal; }
.wordmark__leaf { color: var(--green); font-size: 35px; line-height: .65; transform: rotate(-28deg); display: inline-block; }
.header-note { color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding-top: 5px; }

.hero__content { max-width: 630px; margin: auto 0 12vh; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 25px; color: var(--green); font-size: 11px; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 1px; display: block; background: var(--green); }
h1 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(58px, 8vw, 114px); font-weight: 500; letter-spacing: -.065em; line-height: .91; }
h1 i { color: var(--green); font-weight: 500; }
.intro { max-width: 390px; margin: 32px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.hero__footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; color: var(--muted); }
.brand-stamp { width: 62px; height: 62px; border-radius: 50%; overflow: hidden; background: var(--cream); mix-blend-mode: screen; opacity: .9; }
.brand-stamp img { width: 100%; height: 100%; object-fit: cover; }
.scroll-hint { justify-self: center; display: flex; align-items: center; gap: 9px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.scroll-hint__line { width: 34px; height: 1px; background: var(--green); }
.location { justify-self: end; margin: 0; text-align: right; font: 12px/1.5 "Playfair Display", Georgia, serif; color: var(--cream); }
.location span { color: var(--muted); font: 10px "DM Sans", sans-serif; letter-spacing: .1em; text-transform: uppercase; }

.side-panel { min-height: 100svh; display: flex; flex-direction: column; justify-content: space-between; padding: 36px 29px 32px; background: var(--paper); color: var(--ink); }
.side-panel__top { color: rgba(23, 32, 22, .64); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.dot { display: inline-block; width: 7px; height: 7px; margin: 0 7px 1px 0; border-radius: 50%; background: var(--green); }
.teasers { margin-top: auto; margin-bottom: auto; display: grid; gap: 22px; }
.teasers div { border-bottom: 1px solid rgba(23, 32, 22, .2); padding-bottom: 13px; }
.teasers strong { display: block; font: 500 49px/.9 "Playfair Display", Georgia, serif; letter-spacing: -.06em; }
.teasers span { display: block; margin-top: 9px; color: rgba(23, 32, 22, .62); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.side-panel__bottom { display: flex; justify-content: space-between; align-items: end; border-top: 1px solid rgba(23, 32, 22, .2); padding-top: 19px; }
.side-panel__bottom p { margin: 0; font: 17px/1.2 "Playfair Display", Georgia, serif; }
.side-panel__bottom em { color: #6a7e28; font-style: italic; }
.monogram { color: #6a7e28; font: 600 12px "DM Sans", sans-serif; letter-spacing: .15em; }
.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: 800px) {
  .page-shell { display: block; }
  .hero { min-height: 720px; padding: 26px 25px 27px; }
  .hero__content { margin: auto 0 10vh; }
  .header-note { display: none; }
  .hero__footer { grid-template-columns: 1fr auto; }
  .scroll-hint { display: none; }
  .location { font-size: 11px; }
  .side-panel { min-height: auto; padding: 24px 25px 27px; }
  .teasers { margin: 44px 0 50px; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .teasers strong { font-size: 37px; }
  .side-panel__bottom { padding-top: 16px; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(53px, 16vw, 72px); }
  .intro { font-size: 13px; }
  .brand-stamp { width: 52px; height: 52px; }
}
