:root {
  --ink: #24352c;
  --ink-soft: #4a5e52;
  --foam: #f4f7f0;
  --cream: #f3efe4;
  --leaf: #5f6f4e;
  --leaf-deep: #2f3f32;
  --quill: #3d4f3e;
  --apricot: #e88355;
  --apricot-deep: #d06a3c;
  --butter: #e8d48a;
  --sky: #b7d4c8;
  --radius-input: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--foam);
  overflow-x: hidden;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.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;
}

/* Atmosphere — full-bleed visual plane */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, #fff8e8 0%, transparent 55%),
    linear-gradient(165deg, #eef4ea 0%, #dde9d8 40%, #c9ddd4 72%, #e8f0e6 100%);
}

.glow {
  position: absolute;
  border-radius: 46% 54% 48% 52%;
  filter: blur(48px);
  opacity: 0.5;
  animation: drift 18s ease-in-out infinite;
}

.glow-a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  left: -8%;
  top: 12%;
  background: color-mix(in srgb, var(--butter) 70%, transparent);
  animation-duration: 22s;
}

.glow-b {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  right: -6%;
  top: 28%;
  background: color-mix(in srgb, var(--sky) 75%, transparent);
  animation-duration: 16s;
  animation-direction: reverse;
}

.glow-c {
  width: min(40vw, 340px);
  height: min(40vw, 340px);
  left: 35%;
  bottom: 8%;
  background: color-mix(in srgb, #a8bf9a 80%, transparent);
  opacity: 0.35;
  animation-duration: 20s;
}

.block {
  position: absolute;
  border-radius: 28% 32% 30% 34% / 34% 28% 36% 30%;
  opacity: 0.65;
  animation: float-soft 12s ease-in-out infinite;
}

.block-1 {
  width: clamp(72px, 12vw, 140px);
  height: clamp(56px, 9vw, 108px);
  left: 6%;
  bottom: 18%;
  background: linear-gradient(145deg, #8fa67c, var(--leaf));
  animation-delay: 0s;
}

.block-2 {
  width: clamp(58px, 9vw, 110px);
  height: clamp(58px, 9vw, 110px);
  right: 10%;
  bottom: 24%;
  border-radius: 42%;
  background: linear-gradient(145deg, #f2b07a, var(--apricot));
  animation-delay: -3s;
  animation-duration: 14s;
}

.block-3 {
  width: clamp(48px, 7vw, 88px);
  height: clamp(64px, 10vw, 120px);
  right: 18%;
  top: 16%;
  background: linear-gradient(160deg, #f0e0a0, #d4bc5c);
  animation-delay: -6s;
  animation-duration: 11s;
}

.block-4 {
  width: clamp(40px, 6vw, 72px);
  height: clamp(40px, 6vw, 72px);
  left: 16%;
  top: 22%;
  border-radius: 50%;
  background: linear-gradient(145deg, #9fc4b4, #6d9a88);
  animation-delay: -2s;
  animation-duration: 15s;
}

.block-5 {
  width: clamp(90px, 14vw, 160px);
  height: clamp(36px, 5vw, 58px);
  left: 42%;
  bottom: 14%;
  border-radius: 22px;
  background: linear-gradient(90deg, #7d9470, var(--quill));
  opacity: 0.5;
  animation-delay: -8s;
  animation-duration: 17s;
}

.arch {
  position: absolute;
  left: 50%;
  bottom: -2%;
  transform: translateX(-50%);
  width: min(920px, 120vw);
  height: auto;
  opacity: 0.28;
}

.arch-fill {
  fill: var(--leaf);
}

.arch-inner {
  fill: var(--leaf-deep);
  opacity: 0.45;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(3%, -4%) scale(1.06);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

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

@keyframes mascot-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hero composition */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vh, 6rem) clamp(1.25rem, 4vw, 2.5rem) 3.5rem;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.status {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leaf);
  animation: rise 0.9s ease-out both;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: rise 1s ease-out 0.06s both;
}

.mascot {
  width: clamp(120px, 28vw, 220px);
  height: auto;
  display: block;
  animation: mascot-bob 4.5s ease-in-out 1.1s infinite;
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(2.6rem, 10vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--leaf-deep);
}

.tagline {
  margin: 1.15rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 3.2vw, 1.75rem);
  line-height: 1.25;
  color: var(--ink);
  max-width: 22ch;
  animation: rise 1s ease-out 0.16s both;
}

.support {
  margin: 0.85rem 0 0;
  font-size: clamp(0.98rem, 2.2vw, 1.1rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 34ch;
  animation: rise 1s ease-out 0.24s both;
}

.waitlist {
  margin-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: stretch;
  width: min(100%, 440px);
  animation: rise 1s ease-out 0.34s both;
}

.waitlist input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 3.25rem;
  padding: 0 1.1rem;
  border: 1.5px solid color-mix(in srgb, var(--leaf) 28%, transparent);
  border-radius: var(--radius-input);
  background: color-mix(in srgb, white 82%, transparent);
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist input::placeholder {
  color: color-mix(in srgb, var(--ink-soft) 72%, transparent);
}

.waitlist input:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--leaf) 18%, transparent);
}

.waitlist button {
  flex: 0 0 auto;
  height: 3.25rem;
  padding: 0 1.45rem;
  border: none;
  border-radius: var(--radius-input);
  background: var(--apricot);
  color: #fffaf6;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.waitlist button:hover:not(:disabled) {
  background: var(--apricot-deep);
  transform: translateY(-1px);
}

.waitlist button:active:not(:disabled) {
  transform: translateY(0);
}

.waitlist button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.form-note {
  min-height: 1.4em;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--leaf-deep);
  animation: rise 1s ease-out 0.4s both;
}

.form-note.is-success {
  color: var(--leaf);
}

.form-note.is-error {
  color: #a33a2a;
}

/* Brand sections + offerings + location */
main {
  position: relative;
  z-index: 1;
}

.brand-block,
.promise,
.offerings,
.location {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 3.75rem;
  text-align: center;
}

.brand-block h2,
.promise h2,
.offerings h2,
.location h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3.8vw, 2.2rem);
  color: var(--leaf-deep);
  letter-spacing: -0.02em;
}

.brand-block p,
.location p {
  margin: 0.85rem auto 0;
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.promise blockquote {
  margin: 1rem auto 0;
  max-width: 32ch;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.35;
  color: var(--leaf-deep);
}

.offering-list {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  text-align: left;
}

@media (min-width: 700px) {
  .offering-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2rem;
  }
}

.offering-list li {
  margin: 0;
  padding: 0;
}

.offering-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--leaf-deep);
}

.offering-list p {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.location {
  padding-bottom: 3.5rem;
}

.site-foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding: 1.25rem 1.5rem 2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid color-mix(in srgb, var(--leaf) 14%, transparent);
  background: color-mix(in srgb, var(--foam) 70%, transparent);
}

.site-foot a {
  color: var(--leaf-deep);
  text-decoration: none;
  font-weight: 600;
}

.site-foot a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 520px) {
  .waitlist {
    flex-direction: column;
    align-items: stretch;
  }

  .waitlist input,
  .waitlist button {
    width: 100%;
    flex: none;
  }

  .block-3,
  .block-5 {
    opacity: 0.3;
  }

  .offering-list {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow,
  .block,
  .status,
  .brand-lockup,
  .mascot,
  .tagline,
  .support,
  .waitlist,
  .form-note {
    animation: none;
  }
}
