:root {
  --cream: #F7EEE3;
  --cream-2: #EFE4D2;
  --terracotta: #B85A30;
  --terracotta-hover: #9F4824;
  --teal: #3D6B7C;
  --green-dark: #5B6647;
  --tan: #B89F76;
  --text: #2E2418;
  --text-muted: #6B5E4D;
  --divider: #D9CDB4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 720px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--divider);
  padding: 20px 0;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 140px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.site-header nav {
  display: flex;
  gap: 56px;
}

.site-header nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: var(--terracotta);
}

/* Banner (home hero image) */
.banner {
  width: 100%;
  line-height: 0;
  position: relative;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-btn {
  position: absolute;
  top: 66%;
  left: 8.5%;
  line-height: 1;
}

/* Elements section */
.elements {
  width: 100%;
  line-height: 0;
}

.elements img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .banner-btn {
    top: 70%;
    padding: 10px 22px;
    font-size: 0.75rem;
  }
}

/* Retreat feature (full-bleed image + text panel) */
.retreat-feature {
  background: var(--cream);
}

.retreat-feature-grid {
  display: grid;
  grid-template-columns: minmax(380px, 500px) 1fr;
  align-items: stretch;
}

.retreat-feature-image {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.retreat-feature-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.retreat-feature-text {
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 72px 56px 72px 80px;
}

.retreat-feature-inner {
  width: 100%;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--terracotta);
  margin-top: 10px;
}

.retreat-feature-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 28px 0 22px;
}

.retreat-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.retreat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.retreat-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 7px 0;
  color: var(--text);
  font-size: 0.95rem;
}

.retreat-icon {
  width: 36px;
  height: 36px;
  background-image: url("retreat-icons.png?v=4");
  background-size: 251px 251px;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.retreat-icon-1 { background-position: -107px -31px; }
.retreat-icon-2 { background-position: -107px -69px; }
.retreat-icon-3 { background-position: -107px -110px; }
.retreat-icon-4 { background-position: -107px -147px; }
.retreat-icon-5 { background-position: -107px -184px; }

.retreat-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--terracotta);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.15s, gap 0.15s;
}

.retreat-cta span {
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 0.2s;
}

.retreat-cta:hover {
  color: var(--terracotta-hover);
}

.retreat-cta:hover span {
  transform: translateX(4px);
}

/* Consistent gap between every adjacent main section */
main > section + section {
  margin-top: 8px;
}

@media (max-width: 800px) {
  main > section + section {
    margin-top: 0;
  }
}

/* Location banner (full-width image with clickable hotspot) */
.location-banner {
  position: relative;
  width: 100%;
  line-height: 0;
}

.location-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.location-banner-cta {
  position: absolute;
  left: 5.5%;
  top: 68%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s, gap 0.2s;
  line-height: 1;
}

.location-banner-cta .cta-arrow {
  width: 64px;
  height: 14px;
  display: block;
  transition: transform 0.2s;
}

.location-banner-cta:hover {
  opacity: 0.85;
}

.location-banner-cta:hover .cta-arrow {
  transform: translateX(6px);
}

@media (max-width: 700px) {
  .location-banner-cta {
    font-size: 0.7rem;
    gap: 16px;
  }

  .location-banner-cta .cta-arrow {
    width: 36px;
  }
}

/* Heart quote — photo pillars | text+body+CTA | photo pillars */
.heart-quote {
  background: var(--cream);
  padding: 80px 0;
}

.heart-quote-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(0, 4.6fr) minmax(240px, 1.2fr);
  align-items: stretch;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.heart-photo {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.heart-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.heart-quote-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  container-type: inline-size;
}

.heart-quote-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(24px, 4.1cqw, 56px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 14px;
  white-space: nowrap;
}

.heart-quote-text .script {
  font-family: "Snell Roundhand", "Brush Script MT", "Apple Chancery", "Lucida Handwriting", cursive;
  font-size: clamp(28px, 4.2cqw, 56px);
  font-weight: 400;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1;
  margin: 0 0 40px;
}

.heart-quote-body {
  max-width: 68ch;
  margin: 0 0 40px;
}

.heart-quote-body p {
  font-size: clamp(16px, 1.25cqw, 19px);
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 22px;
}

.heart-quote-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .heart-quote-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .heart-photo {
    position: static;
    height: 320px;
  }

  .heart-photo img {
    position: static;
    height: 100%;
  }

  .heart-quote {
    padding: 32px 0 32px;
  }

  .heart-quote-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 24px;
  }

  .heart-photo {
    position: static;
    height: 280px;
    max-width: 100%;
  }

  .heart-photo img {
    position: static;
    height: 100%;
    object-fit: cover;
  }

  .heart-quote-text {
    padding: 24px 8px;
  }

  .heart-quote-text h2 {
    white-space: normal;
    font-size: 1.7rem;
  }

  .heart-quote-text .script {
    font-size: 2rem;
  }

  .heart-quote-body p {
    font-size: 1.05rem;
  }
}

/* Four days — Earth / Water / Fire / Spirit */
.four-days {
  position: relative;
  width: 100%;
  background-image: url("four-days-bg.png?v=1");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: #F6F0E8;
  aspect-ratio: 1536 / 1024;
  container-type: inline-size;
  color: #3F3A36;
}

.fd-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22% 5% 4%;
}

.fd-col {
  padding: 0 1.5cqw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fd-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(13px, 1.75cqw, 28px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0.6cqw;
}

.fd-earth  { color: #8C5A32; }
.fd-water  { color: #6B7B5D; }
.fd-fire   { color: #B36238; }
.fd-spirit { color: #B36238; }

.fd-sep {
  font-weight: 300;
  margin: 0 0.3em;
  opacity: 0.85;
}

.fd-rule {
  position: relative;
  width: clamp(60px, 8cqw, 140px);
  height: 1px;
  background: #D8C8B8;
  margin: 0.3cqw 0 1.3cqw;
}

.fd-rule::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #B36238;
  transform: translateX(-50%) rotate(45deg);
}

.fd-body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10px, 1cqw, 16px);
  line-height: 1.75;
  color: #3F3A36;
  margin: 0 0 1.6cqw;
  max-width: 92%;
}

.fd-photo {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  margin-top: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  background: #F0E6D8;
}

.fd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .four-days {
    background-image: none;
    background: #F6F0E8;
    aspect-ratio: auto;
    padding: 32px 20px;
  }

  .fd-grid {
    position: static;
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding: 0;
  }

  .fd-title {
    font-size: 1.1rem;
  }

  .fd-rule {
    margin: 8px 0 14px;
    width: 100px;
  }

  .fd-body {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 18px;
  }
}

@media (max-width: 600px) {
  .fd-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fd-photo {
    aspect-ratio: 4 / 5;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Special guest — Sebastián Serpell sound journey */
.special-guest {
  position: relative;
  width: 100%;
  background-image: url("special-guest-bg.png?v=1");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: #F5EEE6;
  aspect-ratio: 1536 / 880;
  container-type: inline-size;
  color: #4A4039;
}

.sg-header {
  position: absolute;
  left: 50%;
  top: 5.2%;
  transform: translateX(-50%);
  text-align: center;
  width: 92%;
}

.sg-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(20px, 4.6cqw, 70px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #B36238;
  margin: 0;
  line-height: 1;
}

.sg-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 1.4cqw, 21px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #3F352F;
  margin: 1.4cqw 0 0 0.42em;
}

.sg-photo {
  position: absolute;
  left: 7%;
  top: 22%;
  width: 38%;
}

.sg-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.sg-text {
  position: absolute;
  right: 6%;
  top: 23%;
  width: 40%;
}

.sg-signature {
  font-family: "Snell Roundhand", "Brush Script MT", "Apple Chancery", "Lucida Handwriting", cursive;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 4cqw, 60px);
  color: #B36238;
  line-height: 1;
  margin: 0 0 0.8cqw;
}

.sg-rule {
  position: relative;
  height: 1px;
  background: #D8B39A;
  margin: 1cqw 0 1.6cqw;
}

.sg-rule::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: #F5EEE6;
  border: 1px solid #C9986F;
  transform: translateX(-50%) rotate(45deg);
}

.sg-body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10px, 1.1cqw, 17px);
  line-height: 1.65;
  color: #4A4039;
  margin: 0 0 1.4cqw;
}

.sg-leaf-mid {
  display: block;
  width: clamp(28px, 3.4cqw, 54px);
  height: auto;
  margin: 0.4cqw auto 1.4cqw;
  color: #B36238;
}

.sg-labels {
  position: absolute;
  bottom: 3%;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 2%;
}

.sg-label {
  text-align: center;
  padding: 0 1%;
}

.sg-label-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(9px, 1.05cqw, 16px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.3cqw;
  line-height: 1.2;
}

.sg-label-terracotta { color: #B36238; }
.sg-label-olive { color: #6F775D; }

.sg-label-sub {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(9px, 0.95cqw, 14px);
  color: #7B6C63;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 800px) {
  .special-guest {
    background-image: none;
    background: #F5EEE6;
    aspect-ratio: auto;
    padding: 32px 24px 32px;
  }

  .sg-header,
  .sg-photo,
  .sg-text,
  .sg-labels {
    position: static;
    transform: none;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .sg-header {
    margin-bottom: 28px;
  }

  .sg-title {
    font-size: 1.6rem;
  }

  .sg-subtitle {
    font-size: 0.75rem;
    margin-top: 12px;
  }

  .sg-photo {
    margin: 0 0 28px;
  }

  .sg-text {
    margin-bottom: 30px;
  }

  .sg-signature {
    font-size: 2rem;
    text-align: center;
  }

  .sg-body {
    font-size: 0.98rem;
    margin-bottom: 14px;
  }

  .sg-leaf-mid {
    width: 44px;
  }

  .sg-labels {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
    padding: 20px 0 0;
    border-top: 1px solid #D8B39A;
  }

  .sg-label-title {
    font-size: 0.78rem;
  }

  .sg-label-sub {
    font-size: 0.82rem;
  }
}

/* Meet the team */
.meet-the-team {
  background: var(--cream);
  padding: 50px 0 100px;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-leaf {
  width: 88px;
  height: 26px;
  color: var(--terracotta);
  display: block;
  margin: 0 auto 14px;
  opacity: 0.85;
}

.team-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 18px;
  line-height: 1.1;
}

.team-subtitle {
  color: var(--text-muted);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}

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

.team-card {
  display: flex;
  flex-direction: column;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 22px;
  background: var(--cream-2);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-align: center;
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}

.team-bio p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 14px;
}

.team-bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 600px) {
  .meet-the-team {
    padding: 32px 0 56px;
  }

  .team-container {
    padding: 0 20px;
  }

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

  .team-header {
    margin-bottom: 44px;
  }
}

/* What to expect — decorative background + live text */
.what-to-expect-section {
  position: relative;
  width: 100%;
  background-image: url("what-to-expect-bg.png?v=1");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1774 / 887;
  color: var(--text);
}

.wte-title {
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  color: var(--terracotta);
  letter-spacing: 0.35em;
  font-weight: 400;
  font-size: clamp(22px, 3.6vw, 64px);
  white-space: nowrap;
  line-height: 1;
}

.wte-block {
  position: absolute;
  left: 23%;
  right: 14%;
}

.wte-block-1 {
  top: 27%;
}

.wte-block-2 {
  top: 67%;
}

.wte-headline {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(16px, 2.2vw, 40px);
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 clamp(10px, 1.4vw, 22px) 0;
  max-width: 90%;
}

.wte-headline em {
  font-style: italic;
}

.wte-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(11px, 1.05vw, 19px);
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  max-width: 62%;
}

/* Experience CTA — terracotta pill button */
.cta-row {
  text-align: center;
  margin-top: 36px;
}

.cta-experience {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--terracotta);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
}

.cta-experience:hover {
  background: var(--terracotta-hover);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.cta-experience-arrow {
  font-weight: 400;
  font-size: 1.15em;
  transition: transform 0.2s;
}

.cta-experience:hover .cta-experience-arrow {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  /* Stop trying to overlay text on the decorative bg at small sizes —
     drop the bg ornaments and use a clean centered text layout. */
  .what-to-expect-section {
    background: var(--cream);
    aspect-ratio: auto;
    padding: 32px 24px 32px;
  }

  .wte-title {
    position: static;
    transform: none;
    text-align: center;
    margin-bottom: 36px;
  }

  .wte-block {
    position: static;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .wte-block:last-child {
    margin-bottom: 0;
  }

  .wte-headline,
  .wte-text {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .retreat-feature-grid {
    grid-template-columns: 1fr;
  }

  .retreat-feature-image {
    position: static;
    height: auto;
  }

  .retreat-feature-image img {
    position: static;
    height: auto;
    max-height: 420px;
  }

  .retreat-feature-text {
    padding: 56px 28px;
  }

  .retreat-feature-text h2 {
    font-size: 1.8rem;
  }

  .retreat-feature-text h2 br {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 60px 0 80px;
  text-align: center;
  background: var(--cream);
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  line-height: 1.15;
  color: var(--text);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 14px 36px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--terracotta-hover);
}

/* Features grid */
.features {
  padding: 60px 0 120px;
  background: var(--cream-2);
}

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

.card {
  padding: 32px;
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: 4px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.card p {
  color: var(--text-muted);
}

/* Page header */
.page-header {
  padding: 100px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--divider);
  background: var(--cream);
}

.page-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text);
}

/* Services / Retreats */
.services {
  padding: 80px 0 120px;
  background: var(--cream);
}

.service-row {
  padding: 40px 0;
  border-bottom: 1px solid var(--divider);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--terracotta);
}

.service-row p {
  color: var(--text-muted);
  max-width: 800px;
}

/* About */
.about {
  padding: 80px 0 120px;
  background: var(--cream);
}

.about h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--teal);
}

.about h2:first-child {
  margin-top: 0;
}

.about p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Contact */
.contact {
  padding: 80px 0 120px;
  background: var(--cream);
}

.contact-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--divider);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item h3 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  padding: 32px 0;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* Mobile */
@media (max-width: 700px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.05rem;
  }

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

  .site-header {
    padding: 12px 0;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .logo img {
    height: 56px;
  }

  .site-header nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  .site-header nav a {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .container {
    padding: 0 18px;
  }

  .container.narrow {
    padding: 0 18px;
  }

  .page-header {
    padding: 60px 0 40px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }
}

/* Catch-all very narrow viewports */
@media (max-width: 380px) {
  .logo img {
    height: 48px;
  }

  .site-header nav {
    gap: 10px;
  }

  .site-header nav a {
    font-size: 0.66rem;
  }
}
