@import url('./brand/colors_and_type.css');

/* Fix font path since CSS is in brand/, paths already resolve correctly */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--iv-white);
}

body {
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

button { font-family: inherit; }

/* =========================================================
   Reusable bits
   ========================================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eyebrow {
  font-family: var(--iv-font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--iv-sand-600);
}

.section-head h2 {
  font-family: var(--iv-font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
  color: var(--iv-ink-900);
}
.section-head h2 em {
  font-family: var(--iv-font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--iv-sand-600);
}

/* =========================================================
   Header
   ========================================================= */
.vv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: clamp(16px, 2vw, 22px) clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background 260ms var(--iv-ease), border-color 260ms, color 260ms;
  color: #fff;
  border-bottom: 1px solid transparent;
}
.vv-header.scrolled {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,5,24,0.06);
  color: var(--iv-ink-900);
}
.vv-header .logo {
  height: 42px;
  width: auto;
  display: block;
}
.vv-header nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 34px);
  align-items: center;
}
.vv-header nav a {
  font-family: var(--iv-font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: inherit;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 160ms, border-color 160ms;
  cursor: pointer;
}
.vv-header nav a:hover { color: var(--iv-sand-400); border-bottom-color: currentColor; }
.vv-header.scrolled nav a:hover { color: var(--iv-sand-600); }

.lang-switch {
  font-family: var(--iv-font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  padding: 6px 10px;
  cursor: pointer;
  opacity: 0.7;
}
.lang-switch:hover { opacity: 1; }

.mobile-lang-wrap {
  display: none;
  position: relative;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  font-family: var(--iv-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms var(--iv-ease), color 160ms var(--iv-ease), border-color 160ms;
  white-space: nowrap;
}
.btn-primary { background: var(--iv-sand-500); color: #fff; }
.btn-primary:hover { background: var(--iv-sand-600); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 15px 31px;
}
.btn-outline-light:hover { background: #fff; color: var(--iv-ink-900); border-color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--iv-ink-900);
  border: 1px solid var(--iv-ink-900);
  padding: 15px 31px;
}
.btn-outline:hover { background: var(--iv-ink-900); color: #fff; }
.btn-ink { background: var(--iv-ink-900); color: #fff; }
.btn-ink:hover { background: var(--iv-ink-800); }

/* =========================================================
   Hero
   ========================================================= */
.hero-scroll-container {
  position: relative;
  height: 260vh; /* shorter scroll; 138 frames scrub faster */
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.hero-video, .hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.hero-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: rgba(255,255,255,0.7);
  font-family: var(--iv-font-body);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 1;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,5,24,0.5) 0%, rgba(0,5,24,0.1) 18%, rgba(0,5,24,0) 45%, rgba(0,5,24,0.2) 72%, rgba(0,5,24,0.5) 100%),
    radial-gradient(ellipse 85% 65% at 18% 92%, rgba(0,5,24,0.4) 0%, rgba(0,5,24,0.15) 40%, rgba(0,5,24,0) 75%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  transition: opacity 180ms linear, transform 180ms linear;
  will-change: opacity, transform;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(20px,4vw,48px);
  color: #fff;
  max-width: 1280px;
  margin: 0 auto;
  left: 0; right: 0;
}
.hero-eyebrow {
  font-family: var(--iv-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #1A4E7A;
  text-shadow:
    0 0 24px rgba(0,5,24,0.95),
    0 0 8px  rgba(0,5,24,0.85),
    0 1px 3px rgba(0,0,0,0.9);
}
.hero-headline {
  font-family: var(--iv-font-display);
  font-weight: 500;
  font-size: clamp(44px, 7.2vw, 112px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  margin: 12px 0 0;
  max-width: 22ch;
  color: #fff;
  text-transform: capitalize;
  text-shadow:
    0 2px 24px rgba(0,5,24,0.6),
    0 0 60px rgba(0,5,24,0.35);
}
.hero-headline-br {
  display: block;
  height: 0;
}
.hero-headline em {
  font-family: var(--iv-font-editorial);
  font-style: italic;
  color: #fff;
  font-weight: 400;
  display: block;
  line-height: 0.9;
}
.hero-sub {
  display: none;
  font-family: var(--iv-font-body);
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
  margin-top: 28px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 18px rgba(0,5,24,0.6), 0 0 40px rgba(0,5,24,0.3);
}
.hero-features {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255,255,255,0.92);
  font-family: var(--iv-font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,5,24,0.7), 0 0 24px rgba(0,5,24,0.5);
}
.hero-features-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.hero-feature-sep {
  color: rgba(255,255,255,0.35);
  margin: 0 2px;
  line-height: 1;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  font-family: var(--iv-font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0));
  animation: scrollPulse 1.8s var(--iv-ease) infinite;
}
@keyframes scrollPulse {
  0% { opacity: 0.3; transform: scaleY(0.3); transform-origin: top; }
  100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* =========================================================
   Section 2 - The House (stats + map)
   ========================================================= */
.house-section {
  padding: clamp(80px, 12vw, 160px) 0 clamp(64px, 9vw, 128px);
  background: var(--iv-white);
}
.house-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.house-intro-right { padding-top: clamp(24px, 4vw, 48px); }
.house-headline {
  font-family: var(--iv-font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
  color: var(--iv-ink-900);
}
.house-headline em {
  font-family: var(--iv-font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--iv-sand-600);
}
.house-intro .lead {
  font-family: var(--iv-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--iv-ink-600);
  margin: 0;
  max-width: 52ch;
}
.house-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.house-cta {
  display: flex;
  justify-content: center;
  margin-top: 0;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 0;
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 0;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 0;
}
.section-cta.on-dark, .section-cta.on-sand { border-top: 0; }
.section-cta.on-dark { border-top-color: rgba(255,255,255,0.15); }
.section-cta.on-sand { border-top-color: var(--iv-sand-300); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-icon {
  width: 26px; height: 26px;
  color: var(--iv-sand-600);
}
.stat-label {
  font-family: var(--iv-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iv-ink-500);
}
.stat-value {
  font-family: var(--iv-font-display);
  font-size: 22px;
  color: var(--iv-ink-900);
  font-weight: 500;
  line-height: 1.2;
}

.map-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--iv-sand-100);
  overflow: hidden;
}
.map-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(0.95);
}
.map-caption {
  position: absolute;
  left: 24px; bottom: 24px;
  right: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.map-caption .place {
  font-family: var(--iv-font-display);
  font-size: 18px;
  color: var(--iv-ink-900);
}
.map-caption .place small {
  display: block;
  font-family: var(--iv-font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iv-ink-500);
  margin-top: 4px;
}
.map-caption a {
  font-family: var(--iv-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iv-sand-600);
  text-decoration: none;
  white-space: nowrap;
}

/* =========================================================
   Section 3 - Gallery
   ========================================================= */
.gallery-section {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--iv-sand-50);
}
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin-bottom: 40px;
}
.gallery-filter {
  font-family: var(--iv-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 18px;
  background: transparent;
  border: 1px solid var(--iv-sand-300);
  color: var(--iv-ink-700);
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.gallery-filter:hover {
  border-color: var(--iv-sand-500);
  color: var(--iv-ink-900);
}
.gallery-filter.active {
  background: var(--iv-ink-900);
  color: #fff;
  border-color: var(--iv-ink-900);
}
.gallery-filter .count {
  opacity: 0.6;
  margin-left: 6px;
  font-size: 10px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  background: var(--iv-sand-200);
  cursor: default;
  aspect-ratio: 4 / 5;
  margin: 0;
}
.gallery-tile img, .gallery-tile .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--iv-ease);
}
.gallery-tile:hover img { transform: scale(1.035); }
.gallery-tile .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  color: #fff;
  font-family: var(--iv-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0,5,24,0.6), rgba(0,5,24,0));
  opacity: 0;
  transition: opacity 260ms var(--iv-ease);
}
.gallery-tile:hover .caption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 5, 24, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbFade 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb-content {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lb-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.lb-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--iv-font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 0 8px;
}
.lb-caption .lb-counter {
  font-family: var(--iv-font-editorial);
  font-style: italic;
  color: var(--iv-sand-300);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms, border-color 160ms;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lb-close, .lb-prev, .lb-next { width: 40px; height: 40px; }
  .lb-close { top: 14px; right: 14px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--iv-sand-700);
  font-family: var(--iv-font-editorial);
  font-style: italic;
  font-size: 16px;
  background:
    repeating-linear-gradient(135deg, var(--iv-sand-100) 0, var(--iv-sand-100) 14px, var(--iv-sand-200) 14px, var(--iv-sand-200) 15px);
  text-align: center;
  padding: 16px;
}

/* Tile size variants - kept as no-ops; uniform 3:2 grid now controls tiles */
.tile-hero, .tile-wide, .tile-med, .tile-sm, .tile-half { grid-column: span 1; }

/* =========================================================
   Section 4 - The Area
   ========================================================= */
.area-section {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--iv-ink-900);
  color: #fff;
}
.area-section .eyebrow { color: var(--iv-sand-300); }
.area-section .section-head h2 { color: #fff; }
.area-section .section-head h2 em { color: var(--iv-sand-300); }

.area-head { margin-bottom: 64px; max-width: 860px; }
.area-head p {
  font-family: var(--iv-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-top: 24px;
}
.area-tabs-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.area-tabs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.area-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  color: rgba(255,255,255,0.72);
  font-family: var(--iv-font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-align: left;
  transition: color 200ms var(--iv-ease), padding-left 200ms var(--iv-ease);
}
.area-tab .arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 200ms, transform 200ms;
  color: var(--iv-sand-300);
}
.area-tab:hover { color: #fff; padding-left: 6px; }
.area-tab.active {
  color: #fff;
  padding-left: 10px;
}
.area-tab.active .arrow { opacity: 1; transform: translateX(0); }
.area-tab.active::before {
  content: "";
  position: absolute;
}

.area-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.area-panel-image {
  aspect-ratio: 4 / 5;
  background: var(--iv-ink-700);
  overflow: hidden;
}
.area-panel-content h3 {
  font-family: var(--iv-font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.area-panel-content h3 em {
  font-family: var(--iv-font-editorial);
  font-style: italic;
  color: var(--iv-sand-300);
  font-weight: 400;
}
.area-panel-content .kicker {
  font-family: var(--iv-font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--iv-sand-300);
  margin-bottom: 18px;
  display: block;
}
.area-panel-content p {
  font-family: var(--iv-font-body);
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
}
.area-panel-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.area-meta-item .label {
  font-family: var(--iv-font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.area-meta-item .value {
  font-family: var(--iv-font-display);
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

/* =========================================================
   Section 5 - Availability & Contact
   ========================================================= */
.book-section {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--iv-white);
}
.book-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.calendar {
  background: var(--iv-sand-50);
  padding: 32px;
  border: 1px solid var(--iv-sand-200);
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cal-title {
  font-family: var(--iv-font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--iv-ink-900);
}
.cal-nav {
  display: flex;
  gap: 8px;
}
.cal-nav button {
  width: 36px; height: 36px;
  border: 1px solid var(--iv-sand-300);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--iv-ink-700);
  transition: background 160ms, color 160ms;
}
.cal-nav button:hover { background: var(--iv-ink-900); color: #fff; border-color: var(--iv-ink-900); }

.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cal-month-label {
  font-family: var(--iv-font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--iv-ink-600);
  margin-bottom: 14px;
  text-align: center;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-dow {
  font-family: var(--iv-font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--iv-ink-400);
  text-align: center;
  padding: 6px 0;
}
.cal-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--iv-font-body);
  font-size: 13px;
  color: var(--iv-ink-800);
  position: relative;
  cursor: pointer;
  background: #fff;
}
.cal-day.empty { background: transparent; cursor: default; }
.cal-day.booked { background: var(--iv-sand-200); color: var(--iv-ink-400); cursor: not-allowed; text-decoration: line-through; }
.cal-day.available:hover { background: var(--iv-sand-100); }
.cal-day.past { color: var(--iv-ink-300); cursor: not-allowed; }
.cal-day.range { background: var(--iv-sand-400); color: #fff; }
.cal-day.range-end { background: var(--iv-ink-900); color: #fff; }

.cal-legend {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--iv-sand-200);
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--iv-font-body);
  font-size: 12px;
  color: var(--iv-ink-600);
}
.legend-swatch {
  width: 14px; height: 14px; display: inline-block;
}

.book-info h2 {
  font-family: var(--iv-font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--iv-ink-900);
  margin: 14px 0 0;
}
.book-info h2 em {
  font-family: var(--iv-font-editorial);
  font-style: italic;
  color: var(--iv-sand-600);
  font-weight: 400;
}
.book-info .pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 28px 0 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--iv-sand-200);
}
.price-value {
  font-family: var(--iv-font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--iv-ink-900);
}
.price-unit {
  font-family: var(--iv-font-body);
  font-size: 14px;
  color: var(--iv-ink-500);
}
.book-info .note {
  font-family: var(--iv-font-editorial);
  font-style: italic;
  font-size: 18px;
  color: var(--iv-ink-600);
  margin: 16px 0 32px;
  line-height: 1.5;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--iv-sand-200);
  color: var(--iv-ink-900);
  text-decoration: none;
  transition: color 160ms;
}
.contact-row:hover { color: var(--iv-sand-600); }
.contact-row:first-child { border-top: 1px solid var(--iv-sand-200); }
.contact-icon {
  width: 22px; height: 22px;
  color: var(--iv-sand-600);
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--iv-font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--iv-ink-500);
  width: 88px;
}
.contact-value {
  font-family: var(--iv-font-display);
  font-size: 18px;
  color: var(--iv-ink-900);
  flex: 1;
}

/* =========================================================
   Section 6 - Reviews
   ========================================================= */
.reviews-section {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--iv-sand-50);
}
.reviews-head { margin-bottom: 56px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.reviews-stats {
  display: flex;
  gap: 40px;
  align-items: baseline;
}
.stars-big {
  font-family: var(--iv-font-display);
  font-size: 42px;
  color: var(--iv-ink-900);
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars-big svg { color: var(--iv-sand-500); }
.rating-meta {
  font-family: var(--iv-font-body);
  font-size: 13px;
  color: var(--iv-ink-600);
  letter-spacing: 0.04em;
}
.reviews-grid {
  columns: 3 320px;
  column-gap: 20px;
}
.review-card {
  break-inside: avoid;
  background: #fff;
  padding: 32px;
  margin-bottom: 20px;
  border: 1px solid var(--iv-sand-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars {
  display: flex;
  gap: 3px;
  color: var(--iv-sand-500);
}
.review-text {
  font-family: var(--iv-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--iv-ink-800);
}
.review-text.long { font-size: 15px; line-height: 1.65; }
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.reviews-arrow {
  background: #fff;
  border: 1px solid var(--iv-sand-200);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--iv-ink-700);
  transition: background 0.2s, border-color 0.2s;
}
.reviews-arrow:hover:not(:disabled) {
  background: var(--iv-sand-50);
  border-color: var(--iv-sand-400);
}
.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.reviews-page {
  font-family: var(--iv-font-body);
  font-size: 13px;
  color: var(--iv-ink-500);
  letter-spacing: 0.06em;
  min-width: 40px;
  text-align: center;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--iv-sand-200);
  margin-top: auto;
}
.review-author {
  font-family: var(--iv-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--iv-ink-900);
  letter-spacing: 0.02em;
}
.review-author small {
  display: block;
  color: var(--iv-ink-500);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10px;
  margin-top: 2px;
}
.review-source {
  font-family: var(--iv-font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--iv-sand-600);
}

/* =========================================================
   Section 7 - FAQ
   ========================================================= */
.faq-section {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--iv-white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq-head h2 {
  font-family: var(--iv-font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--iv-ink-900);
  margin: 14px 0 0;
}
.faq-head h2 em {
  font-family: var(--iv-font-editorial);
  font-style: italic;
  color: var(--iv-sand-600);
  font-weight: 400;
}
.faq-head p {
  font-family: var(--iv-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--iv-ink-600);
  margin-top: 24px;
}
.faq-list {
  border-top: 1px solid var(--iv-sand-200);
}
.faq-item {
  border-bottom: 1px solid var(--iv-sand-200);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--iv-font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--iv-ink-900);
  line-height: 1.3;
  transition: color 200ms;
}
.faq-question:hover { color: var(--iv-sand-600); }
.faq-toggle {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--iv-sand-600);
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 260ms var(--iv-ease);
}
.faq-toggle::before { width: 14px; height: 1px; }
.faq-toggle::after  { width: 1px; height: 14px; }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--iv-ease);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 0 28px;
  max-width: 68ch;
  font-family: var(--iv-font-body);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--iv-ink-600);
}
.faq-answer-inner p + p { margin-top: 12px; }

/* =========================================================
   Footer
   ========================================================= */
.vv-footer {
  background: var(--iv-ink-900);
  color: #fff;
  padding: 96px clamp(20px,4vw,48px) 48px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.footer-brand .logo-big {
  height: 150px;
  margin-left: -10px;
}
.footer-brand .tag {
  font-family: var(--iv-font-editorial);
  font-style: italic;
  font-size: 20px;
  color: var(--iv-sand-200);
  line-height: 1.4;
  max-width: 320px;
  margin-top: 20px;
}
.footer-col-label {
  font-family: var(--iv-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--iv-sand-400);
  margin-bottom: 16px;
}
.footer-col a, .footer-col .addr {
  display: block;
  font-family: var(--iv-font-body);
  font-size: 14px;
  color: var(--iv-ink-200);
  text-decoration: none;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--iv-sand-300); }
.footer-col .addr { color: var(--iv-ink-400); margin-top: 8px; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 72px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--iv-ink-400);
  font-family: var(--iv-font-body);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: var(--iv-ink-400); text-decoration: none; margin-left: 24px; }
.footer-bottom a:hover { color: var(--iv-sand-300); }

/* =========================================================
   Tweaks panel
   ========================================================= */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 320px;
  background: #fff;
  border: 1px solid var(--iv-sand-300);
  box-shadow: var(--iv-shadow-lg);
  z-index: 200;
  font-family: var(--iv-font-body);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--iv-ease), transform 260ms var(--iv-ease);
}
.tweaks-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.tweaks-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--iv-sand-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks-head h3 {
  font-family: var(--iv-font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--iv-ink-900);
  margin: 0;
}
.tweaks-body { padding: 18px 22px; display: flex; flex-direction: column; gap: 18px; max-height: 60vh; overflow-y: auto; }
.tweak-row { display: flex; flex-direction: column; gap: 8px; }
.tweak-row label {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--iv-ink-500); font-weight: 500;
}
.tweak-row select, .tweak-row input[type="text"] {
  font-family: var(--iv-font-body);
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid var(--iv-sand-300);
  background: #fff;
  color: var(--iv-ink-900);
}
.tweak-swatches { display: flex; gap: 8px; }
.tweak-swatch {
  width: 32px; height: 32px;
  border: 2px solid var(--iv-sand-200);
  cursor: pointer;
}
.tweak-swatch.active { border-color: var(--iv-ink-900); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 760px) {
  .house-intro, .house-details, .area-tabs-wrap, .book-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .house-intro-right { padding-top: 0; }
  .area-panel { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vv-header nav { display: none; }
  .mobile-lang-wrap { display: flex; align-items: center; }
  .cal-months { grid-template-columns: 1fr; }
  .hero-content { padding-top: 80px; padding-bottom: 0; }
  .hero-headline-br { display: none; }
  .hero-headline em { display: inline; line-height: inherit; }
  .hero-features { display: none; }
  .hero-sub { display: block; font-size: 15px; margin-top: 16px; max-width: 100%; }
}
