:root {
  --bg: #eef6e7;
  --bg-deep: #dfeecf;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --border: rgba(80, 132, 55, 0.18);
  --primary: #2f7d32;
  --primary-deep: #1f5a24;
  --accent: #7fba61;
  --text: #243024;
  --muted: #435043;
  --shadow: 0 20px 45px rgba(75, 113, 57, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1120px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Lora", Georgia, serif;
  background:
    radial-gradient(circle at top left, rgba(162, 210, 132, 0.28), transparent 30%),
    radial-gradient(circle at 85% 14%, rgba(193, 226, 169, 0.32), transparent 22%),
    linear-gradient(180deg, #f6fbf1 0%, var(--bg) 48%, #edf5e4 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.page-glow {
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
  opacity: 0.35;
  z-index: 0;
}

.page-glow-left {
  top: 8rem;
  left: -10rem;
  background: rgba(196, 234, 168, 0.7);
}

.page-glow-right {
  top: 24rem;
  right: -10rem;
  background: rgba(153, 211, 132, 0.45);
}

.hero,
main,
.footer {
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem;
  border: 1px solid rgba(47, 125, 50, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(61, 99, 48, 0.08);
}

.nav-links a {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  color: var(--primary-deep);
  font-size: 1.18rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(127, 186, 97, 0.16);
  outline: none;
}

.hero-panel,
.section-card {
  width: var(--container);
  margin: 1.5rem auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 245, 0.88)),
    radial-gradient(circle at 15% 20%, rgba(213, 234, 192, 0.35), transparent 25%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel {
  padding: 2.75rem 3rem 4rem;
  min-height: min(80vh, 48rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

.hero-copy {
  max-width: 52rem;
  width: 100%;
  align-self: center;
  padding-top: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: min(100%, 28rem);
  margin: -0.25rem auto 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: logo-fade-in 1.2s ease-out 0.15s forwards;
}

.hero-nav {
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3,
.note-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: var(--primary);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 4.25rem);
  line-height: 1.1;
  max-width: 22ch;
  text-align: center;
}

.title-line {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.title-line-tight {
  width: fit-content;
  margin: 0 auto;
  transform: none;
}

.lead {
  margin: 2rem 0 0;
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 54rem;
  text-align: center;
}

.hero-location {
  margin: 1.75rem 0 0;
  color: var(--primary-deep);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  order: 3;
}

.cta-row {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  order: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #3f9241);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 125, 50, 0.24);
  min-width: 12.5rem;
  font-size: 1.08rem;
}

.button-secondary {
  background: linear-gradient(135deg, var(--primary), #3f9241);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(47, 125, 50, 0.24);
  font-size: 1.08rem;
}

.section {
  padding: 2rem 0 0;
}

.section-heading {
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.service-grid,
.contact-grid {
  width: var(--container);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.contact-grid article {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 245, 0.86)),
    radial-gradient(circle at top right, rgba(218, 239, 197, 0.45), transparent 35%);
  box-shadow:
    0 22px 48px rgba(75, 113, 57, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card h3,
.contact-grid h3 {
  margin: 0;
  font-size: 2rem;
}

.service-card-long-title h3 {
  font-size: 1.82rem;
}

.service-card-long-title .service-duration {
  font-size: 1.15rem;
}

.service-duration {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
  vertical-align: baseline;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 56px rgba(75, 113, 57, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.service-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 1rem;
  row-gap: 0.3rem;
  min-height: 4.9rem;
}

.service-heading {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.service-subprice {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(31, 90, 36, 0.86);
  font-weight: 600;
}

.service-subprice-note {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.76rem;
  line-height: 1.3;
  color: rgba(67, 80, 67, 0.82);
}

.price {
  margin: 0;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  background: rgba(233, 246, 223, 0.95);
  color: var(--primary-deep);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-accent {
  width: 4.5rem;
  height: 3px;
  margin: 0.95rem 0 1.15rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(127, 186, 97, 0.25));
}

.service-card p,
.story-card p,
.contact-grid p,
.contact-grid a,
.faq-list p,
.info-banner {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
}

.service-card p,
.story-card p {
  text-align: left;
}

.service-copy {
  margin: 0 0 0.8rem;
  line-height: 1.78;
  text-wrap: pretty;
}

.service-prices {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(47, 125, 50, 0.12);
}

.service-prices p {
  margin: 0.45rem 0;
  font-size: 1rem;
  line-height: 1.7;
}

.service-prices p:last-child {
  margin-bottom: 0;
}

.service-prices strong {
  color: var(--primary-deep);
  font-weight: 700;
}

.service-note {
  font-size: 0.94rem;
  line-height: 1.6;
}

.service-note-inline {
  margin: 1.15rem 0 0;
  max-width: 30rem;
}

.info-banner {
  width: min(42rem, calc(100% - 2rem));
  margin: 2rem auto 0;
  padding: 1.55rem 1.7rem;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 125, 50, 0.22);
  background:
    linear-gradient(180deg, rgba(240, 249, 232, 0.96), rgba(231, 245, 220, 0.88)),
    radial-gradient(circle at top left, rgba(186, 223, 154, 0.28), transparent 32%);
  box-shadow:
    0 18px 36px rgba(75, 113, 57, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: var(--primary-deep);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.75;
}

.story-card,
.booking-card,
.faq-card {
  padding: 2.5rem 3rem 3rem;
}

.story-card {
  padding: 2.25rem 2.5rem;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.story-copy {
  display: grid;
  gap: 0.4rem;
}

.story-copy p {
  margin: 0 0 0.7rem;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.story-image-wrap {
  position: relative;
}

.story-image {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(80, 132, 55, 0.18);
  box-shadow: 0 22px 45px rgba(75, 113, 57, 0.16);
}

.contact-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-grid article {
  min-width: 0;
  min-height: 10.5rem;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.contact-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-grid a {
  color: var(--primary-deep);
  font-weight: 600;
  word-break: break-word;
}

.contact-grid h3 {
  margin-bottom: 0.4rem;
}

.contact-grid article:first-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 245, 0.86)),
    radial-gradient(circle at top right, rgba(218, 239, 197, 0.45), transparent 35%);
  border-color: var(--border);
  box-shadow:
    0 22px 48px rgba(75, 113, 57, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-grid article:first-child a {
  color: var(--primary-deep);
  font-size: 1.35rem;
  font-weight: 700;
}

.contact-note {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(67, 80, 67, 0.9);
}

.compact {
  width: 100%;
  margin-top: 0;
}

.faq-list {
  width: min(46rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-list details {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: default;
  padding: 1.25rem 1.35rem;
  color: var(--primary);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  font-size: 1.8rem;
  color: var(--accent);
}

.faq-list details[open] summary::after {
  content: "";
}

.faq-list p {
  margin: 0;
  padding: 0 1.35rem 1.35rem;
  text-align: left;
}

.footer {
  width: var(--container);
  margin: 2.25rem auto 0;
  padding: 3rem 0 4rem;
  text-align: center;
  color: var(--muted);
}

.footer h3 {
  margin: 0 0 0.75rem;
  font-size: 2.2rem;
}

.footer p {
  margin: 0;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  min-height: 3.2rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(61, 99, 48, 0.08);
}

@keyframes logo-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.45rem;
    border-radius: 1.15rem;
  }

  .hero-nav {
    margin-bottom: 1.25rem;
  }

  .nav-links a {
    padding: 0.7rem 1rem;
    text-align: center;
    font-size: 1.2rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    min-height: auto;
  }

  .hero-logo {
    width: min(100%, 18rem);
    margin: 0 auto 1rem;
  }

  .lead,
  .service-card p,
  .story-card p,
  .faq-list p {
    text-align: center;
  }

  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card-top {
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }

  .service-heading {
    width: 100%;
    justify-items: center;
    text-align: center;
    flex: none;
  }

  .service-subprice,
  .service-subprice-note,
  .service-note-inline {
    text-align: center;
  }

  .service-accent {
    margin-left: auto;
    margin-right: auto;
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero-panel,
  .section-card {
    width: min(100%, calc(100% - 1rem));
    border-radius: 24px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10vw, 3.15rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .title-line {
    width: auto;
    white-space: normal;
  }

  .title-line-tight {
    width: auto;
    margin: 0;
    transform: none;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-nav {
    width: 100%;
    margin-bottom: 1rem;
  }

  .lead {
    max-width: 100%;
    margin-top: 1.4rem;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
  }

  .hero-location {
    font-size: 0.98rem;
  }

  .cta-row {
    width: 100%;
    margin-top: 1.6rem;
    gap: 0.85rem;
  }

  .button {
    width: 100%;
  }

  .story-card,
  .booking-card,
  .faq-card,
  .service-card {
    padding: 1.5rem;
  }

  .service-card h3,
  .contact-grid h3 {
    font-size: 1.75rem;
    line-height: 1.05;
    text-align: center;
  }

  .service-card-long-title h3 {
    font-size: 1.55rem;
  }

  .service-duration {
    display: block;
    margin-top: 0.2rem;
    font-size: 1rem;
  }

  .price {
    font-size: 0.95rem;
    align-self: center;
    margin-top: 0.1rem;
  }

  .service-subprice {
    margin-top: 0.05rem;
    max-width: 16rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .service-subprice-note {
    margin-top: 0.15rem;
    max-width: 14rem;
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .service-note-inline {
    margin-top: 0.9rem;
    max-width: 100%;
    text-align: center;
  }

  .service-prices p {
    text-align: center;
  }

  .contact-grid article:first-child a {
    font-size: 1.2rem;
  }

  .faq-list summary {
    font-size: 1.55rem;
  }

  .footer {
    margin-top: 1.25rem;
    padding: 2rem 0 3rem;
  }
}
