/* =========================================================
   ORTOLANI VISUALS — Global Stylesheet
   ========================================================= */

:root {
  --black: #0d0d0f;
  --dark: #141416;
  --dark-2: #1c1c20;
  --white: #ffffff;
  --cream: #f5f0e8;
  --gold: #c9a96e;
  --gray: #8a8a8a;
  --gray-light: #cccccc;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle background lift — keeps dark feel but breaks pure-black monotony */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(201,169,110,0.04), transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(255,255,255,0.015), transparent 70%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Selection */
::selection { background: var(--gold); color: var(--black); }

/* =========================================================
   Custom Cursor
   ========================================================= */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease, width .3s ease, height .3s ease, background .3s ease;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid var(--white);
  border-radius: 50%;
}
.cursor-ring.is-hover {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.05);
}

@media (max-width: 900px), (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: transparent;
  transition: background .4s ease, backdrop-filter .4s ease, height .3s ease;
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: letter-spacing .4s ease;
  white-space: nowrap;
}
.logo:hover { letter-spacing: 0.18em; }
.logo .l-name { font-weight: 500; letter-spacing: 0.16em; }
.logo .l-sep  { font-weight: 300; color: rgba(255,255,255,0.45); margin: 0 14px; }
.logo .l-suffix { font-weight: 400; font-style: normal; color: var(--white); letter-spacing: 0.18em; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0 48px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 28px; padding-left: 12px; }

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 11px 24px;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .4s ease;
  z-index: 1;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.btn-outline:hover { color: var(--black); }
.btn-outline:hover::before { transform: translateX(0); }

.lang-toggle {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.2em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}
.lang-toggle .lang-active { color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: transform .3s ease, opacity .2s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 300;
  color: var(--white);
}
.mobile-menu a.active { color: var(--gold); font-style: italic; }

@media (max-width: 900px) {
  .nav { padding: 0 24px; height: 60px; }
  .nav-links, .nav-right .btn-outline { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .lang-toggle { margin-right: 16px; }
}

/* =========================================================
   Intro Screen (Home)
   ========================================================= */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  transition: opacity 1.2s ease 1s;
}
.intro-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 2.2s cubic-bezier(.32,0,.27,1);
  animation: introZoom 10s ease-in-out infinite alternate;
}
@keyframes introZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 1.2s ease;
}
.intro-logo {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  color: var(--white);
  letter-spacing: 0.15em;
  font-size: clamp(28px, 4vw, 52px);
  text-align: center;
  transform: scale(1);
  opacity: 1;
  transition: transform 2.2s cubic-bezier(.32,0,.27,1), opacity 1.2s ease 1.1s, filter 2.2s ease;
  will-change: transform, opacity, filter;
}
.intro-logo .l-name { font-weight: 500; letter-spacing: 0.2em; }
.intro-logo .l-sep  { font-weight: 300; color: rgba(255,255,255,0.45); margin: 0 24px; }
.intro-logo .l-suffix { font-weight: 400; font-style: normal; color: var(--white); letter-spacing: 0.22em; }

.intro-meta {
  position: absolute;
  bottom: 64px;
  left: 0; right: 0;
  z-index: 3;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.intro-meta .line {
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 0 auto 16px;
}
.intro-meta .chevron {
  display: block;
  margin: 20px auto 0;
  width: 12px; height: 12px;
  border-right: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: chevronBounce 1.8s ease infinite;
}
@keyframes chevronBounce {
  0%,100% { transform: rotate(45deg) translate(0,0); opacity: .5; }
  50%     { transform: rotate(45deg) translate(4px,4px); opacity: 1; }
}

.intro-screen.is-playing .intro-logo {
  transform: scale(26);
  opacity: 0;
  filter: blur(4px);
}
.intro-screen.is-playing .intro-bg {
  transform: scale(1.32);
  animation: none;
  transition: transform 2.2s cubic-bezier(.32,0,.27,1);
}
.intro-screen.is-playing .intro-overlay { background: rgba(0,0,0,0.92); transition: background 1.8s ease; }
.intro-screen.is-playing .intro-meta { opacity: 0; transition: opacity .5s ease; }
.intro-screen.is-done { opacity: 0; pointer-events: none; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}
.hero.bg-fixed::before {
  display: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 1400px;
}
.eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(50px, 9vw, 130px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--white);
}
.hero h1 .line-2 {
  display: block;
  font-style: italic;
  color: #d8b87a;
  margin-left: 0.3em;
  text-shadow: 0 0 30px rgba(201,169,110,0.25);
}
.hero-sub {
  margin: 32px auto 40px;
  max-width: 720px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 16px 48px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .5s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.hero-cta:hover { color: var(--black); }
.hero-cta:hover::before { transform: translateX(0); }

.hero-corner {
  position: absolute;
  z-index: 3;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-scroll {
  bottom: 40px; left: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll .scroll-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll .scroll-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2.2s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-social {
  bottom: 40px; right: 60px;
  display: flex; gap: 24px;
}
.hero-social a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .hero-scroll { left: 24px; bottom: 20px; }
  .hero-scroll .scroll-line { height: 48px; }
  .hero-social { right: 24px; bottom: 20px; gap: 14px; }
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero .page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; padding: 80px 24px 60px; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(56px, 10vw, 110px);
  letter-spacing: 0.04em;
  color: var(--white);
}
.page-hero p {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
}

/* =========================================================
   Sections / Generic
   ========================================================= */
section { position: relative; }

.section {
  padding: 120px 60px;
  position: relative;
}
.section-narrow {
  max-width: 1400px;
  margin: 0 auto;
}
.section .label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--white);
  max-width: 900px;
}
.section h2.center { margin: 0 auto; text-align: center; }
.section .lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cream);
  line-height: 1.3;
  max-width: 820px;
}
.gold-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}
.gold-line.center { margin: 32px auto; }
.gold-line.wide { width: 200px; }

@media (max-width: 700px) {
  .section { padding: 60px 24px; }
}

/* =========================================================
   Intro Statement
   ========================================================= */
.intro-statement {
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,255,255,0.02), transparent 70%),
    var(--black);
}
.intro-statement .quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3;
}
.intro-statement .copy {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 2;
}

/* =========================================================
   Stats
   ========================================================= */
.stats {
  background:
    linear-gradient(135deg, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0.04) 50%, rgba(201,169,110,0.10) 100%),
    var(--dark);
  padding: 100px 60px;
  border-top: 1px solid rgba(201,169,110,0.25);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
}
.stats .stats-intro {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.stats .stats-intro .label { display: inline-block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.stats .stats-intro h2 { font-family: var(--font-heading); font-weight: 300; font-size: clamp(28px, 3.6vw, 44px); color: var(--white); line-height: 1.25; }
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: center;
}
.stat {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%;
  width: 1px; height: 60%;
  background: rgba(255,255,255,0.1);
}
.stat .num {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 92px);
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat .label {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr; gap: 60px; }
  .stat + .stat::before { display: none; }
}

/* =========================================================
   Featured Bali Villa Section
   ========================================================= */
.featured-villa {
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(201,169,110,0.025), transparent 60%),
    var(--black);
  padding: 120px 0 0;
}
.featured-villa .heading-wrap {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 60px;
}
.villa-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}
.villa-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.villa-hero:hover img { transform: scale(1.06); }
.villa-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.villa-hero .villa-caption {
  position: absolute;
  left: 60px; bottom: 50px;
  z-index: 2;
}
.villa-hero .villa-caption .tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.villa-hero .villa-caption .place {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 32px;
  color: var(--white);
}
.villa-row {
  display: grid;
  gap: 3px;
  padding: 3px 0;
}
.villa-row.row-3 { grid-template-columns: 1fr 1fr 1fr; }
.villa-row.row-2 { grid-template-columns: 3fr 2fr; }
.villa-row .v-img { position: relative; height: 50vh; min-height: 360px; overflow: hidden; }
.villa-row.row-2 .v-img { height: 45vh; min-height: 340px; }
.villa-row img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.villa-row .v-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background .6s ease;
}
.villa-row .v-img:hover img { transform: scale(1.08); }
.villa-row .v-img:hover::after { background: rgba(0,0,0,0.05); }

.villa-coda {
  text-align: center;
  padding: 100px 24px 120px;
  max-width: 800px;
  margin: 0 auto;
}
.villa-coda .lead { margin: 0 auto 16px; text-align: center; }
.villa-coda .copy { color: var(--gray); font-size: 12px; letter-spacing: 0.05em; }

@media (max-width: 800px) {
  .featured-villa { padding-top: 60px; }
  .featured-villa .heading-wrap { padding: 0 24px; margin-bottom: 32px; }
  .villa-hero { height: 60vh; }
  .villa-hero .villa-caption { left: 24px; bottom: 30px; }
  .villa-row.row-3, .villa-row.row-2 { grid-template-columns: 1fr; }
  .villa-row .v-img, .villa-row.row-2 .v-img { height: 50vh; min-height: 280px; }
}

/* =========================================================
   Packages preview (Home)
   ========================================================= */
.packages {
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(201,169,110,0.025), transparent 60%),
    var(--black);
}
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.pkg-card {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: block;
  isolation: isolate;
}
.pkg-card .pkg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}
.pkg-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.3) 100%);
  transition: background .6s ease;
}
.pkg-card:hover .pkg-img { transform: scale(1.09); }
.pkg-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.25) 100%);
}
.pkg-card .pkg-content {
  position: absolute;
  left: 40px; right: 40px; bottom: 40px;
  z-index: 2;
}
.pkg-card .pkg-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.pkg-card .pkg-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  margin: 12px 0 6px;
  line-height: 1;
}
.pkg-card .pkg-price {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.pkg-card .pkg-desc {
  font-size: 12px;
  color: var(--gray-light);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease, margin-bottom .5s ease;
  margin-bottom: 0;
}
.pkg-card:hover .pkg-desc {
  max-height: 120px;
  opacity: 1;
  margin-bottom: 20px;
}
.pkg-card .pkg-cta {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
}

@media (max-width: 800px) {
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-card { height: 460px; }
  .pkg-card .pkg-content { left: 24px; right: 24px; bottom: 28px; }
}

/* =========================================================
   Destinations
   ========================================================= */
.destinations {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent),
    var(--dark);
}
.destinations .disclaimer {
  display: block;
  margin-top: 12px;
  font-size: 9px;
  font-style: italic;
  color: var(--gray);
}
.dest-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}
.dest-card {
  position: relative;
  overflow: hidden;
}
.dest-card.tall { grid-row: span 2; }
.dest-card .d-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1s ease;
}
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  transition: background .5s ease;
}
.dest-card:hover .d-img { transform: scale(1.09); }
.dest-card:hover::after { background: rgba(0,0,0,0.65); }
.dest-card .d-label {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  transition: color .4s ease, opacity .4s ease;
}
.dest-card:hover .d-label { color: var(--gold); opacity: 1; }

@media (max-width: 900px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .dest-card.tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .dest-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Cinematic Quote
   ========================================================= */
.quote-band {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.quote-band .qb-bg {
  position: absolute; inset: 0;
  background: url('../images/euro-villa-2.jpg') center/cover no-repeat;
  background-attachment: fixed;
}
.quote-band::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
}
.quote-band .qb-inner { position: relative; z-index: 2; }
.quote-band h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}
.quote-band .qb-sub {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-band .qb-cta {
  display: inline-block;
  margin-top: 40px;
  border: 1px solid var(--white);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.quote-band .qb-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform .5s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.quote-band .qb-cta:hover { color: var(--black); }
.quote-band .qb-cta:hover::before { transform: translateX(0); }

/* =========================================================
   Process
   ========================================================= */
.process {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255,255,255,0.02), transparent 70%),
    var(--black);
}
.process-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 60px 24px 0;
}
.process-step .big-num {
  position: absolute;
  top: -20px; left: -10px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 120px;
  color: rgba(201,169,110,0.08);
  line-height: 1;
}
.process-step .icon {
  width: 36px; height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.process-step p {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 2;
  max-width: 280px;
}
.process-line {
  display: none;
}
@media (min-width: 900px) {
  .process-line {
    display: block;
    position: absolute;
    top: 78px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,169,110,0.3), transparent);
    z-index: 0;
  }
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 80px 60px 32px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.footer .f-tag {
  margin-top: 16px;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.1em;
  max-width: 280px;
}
.footer .f-col h4 {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer .f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer .f-col a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color .3s ease;
}
.footer .f-col a:hover { color: var(--white); }
.footer .f-col .email { color: var(--white); font-size: 12px; letter-spacing: 0.08em; text-transform: none; }
.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
@media (max-width: 800px) {
  .footer { padding: 60px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* =========================================================
   Portfolio Page
   ========================================================= */
.filter-bar {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.filter-bar button {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  cursor: pointer;
  padding: 6px 0;
  position: relative;
  transition: color .3s ease;
}
.filter-bar button::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s ease;
}
.filter-bar button.active { color: var(--gold); }
.filter-bar button.active::after,
.filter-bar button:hover::after { width: 100%; }
@media (max-width: 700px) {
  .filter-bar { top: 60px; gap: 18px; padding: 14px 16px; }
}

.featured-project {
  background: var(--dark);
  padding: 100px 0 80px;
}
.featured-project .heading-wrap {
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
.scroll-gallery {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-left: 60px;
  padding-right: 60px;
  scrollbar-width: none;
  cursor: grab;
}
.scroll-gallery::-webkit-scrollbar { display: none; }
.scroll-gallery.is-dragging { cursor: grabbing; }
.scroll-gallery .sg-img {
  flex: 0 0 auto;
  width: 45vw;
  height: 65vh;
  min-height: 460px;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}
.scroll-gallery .sg-img img {
  width: 100%; height: 100%; object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}
.project-meta {
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}
.project-meta .m-item .k {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.project-meta .m-item .v {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
}
.featured-project .note {
  max-width: 1400px;
  margin: 32px auto 0;
  padding: 0 60px;
  font-size: 10px;
  color: var(--gray);
  font-style: italic;
}
@media (max-width: 800px) {
  .featured-project .heading-wrap, .scroll-gallery, .project-meta, .featured-project .note {
    padding-left: 24px; padding-right: 24px;
  }
  .scroll-gallery .sg-img { width: 80vw; height: 55vh; min-height: 360px; }
  .project-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.portfolio-grid {
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 3px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}
.portfolio-card.tall { grid-row: span 2; }
.portfolio-card.wide { grid-column: span 2; }
.portfolio-card .p-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1s ease;
}
.portfolio-card::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background .5s ease;
}
.portfolio-card .p-content {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}
.portfolio-card:hover .p-img { transform: scale(1.08); }
.portfolio-card:hover::after { background: rgba(0,0,0,0.6); }
.portfolio-card:hover .p-content { transform: translateY(0); opacity: 1; }
.portfolio-card .p-loc {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.portfolio-card .p-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 28px;
  color: var(--white);
  margin: 8px 0 6px;
}
.portfolio-card .p-tag {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.portfolio-card.coming::before {
  content: 'COMING SOON';
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.7);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.4em;
  border: 1px solid rgba(201,169,110,0.3);
  animation: pulseBorder 2.4s ease infinite;
}
@keyframes pulseBorder {
  0%,100% { border-color: rgba(201,169,110,0.2); }
  50%     { border-color: rgba(201,169,110,0.7); }
}
.portfolio-note {
  text-align: center;
  font-size: 10px;
  color: var(--gray);
  font-style: italic;
  padding: 40px 24px 100px;
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; padding: 24px; grid-auto-rows: 260px; }
  .portfolio-card.tall, .portfolio-card.wide { grid-row: span 1; grid-column: span 1; }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Services Page
   ========================================================= */
.svc-packs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--dark);
}
.svc-pack {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark-2);
  color: var(--white);
  min-height: 100%;
}
.svc-pack .svc-image {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.svc-pack .svc-image .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.5s ease;
}
.svc-pack:hover .svc-image .bg { transform: scale(1.04); }
.svc-pack .svc-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 60%, rgba(20,20,22,1) 100%);
}
.svc-pack .svc-image .header-overlay {
  position: absolute;
  left: 56px; bottom: 28px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-pack .svc-body {
  background: var(--dark-2);
  padding: 56px 56px 64px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.svc-pack .title { font-family: var(--font-heading); font-weight: 300; font-size: 56px; line-height: 1; margin-bottom: 8px; }
.svc-pack .title .accent { color: var(--cream); }
.svc-pack .price {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(56px, 6vw, 72px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.svc-pack .price-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 36px;
}
.svc-pack ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  flex: 1;
}
.svc-pack ul li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 13px;
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: 300;
}
.svc-pack ul li::before {
  content: '✓';
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-pack .badge {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 3;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 9px 16px;
  font-weight: 500;
}
.svc-pack .cta {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 14px 32px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: auto;
}
.svc-pack .cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.svc-pack .cta:hover { color: var(--black); }
.svc-pack .cta:hover::before { transform: translateX(0); }
@media (max-width: 900px) {
  .svc-packs { grid-template-columns: 1fr; }
  .svc-pack .svc-image { height: 260px; }
  .svc-pack .svc-image .header-overlay { left: 28px; }
  .svc-pack .svc-body { padding: 40px 28px 48px; }
  .svc-pack .title { font-size: 44px; }
}

/* ---- slim body: title + tagline only, compact ---- */
.svc-pack .svc-body--slim {
  flex: 0 0 auto;
  padding: 20px 56px 20px;
}
.svc-pack .svc-body--slim .title { margin-bottom: 6px; }
.svc-pack .svc-body--slim .signature-tagline { margin-bottom: 0; }

/* ---- price bar: discret et élégant ---- */
.svc-price-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  text-align: center;
  padding: 14px 24px;
}
.svc-price-bar__from {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  margin: 0 0 3px;
}
.svc-price-bar__sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0;
}

/* ---- features: fix li text layout ---- */
.svc-packs--features .svc-pack { overflow: visible; }
.svc-packs--features .svc-body { padding-top: 40px; }
.svc-packs--features .svc-pack ul li {
  display: block;
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
}
.svc-packs--features .svc-pack ul li::before {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 12px;
}

/* ---- CTA services: centré, discret, animation big-cta ---- */
.svc-pack .cta-gold {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.cta-gold {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(201,169,110,0.6);
  padding: 12px 28px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: auto;
  transition: color .4s ease, letter-spacing .4s ease;
}
.cta-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .5s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.cta-gold:hover { color: var(--black); letter-spacing: 0.33em; }
.cta-gold:hover::before { transform: translateX(0); }

/* ---- homepage starting-from banner ---- */
.pkg-starting-from {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,169,110,0.15);
  text-align: center;
  padding: 14px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pkg-starting-from__text {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 24px;
  font-style: italic;
  color: var(--cream);
  margin: 0;
}
.pkg-starting-from__sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0;
}
.pkg-starting-from .cta-gold {
  margin-top: 4px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--gold);
  overflow: visible;
}
.pkg-starting-from .cta-gold::before { display: none; }
.pkg-starting-from .cta-gold:hover { color: var(--gold); letter-spacing: 0.32em; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .svc-body--slim { padding: 18px 28px; }
  .svc-price-bar { padding: 12px 20px; }
  .svc-packs--features .svc-pack ul li { font-size: 12px; }
}
@media (max-width: 600px) {
  .pkg-starting-from { padding: 18px 20px 24px; }
}

.premium-note {
  background: var(--dark);
  text-align: center;
  padding: 80px 24px;
}
.premium-note p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--gray-light);
  line-height: 2;
}
.premium-note p .em { color: var(--cream); font-style: italic; font-family: var(--font-heading); font-size: 18px; }

.faq { background: var(--black); padding: 120px 60px; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq h2 { text-align: center; margin: 0 auto 60px; }
.faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item button {
  width: 100%;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.faq-item .q-arrow {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform .4s ease;
}
.faq-item .q-arrow::before, .faq-item .q-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px; height: 1px;
  background: var(--gold);
}
.faq-item .q-arrow::before { left: 0; transform: rotate(45deg); transform-origin: right; }
.faq-item .q-arrow::after  { right: 0; transform: rotate(-45deg); transform-origin: left; }
.faq-item .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, margin-top .5s ease;
}
.faq-item .a p {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 2;
  max-width: 720px;
}
.faq-item.is-open .q-arrow { transform: rotate(180deg); }
.faq-item.is-open .a { max-height: 240px; margin-top: 16px; }
@media (max-width: 700px) {
  .faq { padding: 80px 24px; }
  .faq-item button { font-size: 18px; }
}

/* =========================================================
   About Page
   ========================================================= */
.about-meet {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 60px;
}
.about-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-photo {
  aspect-ratio: 5/6;
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.25);
  position: relative;
  overflow: hidden;
}
.about-photo img {
  position: absolute;
  width: 100%;
  left: 0;
  top: -20%;
}
.about-photo-wrap .caption {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  font-style: normal;
  text-align: center;
}
.about-text {
  min-width: 0;
  max-width: 100%;
}
.about-text .label { display: block; margin-bottom: 24px; }
.about-text h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 72px);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.05;
  word-break: break-word;
}
[lang="fr"] .about-text h1 {
  font-size: clamp(32px, 3.8vw, 52px);
}
.about-text p {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 2;
  margin-bottom: 20px;
  max-width: 560px;
}
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-stats span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-stats span + span { color: var(--gray-light); }
@media (max-width: 900px) {
  .about-meet { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }
}

.why-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
  max-width: 1100px;
}
.why-item .why-icon {
  width: 28px; height: 28px;
  fill: none; stroke: var(--gold); stroke-width: 1.2;
  margin-bottom: 18px;
}
.why-item h3 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.why-item p {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 2;
  max-width: 400px;
}
@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
}

.vision-band {
  position: relative;
  padding: 160px 24px;
  text-align: center;
  overflow: hidden;
}
.vision-band .vb-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}
.vision-band::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.82);
}
.vision-band .vb-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.vision-band p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--cream);
  line-height: 1.3;
}

/* =========================================================
   Contact Page
   ========================================================= */
.contact-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 90px;
  position: relative;
}
.contact-wrap::before {
  content: '';
  position: absolute;
  left: 38%;
  top: 120px; bottom: 120px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.4), transparent);
  transform: translateX(28px);
}
.contact-left {
  min-width: 0;
}
.contact-left h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 56px);
  margin: 16px 0 24px;
}
.contact-left .lead {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 2;
  max-width: 360px;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.contact-details .row {
  display: flex; align-items: center; gap: 18px;
  font-size: 12px;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}
.contact-details .row .ic {
  width: 16px; height: 16px;
  fill: none; stroke: var(--gold); stroke-width: 1.2;
  flex-shrink: 0;
}
.contact-social { display: flex; flex-direction: column; gap: 10px; }
.contact-social a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.contact-social a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 28px; min-width: 0; max-width: 560px; width: 100%; }
.field { position: relative; min-width: 0; }
.field label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 14px 0;
  outline: none;
  transition: border-color .3s ease;
  font-weight: 300;
}
.field textarea { resize: vertical; min-height: 80px; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23c9a96e' fill='none' stroke-width='1'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right center; }
.field select option { background: var(--dark); color: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: var(--gray); }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.btn-send {
  width: 100%;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 12px;
  transition: background .3s ease, color .3s ease;
}
.btn-send:hover { background: var(--gold); color: var(--white); }
.btn-send.sent { background: #4a7c59; color: var(--white); }
.btn-send.sending { opacity: 0.7; pointer-events: none; }

.response-time {
  background: var(--dark);
  text-align: center;
  padding: 80px 24px;
}
.response-time p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--gray-light);
  line-height: 2;
}
.response-time a { color: var(--gold); }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; padding: 80px 24px; gap: 60px; }
  .contact-wrap::before { display: none; }
}

/* =========================================================
   Animations / reveals
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }

.line-grow {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.7,0,.3,1);
}
.line-grow.is-visible { transform: scaleX(1); }
.line-grow.center { transform-origin: center; }

/* Hero title letter animation */
.h1-words { display: block; overflow: hidden; }
.h1-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(.4,0,.2,1), opacity 1s ease;
}
.h1-word.in { transform: translateY(0); opacity: 1; }

/* Image hover zoom helper for any picture/.img element */
.zoomable {
  overflow: hidden;
  position: relative;
  display: block;
}
.zoomable img, .zoomable .img-bg {
  transition: transform 1.4s cubic-bezier(.2,.6,.2,1), filter .6s ease;
  will-change: transform;
}
.zoomable:hover img, .zoomable:hover .img-bg {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Italic accent (used inside h2/quotes for typographic variety) */
.accent {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.accent.gold { color: var(--gold); }

/* Launch / FOMO banner */
.launch-banner {
  background: linear-gradient(90deg, rgba(201,169,110,0.12), rgba(201,169,110,0.04));
  border-top: 1px solid rgba(201,169,110,0.3);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding: 22px 32px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.launch-banner .lb-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--gold);
  background: rgba(201,169,110,0.08);
  padding: 10px 22px;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.launch-banner .lb-cta > span { white-space: nowrap; }
.launch-banner .lb-cta:hover {
  background: var(--gold);
  color: var(--black);
}
.launch-banner .lb-cta .arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.launch-banner .lb-cta:hover .arrow { transform: translateX(4px); }
.launch-banner .pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 1.8s ease infinite;
}
.launch-banner strong { color: var(--white); font-weight: 500; letter-spacing: 0.25em; }
.launch-banner em { color: var(--cream); font-style: italic; font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.05em; text-transform: none; }
@keyframes pulseDot {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.4); }
}

.svc-pack ul li strong {
  color: var(--cream);
  font-weight: 500;
}
.svc-pack .signature-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin: -4px 0 24px;
  letter-spacing: 0.02em;
  min-height: 24px;
}

/* Body when intro active */
body.intro-locked { overflow: hidden; }

/* =========================================================
   "Why us" CTA banner (home → about anchor)
   ========================================================= */
.why-cta-band {
  background:
    linear-gradient(135deg, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0.04) 50%, rgba(201,169,110,0.10) 100%),
    var(--dark);
  border-top: 1px solid rgba(201,169,110,0.25);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
}
.why-cta-band .label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.why-cta-band h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--white);
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 18px;
}
.why-cta-band h2 .accent { font-style: italic; color: var(--cream); }
.why-cta-band .sub {
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: 13px;
  color: var(--gray-light);
  line-height: 2;
  letter-spacing: 0.02em;
}
.why-cta-band .big-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  transition: color .4s ease, letter-spacing .4s ease;
}
.why-cta-band .big-cta > span { white-space: nowrap; }
.why-cta-band .big-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .5s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.why-cta-band .big-cta:hover {
  color: var(--black);
  letter-spacing: 0.4em;
}
.why-cta-band .big-cta:hover::before { transform: translateX(0); }
.why-cta-band .big-cta .arrow {
  display: inline-block;
  font-size: 18px;
  transition: transform .4s ease;
}
.why-cta-band .big-cta:hover .arrow { transform: translateX(8px); }
.why-cta-band .footnote {
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--font-body);
}
@media (max-width: 700px) {
  .why-cta-band { padding: 60px 24px; }
  .why-cta-band .big-cta { padding: 16px 22px; letter-spacing: 0.2em; font-size: 10px; gap: 12px; }
  .why-cta-band .big-cta:hover { letter-spacing: 0.25em; }
}

/* =========================================================
   Portfolio: property-group sections (clear visual separation)
   ========================================================= */
.property-group {
  padding: 0 60px 80px;
}
.property-group:first-of-type { padding-top: 0; }
.property-group .group-header {
  padding: 60px 0 36px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.property-group:first-of-type .group-header { border-top: none; padding-top: 0; }
.property-group .group-header .loc {
  display: block;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.property-group .group-header .title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 54px);
  color: var(--white);
  line-height: 1.1;
}
.property-group .group-header .meta {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}
.property-group .group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 3px;
}
.property-group .group-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.property-group .group-grid.cols-1 { grid-template-columns: 1fr; grid-auto-rows: 520px; }
.property-group .pg-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}
.property-group .pg-card.tall { grid-row: span 2; }
.property-group .pg-card.wide { grid-column: span 2; }
.property-group .pg-card .p-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.6,.2,1), filter .6s ease;
}
.property-group .pg-card::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background .5s ease;
}
.property-group .pg-card:hover .p-img { transform: scale(1.08); filter: brightness(1.05); }
.property-group .pg-card:hover::after { background: rgba(0,0,0,0.55); }
.property-group .pg-card .p-content {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}
.property-group .pg-card:hover .p-content { transform: translateY(0); opacity: 1; }
.property-group .pg-card .p-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 26px;
  color: var(--white);
}
@media (max-width: 900px) {
  .property-group { padding: 0 24px 60px; }
  .property-group .group-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .property-group .pg-card.tall, .property-group .pg-card.wide { grid-row: span 1; grid-column: span 1; }
}
@media (max-width: 560px) {
  .property-group .group-grid { grid-template-columns: 1fr; }
}

/* Coming-soon placeholder card inside a property group */
.property-group .pg-card.coming-card {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(201,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: pulseBorder 2.6s ease infinite;
}
.property-group .pg-card.coming-card .coming-label {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.4em;
}
.property-group .pg-card.coming-card::after { display: none; }

/* =========================================================
   Why hosts choose us — more prominent layout
   ========================================================= */
.why-section {
  padding: 140px 60px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,169,110,0.04), transparent 60%),
    var(--dark);
}
.why-section .why-head {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}
.why-section .why-head .label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.why-section .why-head h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--white);
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto;
}
.why-section .why-grid {
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.why-section .why-item {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 56px 48px;
  position: relative;
  transition: background .4s ease, border-color .4s ease, transform .4s ease;
}
.why-section .why-item:hover {
  background: rgba(201,169,110,0.04);
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-4px);
}
.why-section .why-item .num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.85;
  transition: transform .5s cubic-bezier(.2,.6,.2,1), text-shadow .5s ease;
}
.why-section .why-item:hover .num {
  transform: translateY(-4px);
  text-shadow: 0 0 24px rgba(201,169,110,0.35);
}
.why-section .why-item h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 18px;
}
.why-section .why-item p {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 2;
  max-width: 460px;
}
@media (max-width: 800px) {
  .why-section { padding: 80px 24px; }
  .why-section .why-grid { grid-template-columns: 1fr; }
  .why-section .why-item { padding: 40px 28px; }
}

/* =========================================================
   Impact / Results (occupancy + social reach + first clients)
   ========================================================= */
.impact {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201,169,110,0.04), transparent 60%),
    var(--dark);
  padding: 120px 60px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.impact .impact-head {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}
.impact .impact-head .label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.impact .impact-head h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1.15;
}
.impact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.impact-item {
  padding: 36px 0 0;
  border-top: 1px solid rgba(201,169,110,0.22);
}
.impact-item .num {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 76px);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.impact-item h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--white);
  margin: 18px 0 14px;
}
.impact-item p {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 2;
  max-width: 320px;
}
@media (max-width: 800px) {
  .impact { padding: 80px 24px; }
  .impact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Portfolio top notice (illustration-only) */
.portfolio-disclaimer {
  background: rgba(201,169,110,0.06);
  border-top: 1px solid rgba(201,169,110,0.25);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  padding: 22px 24px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--cream);
  font-family: var(--font-heading);
  font-style: italic;
}
.portfolio-disclaimer .ic {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
  margin: -2px 14px 0 0;
}
