:root {
  --cream: #f7f4ee;
  --cream-soft: #fbfaf6;
  --sage: #8a9a75;
  --sage-deep: #6a7a58;
  --olive: #5a6a48;
  --brown: #8c6d4d;
  --brown-deep: #5c4632;
  --peach: #e09a78;
  --mustard: #c9a35a;
  --ink: #3f342c;
  --muted: #7d7166;
  --line: rgba(92, 70, 50, 0.14);
  --glass: rgba(255, 252, 247, 0.55);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(201, 163, 90, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(138, 154, 117, 0.16), transparent 50%),
    radial-gradient(ellipse 45% 40% at 100% 85%, rgba(224, 154, 120, 0.12), transparent 48%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  overflow-x: hidden;
}

.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 */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.7;
}

.wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.wash-a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(201, 163, 90, 0.22);
  animation: pulse-glow 10s ease-in-out infinite;
}

.wash-b {
  width: min(42vw, 360px);
  height: min(42vw, 360px);
  bottom: -10%;
  left: -5%;
  background: rgba(138, 154, 117, 0.28);
  animation: drift 18s ease-in-out infinite;
}

.wash-c {
  width: min(40vw, 340px);
  height: min(40vw, 340px);
  bottom: 5%;
  right: -6%;
  background: rgba(224, 154, 120, 0.2);
  animation: drift 22s ease-in-out infinite reverse;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 760px);
  height: min(92vw, 760px);
  transform: translate(-50%, -50%);
  color: rgba(140, 109, 77, 0.18);
  animation: spin-slow 80s linear infinite;
}

.speck {
  position: absolute;
  width: 7px;
  height: 10px;
  border-radius: 60% 40% 60% 40%;
  opacity: 0.4;
  animation: float-speck 11s ease-in-out infinite;
}

.speck-a {
  top: 18%;
  left: 14%;
  background: var(--sage);
}

.speck-b {
  top: 22%;
  right: 16%;
  width: 6px;
  height: 9px;
  background: var(--mustard);
  animation-delay: 1.4s;
  animation-duration: 13s;
}

.speck-c {
  bottom: 20%;
  left: 18%;
  width: 8px;
  height: 11px;
  background: var(--olive);
  opacity: 0.3;
  animation-delay: 0.7s;
  animation-duration: 12s;
}

.speck-d {
  bottom: 24%;
  right: 15%;
  background: var(--peach);
  opacity: 0.35;
  animation-delay: 2s;
  animation-duration: 14s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -18px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.75;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes spin-slow {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float-speck {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-16px) rotate(10deg);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.012);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Hero composition */
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1rem, 3vw, 2rem) clamp(1.25rem, 5vw, 2.5rem) clamp(2rem, 5vw, 3.5rem);
  gap: 0;
}

.brand {
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo {
  width: min(86vw, 380px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 16px 40px rgba(92, 70, 50, 0.1));
  animation: soft-breathe 9s ease-in-out 1.2s infinite;
}

.copy {
  margin-top: clamp(0.35rem, 1.5vw, 0.75rem);
  max-width: 28rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.eyebrow-line {
  display: block;
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  transform-origin: center;
  animation: line-grow 0.9s ease-out 0.45s both;
}

.headline {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.65rem);
  font-weight: 550;
  font-optical-sizing: auto;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--brown-deep);
  animation: rise-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.support {
  margin: 0 auto;
  max-width: 34ch;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  animation: rise-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

/* Notify form — elegant pill */
.notify {
  width: min(100%, 420px);
  margin-top: clamp(1.5rem, 3.5vw, 2.15rem);
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.notify-row {
  display: flex;
  align-items: stretch;
  gap: 0.4rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 12px 36px rgba(92, 70, 50, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.notify-row:focus-within {
  border-color: rgba(138, 154, 117, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 12px 36px rgba(92, 70, 50, 0.08),
    0 0 0 4px rgba(138, 154, 117, 0.12);
}

.notify input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 2.7rem;
  padding: 0.7rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
  outline: none;
}

.notify input::placeholder {
  color: #9a8e84;
  font-weight: 300;
}

.notify button {
  flex: 0 0 auto;
  min-height: 2.7rem;
  padding: 0.7rem 1.35rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(160deg, #98a885 0%, var(--sage-deep) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(106, 122, 88, 0.28);
}

.notify button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.notify button:active {
  transform: translateY(0);
}

.notify button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.notify button:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.form-msg {
  margin: 0.7rem 0 0;
  min-height: 1.2rem;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--sage-deep);
}

.form-msg.error {
  color: #a85a45;
}

.form-msg.success {
  color: var(--sage-deep);
}

.motto {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(92, 70, 50, 0.55);
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

/* Site navigation */
.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1.25rem, 4vw, 2.5rem);
  animation: rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
}

.site-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-logo span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-logo .name-little {
  color: var(--sage-deep);
}

.site-logo .name-roots {
  color: var(--brown);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2.5vw, 1.6rem);
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brown-deep);
}

/* Inner pages */
.page {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  animation: rise-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.page-intro {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.page-intro .eyebrow {
  margin-bottom: 0.9rem;
}

.page-intro .headline {
  margin-bottom: 0.9rem;
}

.page-intro .support {
  margin: 0 auto;
}

.prose {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.prose p {
  margin: 0 0 1.25rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.about-lead {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0 0 2.75rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.value {
  text-align: center;
}

.value h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 550;
  color: var(--brown-deep);
}

.value p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}

.about-closing {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.about-closing .motto {
  margin-top: 0.35rem;
}

.page-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(160deg, #98a885 0%, var(--sage-deep) 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(106, 122, 88, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.page-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-details {
  text-align: center;
}

.contact-details p {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.contact-details a {
  color: var(--sage-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-details a:hover {
  color: var(--brown-deep);
  border-bottom-color: rgba(92, 70, 50, 0.3);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 12px 36px rgba(92, 70, 50, 0.06);
}

.field {
  display: grid;
  gap: 0.4rem;
  text-align: left;
}

.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(138, 154, 117, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(138, 154, 117, 0.12);
}

.contact-form .submit-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.contact-form button[type="submit"] {
  min-height: 2.9rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(160deg, #98a885 0%, var(--sage-deep) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(106, 122, 88, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.contact-form .form-msg {
  text-align: center;
  margin-top: 0.25rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 0 1.25rem 2rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(92, 70, 50, 0.45);
}

@media (max-width: 720px) {
  .values {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 560px) {
  .logo {
    width: min(90vw, 300px);
  }

  .eyebrow-line {
    width: 1.4rem;
  }

  .notify-row {
    flex-direction: column;
    border-radius: 1.35rem;
    padding: 0.5rem;
  }

  .notify input,
  .notify button {
    width: 100%;
    border-radius: 999px;
  }

  .speck-c,
  .speck-d {
    display: none;
  }

  .orbit {
    opacity: 0.55;
  }

  .site-logo span {
    display: none;
  }

  .site-nav {
    gap: 0.9rem;
  }

  .site-nav a {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .logo,
  .eyebrow,
  .eyebrow-line,
  .headline,
  .support,
  .notify,
  .motto,
  .wash,
  .orbit,
  .speck,
  .site-header,
  .page {
    animation: none !important;
  }
}
