/* =========================================================
   Tenerife Private Stays — Fresh Luxury restyle
   Bright, airy, sophisticated. Aman / Six Senses / Mr & Mrs Smith.
   Type does the heavy lifting. Bronze used like gold leaf — sparingly.
   ========================================================= */
:root {
  --bg:          #FBF9F4;   /* primary cream */
  --bg-alt:      #F4EFE6;   /* warm sand secondary */
  --bg-deep:     #EFE7D7;   /* faintly deeper sand (footers, etc.) */
  --ink:         #1F1A14;   /* rich near-black */
  --ink-soft:    #5A4F40;   /* warm grey-brown */
  --ink-faint:   #8A7E6B;   /* tertiary text / metadata */
  --accent:      #8B6F47;   /* warm bronze */
  --accent-deep: #5E4A2E;
  --sage:        #A8B098;
  --ocean:       #6B8E9C;
  --border:      #E5DDD0;   /* hairline */
  --border-soft: #EFE7D7;
  --shadow-soft: 0 30px 80px rgba(31, 26, 20, 0.08);
  /* Legacy alias variables — some HTML inline-styles reference these. Map to fresh palette. */
  --bg-dark: var(--bg);
  --bg-deeper: var(--bg-alt);
  --bg-elev: var(--bg-alt);
  --cream: var(--ink);
  --cream-warm: var(--ink-soft);
  --gold: var(--accent);
  --gold-light: var(--accent);
  --gold-deep: var(--accent-deep);
  --terra: var(--accent);
  --text-muted: var(--ink-faint);
  --border-gold: var(--border);
  --border-cream: var(--border);
  --shadow-card: 0 10px 30px rgba(31, 26, 20, 0.06);
  --radius: 2px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter Tight', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .55em;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.8rem, 7.2vw, 5.8rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 400; letter-spacing: -0.005em; }
h4 { font-size: 1.2rem; font-weight: 400; }

.italic, em, i { font-style: italic; }
h1 .italic, h2 .italic, h3 .italic {
  font-style: italic;
  color: var(--ink); /* stay tonal — no gold blast */
  font-weight: 300;
}
h1 .accent { display: block; font-style: italic; font-weight: 300; color: var(--ink); }

p { margin: 0 0 1.15em; color: var(--ink-soft); font-weight: 400; }
.muted { color: var(--ink-faint); }

strong, b { font-weight: 500; color: var(--ink); }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 22px; } }

.section { padding: clamp(64px, 11vw, 128px) 0; position: relative; }
.section-tight { padding: clamp(56px, 8vw, 96px) 0; }

/* Microcopy / eyebrow */
.eyebrow {
  font-family: 'Inter Tight', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.25rem;
}

/* Hairline divider */
.divider {
  width: 48px; height: 1px; background: var(--accent);
  margin: 0 0 28px;
  opacity: 0.7;
}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  padding: 10px 0;
  background: transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
  pointer-events: auto;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: 'Inter Tight', 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(251, 249, 244, 0.92);
}
.topbar a {
  color: inherit;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 2px;
  transition: color .2s var(--ease), opacity .2s var(--ease);
  opacity: 0.95;
}
.topbar a:hover { color: #E8D4B0; opacity: 1; }
.topbar svg { width: 14px; height: 14px; flex: 0 0 auto; stroke-width: 1.6; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }

/* When scrolled, topbar darkens like the nav */
.topbar.scrolled {
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar.scrolled .topbar-inner { color: var(--ink); }
.topbar.scrolled a { opacity: 1; }
.topbar.scrolled a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .topbar { padding: 8px 0; }
  .topbar-inner { font-size: 11px; letter-spacing: 0.06em; gap: 10px; }
  .topbar-left, .topbar-right { gap: 14px; }
  .topbar .label-text { display: none; }  /* hide text labels on mobile, keep icons */
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background .4s var(--ease), padding .3s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease), top .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  top: 0;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 720px) {
  .nav { top: 34px; }
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-logo {
  width: 34px; height: 34px;
  color: var(--accent);
  flex: 0 0 auto;
}
.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}
.brand-text span { color: var(--accent); font-style: italic; font-weight: 400; }

/* Hero state — when nav is over a dark hero, the cream nav text needs a light treatment */
.nav:not(.scrolled) .brand,
.nav:not(.scrolled) .brand-text,
.nav:not(.scrolled) .nav-links a {
  color: #FBF9F4;
}
.nav:not(.scrolled) .brand-text span { color: #E8D4B0; }
.nav:not(.scrolled) .brand-logo { color: #E8D4B0; }
.nav:not(.scrolled) .lang-toggle button { color: rgba(251, 249, 244, 0.65); }
.nav:not(.scrolled) .lang-toggle button.active { color: #E8D4B0; }
.nav:not(.scrolled) .nav-toggle { color: #FBF9F4; border-color: rgba(251, 249, 244, 0.4); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: 'Inter Tight', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative; padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 18px; background: var(--accent);
}

/* Language toggle — minimal text LT / EN */
.lang-toggle {
  display: inline-flex; gap: 8px; align-items: center;
  border: none; padding: 0; background: transparent;
}
.lang-toggle button {
  padding: 4px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink-faint);
  background: transparent;
  text-transform: uppercase;
  position: relative;
  transition: color .25s var(--ease);
}
.lang-toggle button + button::before {
  content: '/';
  position: absolute; left: -10px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
  font-weight: 400;
}
.lang-toggle button.active { color: var(--accent); }
.lang-toggle button:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 96vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(31, 26, 20, 0.55) 0%,
      rgba(31, 26, 20, 0.30) 30%,
      rgba(31, 26, 20, 0.55) 65%,
      rgba(31, 26, 20, 0.85) 100%),
    linear-gradient(90deg,
      rgba(31, 26, 20, 0.60) 0%,
      rgba(31, 26, 20, 0.25) 50%,
      rgba(31, 26, 20, 0.05) 85%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 0 clamp(72px, 10vw, 128px);
  max-width: 880px;
  color: #FBF9F4;
}
.hero .eyebrow { color: #E8D4B0; }
.hero h1 {
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: 32px;
  color: #FFFFFF;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.45);
}
.hero h1 .accent {
  display: block; font-style: italic;
  color: #FFFFFF;
  font-weight: 500;
  margin-top: .15em;
  opacity: 1;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.45);
}
/* First two spans (the brand name "Tenerife Private Stays") sit as a delicate italic eyebrow above tagline */
.hero h1 > span[data-lt],
.hero h1 > span[data-en] {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 400;
  color: #E8D4B0;
  opacity: 0.92;
  line-height: 1;
}
.hero h1 > span[data-lt]:not(.accent),
.hero h1 > span[data-en]:not(.accent) {
  display: block;
  margin-bottom: 22px;
}
.hero h1 .accent > span[data-lt],
.hero h1 .accent > span[data-en] {
  /* tagline keeps the large display style */
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: inherit;
  letter-spacing: -0.02em;
  text-transform: none;
  font-weight: 500;
  color: #FFFFFF;
  opacity: 1;
  line-height: 1.02;
}
.hero p.lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.5;
  color: rgba(251, 249, 244, 0.88);
  max-width: 620px;
  margin-bottom: 44px;
  font-weight: 300;
}

/* =========================================================
   BUTTONS / LINKS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  color: var(--accent);
  border: none;
  border-bottom: 1px solid var(--accent);
  border-radius: 0;
  transition: color .3s var(--ease), border-color .3s var(--ease), letter-spacing .3s var(--ease);
}
.btn::after {
  content: '→';
  margin-left: 4px;
  font-weight: 300;
  transition: transform .3s var(--ease);
  display: inline-block;
}
.btn:hover {
  color: var(--accent-deep);
  border-color: var(--accent-deep);
  letter-spacing: 0.28em;
}
.btn:hover::after { transform: translateX(4px); }

.btn-ghost {
  color: #FBF9F4;
  border-bottom-color: rgba(251, 249, 244, 0.5);
}
.btn-ghost:hover { color: #FFFFFF; border-bottom-color: #FFFFFF; }

.btn-gold-outline {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.btn-gold-outline:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

/* On dark hero, ghost button text white */
.hero .btn { color: #FBF9F4; border-bottom-color: rgba(251, 249, 244, 0.6); }
.hero .btn:hover { color: #FFFFFF; border-bottom-color: #FFFFFF; }

/* Platform divider — used in sidebar between direct contact buttons and Airbnb/Booking buttons */
.platform-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.85;
}
.platform-divider::before,
.platform-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Platform booking buttons (Airbnb / Booking) — block style, dark with accent on hover */
.btn-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  margin-top: 10px;
  background: var(--ink);
  color: #FBF9F4;
  border: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  box-sizing: border-box;
}
.btn-platform svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}
.btn-platform::after { content: none; }
.btn-platform:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-head { max-width: 720px; margin-bottom: clamp(48px, 7vw, 88px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .divider { margin-left: auto; margin-right: auto; }
.section-head h2 .italic { font-style: italic; color: var(--ink); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* =========================================================
   ABOUT TEASER (homepage)
   ========================================================= */
.about-teaser {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}
.about-teaser .image-frame {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.about-teaser .image-frame::before {
  content: ''; position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--accent);
  z-index: -1;
  opacity: 0.6;
}

/* =========================================================
   PROPERTY CARDS (homepage)
   No card box — just spacing, thin hairline, eyebrow numeral.
   ========================================================= */
.properties-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 64px);
}
.property-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  padding-top: 28px;
  position: relative;
  transition: transform .5s var(--ease);
}
.property-card::before {
  /* numerical eyebrow */
  position: absolute;
  top: -10px; left: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--accent);
  background: var(--bg);
  padding-right: 12px;
  text-transform: uppercase;
}
.properties-grid .property-card:nth-child(1)::before { content: '01'; }
.properties-grid .property-card:nth-child(2)::before { content: '02'; }
.properties-grid .property-card:nth-child(3)::before { content: '03'; }

.property-card:hover { transform: translateY(-4px); }
.property-card:hover .photo img,
.property-card:hover .photo { transform: scale(1.02); }

.property-card .photo {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  transition: transform .8s var(--ease);
}
.property-card .photo::after { content: none; }
.property-card .badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(251, 249, 244, 0.94);
  color: var(--accent);
  padding: 7px 13px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  border: none;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.property-card .body {
  padding: 0;
  display: flex; flex-direction: column;
  flex: 1;
}
.property-card h3 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.property-card .meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 600;
}
.property-card .meta span { display: inline-flex; align-items: center; gap: 7px; }
.property-card .meta svg { color: var(--accent); width: 13px; height: 13px; }
.property-card .body > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.property-card .rating {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.property-card .rating .stars { color: var(--accent); letter-spacing: 0.1em; font-weight: 500; }
.property-card .arrow { width: 22px; height: 22px; color: var(--accent); }

.property-card.coming-soon { opacity: 1; }
.property-card.coming-soon .photo {
  background: linear-gradient(135deg, #EBE2D2 0%, #D9CCB4 100%);
  display: flex; align-items: center; justify-content: center;
}
.property-card.coming-soon .photo svg {
  width: 56px; height: 56px; color: var(--accent-deep); opacity: 1;
  stroke-width: 1.5;
}
.property-card.coming-soon h3 { color: var(--ink); }
.property-card.coming-soon .meta {
  color: var(--accent-deep);
  font-weight: 600;
  opacity: 1;
}
.property-card.coming-soon .body > p,
.property-card.coming-soon p.muted {
  color: var(--ink-soft);
  opacity: 1;
  font-size: 15px;
}
.property-card.coming-soon .rating span:first-child {
  color: var(--accent-deep);
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
}

/* =========================================================
   USPS
   ========================================================= */
.usps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.usp {
  text-align: left;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.usp .icon {
  width: 32px; height: 32px;
  color: var(--accent);
  margin: 0 0 20px;
  stroke-width: 1.2;
}
.usp h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.usp p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.65; }

/* =========================================================
   TESTIMONIALS — pull-quote style
   ========================================================= */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 5vw, 72px);
}
.testimonial {
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  margin: 0;
}
.testimonial::before { content: none; } /* drop the giant gold quote mark */
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.35rem, 1.7vw, 1.55rem);
  line-height: 1.45;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 28px;
  padding: 0;
  letter-spacing: -0.005em;
}
.testimonial .who {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.testimonial .where {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
  font-weight: 500;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 88px 0 32px;
  color: var(--ink-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer h5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer p, .footer a { font-size: 14px; color: var(--ink-soft); }
.footer a:hover { color: var(--accent); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer .brand { margin-bottom: 20px; }
.footer .brand-logo { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

/* =========================================================
   PROPERTY PAGE
   ========================================================= */
.prop-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
}
.prop-hero .hero-inner {
  padding-top: clamp(140px, 16vw, 220px);
  padding-bottom: clamp(56px, 8vw, 110px);
  max-width: 1100px;
}
.prop-hero h1 {
  font-size: clamp(5.5rem, 13vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: #FFFFFF;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.75), 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
}
.prop-hero h1 .accent,
.prop-hero h1 .italic {
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 4px 36px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.55);
}
.prop-hero .lede,
.prop-hero p.lede,
.prop-hero p {
  color: #FFFFFF;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.45;
  font-weight: 400;
  max-width: 820px;
  margin-top: 8px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}
.prop-hero .location {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(18px, 1.7vw, 22px); letter-spacing: 0.28em; text-transform: uppercase;
  color: #F4E3BE;
  margin-bottom: 28px;
  display: inline-block;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}
/* Stronger dark overlay so light text stays readable on bright photos */
.prop-hero .hero-img::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%);
}
/* Override the global .hero h1 > span eyebrow shrinking on property/about/guide pages */
.prop-hero h1 > span[data-lt],
.prop-hero h1 > span[data-en] {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: inherit;
  letter-spacing: -0.015em;
  text-transform: none;
  font-weight: 600;
  color: #FFFFFF;
  opacity: 1;
  line-height: 1.0;
  display: block;
  margin-bottom: 0;
  text-shadow: 0 4px 36px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.55);
}
.prop-hero h1 .accent {
  display: block;
  font-style: italic;
  font-weight: 600;
  margin-top: 0.05em;
  font-size: inherit;
}
.prop-hero h1 .accent > span[data-lt],
.prop-hero h1 .accent > span[data-en] {
  display: inline;
  font-style: italic;
  font-size: inherit;
  font-weight: 600;
}

/* Facts bar — minimal vertical-line separators */
.facts-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.facts-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  text-align: center;
}
.fact {
  position: relative;
  padding: 6px 14px;
}
.fact + .fact::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: var(--border);
}
.fact .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--ink);
  display: block;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 6px;
}
.fact .label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 4px;
  display: block;
  font-weight: 500;
}

/* Body — text column capped at ~640px */
.prop-body {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}
.prop-body .desc { max-width: 640px; }
.prop-body .desc p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--ink-soft);
}
.prop-body .desc p:first-of-type::first-line {
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0.04em;
}
.prop-body .desc p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  font-style: italic;
  float: left;
  line-height: 0.9;
  padding-right: 14px;
  padding-top: 8px;
  color: var(--accent);
}

.sidebar-card {
  background: var(--bg-alt);
  border: none;
  border-top: 2px solid var(--accent);
  padding: 40px 36px;
  position: sticky; top: 110px;
  box-shadow: none;
}
.sidebar-card h3 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  font-weight: 400;
}
.sidebar-card .price-note {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 32px;
  font-weight: 500;
}
.sidebar-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}
.sidebar-card .reg {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  font-family: 'Inter Tight', sans-serif;
  color: var(--ink-faint);
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.sidebar-card .reg strong {
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
}

/* =========================================================
   AMENITIES
   ========================================================= */
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px;
}
.amenity {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.amenity:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
.amenity .icon { color: var(--accent); width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; stroke-width: 1.2; }
.amenity .text { font-size: 14.5px; color: var(--ink); line-height: 1.55; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  columns: 3;
  column-gap: 18px;
}
.gallery .gitem {
  margin: 0 0 18px;
  break-inside: avoid;
  display: block;
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  background: var(--bg-alt);
}
.gallery .gitem img {
  width: 100%;
  height: auto;
  transition: transform .8s var(--ease), opacity .5s var(--ease);
}
.gallery .gitem:hover img { transform: scale(1.03); opacity: 0.92; }
.gallery .gitem::after { content: none; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(31, 26, 20, 0.94);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: var(--bg);
  background: transparent;
  border: 1px solid rgba(251, 249, 244, 0.3);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s var(--ease);
  border-radius: 999px;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent); border-color: var(--accent); color: var(--bg);
}
.lightbox-caption {
  position: absolute; bottom: 28px; left: 0; right: 0;
  text-align: center;
  color: rgba(251, 249, 244, 0.7);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}
.about-content .col p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(40px, 5vw, 64px); }
.team-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  padding: 36px 0 0;
}
.team-card .role {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.team-card h3 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 22px; font-weight: 400; }
.team-card p { color: var(--ink-soft); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 48px); }
.value-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  padding: 28px 0 0;
  transition: transform .4s var(--ease);
}
.value-card:hover { transform: translateY(-3px); }
.value-card .icon { width: 28px; height: 28px; color: var(--accent); margin-bottom: 20px; stroke-width: 1.2; }
.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.value-card p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.65; }

.contact-card {
  background: var(--bg-alt);
  border: none;
  border-top: 2px solid var(--accent);
  padding: clamp(48px, 6vw, 72px);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
}
.contact-card .ci .label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px; display: block;
  font-weight: 500;
}
.contact-card .ci a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 400;
}
.contact-card .ci a:hover { color: var(--accent); }

/* =========================================================
   GUIDE PAGE
   ========================================================= */
.guide-intro {
  max-width: 640px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  line-height: 1.55;
  color: var(--ink);
}
.guide-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(48px, 6vw, 80px);
}
.guide-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  padding: 32px 0 0;
  transition: none;
}
.guide-card:hover { border-color: var(--accent); }
.guide-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 300;
}
.guide-card h3 {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}
.guide-card ul { list-style: none; padding: 0; margin: 0; }
.guide-card li {
  display: flex; gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
}
.guide-card li:first-child { border-top: none; padding-top: 0; }
.guide-card li .pname {
  color: var(--ink);
  font-weight: 500;
  flex: 0 0 38%;
  font-family: 'Inter Tight', sans-serif;
}
.guide-card li .pdesc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   REVEAL on scroll — slower, calmer
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.in {
  opacity: 1; transform: none;
}
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* =========================================================
   LANG SWITCH (must beat all element-level display rules)
   ========================================================= */
.lt [data-en], .en [data-lt] { display: none !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .properties-grid, .testimonials { grid-template-columns: 1fr; gap: 56px; }
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-body { grid-template-columns: 1fr; }
  .about-teaser, .about-content { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 0; }
  .fact + .fact::before { display: none; }
  .fact:nth-child(n+4) { border-top: 1px solid var(--border); padding-top: 18px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery { columns: 2; }
  .sidebar-card { position: static; }
  .about-teaser .image-frame::before { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    padding: 28px 22px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }
  .nav.open .nav-links a { color: var(--ink); }
  .nav:not(.scrolled).open { background: var(--bg); }
  .nav:not(.scrolled).open .brand,
  .nav:not(.scrolled).open .brand-text,
  .nav:not(.scrolled).open .nav-links a { color: var(--ink); }
  .nav:not(.scrolled).open .brand-text span { color: var(--accent); }
  .nav:not(.scrolled).open .brand-logo { color: var(--accent); }
  .usps-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-text { font-size: 17px; letter-spacing: 0.14em; }
  .brand-logo { width: 30px; height: 30px; }
  .hero { min-height: 90vh; }
  .lightbox { padding: 16px; }
  .lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; }
  .lightbox-prev { left: 8px; width: 44px; height: 44px; }
  .lightbox-next { right: 8px; width: 44px; height: 44px; }
}
