/* ════════════════════════════════════════════════════════════════
   PERFECT HOME APARTMENTS — SHARED STYLESHEET
   Used across all pages of the site
   ════════════════════════════════════════════════════════════════ */

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

:root {
  --cream:      #FAF8F3;
  --cream-dark: #F2EDE3;
  --espresso:   #2C1810;
  --brown:      #6B4C3B;
  --gold:       #C9943A;
  --gold-light: #E8C97A;
  --text:       #3D3530;
  --muted:      #8A7A6F;
  --card:       #F5F0E8;
  --white:      #FFFFFF;
  --border:     #E2D9CC;
  --success:    #2F7D4F;
  --error:      #B8434A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --section-gap: clamp(4rem, 8vw, 7rem);

  --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Typography helpers ───────────────────────────────────── */
.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.serif-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--espresso);
}

.serif-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--espresso);
}

.serif-md {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--espresso);
}

.body-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.15s ease;
}
.btn-primary:hover { background: var(--brown); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: all 0.25s ease;
  background: transparent;
}
.btn-outline:hover { background: var(--espresso); color: var(--cream); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.btn-gold:hover { background: #b8832e; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 2px;
  transition: color 0.2s;
  background: transparent;
}
.btn-ghost:hover { color: var(--gold); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled,
.nav--solid {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.875rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.02em;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav__logo span { color: var(--gold); }
.nav__logo small {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  opacity: 0.6;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  position: relative;
  transition: all 0.25s;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: all 0.25s;
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--pad-x);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s;
  }
  .nav__links a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav.open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__cta { display: none; }
}

/* ── Image Placeholder System ─────────────────────────────── */
.img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ede4d3 0%, #d6c8b0 60%, #c4b59a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0px, transparent 28px, rgba(255,255,255,0.18) 28px, rgba(255,255,255,0.18) 30px);
  pointer-events: none;
}
.img-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(107,76,59,0.1) 100%);
  pointer-events: none;
}
.img-ph__icon {
  font-size: clamp(1.75rem, 4vw, 3rem);
  opacity: 0.4;
  z-index: 1;
  filter: grayscale(0.3);
}
.img-ph__label {
  font-family: var(--font-serif);
  color: var(--brown);
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  font-style: italic;
  z-index: 1;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 1rem;
  max-width: 90%;
}
.img-ph__hint {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(107,76,59,0.55);
  z-index: 1;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__image { position: absolute; inset: 0; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 16, 8, 0.82) 0%,
    rgba(30, 16, 8, 0.35) 55%,
    rgba(30, 16, 8, 0.05) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  width: 100%;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.hero__label {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.hero__heading em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--espresso);
  color: var(--white);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}
.page-hero__bg .img-ph {
  background: linear-gradient(135deg, #6B4C3B 0%, #2C1810 100%);
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,16,8,0.4), rgba(30,16,8,0.95));
}
.page-hero__inner {
  position: relative;
  z-index: 2;
}
.page-hero__label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 800px;
}
.page-hero__title em { font-style: italic; color: var(--gold-light); }
.page-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { opacity: 0.4; }

/* ── Trust Strip ──────────────────────────────────────────── */
.trust { background: var(--espresso); padding: 1.5rem 0; }
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 3rem;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}
.trust__item .icon { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }
.trust__divider { width: 1px; height: 18px; background: rgba(255,255,255,0.15); }
@media (max-width: 600px) { .trust__divider { display: none; } }

/* ── Section header ───────────────────────────────────────── */
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--center { text-align: center; }
.section-header .label { margin-bottom: 0.75rem; display: block; }
.section-header p {
  margin-top: 1rem;
  color: var(--brown);
  font-weight: 300;
  max-width: 560px;
}
.section-header--center p { margin: 1rem auto 0; }

/* ── Apartment cards ──────────────────────────────────────── */
.apartments { padding: var(--section-gap) 0; }
.apartments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.apt-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.apt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 24, 16, 0.12);
}
.apt-card__image { height: 260px; overflow: hidden; position: relative; }
.apt-card__image img { transition: transform 0.5s ease; }
.apt-card:hover .apt-card__image img { transform: scale(1.04); }
.apt-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--espresso);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  z-index: 2;
}
.apt-card__price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--espresso);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  z-index: 2;
}
.apt-card__price-tag small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.25rem;
}
.apt-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.apt-card__location {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.apt-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.apt-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.apt-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  background: var(--cream-dark);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brown);
  border-radius: 2px;
}
.apt-card__gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  overflow: hidden;
}
.apt-card__gallery-strip > * {
  width: 100%;
  height: 72px;
  display: block;
}
.apt-card__specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.apt-card__specs strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--espresso);
}
.apt-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.apt-card__cta .arrow-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s;
}
.apt-card__cta .arrow-link:hover { gap: 0.7rem; color: var(--gold); }
.apt-card__coming {
  background: var(--cream-dark);
  border: 1.5px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
}
.apt-card__coming .plus-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.apt-card__coming p { font-size: 0.85rem; color: var(--muted); }
.apt-card__coming strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--brown);
}

/* ── Why Perfect Home ─────────────────────────────────────── */
.why { padding: var(--section-gap) 0; background: var(--espresso); overflow: hidden; }
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .why__inner { grid-template-columns: 1fr; gap: 3rem; } }
.why__content--full { max-width: 920px; margin: 0 auto; text-align: center; }
.why__content .label { color: var(--gold-light); }
.why__content .serif-lg { color: var(--white); margin-bottom: 1.25rem; }
.why__tagline {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 440px;
}
.why__content--full .why__tagline { max-width: 560px; margin-left: auto; margin-right: auto; }
.why__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.why__list li .check {
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.why__list li .check svg { width: 10px; height: 10px; }
.why__cta { margin-top: 2.5rem; }
.why__list--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 700px) { .why__list--grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--cream);
  position: relative;
}
.testimonials--dark { background: var(--espresso); }
.testimonials--dark .serif-lg,
.testimonials--dark .testimonial__quote { color: var(--white); }
.testimonials--dark .testimonial-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.testimonials--dark .testimonial__quote { color: rgba(255,255,255,0.85); }
.testimonials--dark .testimonial__author-name { color: var(--white); }
.testimonials--dark .testimonial__author-meta { color: rgba(255,255,255,0.55); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--white) 100%);
  border-left: 4px solid var(--gold);
}
@media (max-width: 768px) {
  .testimonial-card--featured { grid-column: span 1; }
}
.testimonial__rating {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid var(--gold-light);
}
.testimonial-card--featured .testimonial__quote {
  font-size: 1.3rem;
  border-left: none;
  padding-left: 0;
}
.testimonial-card--featured .testimonial__quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
  opacity: 0.5;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonials--dark .testimonial__author { border-top-color: rgba(255,255,255,0.1); }
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial__author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.testimonial__author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--espresso);
}
.testimonial__author-meta {
  font-size: 0.75rem;
  color: var(--muted);
}
.testimonial__platform {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.review-summary__big {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
}
.review-summary__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.review-summary__count {
  font-size: 0.85rem;
  color: var(--muted);
}
.review-summary__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.review-summary__platform {
  text-align: center;
}
.review-summary__platform strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}
.review-summary__platform span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Featured / Detail ───────────────────────────────────── */
.featured { padding: var(--section-gap) 0; }
.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .featured__grid { grid-template-columns: 1fr; } }
.featured__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 220px;
  gap: 3px;
  background: var(--border);
}
.featured__gallery > :first-child { grid-column: 1 / -1; overflow: hidden; }
.featured__gallery > * { overflow: hidden; }
.featured__info { padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; }
.featured__info .label { margin-bottom: 0.5rem; }
.featured__info .serif-lg { margin-bottom: 0.75rem; }
.featured__info .body-lead { margin-bottom: 2rem; }
.featured__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.spec { display: flex; flex-direction: column; gap: 0.2rem; }
.spec__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec__value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--espresso);
}
.featured__info .btn-primary { margin-top: auto; align-self: flex-start; }

/* ── Photo Gallery ─────────────────────────────────────────── */
.gallery { padding: var(--section-gap) 0; background: var(--cream-dark); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 260px;
  gap: 6px;
}
.gallery__item { overflow: hidden; }
.gallery__item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 4; }
.gallery__item:nth-child(3) { grid-column: span 3; }
.gallery__item:nth-child(4) { grid-column: span 3; }
.gallery__item:nth-child(5) { grid-column: span 4; }
.gallery__item:nth-child(6) { grid-column: span 12; height: 420px; }
@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 4px;
  }
  .gallery__item { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
}

.gallery-masonry {
  columns: 3 280px;
  column-gap: 8px;
}
.gallery-masonry__item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}
.gallery-masonry__item .img-ph { aspect-ratio: 4/3; }
.gallery-masonry__item--tall .img-ph { aspect-ratio: 3/4; }
.gallery-masonry__item--wide .img-ph { aspect-ratio: 16/9; }
.gallery-masonry__item img { height: auto; }
.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-filter button {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  border-radius: 2px;
  transition: all 0.2s;
}
.gallery-filter button.active,
.gallery-filter button:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

/* ── Features grid ─────────────────────────────────────────── */
.features { padding: var(--section-gap) 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
}
.feature-item {
  padding: 2.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}
.feature-item:hover { background: var(--card); }
.feature-item__icon { width: 40px; height: 40px; margin-bottom: 1.25rem; color: var(--gold); }
.feature-item__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.feature-item__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── Location ─────────────────────────────────────────────── */
.location { padding: var(--section-gap) 0; background: var(--cream-dark); }
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .location__inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.location__map {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.location__map-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e0d5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}
.location__map-placeholder svg { width: 48px; height: 48px; color: var(--gold); }
.location__map-placeholder span { font-size: 0.85rem; letter-spacing: 0.04em; }
.location__distances {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.distance-item__name { font-weight: 400; color: var(--text); }
.distance-item__time {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
}
.location__why {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.location__why p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.7;
  font-style: italic;
}

/* ── Who It's For ─────────────────────────────────────────── */
.who { padding: var(--section-gap) 0; }
.who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.who-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.who-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.who-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.who-card__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── Booking ──────────────────────────────────────────────── */
.booking { padding: var(--section-gap) 0; background: var(--espresso); }
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .booking__inner { grid-template-columns: 1fr; gap: 3rem; } }
.booking__left .label { color: var(--gold-light); }
.booking__left .serif-lg { color: var(--white); margin-bottom: 1rem; }
.booking__left p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
.booking__platforms { display: flex; flex-direction: column; gap: 1rem; }
.platform-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
}
.platform-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.platform-btn__left { display: flex; align-items: center; gap: 0.875rem; }
.platform-btn__logo {
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.platform-btn__logo.airbnb { background: #FF5A5F; color: white; }
.platform-btn__logo.booking { background: #003580; color: white; }
.platform-btn__logo.vrbo { background: #1D5DAA; color: white; }
.platform-btn__logo.direct { background: var(--gold); color: white; font-size: 1rem; }
.platform-btn__arrow { opacity: 0.5; }

.booking__whatsapp {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #075E54;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s;
}
.booking__whatsapp:hover { background: #064840; }
.wa-icon {
  width: 44px; height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-icon svg { width: 24px; height: 24px; fill: white; }
.wa-text strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.wa-text span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.booking__note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── Standards ────────────────────────────────────────────── */
.standards { padding: var(--section-gap) 0; }
.standards__row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.standards__row:first-of-type { border-top: 1px solid var(--border); }
.standard__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--border);
  font-weight: 300;
  min-width: 3rem;
  line-height: 1;
}
.standard__content { flex: 1; }
.standard__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--espresso);
  margin-bottom: 0.35rem;
}
.standard__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.standard__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ── FAQ accordion ────────────────────────────────────────── */
.faq { padding: var(--section-gap) 0; }
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--espresso);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-item__q:hover { color: var(--gold); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  color: var(--brown);
}
.faq-item.open .faq-item__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--brown);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-item__a {
  max-height: 600px;
  padding: 0 0 1.5rem;
}
.faq-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form-group__row { grid-template-columns: 1fr; } }
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
}
.form-input,
.form-textarea,
.form-select {
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 148, 58, 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-hint { font-size: 0.78rem; color: var(--muted); }
.form-error { font-size: 0.78rem; color: var(--error); }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: var(--brown);
  line-height: 1.5;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Booking flow / Checkout ──────────────────────────────── */
.checkout-page { padding: clamp(7rem, 12vw, 10rem) 0 var(--section-gap); }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; gap: 2rem; } }

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
  position: relative;
}
.checkout-step + .checkout-step::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  width: 1.5rem;
  height: 1px;
  background: var(--border);
  top: 50%;
}
.checkout-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}
.checkout-step.active .checkout-step__num {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}
.checkout-step.complete .checkout-step__num {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.checkout-step.active span,
.checkout-step.complete span { color: var(--espresso); font-weight: 500; }

.checkout-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.checkout-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}
.checkout-card__sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.summary-card {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.summary-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--espresso);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.summary-card__apt {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.summary-card__apt-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}
.summary-card__apt-info h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}
.summary-card__apt-info p { font-size: 0.78rem; color: var(--muted); }
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--text);
}
.summary-line__sub { color: var(--muted); }
.summary-line strong { color: var(--espresso); font-weight: 500; }
.summary-line--total {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--espresso);
}
.summary-line--total strong { font-size: 1.7rem; color: var(--gold); font-weight: 400; }

/* Payment method selection */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.payment-method {
  border: 1.5px solid var(--border);
  background: var(--white);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.payment-method:hover { border-color: var(--gold-light); background: var(--cream); }
.payment-method.selected {
  border-color: var(--gold);
  background: rgba(201, 148, 58, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 148, 58, 0.1);
}
.payment-method__icon {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}
.payment-method__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--espresso);
}
.payment-method__sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  gap: 0.75rem;
}
@media (max-width: 600px) { .card-row { grid-template-columns: 1fr; } }

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: rgba(47, 125, 79, 0.08);
  border: 1px solid rgba(47, 125, 79, 0.2);
  color: var(--success);
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.secure-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Calendar ─────────────────────────────────────────────── */
.calendar {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.calendar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar__month {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--espresso);
}
.calendar__nav {
  display: flex;
  gap: 0.4rem;
}
.calendar__nav button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: all 0.2s;
}
.calendar__nav button:hover { border-color: var(--gold); color: var(--gold); }
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar__dow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0;
}
.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.15s;
  background: transparent;
  border: 1px solid transparent;
}
.calendar__day:hover:not(.disabled):not(.booked) {
  background: var(--cream-dark);
  border-color: var(--gold-light);
}
.calendar__day.empty { cursor: default; pointer-events: none; }
.calendar__day.disabled,
.calendar__day.booked {
  color: var(--border);
  cursor: not-allowed;
  text-decoration: line-through;
}
.calendar__day.selected {
  background: var(--espresso);
  color: var(--cream);
  font-weight: 600;
}
.calendar__day.in-range {
  background: rgba(201, 148, 58, 0.15);
  color: var(--brown);
}
.calendar__legend {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.calendar__legend-item { display: flex; align-items: center; gap: 0.4rem; }
.calendar__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.calendar__legend-dot.available { background: var(--white); border: 1px solid var(--border); }
.calendar__legend-dot.booked { background: var(--cream-dark); border: 1px solid var(--border); }
.calendar__legend-dot.selected { background: var(--espresso); }

/* ── Blog cards ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  z-index: 2;
}
.blog-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  align-items: center;
}
.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--espresso);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.blog-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
}
.blog-card__link:hover { gap: 0.7rem; color: var(--gold); }

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.newsletter__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.newsletter__form {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) { .newsletter__form { flex-direction: column; } }
.newsletter__form input {
  flex: 1;
  padding: 0.95rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  border-radius: 2px;
}
.newsletter__form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ── Stats / Numbers strip ────────────────────────────────── */
.stats {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.stat {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
@media (max-width: 700px) { .stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; } .stat:last-child { border-bottom: none; } }
.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ── About / Story sections ───────────────────────────────── */
.story { padding: var(--section-gap) 0; }
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .story__inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.story__image {
  height: 500px;
  overflow: hidden;
  position: relative;
}
.story__image::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 70%;
  height: 50%;
  background: var(--gold);
  z-index: -1;
  opacity: 0.15;
}
.story__content h2 { margin-bottom: 1.5rem; }
.story__content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.8;
}
.story__signature {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}
.story__signature small {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

.values {
  padding: var(--section-gap) 0;
  background: var(--cream-dark);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem;
  background: var(--white);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.value-card__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--espresso);
  margin-bottom: 0.6rem;
}
.value-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact { padding: var(--section-gap) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-method:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-method__icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  border-radius: 2px;
}
.contact-method__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}
.contact-method__detail {
  font-size: 0.88rem;
  color: var(--brown);
  line-height: 1.5;
}
.contact-method__hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}
.contact-form {
  background: var(--cream-dark);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border: 1px solid var(--border);
}

/* ── Article / Long-form ──────────────────────────────────── */
.article {
  padding: clamp(7rem, 12vw, 10rem) 0 var(--section-gap);
  max-width: 760px;
  margin: 0 auto;
}
.article h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--espresso);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.article h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--espresso);
  margin: 2.5rem 0 1rem;
}
.article h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--espresso);
  margin: 2rem 0 0.75rem;
}
.article p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.article ul, .article ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article li { margin-bottom: 0.5rem; line-height: 1.7; }
.article__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.footer__brand span { color: var(--gold); }
.footer__brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__socials {
  display: flex;
  gap: 0.6rem;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.footer__socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer__socials svg { width: 16px; height: 16px; }
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__contact { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer__legal {
  display: flex;
  gap: 1.25rem;
  font-size: 0.78rem;
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--gold-light); }
.footer__payments {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer__payments span {
  padding: 0.3rem 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ── Mobile sticky CTA ────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 1rem var(--pad-x);
  background: var(--white);
  box-shadow: 0 -1px 0 var(--border), 0 -8px 32px rgba(44,24,16,0.1);
}
@media (max-width: 768px) { .sticky-cta { display: flex; gap: 0.75rem; } }
.sticky-cta .btn-primary, .sticky-cta .btn-gold { flex: 1; justify-content: center; padding: 0.9rem 1rem; }

/* ── Confirmation page ────────────────────────────────────── */
.confirm-hero {
  padding: clamp(7rem, 12vw, 10rem) 0 4rem;
  text-align: center;
}
.confirm-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}
.confirm-card {
  max-width: 640px;
  margin: 2rem auto;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  text-align: left;
}
.confirm-detail {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.confirm-detail:last-child { border-bottom: none; }
.confirm-detail__label { color: var(--muted); }
.confirm-detail__value { color: var(--espresso); font-weight: 500; }

/* ── 404 ──────────────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--pad-x);
}
.error-page__num {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 12rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}

/* ── Utility ──────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }

/* ── Button variants ──────────────────────────────────────── */
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.75rem; }
.btn-outline--light { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline--light:hover { background: var(--white); border-color: var(--white); color: var(--espresso); }
.nav__cta { font-size: 0.78rem; padding: 0.65rem 1.5rem; }
.sticky-cta .btn-outline { border-color: var(--espresso); }

/* ── Section CTA row ──────────────────────────────────────── */
.section-cta { text-align: center; margin-top: 3rem; }

/* ── Apartment option (booking) ───────────────────────────── */
.apt-option {
  border: 1.5px solid var(--border);
  background: var(--white);
  padding: 1.25rem;
  cursor: pointer;
  display: block;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.apt-option:hover { border-color: var(--gold-light); }
.apt-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201, 148, 58, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 148, 58, 0.1);
}

/* ── Rating bars (testimonials) ───────────────────────────── */
.rating-bars {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
}
.rating-bars__title { text-align: center; margin-bottom: 1.5rem; }
.rating-bars__list { display: flex; flex-direction: column; gap: 0.85rem; }
.rating-row {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 1rem;
}
.rating-row__name { font-size: 0.88rem; color: var(--brown); }
.rating-row__track { height: 6px; background: var(--cream-dark); border-radius: 3px; overflow: hidden; }
.rating-row__fill { height: 100%; background: var(--gold); }
.rating-row__score { text-align: right; color: var(--espresso); font-family: var(--font-serif); }
@media (max-width: 480px) { .rating-row { grid-template-columns: 100px 1fr 36px; } }

/* ── Team avatar (about) ──────────────────────────────────── */
.team-avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}

/* ── Lipa Namba ───────────────────────────────────────────── */
.lipa-card {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(201, 148, 58, 0.08);
  border: 1px solid var(--gold);
  border-radius: 2px;
}
.lipa-card__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.lipa-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.02em;
}
.lipa-card__number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--espresso);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0.15rem 0;
}
.lipa-card__hint {
  font-size: 0.72rem;
  color: var(--muted);
}
.lipa-card--dark {
  background: rgba(201, 148, 58, 0.12);
  border-color: rgba(232, 201, 122, 0.5);
}
.lipa-card--dark .lipa-card__label { color: var(--gold-light); }
.lipa-card--dark .lipa-card__name,
.lipa-card--dark .lipa-card__number { color: var(--white); }
.lipa-card--dark .lipa-card__hint { color: rgba(255,255,255,0.55); }

/* ── Accessibility ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav__links a:focus-visible,
.footer a:focus-visible { outline-offset: 1px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.how-it-works {
  background: var(--espresso);
  padding: var(--section-py) 0;
}
.how-it-works .label       { color: var(--gold-light); }
.how-it-works .serif-lg    { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.6); }

.hiw__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 3rem 0 2.5rem;
}
.hiw__step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.hiw__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.hiw__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hiw__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}
.hiw__connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.25;
  margin-top: 26px;
}
.hiw__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.how-it-works .btn-outline {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}
.how-it-works .btn-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  background: transparent;
}
@media (max-width: 640px) {
  .hiw__steps      { flex-direction: column; gap: 2.5rem; align-items: center; }
  .hiw__connector  { display: none; }
  .hiw__step       { max-width: 280px; }
}

/* ═══════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON (desktop)
═══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.65rem 1.15rem 0.65rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  color: #fff;
}
.wa-float svg { flex-shrink: 0; }
/* Hidden on mobile — sticky-cta covers it */
@media (max-width: 767px) { .wa-float { display: none; } }

/* ── WhatsApp button in mobile sticky CTA ──────── */
.btn-wa-sticky {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: #25D366;
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.btn-wa-sticky:hover { background: #1ebe5d; color: #fff; }
