/* ============================================
   NOOK AND HAVEN - Main Stylesheet
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --color-cream: #FAF7F2;
  --color-warm-white: #FFFDF9;
  --color-sand: #E8E0D4;
  --color-taupe: #B5A898;
  --color-warm-gray: #8A7F73;
  --color-charcoal: #3A3530;
  --color-dark: #2A2520;
  --color-sage: #7A8E72;
  --color-sage-light: #A3B89B;
  --color-sage-dark: #5E7356;
  --color-terracotta: #C4785B;
  --color-terracotta-light: #D99A7E;
  --color-gold: #C9A96E;
  --color-gold-light: #E0C88F;
  --color-white: #FFFFFF;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 1px 3px rgba(42, 37, 32, 0.08);
  --shadow-md: 0 4px 12px rgba(42, 37, 32, 0.1);
  --shadow-lg: 0 8px 30px rgba(42, 37, 32, 0.12);
  --shadow-xl: 0 16px 50px rgba(42, 37, 32, 0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.page-home p {
  font-weight: 600;
}

body.page-home .testimonial-card p {
  font-weight: 400;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-warm-gray);
}

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

.section {
  padding: 100px 0;
}

.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-warm-white); }
.section--dark {
  background: var(--color-dark);
  color: var(--color-sand);
}
.section--dark h2,
.section--dark h3 { color: var(--color-cream); }
.section--dark p { color: var(--color-taupe); }

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-sage);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--color-warm-gray);
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--color-charcoal);
  color: var(--color-cream);
}
.btn--primary:hover {
  background: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-taupe);
}
.btn--secondary:hover {
  border-color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn--sage {
  background: var(--color-sage);
  color: var(--color-white);
}
.btn--sage:hover {
  background: var(--color-sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--terracotta {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.btn--terracotta:hover {
  background: #b06a4e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-charcoal);
  padding: 10px 0;
  border-radius: 0;
}
.btn--ghost:hover {
  color: var(--color-sage-dark);
}
.btn--ghost .arrow {
  transition: transform var(--transition);
}
.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-charcoal);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  padding: 14px 0;
}

.nav.scrolled .nav__logo img {
  filter: none;
}

.nav.scrolled .nav__link {
  color: var(--color-charcoal);
}

.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
  color: var(--color-dark);
}

.nav.scrolled .nav__link::after {
  background: var(--color-dark);
}

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

.nav__logo {
  display: inline-block;
  line-height: 0;
}
.nav__logo img {
  height: 70px;
  width: auto;
  display: block;
  transition: height var(--transition), filter var(--transition);
  filter: invert(1);
}
.nav.scrolled .nav__logo img {
  height: 52px;
  filter: none;
}

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

.nav__link {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-white);
  position: relative;
  padding: 4px 0;
  transition: font-weight var(--transition), color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-white);
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
  font-weight: 700;
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  margin: 6px 0;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 37, 32, 0.25) 0%,
    rgba(42, 37, 32, 0.4) 50%,
    rgba(42, 37, 32, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero__logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto 32px;
  display: block;
}

.hero__title--script {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  white-space: nowrap;
  letter-spacing: -1px;
  color: var(--color-white);
}

.hero__title--script-sm {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-sage);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  color: var(--color-white);
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero__subtitle strong {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--color-white);
}

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

/* Hero Carousel */
.hero__carousel {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__carousel-item {
  position: absolute;
  padding: 14px 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease, border-color 0.3s ease;
  pointer-events: none;
}

.hero__carousel-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__carousel-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Decorative shapes */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--color-sage);
}
.hero__shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}
.hero__shape--2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -80px;
  background: var(--color-terracotta);
}

/* --- Pathways Section --- */
.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pathway-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pathway-card__image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pathway-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(42, 37, 32, 0.2));
}

.pathway-card__body {
  padding: 32px;
}

.pathway-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-sage);
  margin-bottom: 12px;
}

.pathway-card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.pathway-card__desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* --- Collection Cards --- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: all var(--transition);
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.collection-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.collection-card:hover .collection-card__bg {
  transform: scale(1.05);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(42, 37, 32, 0.75));
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: var(--color-white);
}

.collection-card__title {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 6px;
}

.collection-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-card__quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--color-sage-light);
  position: absolute;
  top: -20px;
  left: -4px;
  line-height: 1;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-charcoal);
}

.testimonial-card__role {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-taupe);
}

/* --- Property / Listing Cards --- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.listing-card {
  display: block;
  background: transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.listing-card:hover .listing-card__image {
  filter: brightness(1.08);
}

.listing-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter var(--transition);
}
.listing-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.5) 100%);
}

.listing-card__header {
  position: relative;
  z-index: 1;
  padding: 24px 24px 320px;
}

.listing-card__body {
  position: relative;
  z-index: 1;
  padding: 160px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.listing-card__location {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.listing-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.listing-card__desc {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.listing-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.listing-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-card__divider {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.listing-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.listing-card__price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  display: block;
  margin-bottom: 8px;
}
.listing-card__price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* --- Filter Bar --- */
.filter-bar {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

.filter-bar__row {
  display: flex;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
}

.filter-bar__group {
  flex: 1;
  min-width: 160px;
}

.filter-bar__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-warm-gray);
  margin-bottom: 8px;
}

.filter-bar__input,
.filter-bar__select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  background: var(--color-white);
  transition: border-color var(--transition);
  appearance: none;
}

.filter-bar__input:focus,
.filter-bar__select:focus {
  outline: none;
  border-color: var(--color-sage);
}

.filter-bar__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A7F73' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.filter-bar__btn {
  padding: 12px 28px;
  white-space: nowrap;
}

/* Filter chips */
.filter-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.filter-chip {
  padding: 8px 18px;
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  color: var(--color-warm-gray);
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  font-family: var(--font-body);
}
.filter-chip:hover,
.filter-chip.active {
  border-color: var(--color-sage);
  color: var(--color-sage-dark);
  background: rgba(122, 142, 114, 0.08);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 50%, var(--color-cream) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}
.page-hero__shape--1 {
  width: 500px;
  height: 500px;
  background: var(--color-sage);
  top: -200px;
  right: -100px;
}
.page-hero__shape--2 {
  width: 350px;
  height: 350px;
  background: var(--color-terracotta);
  bottom: -150px;
  left: -80px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-warm-gray);
  line-height: 1.8;
}

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

.about-story__image {
  border-radius: var(--radius-lg);
  height: 500px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.about-story__content h2 {
  margin-bottom: 24px;
}
.about-story__content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Differentiators */
.differentiators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.differentiator {
  padding: 40px;
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.differentiator:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.differentiator__icon {
  width: 48px;
  height: 48px;
  background: rgba(122, 142, 114, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-sage);
  font-size: 1.3rem;
}

.differentiator__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.differentiator__desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Homes Page: Why Work With Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.why-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: rgba(122, 142, 114, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-sage);
}

.why-card__title {
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 0.95rem;
}

/* --- Retreat Cards --- */
.retreat-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 380px 1fr;
  transition: all var(--transition);
}
.retreat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.retreat-card__image {
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.retreat-card__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.retreat-card__type {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-terracotta);
  margin-bottom: 8px;
}

.retreat-card__title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.retreat-card__info {
  font-size: 0.85rem;
  color: var(--color-taupe);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.retreat-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.retreat-card__features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--color-sage-dark);
}

.retreat-card__features span::before {
  content: '\2713\0020';
}

.retreat-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.retreat-card__price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--color-warm-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-sage);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A7F73' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-info {
  padding-top: 16px;
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-channel {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-channel__icon {
  width: 44px;
  height: 44px;
  background: rgba(122, 142, 114, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-channel__label {
  font-size: 0.8rem;
  color: var(--color-taupe);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-channel__value {
  font-weight: 500;
  color: var(--color-charcoal);
  font-size: 0.95rem;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-cream);
}

.cta-banner h2 {
  color: var(--color-cream);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--color-taupe);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* --- CTA Video Section (full bleed) --- */
.cta-video-section {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-video-section__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-video-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 37, 32, 0.6);
  z-index: 1;
}

.cta-video-section__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-video-section__content h2 {
  color: var(--color-cream);
  margin-bottom: 16px;
}

.cta-video-section__content p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 24px;
  text-align: center;
}

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: var(--color-taupe);
  padding: 80px 0 40px;
}

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: 16px;
  line-height: 0;
}
.footer__logo img {
  height: 45px;
  width: auto;
  display: block;
  filter: invert(1);
}

.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(181, 168, 152, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-taupe);
  transition: all var(--transition);
  font-size: 0.85rem;
}
.footer__social-link:hover {
  border-color: var(--color-sage-light);
  color: var(--color-sage-light);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-cream);
  margin-bottom: 24px;
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--color-taupe);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer__link:hover {
  color: var(--color-cream);
}

.footer__bottom {
  border-top: 1px solid rgba(181, 168, 152, 0.15);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

/* --- Newsletter --- */
.newsletter {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(181, 168, 152, 0.3);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter input::placeholder {
  color: var(--color-taupe);
}
.newsletter input:focus {
  outline: none;
  border-color: var(--color-sage-light);
}

.newsletter button {
  padding: 12px 20px;
  background: var(--color-sage);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background var(--transition);
}
.newsletter button:hover {
  background: var(--color-sage-dark);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pathways { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-story__image { height: 350px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .retreat-card { grid-template-columns: 1fr; }
  .retreat-card__image { min-height: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .differentiators { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
  }
  .nav__toggle { display: block; }

  .nav__logo img { height: 50px; }
  .nav.scrolled .nav__logo img { height: 42px; }
  .hero__logo { max-width: 220px; }
  .hero__content { padding: 100px 24px 60px; }

  .collections-grid { grid-template-columns: 1fr; }
  .listings-grid { grid-template-columns: 1fr; }

  .filter-bar__row { flex-direction: column; }
  .filter-bar__group { min-width: 100%; }

  .hero__buttons { flex-direction: column; align-items: center; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { justify-content: center; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { text-align: center; justify-content: center; }
}
