/* DEMO/MOCKUP — Konfor Suit Apart */

:root {
  --bg: #fffcfa;
  --bg-soft: #fdf6f3;
  --surface: #ffffff;
  --ink: #201a18;
  --muted: #5f5651;
  --line: #efe5e0;
  --coral: #e11d48;        /* AA-safe text coral */
  --coral-bright: #f43f5e; /* decorative */
  --coral-soft: #fff1f2;
  --teal: #0f766e;
  --teal-deep: #134e4a;
  --teal-soft: #f0fdfa;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-card: 0 2px 6px rgba(32, 26, 24, 0.05), 0 18px 44px -20px rgba(32, 26, 24, 0.18);
  --shadow-lift: 0 6px 14px rgba(32, 26, 24, 0.07), 0 32px 64px -24px rgba(225, 29, 72, 0.22);
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

[id] { scroll-margin-top: 96px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

a { color: inherit; }

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral-bright), var(--teal));
  z-index: 200;
  border-radius: 0 4px 4px 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 250, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(32, 26, 24, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  min-height: 44px;
}

.brand-mark {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--coral-bright), var(--coral));
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--muted);
  padding: 0.6rem 0.85rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover { color: var(--ink); background: var(--bg-soft); }

.main-nav a.is-active {
  color: var(--coral);
  background: var(--coral-soft);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  background: var(--ink);
  padding: 0.7rem 1.25rem;
  min-height: 44px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover { background: var(--coral); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  min-height: 52px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral-bright), var(--coral));
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(225, 29, 72, 0.5);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(225, 29, 72, 0.55); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(15, 118, 110, 0.5);
}

.btn-teal:hover { background: var(--teal-deep); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: clip;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}

.hero-blob--coral {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.5), transparent 65%);
  top: -140px; right: -100px;
}

.hero-blob--teal {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.3), transparent 65%);
  bottom: -160px; left: -120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid rgba(15, 118, 110, 0.18);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.eyebrow--coral {
  color: var(--coral);
  background: var(--coral-soft);
  border-color: rgba(225, 29, 72, 0.16);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  margin-bottom: 1.3rem;
}

.hero h1 .accent {
  color: var(--coral);
  position: relative;
  white-space: nowrap;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.28em;
  background: var(--coral-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
}

.stat b {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  display: block;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat span { font-size: 0.86rem; color: var(--muted); font-weight: 500; }

.hero-visual {
  position: relative;
}

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: rotate(1.5deg);
}

.hero-photo img { width: 100%; object-fit: cover; aspect-ratio: 4 / 3; will-change: transform; transform: scale(1.08); }

.hero-chip {
  position: absolute;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
  will-change: transform;
}

.hero-chip svg { flex: none; }

.hero-chip--top { top: -22px; left: -18px; }
.hero-chip--bottom { bottom: -20px; right: -8px; }

.hero-chip small { display: block; font-weight: 500; color: var(--muted); font-size: 0.76rem; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section--soft { background: var(--bg-soft); }

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head.center { margin-inline: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 0.9rem;
}

.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Cards: daire tipleri ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.room-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.room-card-media {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.room-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.room-card:hover .room-card-media img { transform: scale(1.06); }

.room-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.room-card-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }

.room-card-body h3 { font-size: 1.28rem; }

.room-card-body p { color: var(--muted); font-size: 0.94rem; flex: 1; }

.room-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  padding-top: 0.4rem;
}

.room-card-link {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.5rem;
}

/* ---------- Amenity icons grid ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.amenity {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.amenity:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(225, 29, 72, 0.25);
}

.amenity-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--coral-soft);
  color: var(--coral);
  flex: none;
}

.amenity:nth-child(even) .amenity-icon { background: var(--teal-soft); color: var(--teal); }

.amenity h3 { font-size: 1.05rem; }

.amenity p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Location band ---------- */
.location-band {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 3.2rem clamp(1.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: clip;
}

.location-band::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.35), transparent 65%);
  top: -140px; right: -80px;
  pointer-events: none;
}

.location-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 0.8rem; max-width: 22ch; }

.location-band > p { color: rgba(255, 255, 255, 0.82); max-width: 56ch; margin-bottom: 1.8rem; }

.distance-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  position: relative;
}

.distance-chips span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ---------- Parallax photo layer (bands) ---------- */
.band-media {
  position: absolute;
  inset: -16% 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.band-media img { width: 100%; height: 100%; object-fit: cover; }

.band-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.location-band .band-media::after {
  background: linear-gradient(135deg, rgba(19, 78, 74, 0.94), rgba(15, 118, 110, 0.86));
}

.cta-band .band-media::after {
  background: rgba(32, 26, 24, 0.9);
}

.location-band > :not(.band-media),
.cta-band > :not(.band-media) { position: relative; z-index: 1; }

/* ---------- Gallery strip ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 1rem;
}

.gallery-grid figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-grid figure:first-child { grid-column: span 2; grid-row: span 2; }

.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.gallery-grid figure:hover img { transform: scale(1.05); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: clip;
}

.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-band::before {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.4), transparent 65%);
  left: -100px; bottom: -140px;
}

.cta-band::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.45), transparent 65%);
  right: -80px; top: -120px;
}

.cta-band h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); margin-bottom: 0.9rem; position: relative; }

.cta-band p { color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; position: relative; }

.cta-band .btn { position: relative; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 4rem 0 3.2rem;
  overflow: clip;
}

.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: 1rem; max-width: 20ch; }

.page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 58ch; }

/* ---------- Daire detail blocks ---------- */
.unit-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.4rem 0;
  border-top: 1px solid var(--line);
}

.unit-block:first-of-type { border-top: none; }

.unit-block.reverse .unit-media { order: 2; }

.unit-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.unit-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.unit-media-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--coral);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.88rem;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
}

.unit-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.9rem; }

.unit-info > p { color: var(--muted); margin-bottom: 1.4rem; }

.unit-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.unit-specs span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.unit-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.4rem;
  margin-bottom: 1.8rem;
}

.unit-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--ink);
}

.unit-list li svg { color: var(--teal); flex: none; }

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: clip;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.is-open {
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 1.25rem 1.5rem;
  min-height: 44px;
  cursor: pointer;
}

.faq-icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--coral-soft);
  color: var(--coral);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--coral);
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.96rem;
  padding: 0 1.5rem;
}

.faq-item.is-open .faq-answer-inner { padding-bottom: 1.4rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(225, 29, 72, 0.3);
}

.contact-card .amenity-icon { width: 46px; height: 46px; border-radius: 14px; }

.contact-card h3 { font-size: 0.98rem; margin-bottom: 0.15rem; }

.contact-card p { color: var(--muted); font-size: 0.92rem; }

.contact-card p b { color: var(--ink); font-weight: 700; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}

.form-card h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }

.form-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.6rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-weight: 600;
  font-size: 0.86rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  min-height: 48px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coral-bright);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1rem;
}

.form-success {
  display: none;
  margin-top: 1.2rem;
  background: var(--teal-soft);
  border: 1px solid rgba(15, 118, 110, 0.3);
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 14px;
  padding: 1rem 1.2rem;
}

.form-success.is-visible { display: block; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  margin-top: 3.5rem;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #171310;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 5rem;
  padding: 4rem 0 2rem;
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .brand-text { color: #fff; }

.site-footer .brand-text small { color: #5eead4; }

.footer-about { margin-top: 1rem; max-width: 34ch; }

.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-col a:hover { color: #fb7185; }

.footer-col address { font-style: normal; line-height: 1.8; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .unit-block { grid-template-columns: 1fr; gap: 1.8rem; }
  .unit-block.reverse .unit-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 50px -20px rgba(32, 26, 24, 0.25);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.35rem;
    transform: translateY(-130%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
    z-index: 90;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { font-size: 1.05rem; padding: 0.8rem 1rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .unit-list { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  .hero-chip--top { left: 6px; }
  .hero-chip--bottom { right: 6px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-blob, .hero-chip, .band-media, .hero-photo img { transform: none !important; }
}
