:root {
  --olive: #4f5f3d;
  --sage: #7c8e67;
  --light-sage: #a8b695;
  --linen: #dccfbe;
  --ivory: #f7f4ee;
  --muted: #6b755b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

::selection { background: var(--linen); color: var(--olive); }

.landing-shell {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: 34px clamp(24px, 5vw, 76px) 28px;
  background:
    radial-gradient(circle at 74% 43%, rgba(220, 207, 190, .46), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, .68), transparent 38%),
    var(--ivory);
}

.landing-shell::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(79, 95, 61, .16);
  pointer-events: none;
}

.topbar, footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: -.03em;
}

.wordmark span { color: var(--sage); font-style: italic; }

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(124, 142, 103, .12);
  animation: pulse 2.8s ease-in-out infinite;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  min-height: calc(100svh - 200px);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}

.hero-copy { padding: 52px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--sage);
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.15vw, 92px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}

h1 em { color: var(--sage); font-weight: 400; }

.intro {
  max-width: 540px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
}

.signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
}

.signature-line { width: 64px; height: 1px; background: var(--light-sage); }

.brand-stage {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-wrap {
  width: 78%;
  aspect-ratio: 1;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 28px 80px rgba(79, 95, 61, .13), 0 0 0 12px rgba(255, 255, 255, .42);
  animation: reveal 1s cubic-bezier(.2,.8,.2,1) both;
}

.logo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.orbit {
  position: absolute;
  border: 1px solid rgba(124, 142, 103, .38);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one { inset: 3%; border-right-color: transparent; transform: rotate(-18deg); }
.orbit-two { inset: 12%; border-left-color: transparent; transform: rotate(20deg); }

footer {
  padding-top: 20px;
  border-top: 1px solid rgba(79, 95, 61, .22);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

footer p { margin: 0; }
footer a { color: inherit; text-underline-offset: 4px; transition: color .2s ease; }
footer a:hover, footer a:focus-visible { color: var(--olive); }

.leaf {
  position: absolute;
  width: 68px;
  height: 26px;
  border-radius: 100% 0 100% 0;
  border: 1px solid rgba(124, 142, 103, .2);
  pointer-events: none;
}

.leaf-one { left: 4%; top: 31%; transform: rotate(-28deg); }
.leaf-two { right: 4%; top: 14%; transform: rotate(42deg) scale(.7); }

@keyframes pulse { 50% { opacity: .45; transform: scale(.78); } }
@keyframes reveal { from { opacity: 0; transform: translateY(18px) scale(.96); } }

@media (max-width: 900px) {
  .landing-shell { padding: 28px 30px 24px; }
  .hero { grid-template-columns: 1fr; gap: 0; padding: 24px 0 54px; }
  .hero-copy { padding: 36px 0 20px; text-align: center; }
  .eyebrow, .signature { justify-content: center; }
  .intro { margin-left: auto; margin-right: auto; }
  .brand-stage { width: min(88vw, 480px); }
}

@media (max-width: 560px) {
  .landing-shell { padding: 24px 22px 22px; }
  .landing-shell::before { inset: 9px; }
  .wordmark { font-size: 18px; }
  .status { font-size: 9px; letter-spacing: .12em; }
  .eyebrow { font-size: 10px; letter-spacing: .13em; }
  h1 { font-size: clamp(43px, 13vw, 64px); }
  .intro { font-size: 15px; }
  footer { gap: 12px; align-items: flex-end; }
}

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