:root {
  --ochre: #c9a574;
  --ochre-deep: #a07f4f;
  --terracotta: #b66a45;
  --cypress: #3d4a35;
  --cypress-deep: #2a3325;
  --stone: #ede5d6;
  --stone-warm: #f5efe2;
  --paper: #faf6ec;
  --ink: #2a2620;
  --ink-soft: #5a534a;
  --line: rgba(42, 38, 32, 0.15);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 56px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(250,246,236,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 18px 56px; border-bottom: 1px solid var(--line);
}
nav .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper); transition: color .4s;
}
nav.scrolled .brand { color: var(--ink); }
nav ul { list-style: none; display: flex; gap: 44px; }
nav ul a {
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--paper);
  text-decoration: none; opacity: .85;
  transition: color .4s, opacity .3s;
}
nav.scrolled ul a { color: var(--ink); }
nav ul a:hover { opacity: 1; }
.nav-cta {
  padding: 10px 22px; border: 1px solid rgba(250,246,236,.6);
  border-radius: 999px; font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--paper); text-decoration: none;
  transition: all .35s;
}
nav.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
.nav-cta:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--paper); }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 720px;
  overflow: hidden; display: flex; align-items: flex-end;
  color: var(--paper);
}
.hero-img {
  position: absolute; inset: 0;
  background: url('images/villa-courtyard-view.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 16s ease-out forwards;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 56px 96px; width: 100%;
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 60px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 9vw, 144px); font-weight: 300;
  line-height: .95; letter-spacing: -.01em;
  opacity: 0; animation: fadeUp 1.2s .4s ease-out forwards;
}
.hero h1 em { font-style: italic; color: var(--ochre); font-weight: 300; }
.hero-meta { text-align: right; opacity: 0; animation: fadeUp 1.2s .8s ease-out forwards; }
.hero-meta .eyebrow { color: rgba(250,246,236,.85); margin-bottom: 8px; }
.hero-meta .place {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; font-weight: 300;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  color: var(--paper); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 1.6s ease-out forwards;
}
.scroll-cue::after {
  content: ''; display: block;
  width: 1px; height: 32px; background: var(--paper);
  margin: 14px auto 0; transform-origin: top;
  animation: lineDrop 2s ease-in-out infinite;
}
@keyframes lineDrop {
  0%, 100% { transform: scaleY(.4); opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

section { padding: 140px 56px; position: relative; }
.container { max-width: 1320px; margin: 0 auto; }

/* INTRO */
.intro { background: var(--paper); padding: 160px 56px 140px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 120px; align-items: start; }
.intro-label { position: sticky; top: 140px; }
.intro-label .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-style: italic;
  color: var(--ochre-deep); margin-bottom: 24px; display: block;
}
.intro-label h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.05; color: var(--ink);
}
.intro-label h2 em { color: var(--terracotta); font-weight: 300; }
.intro-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300;
  line-height: 1.55; color: var(--ink); margin-bottom: 28px;
}
.intro-body p:first-child::first-letter {
  font-size: 84px; float: left; line-height: .85;
  padding: 6px 14px 0 0; color: var(--terracotta); font-style: italic;
}
.intro-body .signature {
  margin-top: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--ink-soft); font-size: 16px;
}
.intro-body .signature::before {
  content: ''; display: block;
  width: 48px; height: 1px; background: var(--ochre); margin-bottom: 14px;
}

/* IMAGE BREAK */
.image-break {
  height: 75vh; min-height: 560px;
  background: url('images/vinci-village-aerial.jpg') center/cover no-repeat;
  position: relative; overflow: hidden;
}
.image-break::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 40%, rgba(0,0,0,.3) 100%);
}
.image-break-caption {
  position: absolute; bottom: 56px; left: 56px; z-index: 2;
  color: var(--paper); max-width: 480px;
}
.image-break-caption .eyebrow { color: rgba(250,246,236,.85); margin-bottom: 14px; }
.image-break-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-style: italic; font-weight: 300; line-height: 1.3;
}

/* VILLA SECTION */
.villa-section { background: var(--stone-warm); padding: 160px 56px; }
.villa-section .section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-bottom: 100px; align-items: end;
}
.villa-section .section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300; line-height: 1; color: var(--ink);
}
.villa-section .section-head h2 em { color: var(--cypress); font-weight: 300; }
.villa-section .section-head p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic;
  color: var(--ink-soft); line-height: 1.5; max-width: 460px;
}
.villa-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px; gap: 18px;
}
.villa-grid figure { position: relative; overflow: hidden; background: var(--stone); }
.villa-grid figure img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.villa-grid figure:hover img { transform: scale(1.04); }
.villa-grid figure figcaption {
  position: absolute; bottom: 18px; left: 18px;
  color: var(--paper);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
.villa-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }
.g-1 { grid-column: 1 / span 7; grid-row: span 6; }
.g-2 { grid-column: 8 / span 5; grid-row: span 4; }
.g-3 { grid-column: 8 / span 5; grid-row: span 4; }
.g-4 { grid-column: 1 / span 4; grid-row: span 5; }
.g-5 { grid-column: 5 / span 4; grid-row: span 5; }
.g-6 { grid-column: 9 / span 4; grid-row: span 5; }

/* HOUSE / ROOMS */
.house { background: var(--paper); padding: 160px 56px; }
.house-intro { max-width: 720px; margin: 0 auto 120px; text-align: center; }
.house-intro .eyebrow { margin-bottom: 28px; display: inline-block; }
.house-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300; line-height: 1.05;
  color: var(--ink); margin-bottom: 28px;
}
.house-intro h2 em { color: var(--ochre-deep); font-style: italic; }
.house-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--ink-soft);
  line-height: 1.6; font-style: italic;
}
.room {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 140px;
}
.room:nth-child(even) { direction: rtl; }
.room:nth-child(even) > * { direction: ltr; }
.room-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--stone);
}
.room-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.room:hover .room-img img { transform: scale(1.03); }
.room-img::before {
  content: attr(data-num);
  position: absolute; top: -12px; left: -12px; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 96px;
  color: var(--ochre); line-height: 1; opacity: .9;
}
.room-text { padding: 0 20px; }
.room-text .eyebrow { color: var(--terracotta); margin-bottom: 18px; display: block; }
.room-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 24px;
}
.room-text h3 em { color: var(--cypress); font-style: italic; }
.room-text p {
  font-size: 15px; line-height: 1.75;
  color: var(--ink-soft); margin-bottom: 16px;
}

/* SPECS */
.specs {
  background: var(--cypress-deep);
  color: var(--stone-warm);
  padding: 160px 56px;
  position: relative; overflow: hidden;
}
.specs::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,165,116,.08), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(182,106,69,.08), transparent 50%);
  pointer-events: none;
}
.specs .container { position: relative; z-index: 1; }
.specs-head { text-align: center; margin-bottom: 100px; }
.specs-head .eyebrow { color: var(--ochre); margin-bottom: 24px; display: inline-block; }
.specs-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300; line-height: 1.05;
}
.specs-head h2 em { color: var(--ochre); font-style: italic; }
.specs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(237,229,214,.15);
  border-left: 1px solid rgba(237,229,214,.15);
}
.spec {
  padding: 48px 36px;
  border-right: 1px solid rgba(237,229,214,.15);
  border-bottom: 1px solid rgba(237,229,214,.15);
  transition: background .4s;
}
.spec:hover { background: rgba(201,165,116,.06); }
.spec .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300;
  color: var(--ochre); line-height: 1; margin-bottom: 12px;
}
.spec .num em { font-style: italic; }
.spec .num sup { font-size: .4em; }
.spec .label {
  font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(237,229,214,.7); margin-bottom: 12px;
}
.spec .desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px;
  color: var(--stone-warm); line-height: 1.5;
}
.amenities {
  margin-top: 100px; padding-top: 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px;
  border-top: 1px solid rgba(237,229,214,.15);
}
.amenity-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; font-style: italic;
  color: var(--ochre); margin-bottom: 28px;
}
.amenity-col ul { list-style: none; }
.amenity-col li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(237,229,214,.1);
  font-size: 14px; color: var(--stone-warm);
  display: flex; align-items: center; gap: 12px;
}
.amenity-col li::before {
  content: ''; width: 4px; height: 4px;
  background: var(--ochre); border-radius: 50%; flex-shrink: 0;
}

/* LOCATION */
.location { background: var(--paper); padding: 160px 56px; }
.location-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 100px; align-items: center;
}
.location-text .eyebrow { color: var(--terracotta); margin-bottom: 24px; display: block; }
.location-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300; line-height: 1.05;
  color: var(--ink); margin-bottom: 32px;
}
.location-text h2 em { color: var(--terracotta); font-style: italic; }
.location-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: var(--ink-soft);
  line-height: 1.65; margin-bottom: 20px;
}
.distances { margin-top: 48px; border-top: 1px solid var(--line); }
.distance {
  display: grid; grid-template-columns: 1fr auto;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  align-items: center;
}
.distance .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--ink);
}
.distance .name span {
  font-size: 12px; color: var(--ink-soft);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-left: 14px;
}
.distance .value {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 17px; color: var(--terracotta);
}
.location-img { aspect-ratio: 3/4; overflow: hidden; background: var(--stone); }
.location-img img { width: 100%; height: 100%; object-fit: cover; }

/* AROUND */
.around { background: var(--stone-warm); padding: 160px 56px; }
.around-head {
  text-align: center; margin-bottom: 80px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.around-head .eyebrow { color: var(--ochre-deep); margin-bottom: 24px; display: inline-block; }
.around-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.05;
  color: var(--ink); margin-bottom: 24px;
}
.around-head h2 em { color: var(--ochre-deep); font-style: italic; }
.around-head p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 18px;
  color: var(--ink-soft); line-height: 1.6;
}
.around-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.around-card { border-top: 1px solid var(--line); padding-top: 32px; }
.around-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 13px;
  color: var(--terracotta); margin-bottom: 18px;
}
.around-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--ink); margin-bottom: 12px; line-height: 1.15;
}
.around-card h4 em { font-style: italic; color: var(--cypress); }
.around-card .meta {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 16px;
}
.around-card p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); }

/* INQUIRY */
.inquiry {
  background: url('images/villa-pool-aerial-wide.jpg') center/cover no-repeat;
  padding: 180px 56px; color: var(--paper);
  position: relative; text-align: center;
}
.inquiry::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,38,32,.55) 0%, rgba(42,38,32,.7) 100%);
}
.inquiry-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.inquiry .eyebrow { color: var(--ochre); margin-bottom: 28px; display: inline-block; }
.inquiry h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 300; line-height: 1.05; margin-bottom: 28px;
}
.inquiry h2 em { color: var(--ochre); font-style: italic; }
.inquiry p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic;
  color: rgba(250,246,236,.85);
  margin-bottom: 48px; line-height: 1.6;
}
.inquiry-cta {
  display: inline-block; padding: 20px 56px;
  border: 1px solid var(--ochre); color: var(--paper);
  text-decoration: none; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  background: transparent; cursor: pointer;
  transition: all .4s;
}
.inquiry-cta:hover { background: var(--ochre); color: var(--ink); }
.inquiry .contact-line {
  margin-top: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: rgba(250,246,236,.7);
}
.inquiry .contact-line a { color: var(--ochre); text-decoration: none; }
.inquiry .contact-line a:hover { color: var(--paper); }

/* FOOTER */
footer { background: var(--ink); color: var(--stone-warm); padding: 80px 56px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px; margin-bottom: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(237,229,214,.12);
}
footer .brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 14px;
}
footer .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px;
  color: rgba(237,229,214,.6); max-width: 360px; line-height: 1.5;
}
footer h5 {
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ochre); margin-bottom: 20px; font-weight: 400;
}
footer p, footer a {
  color: rgba(237,229,214,.75);
  font-size: 14px; line-height: 1.8;
  text-decoration: none; display: block;
}
footer a:hover { color: var(--ochre); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237,229,214,.4);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  nav ul { display: none; }
  section, .villa-section, .house, .specs, .location, .around, .inquiry, .intro { padding: 100px 24px; }
  .hero-content { padding: 0 24px 64px; grid-template-columns: 1fr; gap: 24px; }
  .hero-meta { text-align: left; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-label { position: static; }
  .villa-section .section-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .villa-grid { grid-auto-rows: 60px; gap: 12px; }
  .g-1 { grid-column: 1/-1; grid-row: span 5; }
  .g-2 { grid-column: 1/-1; grid-row: span 4; }
  .g-3 { grid-column: 1/-1; grid-row: span 4; }
  .g-4 { grid-column: 1/span 6; grid-row: span 4; }
  .g-5 { grid-column: 7/-1; grid-row: span 4; }
  .g-6 { grid-column: 1/-1; grid-row: span 4; }
  .room { grid-template-columns: 1fr; gap: 32px; margin-bottom: 80px; }
  .room:nth-child(even) { direction: ltr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: 1fr; gap: 48px; }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .around-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .image-break-caption { left: 24px; bottom: 32px; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease-out, transform 1s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Short-film section ---------- */
.film {
  background: var(--ink);
  padding: 140px 56px;
  color: #f3eee7;
}
.film-inner { display: flex; flex-direction: column; align-items: center; }
.film-head { text-align: center; margin-bottom: 56px; max-width: 640px; }
.film-head .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 238, 231, 0.55);
  margin-bottom: 18px;
}
.film-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  margin: 0 0 22px;
  color: #f3eee7;
}
.film-head h2 em { color: var(--cypress); font-weight: 300; font-style: italic; }
.film-head p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(243, 238, 231, 0.72);
  margin: 0;
}
.film-frame {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(243, 238, 231, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.film-video { width: 100%; height: 100%; display: block; object-fit: cover; }

@media (max-width: 720px) {
  .film { padding: 90px 24px; }
  .film-head { margin-bottom: 36px; }
}
