:root {
  --green-950: #102f27;
  --green-900: #153c31;
  --green-700: #315849;
  --cream-50: #fffaf0;
  --cream-100: #f7efdf;
  --cream-200: #e9dcc5;
  --gold-500: #bd8e3f;
  --gold-300: #d7b873;
  --ink: #18362d;
  --shadow: 0 24px 70px rgba(22, 41, 34, .18);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 184, 115, .24), transparent 32rem),
    radial-gradient(circle at 86% 88%, rgba(49, 88, 73, .13), transparent 32rem),
    var(--cream-100);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.page-shell {
  width: min(1440px, 100%);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 3rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.25rem, 2.6vw, 2.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  width: fit-content;
}

.brand__mark {
  width: 30px;
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(168, 31, 46, .13));
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: stretch;
  min-height: min(690px, 72svh);
  overflow: hidden;
  border: 1px solid rgba(189, 142, 63, .36);
  border-radius: 28px;
  background: rgba(255, 250, 240, .74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(16, 47, 39, .16));
  pointer-events: none;
}

.hero__visual picture,
.hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero__content {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  background:
    linear-gradient(rgba(255, 250, 240, .92), rgba(255, 250, 240, .94)),
    var(--cream-50);
}

.hero__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1.25rem;
  border: 1px solid rgba(189, 142, 63, .34);
  border-radius: 18px;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold-500);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.3vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.intro {
  max-width: 34rem;
  margin: clamp(1.4rem, 3vw, 2.25rem) 0 0;
  color: var(--green-700);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.intro strong { color: var(--green-900); }

.status {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
  padding: .75rem 1rem;
  border: 1px solid rgba(49, 88, 73, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  color: var(--green-900);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status__dot {
  width: .56rem;
  height: .56rem;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(189, 142, 63, .14);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  color: rgba(21, 60, 49, .62);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__visual {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .hero__visual::after {
    background: linear-gradient(180deg, transparent 70%, rgba(16, 47, 39, .12));
  }

  .hero__content {
    padding: clamp(2rem, 8vw, 4rem);
  }

  h1 { max-width: 15ch; }
}

@media (max-width: 560px) {
  .page-shell { padding: 1rem; }

  .brand__name {
    font-size: .88rem;
    letter-spacing: .18em;
  }

  .hero { border-radius: 20px; }

  .hero__visual { aspect-ratio: 4 / 3; }

  .hero__visual img {
    object-position: 50% 62%;
    transform: scale(1.04);
  }

  .hero__content::before { inset: .75rem; }

  footer {
    flex-wrap: wrap;
    font-size: .68rem;
    letter-spacing: .11em;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand,
  .hero {
    animation: reveal .7s cubic-bezier(.2, .7, .2, 1) both;
  }

  .hero { animation-delay: .08s; }

  @keyframes reveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
