/* ── Villa Detail Page ────────────────────────────────────────── */
body { background: var(--white); color: var(--dark); font-family: 'Noto Sans JP','Inter',sans-serif; font-weight: 300; line-height: 1.7; }

.vd-back {
  position: fixed;
  top: 28px;
  left: 48px;
  z-index: 50;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--white);
  mix-blend-mode: difference;
}
.vd-back:hover { opacity: 0.65; }

.vd-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.vd-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vd-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,24,16,0.15) 0%, rgba(28,24,16,0.05) 50%, rgba(28,24,16,0.55) 100%);
  z-index: 1;
}
.vd-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(40px,7vw,100px) clamp(60px,10vh,120px);
  z-index: 2;
  color: var(--white);
}
.vd-hero__num {
  font-family: 'Inter',sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold-l);
  margin-bottom: 14px;
}
.vd-hero__name {
  font-family: 'Noto Serif JP',serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 800px;
}
.vd-hero__sub {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing: 0.06em;
  color: rgba(253,250,246,0.78);
  max-width: 540px;
  font-style: italic;
}

/* Specs strip */
.vd-specs {
  background: var(--sand);
  padding: 60px clamp(40px,6vw,100px);
}
.vd-specs__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}
.vd-specs__item h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}
.vd-specs__item p {
  font-family: 'Noto Serif JP',serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 800px) {
  .vd-specs__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* Gallery */
.vd-gallery {
  padding: 120px clamp(20px,3vw,40px);
  background: var(--white);
}
.vd-gallery__title {
  text-align: center;
  margin-bottom: 60px;
}
.vd-gallery__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.vd-gallery__heading {
  font-family: 'Noto Serif JP',serif;
  font-weight: 300;
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  letter-spacing: 0.06em;
  color: var(--dark);
}
.vd-gallery__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.vd-gallery__grid figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.vd-gallery__grid figure:nth-child(1) { grid-row: span 2; aspect-ratio: 4/5; }
.vd-gallery__grid figure:nth-child(2) { aspect-ratio: 4/3; }
.vd-gallery__grid figure:nth-child(3) { aspect-ratio: 4/3; }
.vd-gallery__grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.vd-gallery__grid figure:hover img { transform: scale(1.04); }
@media (max-width: 800px) {
  .vd-gallery__grid { grid-template-columns: 1fr; }
  .vd-gallery__grid figure:nth-child(1) { grid-row: auto; aspect-ratio: 4/3; }
}

/* Description */
.vd-desc {
  padding: 80px clamp(40px,6vw,100px) 60px;
  background: var(--white);
}
.vd-desc__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.vd-desc__inner p {
  font-size: 0.98rem;
  line-height: 2.0;
  color: rgba(28,24,16,0.7);
  font-family: 'Noto Sans JP',sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 1.4em;
}
.vd-desc__inner p:last-child { margin-bottom: 0; }

/* CTA */
.vd-cta {
  padding: 100px clamp(40px,6vw,100px) 140px;
  background: var(--white);
  text-align: center;
}
.vd-cta__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}
.vd-cta__heading {
  font-family: 'Noto Serif JP',serif;
  font-weight: 300;
  font-size: clamp(2rem,4vw,3rem);
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 40px;
}
.vd-cta__btn {
  display: inline-block;
  padding: 18px 44px;
  background: var(--dark);
  color: var(--gold-l);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.vd-cta__btn:hover { background: var(--gold); color: var(--white); }
