:root {
  color-scheme: light;
  font-family: Georgia, "Times New Roman", serif;
  color: #182019;
  background: #fff;
}

* { box-sizing: border-box; }

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

body {
  overflow: hidden;
  background: #fff;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1.5rem, 6vw, 5rem);
}

.intro {
  width: min(42rem, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #67806a;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.25rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.lede {
  max-width: 31rem;
  margin: 1.75rem auto 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: #68706a;
}

.foliage-layer {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  contain: strict;
}

.ivy-stem,
.ivy-shoot {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.ivy-stem {
  stroke: var(--stem-color, #3f6240);
  stroke-width: var(--stem-width, 2.4);
}

.ivy-shoot {
  stroke: var(--stem-color, #4b7048);
  stroke-width: var(--stem-width, 2.4);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-shoot var(--shoot-time, 900ms) cubic-bezier(0.3, 0.05, 0.3, 1) forwards;
}

.ivy-leaf {
  transform-box: fill-box;
  transform-origin: 50% 86%;
  opacity: 0.98;
}

.ivy-leaf.is-growing {
  animation: unfurl-leaf var(--leaf-time, 1500ms) cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.leaf-highlight,
.leaf-vein {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leaf-highlight {
  stroke: #f2f8e9;
  stroke-width: 4.2;
  opacity: 0.24;
}

.leaf-vein {
  stroke: #244d2c;
  stroke-width: 1.45;
  opacity: 0.48;
}

@keyframes draw-shoot { to { stroke-dashoffset: 0; } }

@keyframes unfurl-leaf {
  0% { opacity: 0.16; transform: scale(0.035) rotate(-6deg); }
  62% { opacity: 0.94; transform: scale(1.06) rotate(1deg); }
  100% { opacity: 0.98; transform: scale(1) rotate(0); }
}

@media (max-width: 600px) {
  .page-shell { padding: 1.5rem; }
  .lede { max-width: 21rem; }
}
