:root {
  /* Portuguese coastal palette — azulejo + terracotta + bone */
  --bone: #f4ede0;             /* limewashed wall */
  --bone-deep: #e8dec9;
  --bone-warm: #efe4cd;
  --azulejo: #2c5680;          /* the canonical Portuguese tile blue */
  --azulejo-deep: #1d3e5f;
  --azulejo-pale: #6b8caa;
  --azulejo-tile: #4a7caa;     /* lighter accent */
  --terracotta: #b25a3c;       /* Lisbon rooftops */
  --terracotta-deep: #8a3c24;
  --rust: #6e2818;
  --ochre: #c8964c;            /* brass / sun-bleached gold */
  --brass: #a37432;
  --ink: #1a1612;              /* warm-black */
  --ink-soft: #2e2820;
  --moss: #5b6b48;
  --sand: #d4bd96;

  --line: rgba(26, 22, 18, 0.13);
  --line-strong: rgba(26, 22, 18, 0.30);

  --display: "Cormorant Garamond", "Times New Roman", serif;
  --deco: "Italiana", "Cormorant Garamond", serif;
  --body: "Manrope", -apple-system, sans-serif;
  --mono: "DM Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ochre); color: var(--ink); }

/* Reusable */
.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.deco-eyebrow {
  font-family: var(--deco);
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

/* ============================================
   ART DECO ORNAMENTS — reusable SVG-style decorations
   ============================================ */
.deco-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 10px 0;
}
.deco-rule::before, .deco-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  max-width: 80px;
}
.deco-rule .diamond {
  width: 8px; height: 8px;
  background: currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
}

.deco-fan {
  width: 56px;
  height: 28px;
  display: inline-block;
  position: relative;
}
.deco-fan svg { width: 100%; height: 100%; }

.deco-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}
.deco-corner.tl { top: 16px; left: 16px; border-top: 1px solid currentColor; border-left: 1px solid currentColor; }
.deco-corner.tr { top: 16px; right: 16px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; }
.deco-corner.bl { bottom: 16px; left: 16px; border-bottom: 1px solid currentColor; border-left: 1px solid currentColor; }
.deco-corner.br { bottom: 16px; right: 16px; border-bottom: 1px solid currentColor; border-right: 1px solid currentColor; }

/* ============================================
   ANNOUNCEMENT
   ============================================ */
.announce {
  background: var(--ink);
  color: var(--bone);
  padding: 11px 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--ochre);
}
.announce span.dot { display: inline-block; width: 5px; height: 5px; background: var(--ochre); transform: rotate(45deg); margin: 0 16px; vertical-align: middle; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 37px;
  left: 0; right: 0;
  z-index: 100;
  padding: 22px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(244, 237, 224, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ochre);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav.hero-state { color: var(--bone); }
.nav.hero-state.scrolled { color: var(--ink); }

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-mark {
  font-family: var(--deco);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.9;
}
.nav-brand-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
  list-style: none;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--ochre);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.lang {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  text-transform: uppercase;
  padding: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--bone);
  padding: 14px 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
  position: relative;
}
.btn:hover { background: var(--ochre); color: var(--ink); }
.btn::before, .btn::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border: 1px solid currentColor;
  opacity: 0.5;
}
.btn::before { top: 4px; left: 4px; border-right: none; border-bottom: none; }
.btn::after { bottom: 4px; right: 4px; border-left: none; border-top: none; }

@media (max-width: 880px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-brand-mark { display: none; }
  .nav-brand-name { font-size: 19px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
}

/* The Ken-Burns hero — a still image with subtle slow zoom + parallax for cinematic feel.
   Place a video file at video-loop.mp4 in same directory to use a real video.
   This still-image fallback is what's rendering in the artifact preview. */
.hero-bg {
  position: absolute;
  inset: -8% -8% -8% -8%;
  background-image: url("/images/hero-villa-exterior.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: kenburns 28s ease-in-out infinite alternate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.hero-video + .hero-bg { z-index: 1; }

@keyframes kenburns {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.08) translate(-2%,-1%); }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,22,18,0.50) 0%, rgba(26,22,18,0.05) 30%, rgba(26,22,18,0.10) 60%, rgba(26,22,18,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1500px;
  margin: 0 auto;
  padding: 110px 48px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.hero-top { display: flex; flex-direction: column; justify-content: center; }
.hero-bottom { display: flex; flex-direction: column; gap: 28px; }

.hero-coords {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeIn 1.2s 0.2s ease both;
}
.hero-coords .ornament {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-coords .ornament::before, .hero-coords .ornament::after {
  content: '';
  width: 18px; height: 1px;
  background: var(--ochre);
}
.hero-coords .ornament .dia {
  width: 5px; height: 5px;
  background: var(--ochre);
  transform: rotate(45deg);
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 9.4vw, 152px);
  line-height: 0.93;
  letter-spacing: -0.02em;
  max-width: 1300px;
  margin-bottom: 36px;
}
.hero-title em { font-style: italic; color: var(--bone); }

.hero-title-line { display: block; overflow: hidden; }
.hero-title-line span {
  display: inline-block;
  animation: rise 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-title-line:nth-child(1) span { animation-delay: 0.35s; }
.hero-title-line:nth-child(2) span { animation-delay: 0.5s; }
.hero-title-line:nth-child(3) span { animation-delay: 0.65s; }

.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  max-width: 560px;
  opacity: 0.90;
  font-weight: 300;
  animation: fadeIn 1.2s 0.95s ease both;
}

/* HERO BOOK — art deco paneled */
.book {
  display: flex;
  align-items: stretch;
  background: var(--bone);
  color: var(--ink);
  max-width: 780px;
  overflow: hidden;
  animation: fadeIn 1.3s 1.15s ease both;
  position: relative;
  border: 1px solid var(--ochre);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
/* Deco corner ornaments */
.book::before, .book::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--ochre);
}
.book::before { top: 4px; left: 4px; border-right: none; border-bottom: none; }
.book::after { bottom: 4px; right: 4px; border-left: none; border-top: none; }

.book-field {
  flex: 1;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}
.book-field:hover { background: var(--bone-deep); }
.book-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  color: var(--azulejo-deep);
}
.book-value {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.book-value input, .book-value select {
  border: none;
  background: transparent;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  padding: 0;
  width: 100%;
  cursor: pointer;
  outline: none;
}
.book-submit {
  background: var(--ochre);
  color: var(--ink);
  border: none;
  padding: 0 38px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-submit:hover { background: var(--azulejo-deep); color: var(--bone); }

.hero-foot {
  position: relative;
  z-index: 5;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px 32px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
}
.hero-foot-rating {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 4px;
}
.hero-foot-rating .star { color: var(--ochre); margin-right: 6px; font-style: normal; }
.hero-foot-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

@keyframes rise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 880px) {
  .hero-content { padding: 110px 20px 36px; }
  .book { flex-wrap: wrap; }
  .book-field { flex: 1 1 50%; border-bottom: 1px solid var(--line); }
  .book-submit { flex: 1 1 100%; padding: 18px; justify-content: center; }
  .hero-foot { right: 20px; bottom: 28px; }
}

/* ============================================
   AZULEJO TILE STRIP — Portuguese tile pattern divider
   ============================================ */
.tile-strip {
  background: var(--azulejo-deep);
  height: 56px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ochre);
  border-bottom: 1px solid var(--ochre);
}
.tile-strip svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   PITCH
   ============================================ */
.pitch {
  padding: 140px 48px 130px;
  max-width: 1500px;
  margin: 0 auto;
}
.pitch-head {
  text-align: center;
  margin-bottom: 100px;
}
.pitch-head .deco-eyebrow {
  color: var(--terracotta);
  margin-bottom: 28px;
  display: block;
}
.pitch-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin: 0 auto;
}
.pitch-h em { font-style: italic; color: var(--terracotta); }

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.pitch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding-top: 48px;
  position: relative;
}
.pitch-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border: 1px solid var(--ochre);
}
.pitch-item::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--ochre);
  z-index: -1;
}
.pitch-num {
  font-family: var(--deco);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.pitch-h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pitch-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 360px;
}

@media (max-width: 880px) {
  .pitch { padding: 80px 20px 70px; }
  .pitch-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 0 28px 130px;
  background: var(--bone);
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1500px;
  margin: 0 auto 36px;
  padding: 0 12px;
}
.gallery-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 8px;
  max-width: 1500px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--bone-deep) 0%, var(--ochre) 100%);
  cursor: pointer;
  min-height: 200px;
}
.gallery-item::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.4;
  text-align: center;
  padding: 20px;
  z-index: 0;
  pointer-events: none;
}
.gallery-item img {
  position: relative;
  z-index: 1;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: var(--bone-deep);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item.g1 { grid-column: 1 / 7;  grid-row: 1 / 5; }
.gallery-item.g2 { grid-column: 7 / 13; grid-row: 1 / 4; }
.gallery-item.g3 { grid-column: 7 / 10; grid-row: 4 / 7; }
.gallery-item.g4 { grid-column: 10 / 13; grid-row: 4 / 7; }
.gallery-item.g5 { grid-column: 1 / 5; grid-row: 5 / 8; }
.gallery-item.g6 { grid-column: 5 / 9; grid-row: 5 / 8; }
.gallery-item.g7 { grid-column: 9 / 13; grid-row: 7 / 10; }
.gallery-item.g8 { grid-column: 1 / 9; grid-row: 8 / 10; }

.gallery-cta { text-align: center; margin-top: 56px; }
.gallery-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 6px;
  font-weight: 500;
  color: var(--azulejo-deep);
  transition: gap 0.3s ease;
}
.gallery-cta a:hover { gap: 22px; color: var(--terracotta); }

@media (max-width: 880px) {
  .gallery { padding: 0 12px 70px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-item.g1 { grid-column: 1 / 3 !important; grid-row: span 2 !important; }
}

/* ============================================
   AVAILABILITY — azulejo blue section
   ============================================ */
.avail {
  background: var(--azulejo-deep);
  color: var(--bone);
  padding: 140px 48px;
  position: relative;
}
.avail::before, .avail::after {
  content: '';
  position: absolute;
  height: 1px;
  background: var(--ochre);
  left: 48px;
  right: 48px;
}
.avail::before { top: 32px; }
.avail::after { bottom: 32px; }

.avail-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: start;
}
.avail-left .deco-eyebrow {
  color: var(--ochre);
  margin-bottom: 28px;
  display: block;
}
.avail-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.avail-h em { font-style: italic; color: var(--ochre); }

.avail-body {
  font-size: 16.5px;
  line-height: 1.65;
  opacity: 0.86;
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
}

.avail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.avail-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 14.5px;
  opacity: 0.92;
  padding-left: 14px;
  position: relative;
}
.avail-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--ochre);
  transform: rotate(45deg);
}

/* Calendar */
.cal {
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid var(--ochre);
  padding: 36px;
  position: relative;
}
.cal::before, .cal::after, .cal .corner-bl, .cal .corner-br {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--ochre);
  border-style: solid;
  border-width: 0;
}
.cal::before { top: -1px; left: -1px; border-top-width: 3px; border-left-width: 3px; }
.cal::after { top: -1px; right: -1px; border-top-width: 3px; border-right-width: 3px; }
.cal .corner-bl { bottom: -1px; left: -1px; border-bottom-width: 3px; border-left-width: 3px; }
.cal .corner-br { bottom: -1px; right: -1px; border-bottom-width: 3px; border-right-width: 3px; }

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.cal-month {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.cal-month em { font-style: italic; color: var(--ochre); }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 38px; height: 38px;
  border: 1px solid rgba(244, 237, 224, 0.25);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
}
.cal-nav button:hover { background: var(--ochre); color: var(--ink); border-color: var(--ochre); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 24px;
}
.cal-dow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.55;
  padding: 8px 0;
  font-weight: 400;
  color: var(--ochre);
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  font-family: var(--body);
}
.cal-day:hover:not(.disabled):not(.booked) {
  background: rgba(200, 150, 76, 0.18);
}
.cal-day.disabled { opacity: 0.2; cursor: not-allowed; }
.cal-day.booked {
  opacity: 0.35;
  cursor: not-allowed;
  position: relative;
}
.cal-day.booked::after {
  content: '';
  position: absolute;
  top: 50%; left: 22%; right: 22%;
  height: 1px;
  background: var(--bone);
}
.cal-day.selected { background: var(--ochre); color: var(--ink); font-weight: 500; }
.cal-day.in-range { background: rgba(200, 150, 76, 0.22); }
.cal-day-price {
  font-family: var(--mono);
  font-size: 9px;
  opacity: 0.6;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.cal-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 237, 224, 0.18);
  gap: 20px;
}
.cal-summary-text {
  font-size: 12px;
  opacity: 0.75;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cal-summary-price {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cal-summary-price .compare {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.6;
  text-decoration: line-through;
  margin-top: 4px;
  text-transform: uppercase;
}
.cal-summary-price .save {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ochre);
  margin-top: 4px;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .avail { padding: 80px 20px; }
  .avail-inner { grid-template-columns: 1fr; gap: 48px; }
  .cal { padding: 22px; }
}

/* ============================================
   COMPARISON
   ============================================ */
.compare-section {
  padding: 130px 48px;
  background: var(--bone);
}
.compare-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}
.compare-head .deco-eyebrow { color: var(--terracotta); margin-bottom: 28px; display: block; }
.compare-h {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.compare-h em { font-style: italic; color: var(--terracotta); }

.compare-table {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--ochre);
  position: relative;
}
.compare-table::before, .compare-table::after,
.compare-table .corner-bl, .compare-table .corner-br {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--terracotta);
  border-style: solid;
  border-width: 0;
}
.compare-table::before { top: -7px; left: -7px; border-top-width: 1px; border-left-width: 1px; }
.compare-table::after { top: -7px; right: -7px; border-top-width: 1px; border-right-width: 1px; }
.compare-table .corner-bl { bottom: -7px; left: -7px; border-bottom-width: 1px; border-left-width: 1px; }
.compare-table .corner-br { bottom: -7px; right: -7px; border-bottom-width: 1px; border-right-width: 1px; }

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  align-items: center;
  font-size: 14px;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  border-bottom: 1px solid var(--ochre);
  padding: 18px 0;
  background: var(--bone-warm);
}
.compare-row.head > div {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}
.compare-row.head .col-direct {
  background: var(--azulejo-deep);
  color: var(--bone);
  padding: 16px 18px;
  text-align: center;
  opacity: 1;
  position: relative;
  margin: -4px 4px;
}
.compare-row.head .col-direct::before {
  content: '◆';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  color: var(--ochre);
  font-size: 14px;
}

.col { padding: 0 22px; }
.col-feature { padding-left: 22px; font-weight: 500; font-size: 14.5px; font-family: var(--display); font-size: 17px; font-style: italic; }
.col-direct {
  text-align: center;
  background: rgba(178, 90, 60, 0.06);
  padding: 16px 18px;
  margin: -4px 4px;
  font-weight: 500;
  font-family: var(--display);
  font-size: 18px;
  color: var(--terracotta-deep);
}
.col-direct.head-col { font-family: var(--mono); font-size: 11px; font-weight: 500; }
.col-other { text-align: center; color: var(--ink-soft); font-size: 13.5px; }

@media (max-width: 880px) {
  .compare-section { padding: 70px 20px; }
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; font-size: 12px; }
  .col { padding: 0 8px; }
  .col-direct { font-size: 14px; }
  .col-feature { font-size: 13px; padding-left: 12px; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 130px 48px;
  background: var(--bone-deep);
}
.reviews-head {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 64px;
}
.reviews-head .deco-eyebrow { color: var(--terracotta); margin-bottom: 24px; display: block; }
.reviews-h {
  font-family: var(--display);
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 36px;
}
.reviews-h em { font-style: italic; }

.reviews-stat {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 32px;
  border: 1px solid var(--ochre);
  position: relative;
}
.reviews-stat::before, .reviews-stat::after {
  content: '◆';
  position: absolute;
  color: var(--ochre);
  font-size: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.reviews-stat::before { left: -5px; background: var(--bone-deep); padding: 0 1px; }
.reviews-stat::after { right: -5px; background: var(--bone-deep); padding: 0 1px; }

.reviews-stat-num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}
.reviews-stat-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
}
.reviews-stat-meta div + div { opacity: 0.6; margin-top: 4px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto;
}

.review {
  background: var(--bone);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.4s ease;
  border-top: 2px solid var(--ochre);
}
.review:hover {
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}
.review-stars span {
  font-size: 9px;
  color: var(--terracotta);
}
.review-text {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  flex: 1;
  letter-spacing: -0.005em;
  font-style: italic;
}
.review-text::before {
  content: '"';
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  line-height: 0;
  position: relative;
  top: 6px;
  margin-right: 4px;
  color: var(--ochre);
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-author {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
}
.review-author-meta {
  font-size: 11px;
  opacity: 0.55;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.review-platform {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 9px;
  font-weight: 500;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
}

.reviews-cta { text-align: center; margin-top: 56px; }
.reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 6px;
  font-weight: 500;
  color: var(--azulejo-deep);
  transition: gap 0.3s ease;
}
.reviews-cta a:hover { gap: 22px; color: var(--terracotta); }

@media (max-width: 880px) {
  .reviews { padding: 70px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   AREA — magazine spread
   ============================================ */





.area-content .deco-eyebrow { color: var(--terracotta); margin-bottom: 28px; display: block; }

.area-h em { font-style: italic; color: var(--terracotta); }

.area-p em { font-style: italic; color: var(--ink); font-family: var(--display); font-size: 17px; }


.area-link:hover { gap: 22px; color: var(--terracotta); }

@media (max-width: 880px) {
  
  
  
}

/* ============================================
   CONCIERGE — dark with deco frame
   ============================================ */
.concierge {
  background: var(--ink);
  color: var(--bone);
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
}
.concierge::before {
  content: '';
  position: absolute;
  inset: 32px;
  border: 1px solid var(--ochre);
  opacity: 0.4;
  pointer-events: none;
}
.concierge::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 150, 76, 0.10), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(178, 90, 60, 0.10), transparent 50%);
  pointer-events: none;
}
.concierge-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.concierge-left .deco-eyebrow { color: var(--ochre); margin-bottom: 28px; display: block; }
.concierge-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.concierge-h em { font-style: italic; color: var(--ochre); }
.concierge-body {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.86;
  margin-bottom: 22px;
  max-width: 480px;
  font-weight: 300;
}
.concierge-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 6px;
  font-weight: 500;
  color: var(--ochre);
  transition: gap 0.3s ease;
}
.concierge-link:hover { gap: 22px; }

.chat {
  background: rgba(244, 237, 224, 0.03);
  border: 1px solid var(--ochre);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  position: relative;
}
.chat::before, .chat::after, .chat .ch-bl, .chat .ch-br {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--ochre);
}
.chat::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.chat::after { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.chat .ch-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.chat .ch-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.15);
  margin-bottom: 4px;
}
.chat-head-title {
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
}
.chat-head-status {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
}
.chat-head-status::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--ochre);
  border-radius: 50%;
}
.chat-bubble {
  padding: 14px 18px;
  max-width: 88%;
  line-height: 1.5;
  animation: fadeIn 0.5s ease both;
}
.chat-user {
  background: rgba(244, 237, 224, 0.10);
  align-self: flex-end;
  border-radius: 12px 12px 2px 12px;
}
.chat-bot {
  background: var(--ochre);
  color: var(--ink);
  align-self: flex-start;
  border-radius: 12px 12px 12px 2px;
  font-weight: 500;
}
.chat-typing {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
  background: rgba(244, 237, 224, 0.06);
  border-radius: 12px 12px 12px 2px;
  align-self: flex-start;
  width: fit-content;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--bone);
  border-radius: 50%;
  opacity: 0.5;
  animation: typing 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
  40% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 880px) {
  .concierge { padding: 80px 20px; }
  .concierge-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   ADD-ONS
   ============================================ */
.addons {
  padding: 130px 48px;
  background: var(--bone);
}
.addons-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}
.addons-head .deco-eyebrow { color: var(--terracotta); margin-bottom: 24px; display: block; }
.addons-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.addons-h em { font-style: italic; color: var(--terracotta); }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
}

.addon {
  background: var(--bone-deep);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid transparent;
}
.addon:hover { transform: translateY(-6px); border-color: var(--ochre); }
.addon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.addon:hover img { transform: scale(1.05); }

.addon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 30%, rgba(26,22,18,0.85) 100%);
  pointer-events: none;
}
.addon-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: var(--bone);
  z-index: 2;
}
.addon-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 9px;
  background: var(--ochre);
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 500;
}
.addon-name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  font-style: italic;
}
.addon-desc {
  font-size: 13.5px;
  opacity: 0.88;
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 280px;
  font-weight: 300;
}
.addon-price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  color: var(--ochre);
}

@media (max-width: 880px) {
  .addons { padding: 70px 20px; }
  .addons-grid { grid-template-columns: 1fr; gap: 14px; }
  .addon { aspect-ratio: 16 / 11; }
}

/* ============================================
   HOST
   ============================================ */
.host {
  padding: 130px 48px;
  background: var(--bone-deep);
}
.host-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.host-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid var(--ochre);
  background-image: url("/images/host-atmospheric-drone.jpg");
}
.host-img::before, .host-img::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--terracotta);
}
.host-img::before { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.host-img::after { bottom: -10px; right: -10px; border-left: none; border-top: none; }

.host-content .deco-eyebrow { color: var(--terracotta); margin-bottom: 28px; display: block; }
.host-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.host-h em { font-style: italic; color: var(--terracotta); }
.host-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 540px;
  font-weight: 300;
}
.host-sig {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--terracotta);
  margin-top: 24px;
}

@media (max-width: 880px) {
  .host { padding: 80px 20px; }
  .host-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 130px 48px;
  background: var(--bone);
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 100px;
  align-items: start;
}
.faq-head .deco-eyebrow { color: var(--terracotta); margin-bottom: 24px; display: block; }
.faq-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  position: sticky;
  top: 120px;
}
.faq-h em { font-style: italic; color: var(--terracotta); }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:first-child {
  border-top: 1px solid var(--ochre);
  padding-top: 28px;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-toggle {
  width: 28px; height: 28px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--ochre);
  transform: rotate(45deg);
  transition: background 0.3s ease;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 11px; height: 1px; transform: translate(-50%, -50%) rotate(-45deg); }
.faq-toggle::after { width: 1px; height: 11px; transition: transform 0.3s ease; transform: translate(-50%, -50%) rotate(-45deg); }
.faq-item.open .faq-toggle { background: var(--ochre); }
.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(-45deg) scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin-top 0.4s ease, opacity 0.4s ease;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  opacity: 0;
  font-weight: 300;
}
.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 18px;
  opacity: 1;
}

@media (max-width: 880px) {
  .faq { padding: 70px 20px; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-h { position: static; }
  .faq-q { font-size: 18px; }
}

/* ============================================
   FINAL
   ============================================ */
.final {
  position: relative;
  height: 90vh;
  min-height: 640px;
  background-image: url("/images/final-cta-exterior.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bone);
  padding: 0 24px;
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,62,95,0.55), rgba(26,22,18,0.85));
}
.final::after {
  content: '';
  position: absolute;
  inset: 32px;
  border: 1px solid var(--ochre);
  opacity: 0.5;
  pointer-events: none;
}
.final-inner { position: relative; z-index: 2; max-width: 900px; }
.final-eyebrow {
  font-family: var(--deco);
  font-size: 14px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--ochre);
}
.final-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}
.final-h em { font-style: italic; color: var(--ochre); }
.final-sub {
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ochre);
  color: var(--ink);
  padding: 22px 44px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--mono);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.btn-large:hover { background: var(--bone); }
.btn-large::before, .btn-large::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border: 1px solid currentColor;
}
.btn-large::before { top: 4px; left: 4px; border-right: none; border-bottom: none; }
.btn-large::after { bottom: 4px; right: 4px; border-left: none; border-top: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 100px 48px 36px;
  border-top: 1px solid var(--ochre);
}
.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-brand-mark {
  font-family: var(--deco);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 12px;
}
.footer-brand-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.footer-brand-tag {
  font-size: 14.5px;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
  font-weight: 300;
}
.footer-stars {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-stars span { color: var(--ochre); }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--ochre);
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  opacity: 0.85;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--ochre); }

.footer-bottom {
  border-top: 1px solid rgba(244, 237, 224, 0.15);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.5;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .footer { padding: 60px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================
   STICKY
   ============================================ */
.sticky {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--ink);
  color: var(--bone);
  padding: 14px 14px 14px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 90;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
  max-width: calc(100% - 24px);
  border: 1px solid var(--ochre);
}
.sticky.show { transform: translateX(-50%) translateY(0); }
.sticky-text {
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-text .from {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  font-style: normal;
}
.sticky button {
  background: var(--ochre);
  color: var(--ink);
  border: none;
  padding: 12px 22px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}
.sticky button:hover { background: var(--bone); }

@media (max-width: 880px) {
  .sticky { left: 12px; right: 12px; transform: translateY(120px); padding: 12px 12px 12px 18px; }
  .sticky.show { transform: translateY(0); }
  .sticky-text { font-size: 14px; }
  .sticky-text .from { display: none; }
}

/* AREA SECTION - 3-card layout (v9) */
.area {
  padding: 130px 48px;
  background: var(--bone);
}
.area-head {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}
.area-head .deco-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--terracotta);
}
.area-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.area-h em {
  font-family: var(--deco);
  font-style: italic;
  color: var(--terracotta);
}
.area-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto;
}
.area-card {
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border: 1px solid rgba(26,22,18,0.08);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s;
}
.area-card:hover {
  transform: translateY(-6px);
  border-color: var(--ochre);
}
.area-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
  position: relative;
  border-bottom: 1px solid var(--ochre);
}
.area-card-meta {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(26,22,18,0.6);
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}
.area-card-body { padding: 36px 32px 40px; }
.area-card-distance {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.area-card-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.area-card-p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}
@media (max-width: 880px) {
  .area { padding: 70px 20px; }
  .area-head { margin-bottom: 40px; }
  .area-grid { grid-template-columns: 1fr; gap: 18px; }
}


/* PHONE FRAME (v9) — communicates "this lives on the guest's phone" */
.phone-frame {
  position: relative;
  width: 320px;
  height: 660px;
  margin: 0 auto;
  background: #0a0a0a;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.6),
    0 30px 60px -30px rgba(0,0,0,0.4),
    inset 0 0 0 2px rgba(255,255,255,0.06),
    inset 0 0 0 6px rgba(0,0,0,0.95);
  flex-shrink: 0;
}
.phone-side {
  position: absolute;
  width: 3px;
  background: #2a2a2a;
  border-radius: 2px;
}
.phone-side-left {
  left: -3px;
  top: 110px;
  height: 80px;
  border-radius: 2px 0 0 2px;
}
.phone-side-right {
  right: -3px;
  top: 130px;
  height: 110px;
  border-radius: 0 2px 2px 0;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  background: #1a1610;
  display: flex;
  flex-direction: column;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px 8px;
  color: white;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 5;
}
.phone-statusbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-time { font-variant-numeric: tabular-nums; }
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 18px;
  z-index: 4;
}
.phone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 4px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  z-index: 5;
}

/* Chat sized for phone screen — overrides original .chat sizing */
.phone-screen .chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1f1a14 0%, #1a1610 100%);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  width: 100%;
  overflow: hidden;
}
.phone-screen .chat-head {
  padding: 14px 18px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(200,150,76,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-screen .chat-head-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  font-family: var(--display);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-screen .chat-head-title {
  color: white;
  font-size: 13px;
  font-weight: 500;
}
.phone-screen .chat-head-status {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-screen .chat-head-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
  display: inline-block;
}
.phone-screen .chat-body {
  flex: 1;
  padding: 18px 14px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}
.phone-screen .chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.45;
  animation: fadeIn 0.5s ease both;
}
.phone-screen .chat-user {
  background: var(--azulejo-deep);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.phone-screen .chat-bot {
  background: rgba(244, 237, 224, 0.95);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.phone-screen .chat-bot strong {
  color: var(--terracotta);
  font-weight: 600;
}
.phone-screen .chat-typing {
  align-self: flex-start;
  background: rgba(244, 237, 224, 0.95);
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
}
.phone-screen .chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-soft);
  animation: typing-pulse 1.4s ease-in-out infinite;
}
.phone-screen .chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.phone-screen .chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-pulse {
  0%, 60%, 100% { opacity: 0.3; transform: scale(0.85); }
  30% { opacity: 1; transform: scale(1); }
}

/* Concierge layout — make sure the phone is centered in its column */
.concierge-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

@media (max-width: 880px) {
  .concierge-inner { grid-template-columns: 1fr; gap: 50px; }
  .phone-frame { width: 280px; height: 580px; padding: 10px; border-radius: 42px; }
  .phone-screen { border-radius: 32px; }
  .phone-notch { width: 88px; height: 24px; }
}


/* FOOTER BOTTOM (v9) — AL fine print + tidy 2-col layout */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 237, 224, 0.12);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: rgba(244, 237, 224, 0.55);
  text-transform: none;
}
.footer-bottom-left { line-height: 1.7; }
.footer-bottom-right a {
  color: rgba(244, 237, 224, 0.7);
  text-decoration: none;
  margin-left: 4px;
}
.footer-bottom-right a:hover { color: var(--ochre); }
.footer-fineprint {
  font-size: 9.5px;
  opacity: 0.7;
  letter-spacing: 0.06em;
}


/* STICKY (v9) — only appear after scrolling past hero */
.sticky {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* Calendar price summary message (v9) */
.save-direct {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================
   CONCIERGE — capability list + interactive demo (v14)
   ============================================ */
.concierge-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin: 28px 0 28px;
  padding: 0;
}
.concierge-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  font-weight: 300;
}
.concierge-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--ochre);
  transform: rotate(45deg);
}
.concierge-list li em {
  font-family: var(--display);
  font-style: italic;
  color: var(--ochre);
  font-weight: 400;
  font-size: 1.06em;
}

.concierge-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.concierge-try {
  width: 100%;
  max-width: 360px;
}
.concierge-try-label {
  font-family: var(--deco);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ochre);
  text-align: center;
  margin-bottom: 14px;
  opacity: 0.85;
}
.concierge-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.concierge-chip {
  background: rgba(244, 237, 224, 0.06);
  border: 1px solid rgba(200, 150, 76, 0.45);
  color: var(--bone);
  padding: 9px 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 999px;
  font-weight: 500;
}
.concierge-chip:hover {
  background: rgba(200, 150, 76, 0.18);
  border-color: var(--ochre);
}
.concierge-chip.is-active {
  background: var(--ochre);
  color: var(--ink);
  border-color: var(--ochre);
}

@media (max-width: 880px) {
  .concierge-list { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================
   HOST ASIDE — bread-van pullquote (v14)
   ============================================ */
.host-aside {
  margin: 90px auto 0;
  padding: 44px 28px;
  border-top: 1px solid var(--ochre);
  border-bottom: 1px solid var(--ochre);
  text-align: center;
  max-width: 760px;
  position: relative;
}
.host-aside::before, .host-aside::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--terracotta);
  transform: rotate(45deg);
  left: 50%;
  margin-left: -4px;
}
.host-aside::before { top: -5px; }
.host-aside::after  { bottom: -5px; }

.host-aside-mark {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
}
.host-aside-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 27px;
  line-height: 1.42;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 auto;
  max-width: 620px;
  border: none;
  padding: 0;
}
.host-aside-quote::before {
  content: '"';
  color: var(--ochre);
  font-size: 1.3em;
  margin-right: 0.06em;
  position: relative;
  top: 0.12em;
}
.host-aside-quote::after {
  content: '"';
  color: var(--ochre);
  font-size: 1.3em;
  margin-left: 0.06em;
  position: relative;
  top: 0.12em;
}

@media (max-width: 880px) {
  .host-aside { margin-top: 56px; padding: 32px 16px; }
  .host-aside-quote { font-size: 19px; }
}


/* ============================================
   PHASE 2 ADDITIONS
   ============================================ */

/* Section scroll offset so fixed nav doesn't cover section headers */
#villa, #area, #concierge, #reviews, #faq, #avail {
  scroll-margin-top: 80px;
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: inherit;
  margin-left: auto;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav.is-open {
    background: var(--bone);
    color: var(--ink);
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ochre);
  }
  .nav.is-open.hero-state { color: var(--ink); }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 18px 0 0;
    margin-top: 16px;
    border-top: 1px solid var(--line);
    list-style: none;
    text-align: center;
  }
  .nav.is-open .nav-links a {
    display: block;
    padding: 14px 0;
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    text-transform: none;
    letter-spacing: -0.005em;
  }
  .nav.is-open .nav-cta {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    align-items: stretch;
  }
  .nav.is-open .nav-cta .btn,
  .nav.is-open .nav-cta .lang {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* /book/ form-validation error message (used by book.njk JS) */
.book-error {
  display: none;
  background: var(--terracotta-deep);
  color: var(--bone);
  padding: 12px 18px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.book-error.is-visible { display: block; }
