:root {
  --bg: #d9c3a8;
  --bg-soft: #efe1d0;
  --bg-cream: #f7efe6;
  --card: rgba(255, 250, 244, 0.72);
  --card-strong: rgba(255, 248, 240, 0.88);
  --text: #3e2c20;
  --text-soft: #6d5647;
  --line: rgba(84, 55, 34, 0.14);
  --accent: #7f5d43;
  --accent-deep: #5d402c;
  --shadow: 0 20px 50px rgba(76, 50, 31, 0.12);
  --shadow-soft: 0 14px 30px rgba(76, 50, 31, 0.09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.16), transparent 22%),
    linear-gradient(180deg, #cfb191 0%, #d8c0a4 22%, #e7d4c0 50%, #f5ece4 100%);
  overflow-x: hidden;
}

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

.site-shell {
  min-height: 100vh;
}

.container {
  max-width: var(--container);
}

.hero-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}

.hero-wrap::before,
.hero-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
}

.hero-wrap::before {
  width: 340px;
  height: 340px;
  background: rgba(255, 248, 238, 0.35);
  top: -80px;
  right: -80px;
}

.hero-wrap::after {
  width: 280px;
  height: 280px;
  background: rgba(146, 106, 76, 0.12);
  left: -60px;
  bottom: 50px;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(239, 225, 208, 0.72);
  border-bottom: 1px solid rgba(78, 52, 34, 0.08);
}

.nav-frame {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-deep);
  text-decoration: none;
  letter-spacing: 0.04em;
}

nav ul,
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

nav li {
  position: relative;
}

nav li a,
footer li a {
  text-decoration: none;
}

nav li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

nav li a:hover,
nav li a.active {
  background: rgba(255, 248, 240, 0.82);
  color: var(--accent-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 250, 244, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-deep);
  display: block;
}

.hero-section {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
}

.hero-copy,
.hero-visual,
.content-card,
.program-card,
.timeline-card,
.space-card,
.quote-card,
.journal-card,
.contact-card,
.soft-link-card,
.image-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent-deep);
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1.3rem;
}

h2 {
  font-size: clamp(2.3rem, 3.6vw, 3.4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.lead-text {
  font-size: 1.08rem;
}

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

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 600;
  border-width: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-earth {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  border-color: transparent;
}

.btn-earth:hover,
.btn-earth:focus {
  color: #fff;
}

.btn-outline-earth {
  background: rgba(255, 248, 240, 0.48);
  color: var(--accent-deep);
  border-color: rgba(93, 64, 44, 0.18);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-metrics > div,
.content-card,
.timeline-card,
.quote-card,
.journal-card,
.contact-card,
.soft-link-card,
.program-card,
.space-card,
.image-panel,
.intro-band,
.contact-strip {
  background: var(--card);
  border: 1px solid rgba(77, 52, 35, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-metrics > div {
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.hero-metrics strong {
  display: block;
  color: var(--accent-deep);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.hero-metrics span {
  font-size: 0.92rem;
  color: var(--text-soft);
}

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

.floating-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 35px 60px rgba(76, 50, 31, 0.16);
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.55);
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-one {
  inset: 0 60px 120px 0;
}

.card-two {
  width: 230px;
  height: 270px;
  right: 0;
  top: 55px;
}

.card-three {
  width: 250px;
  height: 220px;
  left: 40px;
  bottom: 0;
}

.section-space {
  padding: 5.75rem 0;
}

.intro-band,
.contact-strip {
  border-radius: 34px;
  padding: 2.4rem;
}

.intro-band {
  margin: 0 auto 1rem;
  max-width: calc(var(--container) - 24px);
}

.section-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.content-card,
.program-card,
.timeline-card,
.space-card,
.quote-card,
.journal-card,
.contact-card,
.soft-link-card,
.image-panel {
  border-radius: var(--radius-xl);
}

.content-card,
.timeline-card,
.contact-card,
.soft-link-card {
  padding: 2rem;
}

.tall-card {
  height: 100%;
}

.icon-card {
  height: 100%;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(127, 93, 67, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}

.image-panel {
  padding: 0;
  overflow: hidden;
  min-height: 100%;
}

.image-panel img,
.space-card img,
.stacked-images img {
  width: 100%;
  object-fit: cover;
}

.image-panel img {
  min-height: 100%;
}

.warm-panel {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.18), rgba(255, 250, 245, 0.05));
}

.program-card {
  padding: 2rem;
  height: 100%;
}

.spotlight-card {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.95), rgba(247, 236, 223, 0.9));
}

.program-tag {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(127, 93, 67, 0.12);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.feature-list {
  padding-left: 1rem;
  color: var(--text-soft);
  margin: 1.25rem 0 1.5rem;
}

.feature-list li {
  margin-bottom: 0.85rem;
  line-height: 1.6;
}

.inline-arrow,
.soft-link-card,
.journal-card a,
.contact-link {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: none;
}

.inline-arrow::after,
.journal-card a::after,
.contact-link::after,
.soft-link-card strong::after {
  content: " →";
}

.stacked-images {
  display: grid;
  gap: 1.2rem;
}

.stacked-images img {
  border-radius: 28px;
  height: 280px;
  box-shadow: var(--shadow);
}

.timeline-card {
  padding: 1.2rem 1.6rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item strong {
  color: var(--accent-deep);
  font-size: 1.05rem;
  padding-top: 0.35rem;
}

.earthy-gradient {
  background: linear-gradient(180deg, rgba(225, 204, 183, 0.22), rgba(255, 249, 243, 0));
}

.space-card {
  overflow: hidden;
  height: 100%;
}

.space-card img {
  height: 230px;
}

.space-card h3,
.space-card p {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}

.space-card h3 {
  padding-top: 1.35rem;
  margin-bottom: 0.45rem;
}

.space-card p {
  padding-bottom: 1.4rem;
  margin-bottom: 0;
}

.testimonials-zone {
  padding-top: 3rem;
}

.quote-card {
  padding: 2rem;
  height: 100%;
}

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

.quote-card footer {
  color: var(--accent);
  font-weight: 600;
}

.journal-card {
  height: 100%;
  padding: 1.8rem;
}

.journal-card span {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
}

.faq-zone .accordion {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-item {
  border: 0;
  background: rgba(255, 250, 244, 0.84);
}

.accordion-button {
  font-weight: 600;
  color: var(--accent-deep);
  padding: 1.35rem 1.5rem;
  background: transparent;
}

.accordion-button:not(.collapsed) {
  color: var(--accent-deep);
  background: rgba(127, 93, 67, 0.08);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  color: var(--text-soft);
  line-height: 1.8;
}

.contact-card {
  display: grid;
  gap: 0.9rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-link:hover,
.soft-link-card:hover,
.journal-card a:hover,
.inline-arrow:hover {
  color: var(--accent-deep);
}

.contact-link:hover,
.soft-link-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.62);
}

.soft-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.7rem;
  height: 100%;
}

.soft-link-card span,
.soft-link-card small {
  color: var(--text-soft);
}

footer {
  padding: 2.5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background: rgba(73, 49, 34, 0.9);
  color: rgba(255,255,255,0.82);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.footer-brand,
footer h3 {
  color: #fff3e4;
}

footer p,
footer li a {
  color: rgba(255,255,255,0.82);
}

footer li {
  margin-bottom: 0.75rem;
}

footer li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
}

.footer-bottom p {
  color: rgba(62, 44, 32, 0.8);
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open nav ul {
  display: flex;
}

@media (max-width: 1199px) {
  .hero-visual {
    min-height: 560px;
  }

  .card-one {
    inset: 0 40px 115px 0;
  }

  .card-two {
    width: 205px;
    height: 250px;
  }

  .card-three {
    width: 220px;
    height: 200px;
  }
}

@media (max-width: 991px) {
  .nav-toggle {
    display: inline-flex;
  }

  nav ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: 22px;
    background: rgba(255, 248, 240, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(77, 52, 35, 0.08);
  }

  nav li a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 1rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 2.75rem;
  }

  h1 {
    line-height: 1.02;
  }

  .intro-band,
  .contact-strip,
  .content-card,
  .program-card,
  .timeline-card,
  .quote-card,
  .journal-card,
  .contact-card,
  .soft-link-card {
    padding: 1.4rem;
  }

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

  .card-one {
    inset: 0 22px 96px 0;
  }

  .card-two {
    width: 150px;
    height: 175px;
    top: 38px;
  }

  .card-three {
    width: 165px;
    height: 145px;
    left: 18px;
  }

  .stacked-images img,
  .space-card img {
    height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}
