/* ============================================
   Villa Najma – Redesign
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --color-bg:          #f7f5f0;
  --color-white:       #ffffff;
  --color-dark:        #141412;
  --color-text:        #2e2d28;
  --color-muted:       #6b6860;

  --color-teal:        #1a6b5c;
  --color-teal-mid:    #2a8a78;
  --color-teal-light:  #5ab5a0;
  --color-teal-pale:   #e8f4f1;

  --color-gold:        #b89c6e;
  --color-gold-light:  #d4b98a;

  --color-border:      #e2dbd0;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --max-w: 1180px;
  --section-pad: 7rem 1.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-dark);
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.15rem; }
em { font-style: italic; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-teal);
  display: block;
  margin-bottom: 1rem;
}
.divider {
  width: 50px; height: 1px;
  background: var(--color-teal);
  margin: 1.8rem 0;
}

/* ── Layout ─────────────────────────────────── */

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-pad); }
.text-center { text-align: center; }

/* ── Reveal Animations ───────────────────────── */

.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-scale { transform: scale(0.96); }
.reveal-up.visible, .reveal-left.visible,
.reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}

/* ── Buttons ────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-gold  { background: var(--color-gold); color: #fff; }
.btn-gold:hover { background: var(--color-gold-light); }
.btn-teal  { background: var(--color-teal); color: #fff; }
.btn-teal:hover { background: var(--color-teal-mid); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--color-dark); border-color: #fff; }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-lg { padding: 1.1rem 3rem; font-size: 0.8rem; }

/* ── Navigation ─────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background 0.5s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 30px rgba(0,0,0,0.07);
}
.nav__logo { height: 48px; display: block; flex-shrink: 0; }
.nav__logo img { height: 100%; width: auto; object-fit: contain; }
.nav__links { display: flex; gap: 2.8rem; list-style: none; }
.nav__links a {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--color-teal-light);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover::after,
.nav__links a.nav-active::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--color-dark); }
.nav__links a:hover { color: var(--color-teal-light); }
.nav.scrolled .nav__links a:hover { color: var(--color-teal); }
.nav.scrolled .nav__links a.nav-active { color: var(--color-teal); }
.nav__links a.nav-active::after { background: var(--color-teal); }
.nav__book {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  background: var(--color-teal); color: #fff;
  transition: background 0.25s;
}
.nav__book:hover { background: var(--color-teal-mid); }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.9);
  transition: background 0.2s;
}
.nav.scrolled .nav__toggle span { background: var(--color-dark); }
@media (max-width: 800px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.2rem; background: var(--color-teal);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 199;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: rgba(255,255,255,0.9) !important; font-size: 1rem; }
  .nav__book { display: none; }
}

/* ── Hero ───────────────────────────────────── */

.hero {
  position: relative;
  height: 100svh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; background: var(--color-teal); }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10,40,35,0.72) 0%,
    rgba(10,40,35,0.45) 60%,
    rgba(10,40,35,0.65) 100%);
}

/* Particles */
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); animation: floatPart linear infinite; }
.p1 { width: 6px; height: 6px; top: 20%; left: 15%; animation-duration: 8s; }
.p2 { width: 4px; height: 4px; top: 60%; left: 80%; animation-duration: 11s; animation-delay: -3s; }
.p3 { width: 8px; height: 8px; top: 75%; left: 25%; animation-duration: 9s; animation-delay: -5s; }
.p4 { width: 3px; height: 3px; top: 35%; left: 70%; animation-duration: 13s; animation-delay: -2s; }
.p5 { width: 5px; height: 5px; top: 85%; left: 55%; animation-duration: 10s; animation-delay: -7s; }
@keyframes floatPart {
  0%   { transform: translateY(0) translateX(0); opacity: 0.3; }
  25%  { transform: translateY(-30px) translateX(15px); opacity: 0.7; }
  50%  { transform: translateY(-60px) translateX(-10px); opacity: 0.4; }
  75%  { transform: translateY(-30px) translateX(20px); opacity: 0.8; }
  100% { transform: translateY(0) translateX(0); opacity: 0.3; }
}

.hero__content {
  position: relative; text-align: center;
  color: #fff; padding: 2rem; z-index: 2;
}
.hero__eyebrow {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--color-teal-light); display: block; margin-bottom: 1.5rem;
  animation: fadeInDown 1s var(--ease-out) both;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300; color: #fff;
  line-height: 0.9; margin-bottom: 2rem;
  animation: fadeInDown 1s var(--ease-out) 0.1s both;
}
.title-line { display: block; }
.hero__tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 3rem;
  animation: fadeInDown 1s var(--ease-out) 0.2s both;
}
.hero__cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInDown 1s var(--ease-out) 0.3s both;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.5); font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; z-index: 2;
  animation: fadeInDown 1.2s var(--ease-out) 0.6s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(0.6); transform-origin: top; }
}

.hero__corner {
  position: absolute; width: 80px; height: 80px; z-index: 2; opacity: 0.3;
}
.hero__corner--tl {
  top: 6rem; left: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.6);
  border-left: 1px solid rgba(255,255,255,0.6);
  animation: fadeInDown 1.5s var(--ease-out) 0.8s both;
}
.hero__corner--br {
  bottom: 4rem; right: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  border-right: 1px solid rgba(255,255,255,0.6);
  animation: fadeInDown 1.5s var(--ease-out) 0.9s both;
}

/* ── Stats Bar ──────────────────────────────── */

.stats-bar {
  background: var(--color-teal);
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem 2rem; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; padding: 0 3.5rem; }
.stat-num {
  font-family: var(--font-serif); font-size: 2.8rem;
  font-weight: 300; color: #fff; line-height: 1;
}
.stat-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-teal-light); }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }
@media (max-width: 700px) {
  .stat-divider { display: none; }
  .stat-item { padding: 1rem 2rem; }
}

/* ── Intro ──────────────────────────────────── */

.intro {
  padding: 8rem 2rem;
  background: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 6rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.intro__deco {
  position: absolute; top: -40px; right: 40px;
  width: 300px; height: 300px;
  border: 1px solid var(--color-teal-pale);
  border-radius: 50%; pointer-events: none;
}
.intro__inner h2 { margin-bottom: 1rem; }
.intro__inner p { color: var(--color-muted); }
.intro__image { position: relative; aspect-ratio: 4/5; }
.intro__image img { width: 100%; height: 100%; object-fit: cover; }
.intro__image-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--color-teal); color: #fff;
  padding: 1.2rem 1.6rem; text-align: center;
}
.intro__image-badge span { display: block; font-family: var(--font-serif); font-size: 2rem; line-height: 1; }
.badge-label { font-size: 0.65rem !important; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }
@media (max-width: 960px) {
  .intro { grid-template-columns: 1fr; max-width: 640px; padding: 5rem 2rem; }
  .intro__image { max-height: 420px; }
  .intro__deco { display: none; }
}

/* ── Features Grid ──────────────────────────── */

.features { background: var(--color-bg); padding: var(--section-pad); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5px; margin-top: 4rem;
  background: var(--color-border);
}
.feature-card {
  padding: 2.5rem 1.8rem;
  background: var(--color-white);
  transition: transform 0.4s var(--ease-out), background 0.3s;
  position: relative;
}
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 1.8rem;
  width: 0; height: 2px; background: var(--color-teal);
  transition: width 0.4s var(--ease-out);
}
.feature-card:hover { transform: translateY(-4px); background: var(--color-teal-pale); }
.feature-card:hover::before { width: calc(100% - 3.6rem); }
.feature-card__icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid var(--color-teal-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; color: var(--color-teal);
  transition: background 0.3s, color 0.3s;
}
.feature-card:hover .feature-card__icon-wrap { background: var(--color-teal); color: #fff; border-color: var(--color-teal); }
.feature-card h4 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.87rem; color: var(--color-muted); line-height: 1.65; margin: 0; }

/* ── Villas Split ───────────────────────────── */

.villas { background: var(--color-white); }
.villa-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.villa-block:nth-child(even) .villa-block__img { order: 2; }
.villa-block:nth-child(even) .villa-block__text { order: 1; }
.villa-block__img { position: relative; overflow: hidden; }
.villa-block__img img {
  position: absolute; inset: 0; height: 100%;
  object-fit: cover; transition: transform 0.8s var(--ease-out);
}
.villa-block:hover .villa-block__img img { transform: scale(1.04); }
.villa-block__img-overlay {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--color-teal); color: #fff;
  padding: 0.4rem 1.1rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.villa-block__text {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--color-bg);
}
.villa-block__text h3 { margin-bottom: 1rem; }
.villa-block__text p { color: var(--color-muted); margin-bottom: 0; }
.specs { list-style: none; margin: 2rem 0 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.specs li { font-size: 0.85rem; color: var(--color-muted); display: flex; align-items: center; gap: 0.6rem; }
.specs li::before { content: ''; width: 5px; height: 5px; background: var(--color-teal); flex-shrink: 0; }
@media (max-width: 800px) {
  .villa-block { grid-template-columns: 1fr; }
  .villa-block:nth-child(even) .villa-block__img { order: 0; }
  .villa-block:nth-child(even) .villa-block__text { order: 0; }
  .villa-block__img { min-height: 300px; }
  .villa-block__text { padding: 3rem 2rem; }
}

/* ── Group Banner ───────────────────────────── */

.group-banner { background: var(--color-teal-pale); border-top: 1px solid rgba(26,107,92,0.15); }
.group-banner__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 3rem 2rem;
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.group-banner__icon { color: var(--color-teal); flex-shrink: 0; }
.group-banner__inner h4 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--color-dark); margin-bottom: 0.4rem; }
.group-banner__inner p { font-size: 0.9rem; color: var(--color-muted); margin: 0; flex: 1; }

/* ── Gallery ────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 3px;
}
.gallery--slim {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px;
}
.gallery__item { overflow: hidden; }
.gallery__item img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--large { grid-column: span 2; grid-row: span 2; }
@media (max-width: 700px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item--large { grid-column: span 2; height: 240px; grid-row: span 1; }
  .gallery__item { height: 180px; }
  .gallery--slim { grid-template-columns: 1fr 1fr; grid-template-rows: 180px; }
}

/* ── Region ─────────────────────────────────── */

.region {
  position: relative; padding: var(--section-pad);
  background: var(--color-teal); color: #fff; overflow: hidden;
}
.region__bg-deco { position: absolute; inset: 0; pointer-events: none; }
.deco-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); }
.dc1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.dc2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.region h2, .region h4 { color: #fff; }
.region .eyebrow { color: var(--color-teal-light); }
.region .divider { background: var(--color-gold); }
.region__lead { max-width: 640px; color: rgba(255,255,255,0.75); margin-bottom: 4rem; }
.attraction-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px; background: rgba(255,255,255,0.1);
}
.attraction-card { background: rgba(255,255,255,0.05); transition: background 0.3s; overflow: hidden; }
.attraction-card:hover { background: rgba(255,255,255,0.1); }
.attraction-card img { height: 190px; object-fit: cover; filter: brightness(0.8); transition: filter 0.4s, transform 0.6s var(--ease-out); }
.attraction-card:hover img { filter: brightness(0.95); transform: scale(1.04); }
.attraction-card__placeholder { height: 190px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.attraction-card__body { padding: 1.6rem; }
.attraction-card h4 { color: var(--color-gold-light); margin-bottom: 0.5rem; font-size: 1.1rem; }
.attraction-card p { font-size: 0.87rem; color: rgba(255,255,255,0.7); margin: 0; }
.tag { display: inline-block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.6); padding: 0.2rem 0.6rem; margin-bottom: 0.6rem; }

/* ── Host Section ───────────────────────────── */

.host-section { background: var(--color-bg); }
.host-card {
  background: var(--color-white);
  display: grid; grid-template-columns: 280px 1fr; gap: 4rem;
  align-items: center; padding: 4rem; max-width: 900px;
  border: 1px solid var(--color-border);
}
.host-card__avatar { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 50%; width: 180px; margin: 0 auto; }
.host-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.host-card__info h3 { margin-bottom: 0.8rem; }
.host-card__info p { color: var(--color-muted); margin-bottom: 2rem; }
.host-card__stats { display: flex; gap: 2.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.host-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.host-stat__num { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--color-teal); line-height: 1; }
.host-stat__label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted); }
@media (max-width: 700px) {
  .host-card { grid-template-columns: 1fr; padding: 2.5rem 2rem; gap: 2rem; }
  .host-card__avatar { width: 120px; }
}

/* ── Cuisine ────────────────────────────────── */

.cuisine { padding: var(--section-pad); background: var(--color-bg); }
.cuisine__header { margin-bottom: 3rem; }
.food-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--color-border); }
.food-list li { display: flex; align-items: flex-start; gap: 1.4rem; padding: 2rem; background: var(--color-white); transition: background 0.3s; }
.food-list li:hover { background: var(--color-teal-pale); }
.food-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; color: var(--color-teal-light); line-height: 1; flex-shrink: 0; width: 2.5rem; }
.food-list li strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: var(--color-dark); margin-bottom: 0.3rem; }
.food-list li span { font-size: 0.87rem; color: var(--color-muted); }

/* ── Pricing Banner ─────────────────────────── */

.pricing { background: var(--color-dark); padding: 5rem 2rem; }
.pricing__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
}
.pricing__text h2 { color: #fff; margin-bottom: 0.8rem; }
.pricing__text p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0; }
.pricing__text .eyebrow { color: var(--color-teal-light); }

/* ── Contact ────────────────────────────────── */

.contact { padding: var(--section-pad); background: var(--color-white); position: relative; overflow: hidden; }
.contact__deco { position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: var(--color-teal-pale); pointer-events: none; }
.contact .container { max-width: 680px; }
.contact h2 { margin-bottom: 0.5rem; }
.contact p { color: var(--color-muted); margin-bottom: 2.5rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1rem; align-items: end; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted); }
.form-field input {
  background: transparent; border: none;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-dark); padding: 0.75rem 0;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 300;
  outline: none; transition: border-color 0.3s;
}
.form-field input:focus { border-color: var(--color-teal); }
.form-field input::placeholder { color: var(--color-border); }
.form-success { margin-top: 1.2rem; color: var(--color-teal); font-size: 0.9rem; display: none; }
@media (max-width: 600px) { .contact-form { grid-template-columns: 1fr; } }

/* ── Footer ─────────────────────────────────── */

.footer { background: #0e0e0d; color: rgba(255,255,255,0.4); }
.footer__top {
  max-width: var(--max-w); margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand img { height: 44px; width: auto; opacity: 0.5; margin-bottom: 0.5rem; }
.footer__brand p { font-size: 0.75rem; letter-spacing: 0.1em; }
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__nav a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__nav a:hover { color: var(--color-teal-light); }
.footer__social { display: flex; gap: 1rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s, border-color 0.25s;
}
.social-link:hover { color: var(--color-teal-light); border-color: var(--color-teal-light); }
.footer__bottom { max-width: var(--max-w); margin: 0 auto; padding: 1.5rem 2rem; text-align: center; font-size: 0.7rem; letter-spacing: 0.08em; }

/* ── Page Hero (Unterseiten) ────────────────── */

.page-hero {
  height: 55vh; min-height: 400px;
  position: relative; display: flex; align-items: flex-end;
  padding: 5rem 2.5rem; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; background: var(--color-teal); }
.page-hero__bg img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: 0.45; }
.page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,40,35,0.8) 0%, rgba(10,40,35,0.2) 60%);
}
.page-hero__content { position: relative; color: #fff; z-index: 1; }
.page-hero__content h1 { color: #fff; }
.page-hero__content em { font-style: italic; }

/* ── Villa Tabs ─────────────────────────────── */

.villa-tabs {
  display: flex; background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky; top: 66px; z-index: 100;
}
.villa-tab {
  flex: 1; padding: 1.2rem 2rem;
  font-family: var(--font-sans); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; background: none; border: none;
  color: var(--color-muted); border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.villa-tab.active, .villa-tab:hover { color: var(--color-teal); }
.villa-tab.active { border-bottom-color: var(--color-teal); }

/* ── Villa Overview ─────────────────────────── */

.villa-overview__grid {
  display: grid; grid-template-columns: 1fr 460px;
  gap: 5rem; align-items: center;
}
.villa-overview__text h2 { margin-bottom: 1rem; }
.villa-overview__text p { color: var(--color-muted); }
.villa-overview__img { aspect-ratio: 4/5; overflow: hidden; }
.villa-overview__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.villa-overview__img:hover img { transform: scale(1.03); }
.overview-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.8rem 0 2.5rem; }
.chip {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--color-teal-pale); color: var(--color-teal);
  padding: 0.35rem 0.9rem; border: 1px solid rgba(26,107,92,0.2);
}
@media (max-width: 900px) {
  .villa-overview__grid { grid-template-columns: 1fr; }
  .villa-overview__img { max-height: 380px; }
}

/* ── Bedroom Cards ──────────────────────────── */

.bedroom-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3rem;
}
.bedroom-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) {
  .bedroom-grid, .bedroom-grid--3 { grid-template-columns: 1fr; }
}
.bedroom-card {
  background: var(--color-bg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}
.bedroom-card:hover { transform: translateY(-4px); }
.bedroom-card__img { aspect-ratio: 4/3; overflow: hidden; }
.bedroom-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.bedroom-card:hover .bedroom-card__img img { transform: scale(1.05); }
.bedroom-card__body { padding: 1.6rem; }
.bedroom-card__body h4 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.3rem; }
.bedroom-sub { font-size: 0.85rem; color: var(--color-teal); margin-bottom: 1rem; }
.bedroom-features { list-style: none; }
.bedroom-features li {
  font-size: 0.85rem; color: var(--color-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex; align-items: center; gap: 0.5rem;
}
.bedroom-features li:last-child { border-bottom: none; }
.bedroom-features li::before { content: '✓'; color: var(--color-teal); font-size: 0.75rem; flex-shrink: 0; }

/* ── Photo Masonry ──────────────────────────── */

.photo-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 3px;
}
.photo-masonry__item { overflow: hidden; }
.photo-masonry__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.photo-masonry__item:hover img { transform: scale(1.06); }
.photo-masonry__item.pm-tall { grid-row: span 2; }
@media (max-width: 700px) {
  .photo-masonry { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .photo-masonry__item.pm-tall { grid-row: span 1; }
}

/* ── Amenity Groups ─────────────────────────── */

.amenity-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.amenity-group { padding: 2rem; background: var(--color-white); border: 1px solid var(--color-border); transition: border-color 0.3s; }
.amenity-group:hover { border-color: var(--color-teal-light); }
.amenity-group__header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; color: var(--color-teal); }
.amenity-group__header h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--color-dark); margin: 0; }
.amenity-list { list-style: none; }
.amenity-list li {
  font-size: 0.87rem; color: var(--color-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex; align-items: center; gap: 0.5rem;
}
.amenity-list li:last-child { border-bottom: none; }
.amenity-list li::before { content: '—'; color: var(--color-teal); flex-shrink: 0; }

/* ── Quick Info (Hausordnung) ───────────────── */

.quick-info { background: var(--color-teal); }
.quick-info__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 3rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.qi-item { display: flex; align-items: center; gap: 1.2rem; padding: 1rem 3rem; color: #fff; }
.qi-item svg { color: var(--color-teal-light); flex-shrink: 0; }
.qi-label { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-teal-light); margin-bottom: 0.2rem; }
.qi-val { display: block; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300; line-height: 1; }
.qi-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.2); }
@media (max-width: 700px) {
  .qi-divider { display: none; }
  .qi-item { padding: 1rem 1.5rem; }
}

/* ── Rules ──────────────────────────────────── */

.rules { padding: var(--section-pad); background: var(--color-bg); }
.rules-intro { max-width: 640px; color: var(--color-muted); margin-bottom: 3.5rem; }
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.rule-card {
  padding: 2rem; background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s, transform 0.3s;
}
.rule-card:hover { border-color: var(--color-teal-light); transform: translateY(-3px); }
.rule-card__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--color-teal-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-teal); margin-bottom: 1.2rem;
  transition: background 0.3s, color 0.3s;
}
.rule-card:hover .rule-card__icon { background: var(--color-teal); color: #fff; border-color: var(--color-teal); }
.rule-card h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--color-teal); margin-bottom: 1rem; }
.rule-card ul { list-style: none; }
.rule-card ul li {
  padding: 0.45rem 0; border-bottom: 1px solid var(--color-border);
  font-size: 0.88rem; color: var(--color-muted);
  display: flex; gap: 0.6rem;
}
.rule-card ul li:last-child { border-bottom: none; }
.rule-card ul li::before { content: '—'; color: var(--color-teal); flex-shrink: 0; }

/* ── Fees Table ─────────────────────────────── */

.fees-grid { margin-top: 2rem; border: 1px solid var(--color-border); }
.fee-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; gap: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s;
}
.fee-row:last-child { border-bottom: none; }
.fee-row:hover { background: var(--color-teal-pale); }
.fee-item { font-size: 0.9rem; color: var(--color-muted); }
.fee-price { font-size: 0.9rem; font-weight: 500; color: var(--color-teal); white-space: nowrap; }

/* ── Safety Grid ────────────────────────────── */

.safety-section { background: var(--color-bg); }
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 3rem; }
.safety-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem; background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.9rem; color: var(--color-muted);
  transition: border-color 0.25s;
}
.safety-item:hover { border-color: var(--color-teal-light); }
.safety-item svg { color: var(--color-teal); flex-shrink: 0; margin-top: 1px; }

/* ── Utility ────────────────────────────────── */
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* ── Legal pages (Impressum / Datenschutz) ── */
.legal-page { padding-top: 8rem; }
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--color-dark);
  margin: 0.5rem 0 3rem;
}
.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-teal-pale);
}
.legal-block:last-of-type { border-bottom: none; }
.legal-block h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}
.legal-block p, .legal-block li {
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.legal-block ul {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
.legal-block li { margin-bottom: 0.4rem; }
.legal-block a { color: var(--color-teal); text-decoration: underline; }
.legal-date {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 3rem;
  opacity: 0.6;
}
