/* ═══════════ VARIABLES ═══════════ */
:root {
  --cream:     #F7F3EE;
  --white:     #FFFFFF;
  --black:     #111111;
  --gold:      #B8965A;
  --gold-lt:   #D4B483;
  --blue:      #1C4A59;
  --blue-lt:   #2a6478;
  --red:       #C0655C;
  --text:      #2C2C2C;
  --muted:     #7A7065;
  --border:    #E2D9CE;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --max-w:     1280px;
  --py:        clamp(4rem, 8vw, 8rem);
  --ease:      0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.25rem,5vw,3rem); }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
.eyebrow { font-family: var(--sans); font-size: .6875rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
.section-title { font-size: clamp(2.25rem,4vw,3.75rem); color: var(--black); }
.section-body { font-size: 1.0625rem; color: var(--muted); max-width: 52ch; line-height: 1.85; }
.gold-rule { width: 40px; height: 1px; background: var(--gold); margin: 1.25rem auto 0; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: .625rem;
  font-family: var(--sans); font-size: .6875rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .9rem 2rem; border: 1.5px solid currentColor;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
}
.btn--gold   { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--gold:hover { background: #9e7d48; border-color: #9e7d48; color: var(--white); }
.btn--ghost  { background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.btn--ghost:hover { background: var(--white); border-color: var(--white); color: var(--black); }
.btn--dark   { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn--dark:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* NAV CTA */
.nav-cta {
  font-family: var(--sans); font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .55rem 1.4rem;
  border: 1.5px solid var(--gold);
  background: var(--gold); color: var(--white);
  transition: background var(--ease), color var(--ease);
}
.nav-cta:hover { background: #9e7d48; border-color: #9e7d48; color: var(--white); }
#site-header.scrolled .nav-cta { background: var(--gold); border-color: var(--gold); color: var(--white); }
#site-header.scrolled .nav-cta:hover { background: #9e7d48; }

/* ═══════════ HEADER ═══════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
#site-header.scrolled {
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  padding: .875rem 0; box-shadow: 0 1px 0 var(--border);
}
#site-header.solid {
  background: var(--blue);
  padding: .875rem 0; box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
#site-header .container { display: flex; align-items: center; justify-content: space-between; }

.site-logo {
  display: flex; align-items: center; gap: 1.1rem;
  color: var(--white); transition: color var(--ease); text-decoration: none;
  z-index: 101; position: relative;
}
.site-logo__svg { height: 72px; width: auto; flex-shrink: 0; }
.site-logo__name {
  font-family: var(--serif); font-size: 1.75rem; font-weight: 400;
  letter-spacing: .03em; line-height: 1.15; color: inherit;
  white-space: nowrap;
}
.site-logo__name em {
  display: block; font-style: normal; font-size: .6rem;
  letter-spacing: .28em; text-transform: uppercase; opacity: .7; margin-top: .25rem;
}
#site-header.scrolled .site-logo { color: var(--blue); }
#site-footer .site-logo { color: var(--white); }
#site-footer .site-logo:hover { color: var(--gold-lt); }

.primary-nav { display: flex; align-items: center; gap: 2.25rem; }
.primary-nav__list { display: contents; list-style: none; margin: 0; padding: 0; }
.primary-nav__list li { display: contents; }
.primary-nav__list li a,
.primary-nav > a:not(.nav-cta) {
  font-size: .65rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.82); transition: color var(--ease); position: relative;
  text-decoration: none;
}
.primary-nav__list li a::after,
.primary-nav > a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width var(--ease);
}
.primary-nav__list li a:hover,
.primary-nav > a:not(.nav-cta):hover { color: var(--white); }
.primary-nav__list li a:hover::after,
.primary-nav > a:not(.nav-cta):hover::after { width: 100%; }
#site-header.scrolled .primary-nav__list li a,
#site-header.scrolled .primary-nav > a:not(.nav-cta) { color: var(--muted); }
#site-header.scrolled .primary-nav__list li a:hover,
#site-header.scrolled .primary-nav > a:not(.nav-cta):hover { color: var(--blue); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 101; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--white); transition: var(--ease); }
#site-header.scrolled .nav-toggle span { background: var(--black); }

/* ═══════════ HERO (vídeo) ═══════════ */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero__video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero__video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__video-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a100a 0%, #3b2212 35%, #22180e 65%, #0d0a06 100%);
  z-index: -1;
}
.hero__video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(185,150,90,.12) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a96e' fill-opacity='0.035'%3E%3Cpath d='M40 40 L50 30 L60 40 L50 50Z'/%3E%3Cpath d='M0 0 L10 10 L0 20Z'/%3E%3Cpath d='M80 80 L70 70 L80 60Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8,5,3,.28) 0%,
    rgba(8,5,3,.48) 55%,
    rgba(8,5,3,.68) 100%
  );
}

.hero__deco {
  position: absolute; z-index: 2;
  width: 420px; height: 420px;
  border: 1px solid rgba(185,150,90,.18); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero__deco::before {
  content: ''; position: absolute; inset: 22px;
  border: 1px solid rgba(185,150,90,.09); border-radius: 50%;
}

.hero__content {
  position: relative; z-index: 3;
  color: var(--white); padding-inline: 1.5rem; max-width: 820px;
}
.hero__eyebrow {
  font-family: var(--sans); font-size: .6875rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-lt);
  display: block; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(16px); animation: fadeUp .9s .3s forwards;
}
.hero__title {
  font-family: var(--serif); font-size: clamp(3rem,7vw,6.5rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px); animation: fadeUp .9s .55s forwards;
}
.hero__subtitle {
  font-size: clamp(.9375rem,1.5vw,1.125rem); color: rgba(255,255,255,.72);
  max-width: 46ch; margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.75;
  opacity: 0; transform: translateY(16px); animation: fadeUp .9s .8s forwards;
}
.hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px); animation: fadeUp .9s 1.05s forwards;
}

.hero__badge {
  position: absolute; bottom: 5rem; right: clamp(1.5rem,5vw,4rem); z-index: 3;
  border: 1px solid rgba(255,255,255,.2); padding: .75rem 1.25rem;
  color: rgba(255,255,255,.7); font-size: .65rem; letter-spacing: .16em;
  text-transform: uppercase; text-align: center; backdrop-filter: blur(4px);
  background: rgba(0,0,0,.2);
  opacity: 0; animation: fadeUp .9s 1.4s forwards;
}
.hero__badge strong { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--white); letter-spacing: 0; text-transform: none; font-weight: 300; }

.hero__scroll {
  position: absolute; bottom: 2.25rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.45); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 44px; background: rgba(255,255,255,.3);
  animation: scrollLine 1.8s ease-in-out infinite;
}


/* ═══════════ INTRO STRIP ═══════════ */
.intro-strip { background: var(--blue); color: var(--white); padding: 2.25rem 0; }
.intro-strip__inner { display: grid; grid-template-columns: repeat(5,1fr); text-align: center; }
.intro-strip__item { padding: .875rem 1.5rem; border-right: 1px solid rgba(255,255,255,.08); }
.intro-strip__item:last-child { border-right: none; }
.intro-strip__label { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .375rem; }
.intro-strip__value { font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,.88); }

/* ═══════════ ABOUT ═══════════ */
.about { padding: var(--py) 0; background: var(--white); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,7rem); align-items: center; }
.about__image-wrap { position: relative; }
.about__image-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  background: linear-gradient(145deg, #e8ddd0, #d4c4b0);
  display: flex; align-items: center; justify-content: center;
}
.img-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--muted); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; gap: .75rem; font-family: var(--sans); }
.img-ph svg { opacity: .25; }
.about__image-accent {
  position: absolute; bottom: -2.5rem; right: -2.5rem; width: 54%;
  aspect-ratio: 1; background: linear-gradient(145deg, #c4b09a, #b09880);
  border: 6px solid var(--white); box-shadow: 0 12px 40px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
}
.about__title { font-size: clamp(2rem,3.5vw,3.25rem); margin-bottom: 1.5rem; }
.about__text { font-size: 1.0625rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.about__detail { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--border); }
.about__detail:last-of-type { border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.about__detail-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.about__detail-text strong { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .18rem; color: var(--black); font-family: var(--sans); }
.about__detail-text span { font-size: .875rem; color: var(--muted); }

/* ═══════════ FINCA / HISTORIA ═══════════ */
.finca { padding: var(--py) 0; background: var(--blue); color: var(--white); }
.finca__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,7rem); align-items: center; }
.finca__content .eyebrow { color: var(--gold); }
.finca__title { font-size: clamp(2rem,3.5vw,3.25rem); color: var(--white); margin-bottom: 1.5rem; }
.finca__text { font-size: 1.0625rem; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 1.25rem; }
.finca__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); margin: 2rem 0; }
.finca__stat { background: var(--blue-dark, #152f3a); padding: 1.5rem; }
.finca__stat-number { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: .25rem; }
.finca__stat-label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.finca__image {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, #2d1e14, #1a1209);
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════ SPACES ═══════════ */
.spaces { padding: var(--py) 0; background: var(--cream); }
.spaces__header { text-align: center; margin-bottom: clamp(3rem,5vw,5rem); }
.spaces__header .section-body { margin-inline: auto; margin-top: 1rem; }
.spaces__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px; }
@media(max-width:768px) {
  .spaces__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; gap: 1.5px; cursor: grab; padding-right: 18vw; }
  .spaces__grid::-webkit-scrollbar { display: none; }
  .spaces__grid.dragging { cursor: grabbing; scroll-snap-type: none; }
  .spaces__grid .space-card { flex: 0 0 72vw; scroll-snap-align: start; }
  .spaces__grid .space-card__img { aspect-ratio: 3/4; }
}
.space-card { position: relative; overflow: hidden; cursor: pointer; }
.space-card__img {
  width: 100%; aspect-ratio: 3/4;
  position: relative; overflow: hidden;
}
.space-card__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s ease;
}
.space-card:hover .space-card__img img { transform: scale(1.05); }
.s1 { background: linear-gradient(145deg,#4a3020,#2d1e12); }
.s2 { background: linear-gradient(145deg,#2a2018,#1a1510); }
.s3 { background: linear-gradient(145deg,#1a2820,#101812); }
.space-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(8,5,3,.78) 0%,rgba(8,5,3,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; color: var(--white);
}
.space-card__tag { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: .5rem; }
.space-card__name { font-family: var(--serif); font-size: 1.5rem; line-height: 1.2; margin-bottom: .25rem; }
.space-card__size { font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: .25rem; }
.space-card__desc { font-size: .8125rem; color: rgba(255,255,255,.65); max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .4s ease; opacity: 0; }
.space-card:hover .space-card__desc { max-height: 80px; opacity: 1; }

/* ═══════════ SPACES PRICE ═══════════ */
.space-card__price { font-size: .875rem; color: var(--gold-lt); font-weight: 600; margin-bottom: .5rem; }
.space-card__cta { display: inline-block; margin-top: .75rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 2px; transition: color var(--ease), border-color var(--ease); opacity:0; transition: opacity .4s ease .1s; }
.space-card:hover .space-card__cta { opacity: 1; }
.space-card:hover .space-card__cta:hover { color: var(--gold); border-color: var(--gold); }

/* ═══════════ MODALITY ═══════════ */
.modality { padding: clamp(2rem,4vw,4rem) 0 var(--py); background: var(--cream); }
.modality__header { text-align: center; margin-bottom: clamp(2.5rem,4vw,4rem); }
.modality__header p { max-width: 52ch; margin: 1rem auto 0; color: var(--muted); font-size: 1.0625rem; line-height: 1.8; }
.modality__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); }
.modality-card { background: var(--white); border: 1px solid var(--border); padding: clamp(2rem,4vw,3.5rem); display: flex; flex-direction: column; gap: 1.5rem; transition: box-shadow var(--ease); }
.modality-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.modality-card--house { border-top: 3px solid var(--blue); }
.modality-card--rooms { border-top: 3px solid var(--gold); }
.modality-card__icon { width: 48px; height: 48px; }
.modality-card__title { font-family: var(--serif); font-size: clamp(1.75rem,2.5vw,2.25rem); line-height: 1.15; }
.modality-card__price { font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.modality-card__price span { font-size: .875rem; font-weight: 400; color: var(--muted); }
.modality-card--rooms .modality-card__price { color: var(--gold); }
.modality-card__desc { color: var(--muted); font-size: .9375rem; line-height: 1.8; }
.modality-card__features { display: flex; flex-direction: column; gap: .6rem; }
.modality-card__feat { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--text); }
.modality-card__feat::before { content: ''; width: 18px; height: 2px; background: var(--gold); flex-shrink: 0; }
.modality-card__actions { margin-top: auto; }
.modality-card__actions .btn { width: 100%; text-align: center; }
@media(max-width:768px) { .modality__grid { grid-template-columns: 1fr; } }

/* ═══════════ EXPERIENCE ═══════════ */
.experience { padding: var(--py) 0; background: var(--white); }
.experience__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,7rem); align-items: center; }
.experience__title { font-size: clamp(2rem,3.5vw,3.25rem); margin-bottom: 1rem; }
.experience__lead { font-size: 1.0625rem; color: var(--muted); line-height: 1.85; margin-bottom: 2.5rem; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 2rem; margin-bottom: 2.5rem; }
.amenity { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--text); }
.amenity::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: .75rem; height: 560px; }
.exp-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.exp-img:first-child { grid-row: span 2; }
.ei1 { background: linear-gradient(145deg,#e8ddd0,#d0c4b4); }
.ei2 { background: linear-gradient(145deg,#d4c4b0,#c0b09a); }
.ei3 { background: linear-gradient(145deg,#c8b89a,#b4a088); }

/* ═══════════ BOOKING ═══════════ */
.booking { padding: var(--py) 0; background: var(--blue); color: var(--white); }
.booking__header { text-align: center; margin-bottom: clamp(2.5rem,4vw,4rem); }
.booking__header .section-title { color: var(--white); }
.booking__header p { margin-top: 1rem; font-size: 1.0625rem; color: rgba(255,255,255,.5); max-width: 44ch; margin-inline: auto; line-height: 1.7; }
.booking__engine { background: var(--white); color: var(--text); padding: clamp(2rem,4vw,3.5rem); max-width: 900px; margin-inline: auto; }
.booking-demo { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1rem; align-items: end; }
.booking-field label { display: block; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; font-family: var(--sans); }
.booking-field input { width: 100%; padding: .875rem 1rem; border: 1px solid var(--border); font-family: var(--sans); font-size: .9375rem; background: var(--cream); color: var(--text); outline: none; transition: border-color var(--ease); }
.booking-field input:focus { border-color: var(--gold); }
.booking-note { text-align: center; font-size: .72rem; color: var(--muted); margin-top: 1.5rem; line-height: 1.6; }

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials { padding: var(--py) 0; background: var(--cream); overflow: hidden; }
.testimonials__header { text-align: center; margin-bottom: clamp(2rem,4vw,3.5rem); }
.testimonials__scores { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: clamp(2rem,4vw,3.5rem); flex-wrap: wrap; }
.t-score { display: flex; align-items: center; gap: .875rem; }
.t-score__badge { font-size: 1.5rem; font-weight: 700; color: var(--white); background: var(--blue); padding: .4rem .75rem; font-family: var(--sans); }
.t-score__badge--booking { background: #003580; }
.t-score__badge--tripadvisor { background: #34e0a1; color: #111; }
.t-score__label { font-size: .75rem; font-family: var(--sans); line-height: 1.4; }
.t-score__label strong { display: block; font-size: .875rem; color: var(--text); }
.t-score__label span { color: var(--muted); }
.testimonials__slider { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; padding: 0 clamp(1.25rem,5vw,3rem) 2rem; }
.testimonials__slider::-webkit-scrollbar { display: none; }
.testimonials__slider.dragging { cursor: grabbing; scroll-snap-type: none; }
.t-card { flex: 0 0 clamp(280px,38vw,420px); scroll-snap-align: start; padding: 2.5rem 2rem; background: var(--white); border: 1px solid var(--border); position: relative; }
.t-card::before { content: '\201C'; font-family: var(--serif); font-size: 5rem; color: var(--gold); line-height: 1; position: absolute; top: 1rem; left: 1.75rem; opacity: .3; }
.t-card__stars { color: var(--gold); font-size: .875rem; letter-spacing: 2px; margin-bottom: .75rem; }
.t-card__text { font-family: var(--serif); font-size: 1.05rem; line-height: 1.75; color: var(--text); margin-bottom: 1.75rem; padding-top: 1.5rem; }
.t-card__name { font-size: .8125rem; font-weight: 600; color: var(--black); font-family: var(--sans); }
.t-card__origin { font-size: .75rem; color: var(--muted); }
.t-card__platform { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: .25rem; }

/* ═══════════ CHEF / GASTRONOMÍA ═══════════ */
.gastro { padding: var(--py) 0; background: var(--blue); color: var(--white); position: relative; overflow: hidden; }
.gastro::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/img/galeria/g09.jpg') center/cover no-repeat;
  opacity: .12;
}
.gastro .container { position: relative; z-index: 2; }
.gastro__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,7vw,8rem); align-items: center; }
.gastro__content .eyebrow { color: var(--gold); }
.gastro__title { font-size: clamp(2.25rem,4vw,3.75rem); color: var(--white); margin-bottom: 1.5rem; line-height: 1.1; }
.gastro__title em { font-style: italic; color: var(--gold-lt); }
.gastro__lead { font-size: 1.125rem; color: rgba(255,255,255,.7); line-height: 1.9; margin-bottom: 2rem; }
.gastro__tags { display: flex; flex-wrap: wrap; gap: .625rem; margin-bottom: 2.5rem; }
.gastro__tag { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; padding: .5rem 1.1rem; border: 1px solid rgba(184,150,90,.45); color: var(--gold-lt); }
.gastro__visual { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: .75rem; }
.gastro__img { overflow: hidden; }
.gastro__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.gastro__img:hover img { transform: scale(1.05); }
.gastro__img:first-child { grid-column: span 2; height: 280px; }
.gastro__img:not(:first-child) { height: 180px; }
.gastro__quote { grid-column: span 2; border-left: 2px solid var(--gold); padding: 1rem 1.5rem; margin-top: .5rem; }
.gastro__quote p { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,.75); line-height: 1.7; }
@media(max-width:768px) { .gastro__inner { grid-template-columns: 1fr; } .gastro__visual { display: none; } }

/* ═══════════ FAQ ═══════════ */
.faq { padding: var(--py) 0; background: var(--cream); }
.faq__inner { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(3rem,6vw,7rem); align-items: start; }
.faq__aside { position: sticky; top: 7rem; }
.faq__aside .eyebrow { display: block; margin-bottom: 1rem; }
.faq__aside h2 { margin-bottom: 1.5rem; }
.faq__aside p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.faq__contact { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--sans); font-size: .82rem; font-weight: 500; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color var(--ease); }
.faq__contact:hover { color: var(--blue); border-color: var(--blue); }
.faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.5rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--text); transition: color var(--ease); }
.faq-item__btn:hover { color: var(--gold); }
.faq-item__icon { width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--ease), border-color var(--ease); }
.faq-item__icon svg { width: 10px; height: 10px; fill: none; stroke: var(--muted); stroke-width: 2; transition: transform var(--ease), stroke var(--ease); }
.faq-item.open .faq-item__icon { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-item__icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-item__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__body-inner { overflow: hidden; }
.faq-item__body-inner p { padding: 0 2rem 1.5rem 0; color: var(--muted); line-height: 1.75; font-size: .95rem; }
@media(max-width:768px) { .faq__inner { grid-template-columns: 1fr; } .faq__aside { position: static; } }

/* ═══════════ LOCATION ═══════════ */
.location { padding: var(--py) 0; background: var(--white); }
.location__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,7rem); align-items: start; }
.location__title { font-size: clamp(2rem,3.5vw,3.25rem); margin-bottom: 1rem; }
.location__text { font-size: 1.0625rem; color: var(--muted); line-height: 1.85; margin-bottom: 2rem; }
.location__points { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.loc-point { display: flex; align-items: flex-start; gap: .9rem; font-size: .9375rem; }
.loc-icon { width: 34px; height: 34px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); }
.loc-icon svg { width: 14px; height: 14px; }
.loc-point strong { display: block; font-size: .78rem; font-weight: 600; color: var(--black); margin-bottom: .12rem; font-family: var(--sans); }
.loc-point span { color: var(--muted); font-size: .85rem; }
.location__map { overflow: hidden; height: 480px; background: #e0e0e0; }
.location__map iframe { width: 100%; height: 100%; border: none; filter: grayscale(.15) contrast(1.05); }

/* ═══════════ PRESTIGE BAR ═══════════ */
.prestige-bar { background: var(--blue); overflow: hidden; position: relative; }
.prestige-bar::before,.prestige-bar::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.prestige-bar::before { left:0; background: linear-gradient(to right, var(--blue), transparent); }
.prestige-bar::after { right:0; background: linear-gradient(to left, var(--blue), transparent); }
.prestige-bar__label { font-family: var(--sans); font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); white-space: nowrap; flex-shrink: 0; }
.prestige-bar__track { display: flex; align-items: center; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; padding: 2rem clamp(1.5rem,5vw,4rem); }
.prestige-bar__track::-webkit-scrollbar { display: none; }
.prestige-bar__track.dragging { cursor: grabbing; scroll-snap-type: none; }
.prestige-item { flex: 0 0 auto; scroll-snap-align: center; display: flex; align-items: center; justify-content: center; padding: 0 clamp(1.75rem,4vw,3.5rem); border-right: 1px solid rgba(255,255,255,.15); min-width: 160px; }
.prestige-item:last-child { border-right: none; }
.prestige-item img { height: 28px; width: auto; opacity: .65; transition: opacity var(--ease); filter: brightness(0) invert(1); }
.prestige-item:hover img { opacity: 1; }
.prestige-item__text { font-family: var(--serif); font-size: 1rem; font-weight: 400; letter-spacing: .18em; color: rgba(255,255,255,.65); white-space: nowrap; text-transform: uppercase; transition: color var(--ease); text-decoration: none; }
.prestige-item:hover .prestige-item__text { color: #fff; }

/* ═══════════ WHATSAPP FLOTANTE ═══════════ */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; align-items: center; gap: .65rem; text-decoration: none; opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; pointer-events: none; }
.wa-float.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-float__btn { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(184,150,90,.35); transition: background var(--ease), transform var(--ease), box-shadow var(--ease); flex-shrink: 0; }
.wa-float__btn svg { width: 26px; height: 26px; fill: #fff; }
.wa-float:hover .wa-float__btn { background: var(--gold-lt); transform: scale(1.07); box-shadow: 0 6px 24px rgba(184,150,90,.45); }
.wa-float__label { background: var(--gold); color: #fff; font-family: var(--sans); font-size: .72rem; font-weight: 500; letter-spacing: .04em; padding: .45rem .85rem; border-radius: 20px; white-space: nowrap; box-shadow: 0 4px 12px rgba(184,150,90,.3); opacity: 0; transform: translateX(6px); transition: opacity .3s ease .1s, transform .3s ease .1s; }
.wa-float:hover .wa-float__label { opacity: 1; transform: translateX(0); }
@media(max-width:768px) { .wa-float { bottom: 1.5rem; right: 1.25rem; } .wa-float__label { display: none; } }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
  position: relative; padding: clamp(5rem,10vw,10rem) 0;
  text-align: center; overflow: hidden;
  background: var(--blue);
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background-image: url('assets/img/casa/aerea.jpg');
  background-size: cover; background-position: center 40%;
  opacity: .35;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(185,150,90,.18) 0%, transparent 65%);
}
.cta-banner__content { position: relative; z-index: 2; color: var(--white); }
.cta-banner__title { font-family: var(--serif); font-size: clamp(2.5rem,5vw,4.5rem); color: var(--white); margin-bottom: 1rem; }
.cta-banner__text { font-size: 1.0625rem; color: rgba(255,255,255,.65); max-width: 46ch; margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.75; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════ FOOTER ═══════════ */
#site-footer { background: var(--blue); color: rgba(255,255,255,.55); padding: clamp(3.5rem,6vw,6rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; }
.footer__brand .site-logo { color: var(--white); margin-bottom: 1rem; }
.footer__brand p { font-size: .875rem; line-height: 1.7; max-width: 28ch; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: .625rem; }
.footer__social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: var(--ease); }
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 13px; height: 13px; }
.footer__col h4 { font-family: var(--sans); font-size: .6rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer__col ul a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color var(--ease); }
.footer__col ul a:hover { color: var(--gold); }
.footer__col address { font-style: normal; font-size: .875rem; line-height: 1.9; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: rgba(255,255,255,.28); gap: 1rem; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--gold); }


/* ═══════════ GALLERY HOVER ═══════════ */
.glider-track div img { transition: transform .6s ease; }
.glider-track div:hover img { transform: scale(1.04); }
.glider-btn { transition: background var(--ease) !important; }
.glider-btn:hover { background: rgba(184,150,90,.85) !important; }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.reveal { opacity:0; transform:translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ═══════════ RESPONSIVE ═══════════ */
@media(max-width:1024px){
  .intro-strip__inner { grid-template-columns: repeat(3,1fr); }
  .intro-strip__item:nth-child(3) { border-right: none; }
  .modality__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
}
@media(max-width:768px){
  #site-header { z-index: 200; }
  .site-logo { gap: .65rem; }
  .site-logo__svg { height: 46px; }
  .site-logo__name { font-size: 1.2rem; white-space: nowrap; }
  .site-logo__name em { font-size: .52rem; letter-spacing: .2em; }
  .primary-nav { display:none; position:fixed; inset:0; background:var(--blue); flex-direction:column; justify-content:center; align-items:center; gap:2rem; z-index:90; }
  .primary-nav.open { display:flex; }
  .primary-nav__list { display:flex; flex-direction:column; align-items:center; gap:2rem; }
  .primary-nav__list li { display:block; }
  .primary-nav__list li a,
  .primary-nav > a:not(.nav-cta) { font-size:.875rem; color:rgba(255,255,255,.75); }
  .nav-cta { margin-top:1rem; padding:.875rem 2rem; }
  .nav-toggle { display:flex; }
  .about__inner,.finca__inner,.experience__inner,.location__inner { grid-template-columns:1fr; }
  .about__image-accent { right:0; bottom:-1.5rem; width:44%; border-width:4px; }
  .testimonials__track { grid-template-columns:1fr; }
  .intro-strip__inner { grid-template-columns:1fr; }
  .intro-strip__item { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
  .footer__grid { grid-template-columns:1fr; }
  .footer__brand { grid-column:span 1; }
  .booking-demo { grid-template-columns:1fr; }
  .exp-grid { height:320px; }
  .hero__badge { display:none; }
  .finca__stat-grid { grid-template-columns:1fr 1fr; }
}

/* ═══════════ GALLERY SLIDER EXTRAS ═══════════ */
#gliderTrack::-webkit-scrollbar { display:none; }
#gliderTrack.dragging { cursor:grabbing; scroll-snap-type:none; }

/* ═══════════ GENERIC PAGE ═══════════ */
.page-hero { background: var(--blue); color: var(--white); padding: clamp(6rem,10vw,10rem) 0 clamp(3rem,5vw,5rem); text-align: center; }
.page-hero__title { font-family: var(--serif); font-size: clamp(2.5rem,5vw,4rem); color: var(--white); margin-bottom: 1rem; }
.page-hero__subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.65); max-width: 52ch; margin-inline: auto; line-height: 1.75; }
.page-content { padding: var(--py) 0; background: var(--cream); }
.page-content .container { max-width: 800px; }
.page-content h2 { font-size: clamp(1.75rem,3vw,2.5rem); margin-bottom: 1rem; margin-top: 2.5rem; }
.page-content h3 { font-size: clamp(1.25rem,2vw,1.75rem); margin-bottom: .75rem; margin-top: 2rem; }
.page-content p { font-size: 1.0625rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-content li { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: .4rem; }

/* ═══════════ SINGLE HABITACION ═══════════ */
.hab-hero { position: relative; height: 60vh; min-height: 420px; overflow: hidden; }
.hab-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hab-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.55) 100%); }
.hab-hero__content { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(2rem,4vw,4rem); color: var(--white); }
.hab-hero__content .eyebrow { color: var(--gold-lt); }
.hab-hero__title { font-family: var(--serif); font-size: clamp(2.5rem,5vw,4rem); color: var(--white); margin-bottom: .75rem; }
.hab-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .8rem; color: rgba(255,255,255,.75); letter-spacing: .1em; }
.hab-price { font-size: 1.5rem; font-weight: 700; color: var(--gold-lt); }
.hab-body { padding: var(--py) 0; background: var(--cream); }
.hab-body__inner { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(3rem,5vw,6rem); align-items: start; }
@media(max-width:768px) { .hab-body__inner { grid-template-columns: 1fr; } }
.hab-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.hab-features li { display: flex; align-items: center; gap: .75rem; font-size: .9375rem; color: var(--text); }
.hab-features li::before { content: ''; width: 18px; height: 2px; background: var(--gold); flex-shrink: 0; }
.hab-gallery-slider { display: flex; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; margin-top: 3rem; }
.hab-gallery-slider::-webkit-scrollbar { display: none; }
.hab-gallery-slider.dragging { cursor: grabbing; scroll-snap-type: none; }
.hab-gallery-slider div { flex: 0 0 clamp(260px,40vw,520px); height: clamp(220px,35vw,400px); overflow: hidden; scroll-snap-align: start; }
.hab-gallery-slider div img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hab-sidebar { background: var(--white); border: 1px solid var(--border); padding: 2rem; }
.hab-sidebar__price { font-size: 2rem; font-weight: 700; color: var(--blue); margin-bottom: .5rem; }
.hab-sidebar__price span { font-size: .875rem; font-weight: 400; color: var(--muted); }
.other-rooms { padding: var(--py) 0; background: var(--white); }
.other-rooms__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media(max-width:768px) { .other-rooms__grid { grid-template-columns: 1fr; } }

/* ═══════════ CONTACT PAGE ═══════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,7rem); }
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: .875rem 1rem; border: 1px solid var(--border); font-family: var(--sans); font-size: .9375rem; background: var(--white); color: var(--text); outline: none; transition: border-color var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 160px; resize: vertical; }

/* ═══════════ ARCHIVE HABITACION ═══════════ */
.archive-hero { background: var(--blue); padding: clamp(6rem,10vw,10rem) 0 clamp(3rem,5vw,5rem); text-align: center; color: var(--white); }
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; margin-top: 0; }
@media(max-width:768px) { .archive-grid { grid-template-columns: 1fr; } }

/* ═══════════ 404 ═══════════ */
.page-404 { background: var(--blue); min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); padding: 2rem; }
.page-404__code { font-family: var(--serif); font-size: clamp(6rem,15vw,12rem); color: var(--gold); line-height: 1; opacity: .4; margin-bottom: 1rem; }
.page-404__title { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); color: var(--white); margin-bottom: 1rem; }
.page-404__text { font-size: 1.0625rem; color: rgba(255,255,255,.65); max-width: 44ch; margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.75; }

/* ═══════════ BLOG ARCHIVE (home.php) ═══════════ */
.blog-archive { padding: var(--py) 0; background: var(--cream); }
.blog-archive__header { background: var(--blue); color: #fff; text-align: center; padding: clamp(4rem,8vw,8rem) 0 clamp(3rem,6vw,6rem); }
.blog-archive__header .eyebrow { color: rgba(255,255,255,.55); }
.blog-archive__header h1 { font-family: var(--serif); font-size: clamp(2.5rem,5vw,4rem); color: #fff; margin-top: .75rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; padding: var(--py) 0; }
.blog-card { background: var(--white); display: flex; flex-direction: column; transition: box-shadow var(--ease); }
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.blog-card__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { font-family: var(--sans); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.blog-card__title { font-family: var(--serif); font-size: 1.35rem; line-height: 1.3; margin-bottom: .75rem; }
.blog-card__title a { color: var(--text); text-decoration: none; }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt { font-size: .875rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.blog-card__meta { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: var(--muted); }
.blog-card__more { color: var(--gold); text-decoration: none; font-weight: 500; letter-spacing: .04em; }
.blog-card__more:hover { color: var(--blue); }
@media(max-width:1024px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px){ .blog-grid { grid-template-columns: 1fr; } }

/* ═══════════ SINGLE POST (single.php) ═══════════ */
.post-hero { position: relative; height: clamp(320px,45vw,520px); overflow: hidden; }
.post-hero__img { width: 100%; height: 100%; object-fit: cover; }
.post-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 100%); }
.post-hero__meta { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: clamp(2rem,5vw,4rem); text-align: center; color: #fff; }
.post-hero__cat { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1rem; font-family: var(--sans); font-weight: 500; }
.post-hero__title { font-family: var(--serif); font-size: clamp(1.75rem,4vw,3.25rem); line-height: 1.15; max-width: 800px; }
.post-hero__date { margin-top: .75rem; font-size: .78rem; color: rgba(255,255,255,.6); font-family: var(--sans); }
.post-body { max-width: 740px; margin: 0 auto; padding: clamp(3rem,6vw,6rem) 1.5rem; }
.post-body h2,.post-body h3 { font-family: var(--serif); margin: 2rem 0 .75rem; color: var(--text); }
.post-body h2 { font-size: clamp(1.5rem,2.5vw,2rem); }
.post-body h3 { font-size: clamp(1.2rem,2vw,1.5rem); }
.post-body p { line-height: 1.85; color: var(--text); margin-bottom: 1.25rem; font-size: 1.0625rem; }
.post-body ul { padding-left: 1.5rem; margin-bottom: 1.25rem; list-style: disc; }
.post-body ul li { line-height: 1.75; margin-bottom: .4rem; color: var(--text); }
.post-body blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 2rem 0; font-family: var(--serif); font-size: 1.2rem; color: var(--muted); font-style: italic; }
.post-body a { color: var(--gold); text-decoration: underline; }
.post-body a:hover { color: var(--blue); }
.post-cta { background: var(--blue); color: #fff; padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4rem); text-align: center; }
.post-cta .eyebrow { color: rgba(255,255,255,.5); }
.post-cta h2 { font-family: var(--serif); font-size: clamp(1.75rem,3vw,2.75rem); color: #fff; margin: .75rem 0 1rem; }
.post-cta p { color: rgba(255,255,255,.7); max-width: 48ch; margin: 0 auto 2rem; line-height: 1.7; }
.post-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.post-author { max-width: 740px; margin: 0 auto; padding: 2rem 1.5rem 3rem; display: flex; gap: 1.5rem; align-items: flex-start; border-top: 1px solid var(--border); }
.post-author__avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.post-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author__name { font-family: var(--serif); font-size: 1.1rem; margin-bottom: .35rem; }
.post-author__bio { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.related-posts { padding: var(--py) 0; background: var(--cream); }
.related-posts__heading { font-family: var(--serif); font-size: 1.75rem; text-align: center; margin-bottom: 2.5rem; color: var(--text); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.related-card { background: var(--white); display: flex; flex-direction: column; }
.related-card__img { aspect-ratio: 16/9; overflow: hidden; }
.related-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.related-card:hover .related-card__img img { transform: scale(1.04); }
.related-card__body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.related-card__cat { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); margin-bottom: .5rem; }
.related-card__title { font-family: var(--serif); font-size: 1.05rem; line-height: 1.3; flex: 1; }
.related-card__title a { color: var(--text); }
.related-card__title a:hover { color: var(--gold); }
@media(max-width:768px){ .related-grid { grid-template-columns: 1fr; } }

/* ═══════════ CONTACT PAGE ═══════════ */
.contact-page { padding: var(--py) 0; background: var(--cream); }
.page-hero--short { padding: clamp(4rem,7vw,7rem) 0 clamp(2.5rem,4vw,4rem); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__card { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem; background: var(--white); border: 1px solid var(--border); }
.contact-info__card h4 { font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.contact-info__card a, .contact-info__card address { color: var(--text); text-decoration: none; font-style: normal; line-height: 1.6; font-size: .9375rem; }
.contact-info__card a:hover { color: var(--gold); }
.contact-info__icon { width: 44px; height: 44px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-wa { display: inline-flex; align-items: center; gap: .6rem; margin-top: .5rem; }
.contact-wa svg { width: 18px; height: 18px; }
.contact-social { display: flex; gap: 1rem; margin-top: .5rem; }
.contact-social a { width: 42px; height: 42px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: color var(--ease), border-color var(--ease); }
.contact-social a:hover { color: var(--gold); border-color: var(--gold); }
.contact-social svg { width: 18px; height: 18px; }
.contact-form h2 { font-family: var(--serif); font-size: clamp(1.5rem,2.5vw,2rem); margin-bottom: 2rem; }
.contact-form__form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row { display: flex; flex-direction: column; gap: .4rem; }
.contact-form__row label { font-family: var(--sans); font-size: .78rem; font-weight: 500; letter-spacing: .06em; color: var(--text); }
.contact-form__row label span { color: var(--gold); }
.contact-form__row input,
.contact-form__row textarea { border: 1px solid var(--border); background: var(--white); padding: .85rem 1rem; font-family: var(--sans); font-size: .9375rem; color: var(--text); outline: none; transition: border-color var(--ease); width: 100%; }
.contact-form__row input:focus,
.contact-form__row textarea:focus { border-color: var(--gold); }
.contact-form__row textarea { resize: vertical; min-height: 130px; }
.contact-form__row--full { grid-column: 1/-1; }
.btn--full { width: 100%; text-align: center; justify-content: center; }
.contact-map { margin-top: clamp(3rem,5vw,5rem); }
.contact-map iframe { border-radius: 4px; display: block; }
@media(min-width:640px){ .contact-form__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; } }

/* ══════════════════════════════════════════
   SHARED PAGE HERO  (all secondary pages)
   Usage: <section class="page-hero" style="--hero-bg:url(path/to/img.jpg)">
   ══════════════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--blue);
  padding: clamp(6rem,10vw,10rem) 0 clamp(4rem,6vw,6rem);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: .18;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-lt); display: block; margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem,6vw,5rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.page-hero p {
  color: rgba(255,255,255,.6);
  font-size: 1.0625rem;
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.75;
}
.page-hero .gold-rule { margin: 1.5rem auto 0; }
