@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Figtree:wght@400;500;600&display=swap");

:root {
  --green-deep: #1f3d2b;
  --green-mid: #3d6b4f;
  --green-soft: #6f9a78;
  --sage: #a8c4ae;
  --leaf-mist: #e8f0e9;
  --petal: #c45c75;
  --petal-soft: #e8b4c0;
  --ink: #1a2e22;
  --muted: #4a5f52;
  --paper: #f3f7f3;
  --white: #ffffff;
  --header-h: 4.5rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(168, 196, 174, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(196, 92, 117, 0.08), transparent 50%),
    linear-gradient(180deg, var(--leaf-mist) 0%, var(--paper) 40%, #eef4ee 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--petal);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-deep);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.75rem 1.25rem;
  background: rgba(243, 247, 243, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 107, 79, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--green-deep);
}

.logo img {
  width: 52px;
  height: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(61, 107, 79, 0.25);
  background: var(--white);
  color: var(--green-deep);
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--petal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-deep);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 18s var(--ease) forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 61, 43, 0.25) 0%, rgba(31, 61, 43, 0.55) 45%, rgba(20, 40, 28, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4rem 0 4.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(1.2rem);
  animation: rise 0.9s var(--ease) 0.15s forwards;
  color: whitesmoke
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 1rem;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(1.2rem);
  animation: rise 0.9s var(--ease) 0.35s forwards;
}

.hero-support {
  margin: 0 0 1.75rem;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(1.2rem);
  animation: rise 0.9s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(1.2rem);
  animation: rise 0.9s var(--ease) 0.65s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--petal);
  color: var(--white);
  border-color: var(--petal);
}

.btn-primary:hover {
  background: #a84860;
  color: var(--white);
  border-color: #a84860;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-mid);
}

.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petal);
  margin: 0 0 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 1rem;
}

.section-lead {
  max-width: 52ch;
  color: var(--muted);
  margin-bottom: 2rem;
}

.story-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.story-block p {
  color: var(--muted);
  font-size: 1.08rem;
}

.story-visual {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.cta-band {
  position: relative;
  padding: 4.5rem 0;
  color: var(--white);
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(31, 61, 43, 0.92), rgba(61, 107, 79, 0.85)),
    url("/imgs/background_2.jpg") center / cover;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  max-width: 22ch;
  margin: 0 0 1rem;
}

.cta-band p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 92, 117, 0.12), transparent 40%),
    linear-gradient(135deg, rgba(168, 196, 174, 0.45), transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  max-width: 48ch;
  color: var(--muted);
  margin: 0;
  font-size: 1.1rem;
}

/* Services */
.service-groups {
  display: grid;
  gap: 2.5rem;
}

.service-group h2 {
  font-size: 1.85rem;
  margin: 0 0 0.35rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sage);
}

.service-group > p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem 1.25rem;
}

.service-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--petal);
}

/* About */
.about-prose {
  max-width: 65ch;
}

.about-prose p {
  font-size: 1.12rem;
  color: var(--muted);
}

.about-prose p + p {
  margin-top: 1.25rem;
}

.highlight-row {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(61, 107, 79, 0.18);
}

.highlight-row dt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0;
}

.highlight-row dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.contact-details li {
  margin-bottom: 1.25rem;
}

.contact-details strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--petal);
  margin-bottom: 0.25rem;
}

.contact-details a {
  font-weight: 600;
  text-decoration: none;
  color: var(--green-deep);
}

.contact-details a:hover {
  color: var(--petal);
}

.hours-note,
.visit-note,
.directions {
  margin-bottom: 1.5rem;
}

.hours-note h2,
.visit-note h2,
.directions h2 {
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}

.directions ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.directions li + li {
  margin-top: 0.65rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(61, 107, 79, 0.15);
  border-radius: 8px;
  padding: 1.75rem;
}

.contact-form h2 {
  font-size: 1.6rem;
  margin: 0 0 0.35rem;
}

.contact-form > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--green-deep);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(61, 107, 79, 0.25);
  border-radius: 4px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
  border-color: var(--green-mid);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--green-mid);
  min-height: 1.3em;
}

.map-embed {
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(61, 107, 79, 0.15);
  min-height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  padding: 2rem 1.25rem;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--petal-soft);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(243, 247, 243, 0.98);
    border-bottom: 1px solid rgba(61, 107, 79, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(61, 107, 79, 0.08);
  }

  .story-block,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .highlight-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-content {
    padding-bottom: 3rem;
  }

  .story-visual{
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media img {
    transform: none;
  }

  .hero-brand,
  .hero-tagline,
  .hero-support,
  .hero-actions {
    opacity: 1;
    transform: none;
  }
}
