﻿/* â”€â”€ Reset & base â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #faf9f6;
  --color-accent: #c0552d;
  --color-accent-hover: #a84825;
  --color-olive: #5a6149;
  --color-text: #4a4a4a;
  --color-text-dark: #3d3229;
  --color-white: #ffffff;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", Arial, Helvetica, sans-serif;
  --header-height: 72px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.5;
}

/* â”€â”€ Typography: headings and paragraphs â”€â”€ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5rem;
  color: var(--color-text-dark);
  line-height: 1.15;
  font-family: var(--font-serif);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.25rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

h6 {
  font-size: 0.85rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

/* smaller text helpers */
.lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-dark);
}

body.nav-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 0 5%; 
}

/* â”€â”€ Header â”€â”€ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(74, 74, 74, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  min-height: var(--header-height);
}

/* â”€â”€ Logo â”€â”€ */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 100;
}

.logo__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.logo__image {
  display: block;
  width: auto;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.header .logo__image {
  height: clamp(50px, 6vw, 62px);
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  line-height: 1.2;
}

.logo__tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text);
  text-transform: uppercase;
  white-space: nowrap;
}

/* â”€â”€ Navigation â”€â”€ */
.nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  padding-right: 30px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.75rem);
  margin-bottom: 0;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-accent);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 1px;
}

/* â”€â”€ CTA button â”€â”€ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.375rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color var(--transition), transform 0.15s ease;
}

.btn-cta:hover {
  background-color: var(--color-accent-hover);
}

.btn-cta:active {
  transform: scale(0.98);
}

.header__cta {
  z-index: 1001;
}

.nav__cta {
  display: none;
}

/* â”€â”€ Hamburger toggle â”€â”€ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  border-radius: 6px;
  transition: background-color var(--transition);
}

.nav-toggle:hover {
  background-color: rgba(192, 85, 45, 0.08);
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* â”€â”€ Overlay â”€â”€ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(61, 50, 41, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.is-visible {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(61, 50, 41, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background-color var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-accent-hover);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(192, 85, 45, 0.28);
  outline-offset: 4px;
}

@media (max-width: 575px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* â”€â”€ Hero banner â”€â”€ */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg);
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
}

.hero__inner {
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.hero__title-line {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero__title-line--green {
  color: var(--color-olive);
}

.hero__title-line--orange {
  color: var(--color-accent);
}

.hero__tagline {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.hero__desc {
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  color: var(--color-text);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}
.btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}
.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1.5px solid rgba(74, 74, 74, 0.25);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  background-color: rgba(192, 85, 45, 0.06);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.hero__stat {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--color-olive);
  justify-content: center;
}

.hero__stat-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  display: inline-block;
  color: var(--color-olive);
}

.hero__stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-olive);
}

.hero__stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-olive);
  opacity: 0.85;
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__blob {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero__illustration {
  display: block;
  width: 100%;
  height: auto;
}

/* Corner leaf decorations */
.hero__leaf {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero__leaf img {
  display: block;
  width: 100%;
  height: auto;
}
.about-inner-shifts p{
  color: var(--color-text);
}
.about {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background-color: #fbf6ed;
}

.about__inner .about__image img{
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
.about-inner-shifts .card:hover{
  box-shadow: 0 12px 30px rgba(90, 97, 73, 0.08);

}
.hero__leaf--tl {
  top: 0;
  left: 0;
  width: clamp(70px, 10vw, 120px);
  height: clamp(80px, 12vw, 140px);
}

.hero__leaf--bl {
  bottom: 12%;
  left: -1%;
  width: clamp(60px, 8vw, 100px);
  height: clamp(70px, 10vw, 120px);
}

@media (max-width: 960px) {
  /* On smaller screens the Bootstrap columns will stack; keep padding and center text */
  .hero__inner {
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero__content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__blob {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero__leaf--bl {
    display: none;
  }
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-wrap: wrap;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn {
    width: 100%;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}

/* Reservation page hero */
.reservation-hero {
  padding: 4rem 0 5rem;
  background-color: #f7efe1;
}

.reservation-hero__content {
  max-width: 520px;
}

.reservation-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.reservation-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.reservation-hero__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 520px;
  margin-bottom: 2rem;
}

.reservation-hero .btn-cta {
  padding: 1rem 2rem;
}

.reservation-hero__visual {
  display: flex;
  justify-content: center;
}

.reservation-hero__image {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.gallery-hero .reservation-hero__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gallery-hero .reservation-hero__text {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.volunteer-benefits {
  background-color: #fdf9f2;
  position: relative;
}
.volunteer-benefit__decor{
  position: absolute;
  top: 0;
  left: 0;

}

.volunteer-benefits .eyebrow {
  letter-spacing: 0.28em;
  font-size: 0.75rem;
}

.benefits-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: var(--color-text-dark);
}

.benefit-card {
  border: 1px solid rgba(90, 97, 73, 0.08);
}

.benefit-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(90, 97, 73, 0.08);
}

.bg-ivory {
  background: #f6efe4;
}

.bg-peach {
  background: #f3d6c6;
}

.bg-gold {
  background: #f7dd9f;
}

.bg-sage {
  background: #e6ead8;
}

.benefit-heading {
  font-size: 1.05rem;
  font-weight: 700;
}

.benefit-copy {
  color: var(--color-text);
  line-height: 1.85;
}

.story-card {
  border: 1px solid rgba(90, 97, 73, 0.08);
  background-color: #ffffff;
}

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  color: var(--color-text-dark);
}
.blockquote-footer {
  margin-top: 0.5rem;
}
.story-copy {
  color: var(--color-text);
  line-height: 1.85;
}

.story-quote {
  border-left: 4px solid rgba(192, 85, 45, 0.25);
  padding-left: 1rem;
  color: var(--color-text);
}
.story-quote p {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}
.story-image-wrapper {
  overflow: hidden;
}

.story-checklist {
  background: linear-gradient(180deg, #4f5d30 0%, #313f20 100%);
}

.checklist-title {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.checklist-item {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
  line-height: 1.85;
}

.checklist-item i {
  color: #e9dfbf;
}

.cta-stats {
  background-color: #f9f3e8;
}



.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.cta-text {
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.cta-button {
  padding: 0.95rem 2rem;
  font-size: 1rem;
  background: linear-gradient(135deg, #c0552d, #a84c29);
  border-color: transparent;
  font-size: 14px;
  color: var(--color-white);
}

.cta-button:hover {
  background: linear-gradient(135deg, #a84c29, #c0552d);
}



.stat-item {
  min-height: 140px;
  text-align: center;
}

.stat-icon {
  width: 56px;
  height: 56px;
  box-shadow: 0 14px 30px rgba(90, 97, 73, 0.08);
}
.about-filo-decor{
  position: absolute;
  bottom: 0;
  right: 0;
}
/* .about-cta {
  background-color: #4e5b34;
} */
.about-cta{
  position: relative;
}
.about-cta-decor{
  position: absolute;
  top: 10px;
  right: 700px;
}
.about-cta__image-frame {
  background: #f7efe3;
}

.about-cta__image {
  object-fit: cover;
}

.about-cta__eyebrow {
  letter-spacing: 0.18em;
  color: #9b8b77;
  font-size: 0.85rem;
}

.about-cta__title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: #1f1a14;
}

.about-cta__text {
  max-width: 560px;
  color: #4c453d;
  font-size: 1rem;
  line-height: 1.8;
}

.about-cta__button {
  min-width: 220px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.stat-label {
  color: var(--color-text);
  font-size: 0.95rem;
}
.our-impact{
  position: relative;
}
.our-impact-decor{
  position: absolute;
  bottom: -50px;
  left: 0;
}
@media (max-width: 991px) {
  .cta-panel,
  .stats-panel {
    text-align: center;
  }

  .stats-panel .row {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .story-card,
  .story-checklist {
    text-align: center;
  }

  .story-checklist .row {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .benefit-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 991px) {
  .reservation-hero {
    padding: 3rem 0 3.5rem;
  }

  .reservation-hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 575px) {
  .reservation-hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .reservation-hero .btn-cta {
    width: 100%;
  }
}

.reservation-form-section {
  padding: 4rem 0 5rem;
  background-color: #faf7f0;
}

.reservation-form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(90, 97, 73, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 239, 225, 0.95) 100%);
  box-shadow: 0 28px 70px rgba(45, 45, 45, 0.08);
}

.reservation-form-card::before {
  content: "";
  position: absolute;
  top: -16%;
  right: -10%;
  width: 220px;
  height: 220px;
  background: rgba(192, 85, 45, 0.12);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.reservation-form-card::after {
  content: "";
  position: absolute;
  bottom: -12%;
  left: -8%;
  width: 180px;
  height: 180px;
  background: rgba(90, 97, 73, 0.08);
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.reservation-form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 0.35rem;
}

.reservation-form-note {
  color: var(--color-text);
  line-height: 1.75;
}

.reservation-form-label {
  min-width: 72px;
  min-height: 72px;
  border-radius: 22px;
  background-color: rgba(242, 229, 214, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reservation-form-label i {
  color: var(--color-accent);
}

.reservation-form-card .form-label {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 14px;
}

.reservation-form-card .form-control,
.reservation-form-card .form-select,
.reservation-form-card textarea {
  background-color: #ffffff;
  border: 1px solid rgba(90, 97, 73, 0.14);
  border-radius: 16px;
  padding: 10px 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  font-size: 16px;
}

.reservation-form-card .form-control:focus,
.reservation-form-card .form-select:focus,
.reservation-form-card textarea:focus {
  border-color: rgba(192, 85, 45, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(192, 85, 45, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.reservation-form-card .form-check-input {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.35rem;
  border-color: rgba(90, 97, 73, 0.25);
}

.reservation-form-card .form-check-input:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.reservation-form-card .form-check-label a {
  color: var(--color-accent);
}

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

.reservation-form-card .btn-success {
  background: linear-gradient(135deg, var(--color-accent), #a84c29);
  border: none;
  box-shadow: 0 18px 35px rgba(188, 83, 38, 0.2);
  font-size: 1rem;
}

.reservation-form-card .btn-success:hover {
  background: linear-gradient(135deg, #a84c29, var(--color-accent));
}

.reservation-info-card {
  min-height: 100%;
}

.reservation-info-icon {
  width: 48px;
  height: 48px;
}

.reservation-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

.reservation-info-list li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
}

.reservation-info-card p,
.reservation-info-card blockquote {
  color: var(--color-text);
}

@media (max-width: 991px) {
  .reservation-form-section,
  .reservation-hero {
    padding: 3rem 0 3.5rem;
  }
}

@media (max-width: 575px) {
  .reservation-form-card,
  .reservation-info-card {
    border-radius: 24px;
  }
}

.before-visit {
  background-color: #f7efe1;
}

.before-visit .section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

.before-visit-card {
  border: 1px solid rgba(90, 97, 73, 0.08);
}

.before-visit-icon {
  width: 64px;
  height: 64px;
  font-size: 1.25rem;
}

.before-visit-card h3 {
  font-size: 1rem;
}

.before-visit-card p {
  color: var(--color-text);
  line-height: 1.75;
}

@media (max-width: 767px) {
  .before-visit {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* â”€â”€ Tablet & mobile â”€â”€ */
@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay.is-visible {
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: calc(var(--header-height) + 1.5rem) 1.75rem 2rem;
    background-color: var(--color-bg);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(74, 74, 74, 0.1);
  }

  .nav__link {
    display: block;
    padding: 0.875rem 0;
    font-size: 0.95rem;
    white-space: normal;
  }

  .nav__link--active::after {
    display: none;
  }

  .nav__link--active {
    font-weight: 600;
  }

  .nav__cta {
    display: inline-flex;
    margin-top: 1.5rem;
    width: 55%;
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .header__inner {
    padding: 0.625rem 1rem;
  }

  .header .logo__image {
    height: 48px;
  }
}

/* â”€â”€ Large screens (1440px) adjustments â”€â”€ */
@media (min-width: 1440px) {
  .header__inner,
  .hero__inner,
  .container {
    max-width: 1440px;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }


  .hero__content {
    max-width: 640px;
  }

  .hero__title-line {
    font-size: clamp(3.5rem, 4.8vw, 5.25rem);
  }

  .hero__blob {
    max-width: 720px;
  }

  .hero__stat-icon {
    font-size: 26px;
  }

  .how-icon {
    width: 116px;
    height: 116px;
  }

  .how-icon i {
    font-size: 34px;
  }

  .how__title {
    font-size: 1.6rem;
  }
}

/* â”€â”€ Impact section â”€â”€ */
.impact {
  background-color: #56682f;
  color: #f5f3e9;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.impact__header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.impact__eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 233, 0.75);
  margin-bottom: 0.85rem;
}

.impact__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  letter-spacing: 0.08em;
  color: #faf7ec;
  margin-bottom: 0;
}
.cta-stats__decor {
  left: 0;
  bottom: 0;
  height: auto;
  width: 130px;
}
.impact__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  
}

.impact__card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(245, 243, 233, 0.14);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.impact__card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 243, 233, 0.35);
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.impact__card:hover .impact-icon {
  background-color: rgba(245, 243, 233, 0.18);
}

.impact-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #faf7ec;
}

.impact-icon i {
  font-size: 24px;
}

.impact__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
}

.impact__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: rgba(245, 243, 233, 0.9);
}

@media (min-width: 768px) {
  

  .impact__card {
    padding: 1.5rem;
  }
}

@media (min-width: 1440px) {
  .impact {
    padding: 5rem 0;
  }
}

/* â”€â”€ Story section â”€â”€ */
.story {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.story__header {
  max-width: 820px;
  margin: 0 auto 2rem;
}

.story__eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: 0.85rem;
}

.story__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.6vw, 2.75rem);
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

.story__grid {
}

.story__card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 20px rgba(74, 74, 74, 0.06);
  overflow: hidden;
}

.story__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Hover / focus animation for story media */
.story__media {
  overflow: hidden;
  border-radius: 16px;
}

.story__media img {
  transition: transform var(--transition), filter var(--transition);
  will-change: transform;
}

.story__card:hover .story__media img,
.story__media:focus-within img {
  transform: scale(1.04) translateY(-6px);
  filter: brightness(1.03);
}

.story__media:focus-within {
  outline: none;
  box-shadow: 0 0 0 6px rgba(192,85,45,0.06);
}

.story__body {
  padding: 1.5rem;
}

.story__quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.story__source {
  font-size: 0.9rem;
  color: var(--color-olive);
  font-weight: 600;
}

.about-story {
  padding: 4rem 0 3rem;
  background-color: #fbf5eb;
}

.about-story .story__body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.45rem;
}

.about-story .story__card {
  border: 1px solid rgba(90, 97, 73, 0.12);
  background-color: #ffffff;
  position: relative;
}

.story-quote-box {
  background-color: #f7efe1;
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
}

.about-story-leaf {
  position: absolute;
  top: 0px;
  right: 1.5rem;
  width: 120px;
  height: 120px;
}

.about-story-leaf svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .about-story .story__card {
    padding: 2rem 1.5rem;
  }

  .about-story-leaf {
    display: none;
  }
}

/* â”€â”€ Philosophy section â”€â”€ */
.about-philosophy {
  background-color: #faf4e9;
}

.about-philosophy .story__eyebrow {
  color: var(--color-accent);
  letter-spacing: 0.24em;
  margin-bottom: 0.75rem;
}

.about-philosophy .story__title {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.philosophy-card {
  background-color: #ffffff;
  border: 1px solid rgba(90, 97, 73, 0.08);
  box-shadow: 0 18px 30px rgba(74, 74, 74, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 40px rgba(74, 74, 74, 0.1);
}

.philosophy-icon {
  width: 84px;
  height: 84px;
  color: var(--color-text-dark);
}

.philosophy-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.philosophy-card p {
  color: var(--color-text);
  line-height: 1.75;
}

@media (max-width: 767px) {
  .about-philosophy .story__title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }
}

/* â”€â”€ Locations section â”€â”€ */
.locations {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background-color: #f8f4ea;
}
.locations__header {
  margin-bottom: 2rem;
}

.locations__eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: 0.75rem;
}

.locations__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
  color: var(--color-text-dark);
  margin-bottom: 0;
}

.location-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.85rem;
  min-height: 180px;
  padding: 1rem 0.75rem;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 18px 32px rgba(74, 74, 74, 0.08);
}
.about__image{
  display:flex;
  justify-content:center;
}
.location-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(196, 85, 45, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.location-icon i {
  font-size: 26px;
  transition: transform var(--transition);
}

/* Hover/focus/active effect for location icons */
.location-icon:hover,
.location-icon:focus,
.location-icon:active {
  transform: translateY(-6px) scale(1.06) rotate(-3deg);
  background-color: rgba(196,85,45,0.16);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.location-icon:focus {
  outline: none;
  box-shadow: 0 0 0 6px rgba(192,85,45,0.06);
}

.location-icon:hover i {
  transform: translateY(-2px) rotate(-4deg);
}

.location-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
}

@media (max-width: 767px) {
  .location-card {
    min-height: 160px;
    padding: 0.9rem 0.75rem;
  }
}
.about__desc{
  color:var(--color-text);
}
/* â”€â”€ Host community section â”€â”€ */
.host-community {
  background-color: #c25d3a;
  color: var(--color-white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.host-community__inner {
  align-items: center;
}

.host-community__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.host-community__eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.host-community__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.host-community__text {
  max-width: 520px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.8;
}

.host-community .btn-cta {
  background-color: var(--color-white);
  color: var(--color-accent);
}

.host-community .btn-cta:hover {
  background-color: #f6f0e8;
}

@media (max-width: 991px) {
  .host-community__title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .host-community {
    padding: 3rem 0;
  }

  .host-community__image img {
    border-radius: 20px;
  }
}

/* â”€â”€ Footer section â”€â”€ */
.site-footer {
 position: relative;
 z-index: 99;
  color: rgba(255, 255, 255, 0.92);
  padding: 3rem 0 2rem;
}


.site-footer .container {
  max-width: 1440px;
  padding: 0 5%;
}

.site-footer .footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.site-footer .footer__brand {
  max-width: 360px;
  margin-bottom: 20px;
  flex: 1.4 1 0;
}

.site-footer .footer__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.site-footer .footer__top .footer__brand-tag {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer__top .logo__name {
  color: #ffffff;
}

.site-footer .footer__top .logo__tagline {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer .logo__image {
  height: clamp(110px, 13vw, 150px);
}

.site-footer .footer__brand-tag,
.site-footer .footer__description {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer__description {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.site-footer .footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer .footer__social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #ffffff;
  transition: background-color var(--transition);
}

.site-footer .footer__social a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-footer .footer__nav {
  flex: 1 1 0;
  margin-bottom: 20px;
}

.site-footer .footer__nav h3,
.site-footer .footer__newsletter h3 {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
}

.site-footer .footer__nav ul,
.site-footer .footer__newsletter p {
  margin: 0;
  padding: 0;
}

.site-footer .footer__nav li {
  margin-bottom: 0.75rem;
}

.site-footer .footer__nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.site-footer .footer__nav a:hover {
  color: #ffffff;
}

.site-footer .footer__newsletter {
  flex: 1 1 min(280px, 100%);
  margin-bottom: 20px;
}

.site-footer .footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
}

.site-footer .footer-newsletter-form input,
.site-footer .footer-newsletter-input {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-footer .footer-newsletter-form input::placeholder,
.site-footer .footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer .footer-newsletter-form input:focus,
.site-footer .footer-newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.site-footer .footer-newsletter-form button,
.site-footer .footer-newsletter-button {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color var(--transition), transform 0.15s ease;
}

.site-footer .footer-newsletter-form button:hover,
.site-footer .footer-newsletter-button:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.site-footer .footer-newsletter-form button:active,
.site-footer .footer-newsletter-button:active {
  transform: translateY(0);
}

@media (max-width: 575px) {
  .site-footer .footer__top {
    flex-direction: column;
  }

  .site-footer .footer-newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .site-footer .footer-newsletter-form button {
    width: 100%;
    min-width: 0;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-newsletter-form {
    flex-wrap: wrap;
  }
}

/* â”€â”€ How it works section â”€â”€ */
.how {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background-color: var(--color-bg);
}

.how__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.how__intro {
  color: var(--color-text);
  max-width: 820px;
  margin: 0 auto 1.75rem;
}

.how__flow {
  gap: 1rem;
}

.how-step {
 
  padding: 0.5rem 0.75rem;
  text-align: center;
  position: relative;
}

.how-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: rgba(90,97,73,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-olive);
  margin: 0 0 0.9rem;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.how-icon i {
  font-size: 28px;
  line-height: 1;
}

/* Hover / focus styles for .how-icon */
.how-icon:hover,
.how-icon:focus,
.how-icon:active {
  transform: translateY(-6px) scale(1.05);
  background-color: rgba(96,115,84,0.12);
  color: var(--color-accent);
  box-shadow: 0 10px 24px rgba(74,74,74,0.08);
}

.how-icon:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(192,85,45,0.08);
}

.how-step-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 0.35rem;
}

.how-step-desc {
  color: var(--color-text);
  font-size: 0.9rem;
  opacity: 0.95;
}

/* arrows between steps on larger screens */
.how-step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  right: 0.5rem;
  top: 25%;
  transform: translateY(-50%);
  font-size: 40px;
  color: rgba(90,97,73,0.5);
  display: none;
}

@media (min-width: 768px) {
  .how-step:not(:last-child)::after {
    display: block;
  }
}

@media (max-width: 767px) {
  .how-step {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .how-icon {
    width: 84px;
    height: 84px;
  }
}

/* new css  */
.impact-bar{
  background-color: #4e5b34;
}
.impact-bar .content-box p{
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.75);
  
}
.impact-bar .content-box h2{
  margin-bottom: 0;
  color:#f7f7f2;
}
.impact-box{
  padding:12px;
  border-radius: 16px;
  height: 100%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.impact-box h3{

}
.impact-box p{
  margin-bottom: 0;
  font-size:.95rem; 
  color: rgba(255,255,255,.8);
}
.impact-box .impact-icon{
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.16);
  border-radius: 50%;
}










.site-footer{
   background-color: rgb(90 62 43 / 95%);
  padding: 50px 0px 0px 0px;
}
.footer__description{
  color:#ffffff;
}
.footer__bottom a,
.footer__bottom p{
  color:#ffffff;
  font-size: 13px;
}
.footer__nav ul{
  padding-left: 0px;
}
.footer__nav ul li a{
  color:#ffffff;
}
.footer__nav h3{
  color:#ffffff;
}
.footer__newsletter h3{
  color:#ffffff;
}
.footer__bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer__legal span{
  color:#ffffff;
}
.footer__brand .logo__text{
  color:#ffffff
}
.footer__brand .logo__tagline{
  color:#ffffff;
}
.footer__brand .logo{
  margin-bottom: 18px;
}
.footer__social{
  display:flex;
  gap:20px;
  align-items: center;
}
.footer__social a{
  color:#ffffff;
}
.footer__brand p{
  font-size:13px;
}
.footer__bottom p{
  font-size:13px;
}

.gallery-section {
            padding: 50px 20px;
            text-align: center;
            background-color: #f8f4ea
        }

        .gallery-section h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 30px;
        }

        /* Masonry Grid CSS */
        .masonry-grid {
            column-count: 3;
            column-gap: 20px;
        }

        .masonry-item {
            /* Prevents images from breaking across columns */
            break-inside: avoid;
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .masonry-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        /* Hover Effect */
        .masonry-item:hover img {
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .masonry-grid {
                column-count: 2;
            }
        }

        @media (max-width: 600px) {
            .masonry-grid {
                column-count: 1;
            }
        }


        /* Carousel Container Section */
        .slider-section {
            margin: 0;
            padding: clamp(3.5rem, 6vw, 5rem) 20px;
            text-align: center;
            background-color: #faf7f0;
        }

        /* The Carousel Itself */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden; /* Hides the next slides */
            border-radius: 15px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out; /* Smooth sliding animation */
            width: 100%;
        }

        /* Each slide acts as a container for 3 images */
        .carousel-slide {
            min-width: 100%; /* Each slide takes up full width of the view */
            box-sizing: border-box;
            display: flex;
            gap: 15px; /* Spacing between the 3 images */
            padding: 10px 5px;
        }

        /* Individual Card Item inside the slide */
        .slide-item {
            flex: 1; /* Distributes width equally (33.33% each) */
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background: #fff;
        }

        .slide-item img {
            width: 100%;
            height: 350px;
            object-fit: cover; /* Keeps image proportions clean */
            display: block;
        }

        /* Navigation Buttons */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            padding: 12px 12px;
            cursor: pointer;
            border-radius: 50%;
            transition: background-color 0.3s;
            z-index: 10;
        }

        .carousel-btn:hover {
            background-color: rgba(0, 0, 0, 0.9);
        }

        .prev-btn { left: 15px; }
        .next-btn { right: 15px; }

        /* Responsive Design: Stack images vertically on mobile screens */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column; /* Stacks 3 images vertically on mobile */
            }
            .slide-item img {
                height: 220px;
            }
            .carousel-btn {
                font-size: 1.5rem;
                padding: 8px 12px;
            }
        }

.cms-text-section p{
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.cms-text-section ul{
  padding-left: 0;
}
.cms-text-section {
  padding: 3rem 0 ;
  background-color: #f7efe1;
}
.cms-text-section h2{
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 0;
}
