/* ================================================================
   MI SUEÑO BEACH HOUSE — Global Stylesheet
   Palette: Tropical Colonial Elegance
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --cream:        #fdfcfa;
  --white:        #ffffff;
  --ivory:        #f8f6f2;
  --mahogany:     #b85c38;
  --wood-light:   #d4794f;
  --pacific:      #3a7ca5;
  --pacific-deep: #2a5f84;
  --bougainvillea:#c2587a;
  --sunset:       #b85c38;
  --forest:       #3d5a3e;
  --sand:         #d4b896;
  --text-dark:    #2a2118;
  --text-mid:     #7a6a5e;
  --text-light:   #a89888;
  --border:       rgba(0,0,0,0.06);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Raleway', sans-serif;
  --nav-h:  76px;
  --max-w:  1240px;
  --radius: 12px;
  --radius-sm: 6px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.25rem; font-weight: 400; }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.85; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 14px;
}

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.rule { width: 48px; height: 1px; background: var(--sunset); margin: 24px 0; }
.rule--center { margin: 24px auto; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 48px;
  background: rgba(250, 247, 242, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
  transition: none;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
}
/* Wood texture sections */
.highlights,
.footer {
  background: var(--mahogany);
  position: relative;
}
.highlights::before,
.footer::before {
  display: none;
}
.nav__inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 400;
  letter-spacing: 0.03em; color: var(--text-dark);
  transition: none; line-height: 1;
}
.nav__logo span { font-style: italic; color: var(--sunset); }
.nav.scrolled .nav__logo      { color: var(--text-dark); }
.nav.scrolled .nav__logo span { color: var(--sunset); }

.nav__links { display: flex; gap: 36px; align-items: center; }
.nav__links a {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s;
  position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--sunset);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__links a:hover { color: var(--text-dark); }
.nav.scrolled .nav__links a { color: var(--text-mid); }
.nav.scrolled .nav__links a:hover { color: var(--text-dark); }

.nav__cta {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--sunset);
  color: var(--sunset); transition: all 0.3s;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 2px 20px 0 20px;
}
.nav__cta span { display: block; }
.nav__cta:hover { background: var(--sunset); color: var(--white); }
.nav.scrolled .nav__cta { border-color: var(--sunset); color: var(--sunset); }
.nav.scrolled .nav__cta:hover { background: var(--sunset); color: var(--white); }

.nav__hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; padding: 4px; z-index: 210;
}
.nav__hamburger span {
  display: block; width: 26px; height: 1px;
  background: var(--white); transition: all 0.3s ease;
}
.nav.scrolled .nav__hamburger span { background: var(--text-dark); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  padding: 36px 48px 44px;
  flex-direction: column; gap: 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  z-index: 199; border-top: 1px solid var(--border);
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mid);
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.nav__mobile-menu a:last-child { border-bottom: none; padding-bottom: 0; }
.nav__mobile-menu a:hover { color: var(--text-dark); }

/* ── Buttons ── */
.btn {
  display: inline-block; font-family: var(--sans);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 15px 36px; border: 1px solid;
  border-radius: var(--radius-sm);
  transition: all 0.35s ease; cursor: pointer;
}
.btn--white  { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn--white:hover { background: var(--white); color: var(--text-dark); border-color: var(--white); }
.btn--dark   { border-color: var(--text-dark); color: var(--text-dark); background: transparent; }
.btn--dark:hover { background: var(--text-dark); color: var(--white); }
.btn--sunset { border-color: var(--sunset); color: var(--sunset); background: transparent; }
.btn--sunset:hover { background: var(--sunset); color: var(--white); }
.btn--pacific { border-color: var(--pacific); color: var(--pacific); background: transparent; }
.btn--pacific:hover { background: var(--pacific); color: var(--white); }
.btn--filled { background: var(--mahogany); color: var(--white); border-color: var(--mahogany); }
.btn--filled:hover { background: transparent; color: var(--mahogany); }

/* ── Hero ── */
.hero {
  position: relative; height: 92vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--text-dark);
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { object-fit: cover; object-position: center 55%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,18,10,0.38) 0%, rgba(30,18,10,0.65) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 24px;
  animation: fadeUp 1.1s ease both 0.2s;
}
.hero__content h1 {
  color: var(--white); font-style: italic;
  text-shadow: 0 2px 40px rgba(0,0,0,0.55);
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}
.hero__content h1 em { font-style: normal; color: var(--sand); }
.hero__tagline {
  font-size: 1.2rem; font-weight: 300;
  color: rgba(255,255,255,0.95);
  max-width: 600px; margin: 0 auto 40px;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
}
.hero__content .eyebrow {
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  font-size: 0.75rem;
}
.hero__scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── Highlights Strip ── */
.highlights { background: #f0ebe2; padding: 20px 0; }
.highlights__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.highlight-item { text-align: center; padding: 0 24px; }
.highlight-item__icon  { display: none; }
.highlight-item__value {
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--text-dark); line-height: 1; display: block; margin-bottom: 4px;
}
.highlight-item__label {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mid);
}

/* ── Intro ── */
.intro { background: var(--white); }
.intro__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.intro__image-wrap { position: relative; }
.intro__image {
  aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--radius);
}
.intro__image-accent {
  position: absolute; bottom: -28px; right: -28px;
  width: 60%; aspect-ratio: 4/3;
  border: 6px solid var(--cream); overflow: hidden; z-index: 2;
  border-radius: var(--radius);
}
.intro__text h2 { margin-bottom: 14px; }
.intro__text p  { margin-bottom: 20px; }

/* ── Gallery Preview ── */
.gallery-preview { background: var(--white); }
.gallery-preview__header { text-align: center; margin-bottom: 56px; }
.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.g-item { overflow: hidden; cursor: pointer; position: relative; border-radius: var(--radius); }
.g-item img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }
.gallery-preview__footer { text-align: center; margin-top: 48px; }

/* ── Location Teaser ── */
.location-teaser {
  background: #f0ebe2; padding: 100px 0;
  position: relative; overflow: hidden;
}
.location-teaser::before { display: none; }
.location-teaser__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.location-teaser__text h2 { color: var(--text-dark); font-style: italic; }
.location-teaser__text .eyebrow { color: var(--sunset); }
.location-teaser__text p { color: var(--text-mid); margin-bottom: 20px; }
.location-teaser__text .rule { background: var(--sunset); }
.location-teaser__facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.location-fact {
  padding: 24px 28px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.location-fact__title {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sunset); margin-bottom: 8px;
}
.location-fact__desc { font-size: 0.95rem; color: var(--text-mid); }

/* ── Inquiry CTA ── */
.inquiry-banner {
  background: var(--white); padding: 90px 0; text-align: center;
  border-top: 1px solid var(--border);
}
.inquiry-banner h2 { margin-bottom: 14px; font-style: italic; }
.inquiry-banner p  { max-width: 520px; margin: 0 auto 36px; }
.inquiry-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: #2a5f84; padding: 36px 0 20px; }
.footer .container { position: relative; z-index: 2; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 16px;
}
.footer__brand-name {
  font-family: var(--serif); font-size: 1.4rem; color: var(--cream);
  font-weight: 300; margin-bottom: 14px;
}
.footer__brand-name span { font-style: italic; color: var(--sunset); }
.footer__brand-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  max-width: 280px; line-height: 1.8;
}
.footer__col-title {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sunset); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 12px;
}
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__social { display: flex; gap: 20px; }
.footer__social a {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; transition: color 0.3s;
}
.footer__social a:hover { color: var(--white); }

/* ── Page Hero (interior pages) ── */
.page-hero {
  height: 52vh; min-height: 380px;
  position: relative; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--text-dark);
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,18,10,0.72) 0%, rgba(30,18,10,0.18) 60%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 0 48px 56px;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.page-hero__content h1 { color: var(--white); font-style: italic; }
.page-hero__content .eyebrow { color: var(--sand); }

/* ── Property Page ── */
.property-overview { background: var(--white); }
.property-overview__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.property-overview__sticky { position: sticky; top: calc(var(--nav-h) + 32px); }
.property-image-stack { display: flex; flex-direction: column; gap: 12px; }
.img-main { aspect-ratio: 3/2; overflow: hidden; border-radius: var(--radius); }
.img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.img-row > div { aspect-ratio: 3/2; overflow: hidden; border-radius: var(--radius); }

.property-details__section { margin-bottom: 48px; }
.property-details__section h3 { margin-bottom: 16px; }
.amenities-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 24px; margin-top: 20px;
}
.amenity-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid);
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.amenity-item .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--pacific);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.6rem; color: var(--white);
}
.rate-card {
  background: var(--ivory); border: 1px solid var(--border);
  padding: 32px 36px; margin-top: 32px;
  border-radius: var(--radius);
}
.rate-card__title {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sunset); margin-bottom: 20px;
}
.rate-row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.rate-row:last-of-type { border-bottom: none; }
.rate-row__label { color: var(--text-mid); }
.rate-row__value { color: var(--text-dark); font-weight: 500; }

/* ── Gallery Page ── */
.gallery-page { background: var(--white); }
.gallery-filter {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  margin: 0 auto 52px; border: 1px solid var(--border); width: fit-content;
}
.filter-btn {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 12px 24px; color: var(--text-mid);
  border-right: 1px solid var(--border);
  transition: all 0.3s; cursor: pointer;
  background: none; border-top: none; border-bottom: none; border-left: none;
}
.filter-btn:last-child { border-right: none; }
.filter-btn.active, .filter-btn:hover { background: var(--mahogany); color: var(--white); }
.gallery-masonry { columns: 3; column-gap: 12px; }
.g-photo {
  break-inside: avoid; margin-bottom: 12px;
  overflow: hidden; cursor: pointer; position: relative;
  border-radius: var(--radius);
}
.g-photo img { width: 100%; height: auto; transition: transform 0.5s ease; }
.g-photo:hover img { transform: scale(1.03); }
.g-photo__overlay {
  position: absolute; inset: 0; background: rgba(30,18,10,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.g-photo:hover .g-photo__overlay { background: rgba(30,18,10,0.28); }
.g-photo__expand { color: var(--white); font-size: 1.5rem; opacity: 0; transition: opacity 0.3s; }
.g-photo:hover .g-photo__expand { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(20,12,6,0.95);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 88vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 28px; right: 36px;
  color: rgba(255,255,255,0.7); font-size: 2rem;
  cursor: pointer; transition: color 0.3s;
}
.lightbox__close:hover { color: var(--white); }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.6); font-size: 2.5rem;
  cursor: pointer; padding: 12px; transition: color 0.3s; user-select: none;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover, .lightbox__next:hover { color: var(--white); }

/* ── Location Page ── */
.location-intro { background: var(--white); }
.location-intro__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: stretch;
}
.map-embed { border: none; width: 100%; min-height: 500px; aspect-ratio: auto; height: 100%; }
.location-highlights { background: var(--ivory); }
.location-highlights__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.location-card {
  padding: 36px 32px; background: var(--white);
  border-bottom: 3px solid var(--pacific);
  border-radius: var(--radius);
}
.location-card__icon { font-size: 2rem; margin-bottom: 16px; }
.location-card h4 { margin-bottom: 10px; }

/* ── Inquire Page ── */
.inquire-page { background: var(--white); }
.inquire-page__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.inquire-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.inquire-sidebar__image { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 36px; border-radius: var(--radius); }
.inquire-sidebar__detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.inquire-sidebar__detail:last-child { border-bottom: none; margin-bottom: 0; }
.inquire-sidebar__detail .icon { font-size: 1.2rem; margin-top: 2px; }
.inquire-sidebar__detail h5 {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sunset); margin-bottom: 4px;
}
.inquire-sidebar__detail p { font-size: 0.9rem; }

/* Forms */
.form-group { margin-bottom: 28px; }
.form-label {
  display: block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 300;
  color: var(--text-dark); background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s, box-shadow 0.3s; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--pacific);
  box-shadow: 0 0 0 3px rgba(58,124,165,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-section-title {
  font-family: var(--serif); font-size: 1.8rem;
  font-weight: 400; color: var(--sunset);
  margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.form-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.form-submit-note { font-size: 0.82rem; color: var(--text-light); margin-top: 16px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 48px 32px;
  background: rgba(58,124,165,0.06); border: 1px solid rgba(58,124,165,0.2);
}
.form-success.visible { display: block; }
.form-success h3 { color: var(--pacific); margin-bottom: 12px; }

/* ── FAQ Page ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-family: var(--serif);
  font-size: 1.2rem; font-weight: 400; color: var(--text-dark);
  cursor: pointer; text-align: left; gap: 20px;
}
.faq-question .icon { font-size: 1.4rem; color: var(--sunset); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 24px; font-size: 0.96rem; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 0.15; }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav { padding: 0 32px; }
  .intro__inner, .property-overview__inner,
  .location-intro__inner, .inquire-page__inner { grid-template-columns: 1fr; gap: 48px; }
  .intro__image-accent { display: none; }
  .property-overview__sticky, .inquire-sidebar { position: static; }
  .location-teaser__inner { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .location-highlights__grid { grid-template-columns: 1fr 1fr; }
  .highlights__grid { grid-template-columns: repeat(3, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  h1 { font-size: 2.4rem; } h2 { font-size: 1.9rem; }
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 72px 0; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-preview__grid .g-item--tall { grid-row: span 1; }
  .gallery-preview__grid .g-item--wide { grid-column: span 2; }
  .gallery-masonry { columns: 2; }
  .location-highlights__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero__content { padding: 0 24px 40px; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .gallery-preview__grid { grid-template-columns: 1fr; }
  .gallery-preview__grid .g-item--wide { grid-column: span 1; }
  .hero__actions { flex-direction: column; align-items: center; }
  .highlights__grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 20px 0; }
  .highlight-item:last-child { border-bottom: none; }
}

/* ── Language Toggle ── */
.lang-toggle {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  margin-left: 16px; flex-shrink: 0;
}
.lang-toggle span {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; cursor: pointer;
  color: var(--text-light);
  transition: all 0.25s;
  border-right: 1px solid var(--border);
  line-height: 1;
  display: flex; align-items: center; height: 26px;
}
.lang-toggle span:last-child { border-right: none; }
.lang-toggle span.active {
  background: var(--sunset);
  color: var(--white);
  border-color: var(--sunset);
}
.lang-toggle span:hover:not(.active) {
  background: var(--ivory);
  color: var(--text-dark);
}

/* ── Experience List ── */
.experience-list {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 10px;
  padding-left: 0; list-style: none;
}
.experience-list li {
  font-size: 0.95rem; color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.experience-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--sunset);
  font-weight: 400;
}
