:root {
  --accent: #C75D3C;
  --accent-dark: #A84A2E;
  --accent-light: #E89B7E;
  --accent-tint: #F6E4DC;
  --dark: #241F1B;
  --dark-2: #2E2823;
  --light: #FAF7F2;
  --tint: #F2EBE3;
  --tint-2: #ECE3D8;
  --text: #3A332C;
  --text-muted: #7E7367;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(36, 31, 27, 0.08);
  --shadow-lg: 0 12px 40px rgba(36, 31, 27, 0.12);
  --nav-height: 68px;
  --max-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn--filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--outline-light {
  color: var(--light);
  border-color: rgba(250, 247, 242, 0.5);
}

.btn--outline-light:hover {
  background: rgba(250, 247, 242, 0.1);
  border-color: var(--light);
}

.btn--small {
  font-size: 15px;
  padding: 10px 20px;
}

/* === Eyebrow === */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow--light {
  color: var(--accent-light);
}

/* === Nav === */
.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tint-2);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__wordmark-name {
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a:not(.btn) {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav__links a:not(.btn):hover {
  color: var(--accent);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  padding: 4px;
}

/* === Hero === */
.hero {
  background: var(--dark);
  color: var(--light);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--light);
}

.hero__subtitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.78);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* === Pillars === */
.pillars {
  background: var(--light);
  padding: 80px 0;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar {
  text-align: left;
}

.pillar__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar__heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.pillar__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* === Sections === */
.section {
  padding: 100px 0;
}

.section--tint {
  background: var(--tint);
}

.section--white {
  background: var(--white);
}

.section__title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--dark);
  text-align: center;
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__title--left {
  text-align: left;
  margin-left: 0;
}

.section__lead {
  font-size: 18px;
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* === Cards === */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--tint-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* === About === */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about__credential {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--tint);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.about__credential-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__credential-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
}

.about__credential-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* === Retreat === */
.retreat {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.retreat__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.retreat__text strong {
  color: var(--dark);
}

.retreat__content .btn {
  margin-top: 12px;
}

.retreat__amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.retreat__amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--tint-2);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

.retreat__amenity svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* === CTA Band === */
.cta-band {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199, 93, 60, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-band__inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

.cta-band__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--light);
  margin-bottom: 18px;
}

.cta-band__text {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.78);
  margin-bottom: 36px;
}

.cta-band__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Footer === */
.footer {
  background: var(--dark-2);
  color: rgba(250, 247, 242, 0.7);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.6);
  max-width: 280px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 15px;
  color: rgba(250, 247, 242, 0.6);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--accent-light);
}

.footer__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.6);
  margin-bottom: 10px;
}

.footer__text a:hover {
  color: var(--accent-light);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 24px;
}

.footer__bottom p {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.45);
}

/* === Responsive === */
@media (max-width: 960px) {
  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__image {
    max-width: 560px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .retreat {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    top: calc(42px + var(--nav-height));
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--tint-2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-200%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav__links--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a:not(.btn) {
    padding: 14px 0;
    border-bottom: 1px solid var(--tint);
  }

  .nav__links .btn {
    margin-top: 12px;
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 72px 0 90px;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-band {
    padding: 72px 0;
  }
}

/* === Scroll reveal (applied by JS) === */
.reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

  .reveal-init {
    opacity: 1;
    transform: none;
    transition: none;
  }
}