:root {
  --bg: #fbf7f0;
  --bg-soft: #f3eedf;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(137, 142, 89, 0.24);
  --sage: #727a3a;
  --sage-deep: #545d28;
  --rose: #cf8f97;
  --rose-deep: #bb727c;
  --text: #4a4a37;
  --shadow: 0 24px 60px rgba(146, 131, 93, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 16px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(220, 187, 191, 0.24), transparent 30%),
    radial-gradient(circle at bottom right, rgba(188, 196, 145, 0.25), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, #f7f3e7 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - clamp(1rem, 4vw, 2rem)));
  margin: 0 auto;
  padding: clamp(0.85rem, 3vw, 2rem) 0 3rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 28px rgba(122, 114, 79, 0.08);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--sage-deep);
  font-size: 0.96rem;
  line-height: 1.1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.8);
}

main {
  display: grid;
  gap: clamp(1rem, 2.6vw, 1.8rem);
  margin-top: clamp(1rem, 2.6vw, 1.8rem);
}

.hero,
.promise,
.contact-section,
.contact-form-section,
.legal-section {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem;
  border-radius: 40px;
}

.hero::before,
.contact-section::before,
.contact-form-section::before,
.legal-section::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 240px;
  height: 120px;
  background: radial-gradient(circle at left, rgba(198, 207, 163, 0.45), transparent 72%);
  pointer-events: none;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
}

h1,
h2,
h3,
.tagline {
  font-family: "Segoe Print", "Bradley Hand ITC", cursive;
  font-weight: 400;
}

h1 {
  display: grid;
  gap: 0.1em;
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  line-height: 0.92;
  color: var(--sage);
}

h1 .accent {
  color: var(--rose);
}

.tagline {
  margin: 1.4rem 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: var(--sage);
}

.intro {
  max-width: 34rem;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.8;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(187, 114, 124, 0.28);
}

.button-secondary {
  border-color: rgba(114, 122, 58, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--sage-deep);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.photo-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  padding: 18px;
  border-radius: 50%;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(214, 216, 180, 0.96));
  box-shadow: 0 18px 45px rgba(113, 108, 72, 0.18);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: -14px -10px auto auto;
  width: 120px;
  height: 120px;
  border-top: 3px solid rgba(189, 198, 150, 0.8);
  border-right: 3px solid rgba(189, 198, 150, 0.35);
  border-radius: 0 100% 0 0;
  transform: rotate(12deg);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: sepia(0.18) saturate(0.85) brightness(1.04);
}

.seed-trail {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  right: 5rem;
  display: flex;
  justify-content: space-between;
}

.seed-trail span,
.bloom::before,
.bloom::after {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(113, 122, 57, 0.2);
  box-shadow:
    0 -11px 0 -8px rgba(113, 122, 57, 0.5),
    10px -5px 0 -8px rgba(113, 122, 57, 0.4),
    -10px -4px 0 -8px rgba(113, 122, 57, 0.33);
  transform: rotate(var(--rotation, 0deg));
  opacity: 0.7;
}

.seed-trail span:nth-child(1) { --rotation: -18deg; }
.seed-trail span:nth-child(2) { --rotation: 10deg; }
.seed-trail span:nth-child(3) { --rotation: -8deg; }
.seed-trail span:nth-child(4) { --rotation: 14deg; }
.seed-trail span:nth-child(5) { --rotation: -14deg; }
.seed-trail span:nth-child(6) { --rotation: 8deg; }

.bloom-large {
  position: absolute;
  top: 2.6rem;
  right: 1rem;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(89, 77, 41, 0.85) 0 14px, transparent 15px),
    repeating-conic-gradient(
      from 0deg,
      rgba(89, 77, 41, 0.5) 0deg 1deg,
      transparent 1deg 14deg
    );
  opacity: 0.64;
}

.bloom-large::before,
.bloom-large::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(89, 77, 41, 0.12);
  border-radius: 50%;
}

.promise {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 34px;
}

.section-card,
.quote-card,
.detail-card,
.contact-card {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(122, 114, 79, 0.08);
}

.section-card,
.quote-card {
  padding: 2rem;
  border-radius: 28px;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--sage-deep);
}

.section-card p,
.quote-card p,
.detail-card p,
.contact-intro p,
.contact-form-intro p,
.form-note {
  line-height: 1.8;
  margin: 0;
}

.quote-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(236, 213, 216, 0.48), transparent 40%),
    rgba(255, 255, 255, 0.88);
}

.quote-card p {
  font-family: "Segoe Print", "Bradley Hand ITC", cursive;
  font-size: 1.55rem;
  color: var(--rose-deep);
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.detail-card {
  padding: 1.7rem;
  border-radius: 28px;
}

h3 {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
  color: var(--sage);
}

.contact-section {
  padding: 3rem;
  border-radius: 36px;
}

.contact-form-section {
  padding: 3rem;
  border-radius: 36px;
}

.legal-section {
  padding: 3rem;
  border-radius: 36px;
}

.legal-card {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.8rem;
  padding: 2rem;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(122, 114, 79, 0.08);
}

.legal-card p {
  margin: 0;
  line-height: 1.8;
}

.legal-card a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.legal-card strong {
  color: var(--rose-deep);
}

.legal-text h3 {
  margin: 0.35rem 0 -0.55rem;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sage-deep);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.4rem;
  padding: 1.8rem 0 0;
  color: var(--sage-deep);
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 116px;
  padding: 1.35rem 1.5rem;
  border-radius: 24px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(230, 157, 168, 0.95), rgba(203, 122, 132, 0.95));
  color: #fff;
  font-size: 1.8rem;
}

.contact-text {
  display: grid;
  gap: 0.2rem;
}

.contact-text strong {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.contact-text span:last-child {
  font-family: "Segoe Print", "Bradley Hand ITC", cursive;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--sage-deep);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-form {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.35rem;
  padding: 2rem;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(122, 114, 79, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.contact-form label,
.form-field {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.form-field-full {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.contact-form label span,
.form-field span {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.contact-form input,
.contact-form textarea,
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(114, 122, 58, 0.18);
  border-radius: 20px;
  background: var(--surface-strong);
  color: var(--text);
  padding: 1rem 1.1rem;
  font: inherit;
  font-size: 1rem;
  box-shadow: 0 10px 28px rgba(122, 114, 79, 0.08);
}

.contact-form textarea,
.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(207, 143, 151, 0.28);
  border-color: rgba(187, 114, 124, 0.5);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.form-note {
  flex: 1 1 260px;
}

.form-status {
  min-height: 1.6rem;
  margin: 0;
  line-height: 1.6;
}

.form-status[data-status="success"] {
  color: var(--sage-deep);
}

.form-status[data-status="error"] {
  color: var(--rose-deep);
}

.button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.button:disabled:hover {
  transform: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero,
  .promise,
  .details,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.5rem;
    gap: 1.25rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .photo-frame {
    position: relative;
    margin: 0 auto;
    width: min(440px, 100%);
  }

  .seed-trail {
    right: 2rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
    padding: 0.6rem 0 1.5rem;
  }

  .site-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    overflow-x: auto;
    border-radius: 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0.62rem 0.82rem;
    font-size: 0.9rem;
  }

  .hero,
  .promise,
  .contact-section,
  .contact-form-section,
  .legal-section {
    border-radius: 28px;
    backdrop-filter: none;
    box-shadow: 0 12px 30px rgba(146, 131, 93, 0.13);
  }

  .hero,
  .contact-section,
  .contact-form-section,
  .legal-section {
    padding: 1.4rem;
  }

  .promise {
    padding: 1rem;
  }

  .details {
    gap: 1rem;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
    line-height: 0.98;
  }

  .tagline {
    margin-top: 1rem;
    font-size: clamp(1.7rem, 9vw, 2.5rem);
  }

  .intro,
  .section-card p,
  .quote-card p,
  .detail-card p,
  .contact-intro p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.3rem);
  }

  h3 {
    font-size: 1.45rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.4rem;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 0.25rem;
  }

  .bloom-large {
    width: 78px;
    height: 78px;
    top: 0.5rem;
    right: 0.2rem;
  }

  .seed-trail {
    top: 0.25rem;
    left: 1.2rem;
    right: 1.2rem;
  }

  .seed-trail span:nth-child(n + 5) {
    display: none;
  }

  .photo-frame {
    padding: 12px;
    width: min(300px, 78vw);
  }

  .photo-frame::after {
    width: 76px;
    height: 76px;
    inset: -8px -6px auto auto;
  }

  .section-card,
  .quote-card,
  .detail-card,
  .contact-card,
  .contact-form,
  .legal-card {
    border-radius: 22px;
  }

  .section-card,
  .quote-card,
  .detail-card,
  .contact-form,
  .legal-card {
    padding: 1.2rem;
  }

  .quote-card p {
    font-size: 1.28rem;
  }

  .contact-grid {
    margin-top: 1.25rem;
  }

  .contact-form {
    margin-top: 1.25rem;
  }

  .legal-card {
    margin-top: 1.25rem;
  }

  .contact-card {
    min-height: auto;
    padding: 1rem;
    gap: 0.85rem;
    align-items: flex-start;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 1.45rem;
  }

  .contact-text strong {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .contact-text span:last-child {
    font-size: 1.1rem;
    line-height: 1.25;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .form-note {
    flex-basis: auto;
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: calc(100% - 0.75rem);
  }

  .hero,
  .contact-section,
  .contact-form-section,
  .legal-section {
    padding: 1.1rem;
  }

  .promise {
    padding: 0.8rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .photo-frame {
    width: min(250px, 74vw);
  }

  .seed-trail,
  .bloom-large {
    opacity: 0.55;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
