/* Soil and Sky — launch landing page
   Palette & tokens (easy to edit) */
:root {
  --cream: #f7f1e6;
  --sage: #a8bfa3;
  --deep-green: #3f5f45;
  --sky: #a9cfe7;
  --soil: #7a5a3a;
  --text: #2f332c;
  --text-muted: #4a5248;
  --white: #fffefc;
  --shadow-soft: 0 12px 40px rgba(47, 51, 44, 0.08);
  --shadow-card: 0 8px 28px rgba(63, 95, 69, 0.12);
  --radius-lg: 1.25rem;
  --radius-md: 0.875rem;
  --radius-pill: 999px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Nunito Sans", system-ui, -apple-system, sans-serif;
  /* Header min-height; scales with html font-size */
  --header-h: 4.25rem;
  /* Layout caps in px (16px rem baseline) so text can scale without widening the whole page */
  --container-max: 1152px;
  --container-narrow-max: 704px;
  --measure: 576px;
  --measure-wide: 640px;
}

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

html {
  scroll-behavior: smooth;
  /* 20px baseline — generous reading size for an older audience */
  font-size: 125%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text);
  background-color: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--deep-green);
  color: var(--cream);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--deep-green);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--soil);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--deep-green);
}

:focus-visible {
  outline: 3px solid var(--deep-green);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--deep-green) 12%, transparent);
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  --logo-img-size: clamp(2.2rem, 5.5vw, 3.15rem);
  display: inline-flex;
  align-items: center;
  gap: clamp(0.45rem, 1.5vw, 0.7rem);
  max-width: min(100%, 16.5rem);
  text-decoration: none;
  line-height: 1;
  color: var(--deep-green);
  transition: opacity 0.15s ease, color 0.15s ease;
}

.logo:hover {
  opacity: 0.92;
}

.logo:focus-visible {
  outline-offset: 4px;
}

.logo__img {
  flex: 0 0 auto;
  width: var(--logo-img-size);
  height: var(--logo-img-size);
  display: block;
}

/* Wordmark: deep green words, sage ampersand */
.logo__wordmark {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  row-gap: 0.1rem;
  column-gap: 0.22em;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.02rem, 2.9vw, 1.65rem);
  letter-spacing: 0.01em;
  min-width: 0;
}

.logo__name {
  color: var(--deep-green);
}

.logo__amp {
  color: color-mix(in srgb, var(--sage) 82%, var(--deep-green));
  font-weight: 600;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  justify-content: flex-end;
}

.nav a {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  color: var(--text);
  text-decoration: none;
  padding: 0.3rem 0.15rem;
  border-radius: 0.25rem;
}

.nav a:hover {
  color: var(--deep-green);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Layout */
.container {
  width: min(var(--container-max), 100% - 2.5rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(var(--container-narrow-max), 100% - 2.5rem);
}

.section {
  padding-block: clamp(3.25rem, 8vw, 5rem);
}

.section--cream {
  background: var(--cream);
}

.section--sage {
  background: color-mix(in srgb, var(--sage) 55%, var(--cream));
}

.section--pale {
  background: color-mix(in srgb, var(--sage) 24%, var(--cream));
}

.section--texture {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--sky) 35%, var(--cream)) 0%, var(--cream) 100%),
    var(--cream);
  position: relative;
}

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

.section--texture .container {
  position: relative;
}

.section__title {
  text-align: center;
  margin: 0 0 1.25rem;
}

.section__title--left {
  text-align: left;
}

.section__intro {
  text-align: center;
  max-width: var(--measure);
  margin: 0 auto 0.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section__placeholder-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.section__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--deep-green) 75%, var(--text));
  margin: 0 0 0.75rem;
}

.eyebrow--dark {
  color: var(--deep-green);
}

.eyebrow--center {
  text-align: center;
}

/* Hero — full-bleed panoramic image, overlay copy in upper (sky) band */
.hero {
  position: relative;
  width: 100%;
  margin-inline: 0;
  /* Responsive height: match image aspect (~2.6:1), with sensible floors/caps */
  aspect-ratio: 1531 / 589;
  min-height: clamp(200px, 32vw, 420px);
  max-height: min(78vh, 560px);
  display: grid;
  align-items: start;
  align-content: start;
  justify-items: stretch;
  /* Inset hero copy a touch from the top edge of the image */
  padding: clamp(12px, 1.4vw + 4px, 22px) 0 1.75rem;
  color: var(--cream);
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Vertical contrast for the headline + a soft side-vignette so cream type holds anywhere */
  background:
    linear-gradient(
      90deg,
      rgba(6, 10, 22, 0.45) 0%,
      rgba(6, 10, 22, 0.15) 22%,
      transparent 45%,
      transparent 55%,
      rgba(6, 10, 22, 0.18) 78%,
      rgba(6, 10, 22, 0.45) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 12, 28, 0.6) 0%,
      rgba(8, 12, 28, 0.22) 32%,
      transparent 55%,
      rgba(6, 10, 22, 0.32) 80%,
      rgba(4, 8, 18, 0.5) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-items: stretch;
  column-gap: clamp(1rem, 3vw, 2rem);
  row-gap: 0.65rem;
}

.hero .hero__title {
  margin: 0;
  min-width: 0;
  max-width: min(28rem, 100%);
  justify-self: start;
  align-self: start;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.018em;
  text-wrap: balance;
  text-align: left;
  font-size: clamp(1.75rem, 3vw + 0.7rem, 2.85rem);
  color: var(--cream);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 6px 32px rgba(0, 0, 0, 0.5);
}

.hero__title-accent {
  font-style: italic;
  font-weight: 500;
  color: color-mix(in srgb, var(--cream) 92%, var(--sky));
  letter-spacing: -0.005em;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: start;
  justify-self: end;
  /* Sit ~10px lower than the title for a softer hierarchy */
  margin-top: 10px;
  gap: 0.55rem;
  width: clamp(11.5rem, 18vw, 14rem);
  max-width: 100%;
}

.hero__actions .btn {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.6rem 1.05rem;
  border-width: 1.5px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  max-width: none;
  letter-spacing: 0.005em;
}

.hero__actions .btn--primary {
  box-shadow:
    0 8px 24px rgba(8, 12, 28, 0.35),
    0 0 0 1px color-mix(in srgb, var(--sky) 60%, white) inset;
}

.hero__actions .btn--primary:hover {
  box-shadow:
    0 10px 28px rgba(8, 12, 28, 0.4),
    0 0 0 1px color-mix(in srgb, var(--sky) 70%, white) inset;
}

.hero__actions .btn--secondary {
  background: color-mix(in srgb, rgba(8, 12, 28, 0.25) 60%, transparent);
  backdrop-filter: blur(2px);
  border-color: color-mix(in srgb, var(--cream) 75%, transparent);
}

.hero__actions .btn--secondary:hover {
  background: color-mix(in srgb, rgba(8, 12, 28, 0.35) 60%, transparent);
  border-color: var(--cream);
}

/* Hero: only stack on very narrow viewports so headline + CTAs stay readable */
@media (max-width: 380px) {
  .hero__content {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }

  .hero .hero__title {
    max-width: 100%;
  }

  .hero__actions {
    max-width: 100%;
    justify-self: end;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.005em;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--sky);
  color: var(--deep-green);
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--sky) 88%, white);
  color: var(--deep-green);
}

.btn--secondary {
  background: transparent;
  color: var(--cream);
  border-color: color-mix(in srgb, var(--cream) 65%, transparent);
}

.btn--secondary:hover {
  background: color-mix(in srgb, var(--cream) 14%, transparent);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--deep-green);
  border-color: color-mix(in srgb, var(--deep-green) 35%, transparent);
}

.btn--outline:hover {
  background: color-mix(in srgb, var(--deep-green) 8%, transparent);
  color: var(--deep-green);
}

.btn--block {
  width: 100%;
}

/* Prose */
.prose p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-green);
  line-height: 1.5;
  margin-top: 1.75rem;
}

.pull-quote__soft {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.closing-line {
  font-weight: 600;
  color: var(--deep-green);
  font-size: 1.08rem;
}

.placeholder {
  font-style: italic;
  color: var(--soil);
  text-decoration: underline dotted;
  text-underline-offset: 0.2em;
}

/* Founder */
.founder__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .founder__grid {
    grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
  }
}

.founder__photo {
  width: 100%;
  max-width: 16rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid color-mix(in srgb, var(--deep-green) 15%, transparent);
}

.credential-card {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.35rem;
  background: color-mix(in srgb, var(--white) 88%, var(--cream));
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--deep-green) 12%, transparent);
  box-shadow: var(--shadow-soft);
}

.credential-card li {
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.credential-card li:last-child {
  margin-bottom: 0;
}

.credential-card strong {
  color: var(--deep-green);
  font-weight: 700;
}

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in srgb, var(--deep-green) 8%, transparent);
}

.card__title {
  margin: 0 0 0.5rem;
}

.card__tagline {
  font-weight: 600;
  color: var(--soil);
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
}

.card__best {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed color-mix(in srgb, var(--deep-green) 18%, transparent);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials.cards {
  align-items: start;
}

.testimonials .card--quote {
  display: block;
  height: auto;
}

.card--quote blockquote {
  margin: 0;
}

.card--quote blockquote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--deep-green);
  margin: 0;
}

/* Contact */
.section--contact {
  background: linear-gradient(180deg, var(--cream) 0%, color-mix(in srgb, var(--sage) 40%, var(--cream)) 100%);
  padding-bottom: clamp(3.5rem, 10vw, 6rem);
}

.contact-layout {
  display: grid;
  gap: 2rem;
  max-width: var(--measure-wide);
  margin-inline: auto;
  text-align: center;
}

.contact__intro .section__title--left {
  text-align: center;
}

.contact__intro p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact__email {
  font-weight: 600;
  color: var(--deep-green);
}

.contact__mini-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.contact-form {
  padding: 1.75rem 1.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.form-feedback {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--soil);
  min-height: 1.5em;
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-field label,
.form-field legend {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--deep-green);
  margin-bottom: 0.4rem;
}

.label-optional {
  font-weight: 500;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--deep-green) 22%, transparent);
  background: var(--white);
  color: var(--text);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--deep-green);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sky) 65%, transparent);
}

fieldset.form-field {
  border: none;
  padding: 0;
  margin: 0 0 1.1rem;
}

.radio-list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.radio-list li {
  margin-bottom: 0.45rem;
}

.radio-list label {
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-list input {
  width: auto;
  margin-top: 0.35rem;
}

/* Footer */
.site-footer {
  background: var(--deep-green);
  color: color-mix(in srgb, var(--cream) 92%, white);
  padding: 2.5rem 1.25rem;
}

.site-footer a {
  color: var(--sky);
}

.site-footer__inner {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.footer-tag {
  margin: 0 0 0.75rem;
  opacity: 0.95;
}

.footer-meta {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.site-footer .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--cream);
  background: color-mix(in srgb, var(--cream) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cream) 35%, transparent);
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.site-footer .social-link:hover {
  color: var(--white);
  background: color-mix(in srgb, var(--cream) 22%, transparent);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.social-link__icon {
  flex: 0 0 auto;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
}

/* Photo placeholders — soft brand-tinted cards until real photography is in.
   Swap the .ph background for an <img> later without changing the layout. */
.ph {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid color-mix(in srgb, var(--deep-green) 14%, transparent);
  background:
    radial-gradient(ellipse 90% 70% at 22% 22%, color-mix(in srgb, var(--cream) 80%, white) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 82% 78%, color-mix(in srgb, var(--soil) 18%, transparent) 0%, transparent 60%),
    linear-gradient(135deg,
      color-mix(in srgb, var(--sage) 65%, var(--cream)) 0%,
      color-mix(in srgb, var(--sky) 55%, var(--cream)) 100%);
}

.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 55%, color-mix(in srgb, var(--deep-green) 22%, transparent) 0 0.18rem, transparent 0.22rem),
    radial-gradient(circle at 50% 55%, transparent 0 0.6rem, color-mix(in srgb, var(--deep-green) 18%, transparent) 0.6rem 0.66rem, transparent 0.7rem);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.ph--photo::after {
  opacity: 0;
}

.ph--square { aspect-ratio: 1 / 1; }
.ph--wide { aspect-ratio: 5 / 3; }
.ph--portrait { aspect-ratio: 3 / 4; }

.ph__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Vary placeholder gradients so the strip doesn't read as a flat block */
.ph--2 {
  background:
    radial-gradient(ellipse 80% 60% at 25% 28%, color-mix(in srgb, var(--cream) 78%, white) 0%, transparent 60%),
    linear-gradient(150deg,
      color-mix(in srgb, var(--soil) 32%, var(--cream)) 0%,
      color-mix(in srgb, var(--sage) 55%, var(--cream)) 100%);
}
.ph--4 {
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, color-mix(in srgb, var(--cream) 78%, white) 0%, transparent 60%),
    linear-gradient(135deg,
      color-mix(in srgb, var(--sky) 60%, var(--cream)) 0%,
      color-mix(in srgb, var(--sage) 50%, var(--cream)) 100%);
}
.ph--5 {
  background:
    radial-gradient(ellipse 90% 70% at 25% 25%, color-mix(in srgb, var(--cream) 80%, white) 0%, transparent 55%),
    linear-gradient(135deg,
      color-mix(in srgb, var(--sage) 80%, var(--cream)) 0%,
      color-mix(in srgb, var(--soil) 22%, var(--cream)) 100%);
}
.ph--6 {
  background:
    radial-gradient(ellipse 85% 65% at 70% 30%, color-mix(in srgb, var(--cream) 78%, white) 0%, transparent 55%),
    linear-gradient(150deg,
      color-mix(in srgb, var(--sky) 55%, var(--cream)) 0%,
      color-mix(in srgb, var(--soil) 26%, var(--cream)) 100%);
}

.ph__cap {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.1;
  color: color-mix(in srgb, var(--deep-green) 88%, var(--text));
  background: color-mix(in srgb, var(--white) 78%, transparent);
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(47, 51, 44, 0.08);
}

/* Editorial photo strip in About section */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-block: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 720px) {
  .photo-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .photo-strip .ph {
    grid-column: auto;
    aspect-ratio: 1 / 1;
  }
  .photo-strip .ph__img {
    object-position: center;
  }
}

/* "Moments" polaroid board in Why-Nature section */
.moments {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.moments__label {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  color: color-mix(in srgb, var(--deep-green) 80%, var(--text));
}

.moments__board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
  justify-items: center;
  align-items: start;
  padding-block: 0.5rem 1rem;
}

@media (min-width: 720px) {
  .moments__board {
    grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
    gap: 0.75rem;
    padding-block: 1.25rem 2rem;
  }
}

.polaroid {
  position: relative;
  margin: 0;
  background: var(--white);
  padding: 0.55rem 0.55rem 0.85rem;
  border-radius: 0.25rem;
  box-shadow:
    0 6px 18px rgba(47, 51, 44, 0.12),
    0 1px 2px rgba(47, 51, 44, 0.08);
  width: 100%;
  max-width: 13rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.polaroid:hover {
  transform: rotate(0) translateY(-3px) scale(1.02);
  box-shadow: 0 18px 38px rgba(47, 51, 44, 0.18);
  z-index: 2;
}

.polaroid__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid color-mix(in srgb, var(--deep-green) 12%, transparent);
  background-color: color-mix(in srgb, var(--sage) 40%, var(--cream));
}

.polaroid__cap {
  margin-top: 0.6rem;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--deep-green);
}

/* Scattered rotations for the polaroid board (desktop).
   nth-child cycles keep the look natural for any number of photos. */
@media (min-width: 720px) {
  .polaroid:nth-child(6n + 1) { transform: rotate(-3deg); margin-top: 0.5rem; }
  .polaroid:nth-child(6n + 2) { transform: rotate(2.5deg); margin-top: 1.75rem; }
  .polaroid:nth-child(6n + 3) { transform: rotate(-1.5deg); margin-top: 0.25rem; }
  .polaroid:nth-child(6n + 4) { transform: rotate(2deg); margin-top: 1.5rem; }
  .polaroid:nth-child(6n + 5) { transform: rotate(-2.5deg); margin-top: 0.5rem; }
  .polaroid:nth-child(6n + 6) { transform: rotate(1.5deg); margin-top: 1.25rem; }
}

/* Gentler rotations on tablet/phone so nothing crops or collides */
@media (max-width: 719px) {
  .polaroid:nth-child(6n + 1) { transform: rotate(-2deg); }
  .polaroid:nth-child(6n + 2) { transform: rotate(1.5deg); }
  .polaroid:nth-child(6n + 3) { transform: rotate(-1deg); }
  .polaroid:nth-child(6n + 4) { transform: rotate(1.5deg); }
  .polaroid:nth-child(6n + 5) { transform: rotate(-1.5deg); }
  .polaroid:nth-child(6n + 6) { transform: rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .polaroid { transform: none !important; transition: none; }
  .polaroid:hover { transform: none !important; }
}

/* Mobile nav */
@media (max-width: 520px) {
  .container,
  .container.narrow {
    width: min(var(--container-max), 100% - 1.25rem);
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__list {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }

  .hero {
    min-height: clamp(200px, 42vw, 380px);
    max-height: min(70vh, 480px);
    padding-bottom: 1.5rem;
  }
}
