/* ============================================================
   LoveCabo — homepage styles
   Palette: warm cream base, terracotta accent, Cortez blue,
            ink charcoal text. Serif display + clean sans body.
   ============================================================ */

:root {
  --bg: #F8F1E7;
  --bg-warmer: #F1E6D4;
  --ink: #1B1814;
  --ink-soft: #4A423A;
  --muted: #8C7A63;
  --rule: #D9C8AC;
  --terracotta: #C46B45;
  --terracotta-deep: #A45533;
  --cortez: #2A4A5C;
  --cream: #FBF6EE;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Typography */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5.5rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.1; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.25; }
em { font-style: italic; color: var(--terracotta-deep); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: rgba(255, 255, 255, 0.85); }

/* Wordmark */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1;
  color: var(--ink);
}
.wordmark-love {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
}
.wordmark-rule {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--terracotta);
}
.wordmark-cabo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.wordmark-sm .wordmark-love { font-size: 1.55rem; }
.wordmark-sm .wordmark-cabo { font-size: 0.55rem; }

/* Header */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 1.6rem 0 4rem;
  background: linear-gradient(180deg,
    rgba(15, 13, 10, 0.55) 0%,
    rgba(15, 13, 10, 0.32) 45%,
    rgba(15, 13, 10, 0) 100%);
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  pointer-events: auto;
}
.site-header .wordmark {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.site-header .wordmark-cabo { color: rgba(255, 255, 255, 0.9); }
.site-header .wordmark-rule { background: rgba(255, 255, 255, 0.85); }
.primary-nav a { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.primary-nav a {
  color: #fff;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.primary-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.primary-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.55rem 1.2rem !important;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover {
  background: #fff;
  color: var(--ink) !important;
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 110;
  margin: -10px;
}
.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) 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(-6.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 24px -8px rgba(196, 107, 69, 0.55);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -8px rgba(196, 107, 69, 0.65);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-top: 1.2rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap 0.25s ease, border-color 0.25s ease;
}
.link-arrow:hover {
  gap: 0.9rem;
  border-bottom-color: var(--terracotta-deep);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 0 6rem;
  color: #fff;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.02);
}
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.94) contrast(1.02);
  opacity: 0;
  animation: heroCycle 32s infinite cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
/* Slide 1 starts visible immediately (no fade-in delay).
   Slides 2-4 cycle in on stagger. */
.hero-slide:nth-child(1) {
  opacity: 1;
  animation: heroCycleFirst 32s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slide:nth-child(4) { animation-delay: 24s; }

@keyframes heroCycle {
  0%   { opacity: 0; transform: scale(1.00); }
  3%   { opacity: 1; transform: scale(1.01); }
  22%  { opacity: 1; transform: scale(1.08); }
  28%  { opacity: 0; transform: scale(1.09); }
  100% { opacity: 0; transform: scale(1.09); }
}
@keyframes heroCycleFirst {
  0%   { opacity: 1; transform: scale(1.00); }
  22%  { opacity: 1; transform: scale(1.07); }
  28%  { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }
  .hero-slide:nth-child(1) { opacity: 1; transform: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27, 24, 20, 0.35) 0%, rgba(27, 24, 20, 0.05) 30%, rgba(27, 24, 20, 0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.hero-headline {
  font-style: italic;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.6rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin-bottom: 2.4rem;
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  text-align: center;
}
.intro-inner { max-width: 780px; margin: 0 auto; }
.intro-body {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-warmer);
}
.section-head {
  max-width: 720px;
  margin: 0 0 4rem;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
}
.service-card {
  display: flex;
  flex-direction: column;
}
.service-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.6rem;
  filter: saturate(0.95);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.service-card:hover .service-image {
  transform: translateY(-4px);
  filter: saturate(1.05);
}
.service-text h3 {
  margin-bottom: 0.6rem;
  font-style: italic;
}
.service-text p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ============================================================
   FEATURED VILLA
   ============================================================ */
.featured {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.featured-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.featured-image {
  aspect-ratio: 4 / 3.3;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.featured-text h2 { margin-bottom: 1.5rem; }
.featured-text h2 em {
  display: inline-block;
  font-size: 0.55em;
  letter-spacing: 0.18em;
  font-style: normal;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.8rem;
  font-family: var(--sans);
  font-weight: 500;
}
.featured-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}
.villa-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.villa-specs li {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.villa-specs li::before {
  content: '·';
  color: var(--terracotta);
  margin-right: 0.6rem;
  font-weight: 700;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--bg-warmer);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2.5rem, 4vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}
.steps li {
  text-align: center;
  padding: 0 0.5rem;
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.steps h3 {
  font-style: italic;
  margin-bottom: 0.8rem;
}
.steps p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================================
   CLOSING CTA
   ============================================================ */
.cta {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 24, 20, 0.5), rgba(27, 24, 20, 0.7));
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.cta-content h2 {
  color: #fff;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.cta-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.4rem;
}
.cta-aside {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 4rem 0 2.5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}
.site-footer .wordmark { color: #fff; }
.site-footer .wordmark-cabo { color: rgba(255, 255, 255, 0.7); }
.site-footer .wordmark-rule { background: var(--terracotta); }
.footer-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.92rem;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--terracotta); }
.footer-fineprint {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.6rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    background: rgba(15, 13, 10, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 105;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
  }
  .primary-nav.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav a {
    color: #fff;
    padding: 0.5rem 1rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.7rem;
    letter-spacing: 0.01em;
  }
  .primary-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    margin-top: 0.6rem;
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.85rem !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem !important;
  }
  .featured-inner { grid-template-columns: 1fr; }
  .villa-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero { min-height: 90vh; padding-bottom: 4rem; }
  .btn { padding: 0.95rem 1.9rem; font-size: 0.85rem; }
  .villa-specs { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER PAGES — shared hero
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 10rem 0 4rem;
  color: #fff;
}
.page-hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.92) contrast(1.02);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,24,20,0.55) 0%, rgba(27,24,20,0.15) 40%, rgba(27,24,20,0.6) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
}
.page-hero h1 { color: #fff; font-style: italic; }
.page-hero .eyebrow { color: rgba(255,255,255,0.85); }

.page-intro {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-intro-inner { max-width: 760px; margin: 0 auto; }
.page-intro-body {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
}

/* ============================================================
   VILLAS PAGE
   ============================================================ */
.villas-page { padding: 2rem 0 clamp(5rem, 10vw, 9rem); }
.villas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2.5rem, 4vw, 4rem);
}
.villa-card { display: flex; flex-direction: column; }
.villa-card-image {
  aspect-ratio: 5 / 4;
  background-size: cover; background-position: center;
  margin-bottom: 1.4rem;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: saturate(0.95);
}
.villa-card:hover .villa-card-image { transform: translateY(-4px); filter: saturate(1.05); }
.villa-card-loc {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
.villa-card h3 { font-style: italic; margin-bottom: 0.8rem; }
.villa-card-meta {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.9rem;
  padding-bottom: 0.9rem; border-bottom: 1px solid var(--rule);
}
.villa-card-meta span { display: inline-flex; align-items: center; }
.villa-card-meta span + span::before {
  content: '·'; color: var(--terracotta);
  margin-right: 1.2rem; margin-left: -0.4rem; font-weight: 700;
}
.villa-card-desc {
  color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1rem; line-height: 1.6;
}

/* ============================================================
   EXPERIENCES PAGE
   ============================================================ */
.exp-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.exp-section.alt { background: var(--bg-warmer); }
.exp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.exp-inner.reverse .exp-image { order: 2; }
.exp-image {
  aspect-ratio: 4 / 3.2;
  background-size: cover; background-position: center;
}
.exp-text h2 { margin-bottom: 1.5rem; font-style: italic; }
.exp-text p {
  color: var(--ink-soft); font-size: 1.04rem;
  margin-bottom: 1.2rem; line-height: 1.7;
}
.exp-list {
  display: grid; grid-template-columns: 1fr; gap: 0.7rem;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.exp-list li {
  font-size: 0.96rem; color: var(--ink-soft);
  padding-left: 1.4rem; position: relative;
}
.exp-list li::before {
  content: ''; position: absolute;
  left: 0; top: 0.7em;
  width: 16px; height: 1px; background: var(--terracotta);
}
@media (max-width: 820px) {
  .exp-inner { grid-template-columns: 1fr; }
  .exp-inner.reverse .exp-image { order: 0; }
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-page { padding: 2rem 0 clamp(5rem, 10vw, 9rem); }
.story-content { max-width: 720px; margin: 0 auto; }
.story-content p {
  font-size: 1.1rem; line-height: 1.78;
  color: var(--ink-soft); margin-bottom: 1.6rem;
}
.story-content p.lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.4; color: var(--ink);
  margin-bottom: 2.5rem;
}
.story-pullquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.45; color: var(--terracotta-deep);
  border-left: 2px solid var(--terracotta);
  padding-left: 1.5rem; margin: 2.5rem 0;
}
.story-image {
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  margin: 2.5rem 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 2rem 0 clamp(5rem, 10vw, 9rem); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-form { display: grid; gap: 1.6rem; }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: transparent; border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.6rem 0; outline: none;
  transition: border-color 0.25s ease;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--terracotta);
}
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
}
.contact-form button {
  justify-self: start; margin-top: 1rem;
  border: none; font-family: var(--sans); cursor: pointer;
}
.contact-aside h3 { font-style: italic; margin-bottom: 1.8rem; }
.contact-channels { display: grid; gap: 1.4rem; margin-bottom: 2rem; }
.contact-channel {
  border-bottom: 1px solid var(--rule); padding-bottom: 1.1rem;
}
.contact-channel:last-child { border-bottom: none; }
.contact-channel-label {
  display: block; font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.contact-channel-value {
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; color: var(--ink);
}
.contact-channel-value.soon { color: var(--muted); font-size: 1rem; }
.contact-note {
  font-size: 0.9rem; color: var(--muted);
  margin-top: 1.5rem; line-height: 1.7;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING CTA (persistent contact button)
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  background: var(--terracotta);
  color: #fff;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 14px 34px -10px rgba(196, 107, 69, 0.55),
    0 4px 14px -3px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}
.floating-cta:hover {
  background: var(--terracotta-deep);
  transform: translateY(-3px);
  box-shadow:
    0 18px 42px -10px rgba(196, 107, 69, 0.65),
    0 6px 20px -4px rgba(0, 0, 0, 0.22);
}
.floating-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.78rem;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 3vw, 3.5rem);
  margin-top: 3.5rem;
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  position: relative;
  padding-top: 1.5rem;
}
.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.4rem;
  left: -0.2rem;
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--terracotta);
  line-height: 1;
  font-style: normal;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--rule);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--bg-warmer);
  color: var(--terracotta-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.testimonial-meta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ============================================================
   TRIPS PAGE
   ============================================================ */
.trips-page {
  padding: 2rem 0 clamp(5rem, 10vw, 9rem);
}
.trips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 5vw, 5rem);
}
.trip-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.trip-card:nth-child(even) .trip-card-image { order: 2; }
.trip-card-image {
  aspect-ratio: 4 / 3.1;
  background-size: cover;
  background-position: center;
}
.trip-card-text h3 {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}
.trip-card-text > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.trip-includes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
}
.trip-includes-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.trip-includes li {
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding-left: 1.3rem;
  position: relative;
}
.trip-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 1px;
  background: var(--terracotta);
}
@media (max-width: 820px) {
  .trip-card { grid-template-columns: 1fr; }
  .trip-card:nth-child(even) .trip-card-image { order: 0; }
}

/* ============================================================
   SCROLL FADE-INS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  will-change: opacity, transform;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
