/* =========================================================================
   MF Immo — Charte : blanc · beige · bleu marine · accent doré
   Logo : Playfair Display  ·  Texte : Inter
   ========================================================================= */
:root {
  --navy: #16243a;
  --navy-2: #1f3656;
  --navy-soft: #38516f;
  --beige: #efe6d6;
  --beige-soft: #f7f1e7;
  --cream: #fffdf9;
  --gold: #c4a36a;
  --gold-deep: #a9854c;
  --ink: #1c2632;
  --muted: #6c7686;
  --line: #e7ddcd;
  --white: #ffffff;
  --green: #3f7d58;
  --green-bg: #e4efe6;
  --shadow-sm: 0 6px 20px rgba(22, 36, 58, 0.06);
  --shadow-md: 0 18px 50px rgba(22, 36, 58, 0.12);
  --shadow-lg: 0 30px 80px rgba(22, 36, 58, 0.20);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1140px;
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typo ---------- */
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

/* ---------- Logo ---------- */
.logo {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.01em;
}
.logo .logo-name {
  display: block;
  font-size: 1.5rem;
}
.logo .logo-name .first {
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo .logo-name .last {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.logo .logo-name,
.logo .logo-sub {
  white-space: nowrap;
}
.logo .logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 5px;
  font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  font-weight: 500;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after {
  width: 100%;
}
.lang-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lang-toggle:hover {
  border-color: var(--gold);
  background: var(--beige-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
  text-align: center;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-2);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-light:hover {
  border-color: var(--gold);
}
.btn-block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 85% 15%,
      rgba(196, 163, 106, 0.22),
      transparent 45%
    ),
    radial-gradient(circle at 10% 90%, rgba(56, 81, 111, 0.5), transparent 55%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 96px;
  max-width: 820px;
  text-align: center;
}
.hero .eyebrow {
  color: var(--gold);
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin: 18px 0 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255, 253, 249, 0.82);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 38px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(255, 253, 249, 0.7);
}
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Sections ---------- */
.section {
  padding: 86px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 12px 0 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}
.section-beige {
  background: var(--beige-soft);
}

/* ---------- Apartment cards (home) ---------- */
.apt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.apt-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.apt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.apt-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--beige);
}
.apt-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apt-card-media .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--beige), #e6dac4);
}
.apt-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(22, 36, 58, 0.86);
  color: var(--cream);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.apt-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.apt-card-body h3 {
  font-size: 1.45rem;
}
.apt-card-loc {
  font-size: 0.84rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.apt-card-desc {
  color: var(--muted);
  font-size: 0.95rem;
}
.apt-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 4px;
}
.apt-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.apt-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}
.apt-price b {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
}
.apt-price small {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Feature strip ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  text-align: center;
  padding: 8px;
}
.feature .ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- Apartment detail page ---------- */
.apt-hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
  padding-top: 28px;
}
.apt-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 440px;
}
.apt-gallery figure {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--beige);
}
.apt-gallery figure:first-child {
  grid-row: 1 / 3;
}
.apt-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apt-gallery .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-family: var(--serif);
  background: linear-gradient(135deg, var(--beige), #e6dac4);
  font-size: 0.9rem;
}
.apt-gallery figure {
  cursor: pointer;
}
.apt-gallery figure img {
  transition: transform 0.4s ease;
}
.apt-gallery figure:hover img {
  transform: scale(1.05);
}
.gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(22, 36, 58, 0.55);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.gallery-more:hover {
  background: rgba(22, 36, 58, 0.7);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 22, 35, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lb-close:hover,
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lb-close {
  top: 22px;
  right: 22px;
}
.lb-prev {
  left: 22px;
}
.lb-next {
  right: 22px;
}
.lb-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Coming-soon apartment card */
.apt-card.soon .apt-card-media .ph {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold);
  font-size: 1.2rem;
}
.apt-card-badge.badge-soon {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.apt-intro {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.apt-intro h1 {
  color: var(--cream);
  font-size: 2rem;
  margin: 10px 0 6px;
}
.apt-intro .loc {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.apt-intro p {
  color: rgba(255, 253, 249, 0.8);
  font-size: 0.96rem;
  margin: 16px 0;
}
.apt-intro .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.apt-intro .pills span {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.1);
  border: 1px solid rgba(255, 253, 249, 0.16);
}
.apt-intro .price-tag {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 249, 0.16);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.apt-intro .price-tag b {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
}

/* layout columns for detail */
.apt-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 56px 0;
  align-items: start;
}
.prose h2 {
  font-size: 1.5rem;
  margin: 28px 0 12px;
}
.prose p {
  color: var(--ink);
  margin-bottom: 12px;
}
.detail-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 8px 0 8px;
}
.detail-list li {
  padding-left: 26px;
  position: relative;
  color: var(--ink);
}
.detail-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
}
.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.amenity-tags span {
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--beige-soft);
  border: 1px solid var(--line);
  color: var(--navy);
}
.surround-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.surround-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.surround-card .ic {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.surround-card h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.surround-card p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.surround-card ul {
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
}
.surround-card ul li {
  margin-bottom: 3px;
}
.surround-card ul li::before {
  content: "· ";
  color: var(--gold-deep);
}

/* ---------- Booking widget ---------- */
.booking {
  position: sticky;
  top: 92px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 26px;
}
.booking h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.booking .sub {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 106, 0.18);
}
.field textarea {
  resize: vertical;
  min-height: 72px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.price-summary {
  background: var(--beige-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 6px 0 16px;
  font-size: 0.9rem;
}
.price-summary .row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  color: var(--ink);
}
.price-summary .row.total {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.price-summary .row.total b {
  font-family: var(--serif);
}
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.alert {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.alert-error {
  background: #fdecea;
  color: #a5342a;
  border: 1px solid #f3c9c3;
}
.alert-success {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid #bcdcc4;
}
.alert-info {
  background: #eaf1f8;
  color: var(--navy);
  border: 1px solid #cfe0f0;
}

/* ---------- Calendar ---------- */
.calendar {
  margin-top: 8px;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-head .cal-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: capitalize;
}
.cal-nav {
  display: flex;
  gap: 6px;
}
.cal-nav button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  color: var(--navy);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-nav button:hover {
  border-color: var(--gold);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.cal-dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  padding-bottom: 4px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 9px;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.cal-cell.empty {
  cursor: default;
}
.cal-cell.available {
  background: var(--green-bg);
  color: #2f6045;
}
.cal-cell.available:hover {
  background: #cfe6d4;
}
.cal-cell.occupied {
  background: #f0eadf;
  color: #b6ab97;
  text-decoration: line-through;
  cursor: not-allowed;
}
.cal-cell.booked {
  background: #fbe3df;
  color: #b4453a;
  text-decoration: line-through;
  cursor: not-allowed;
}
.cal-cell.past {
  color: #cbd0d7;
  cursor: not-allowed;
}
.cal-cell.selected {
  background: var(--navy);
  color: var(--white);
}
.cal-cell.in-range {
  background: rgba(196, 163, 106, 0.28);
  color: var(--navy);
  border-radius: 0;
}
.cal-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  display: inline-block;
}
.dot.free {
  background: #9ccaa9;
}
.dot.busy {
  background: #d8cdba;
}
.dot.booked {
  background: #e0837a;
}

/* ---------- Confirmation / reservation status ---------- */
.status-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 70px 0;
  text-align: center;
}
.status-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.status-icon.ok {
  background: var(--green-bg);
  color: var(--green);
}
.status-icon.wait {
  background: var(--beige);
  color: var(--gold-deep);
}
.status-icon.no {
  background: #fdecea;
  color: #a5342a;
}
.status-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  text-align: left;
  margin: 30px 0;
}
.status-card .line {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.status-card .line:last-child {
  border-bottom: none;
}
.status-card .line b {
  color: var(--navy);
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge.pending {
  background: var(--beige);
  color: var(--gold-deep);
}
.badge.accepted {
  background: #e7f0fb;
  color: var(--navy);
}
.badge.paid {
  background: var(--green-bg);
  color: var(--green);
}
.badge.refused {
  background: #fdecea;
  color: #a5342a;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 253, 249, 0.7);
  padding: 56px 0 28px;
  margin-top: 0;
}
.site-footer .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.site-footer .logo .logo-name,
.site-footer h4 {
  color: var(--cream);
}
.site-footer h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.site-footer a {
  color: rgba(255, 253, 249, 0.7);
  display: block;
  padding: 3px 0;
  font-size: 0.9rem;
}
.site-footer a:hover {
  color: var(--gold);
}
.site-footer .logo .logo-sub {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.14);
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 253, 249, 0.55);
}

/* ---------- Utilities ---------- */
.center {
  text-align: center;
}
.mt-32 {
  margin-top: 32px;
}
.hidden {
  display: none !important;
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .apt-grid {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .apt-hero {
    grid-template-columns: 1fr;
  }
  .apt-gallery {
    height: 320px;
  }
  .apt-layout {
    grid-template-columns: 1fr;
  }
  .booking {
    position: static;
  }
  .surround-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 820px) {
  .main-nav a:not(.btn):not(.lang-toggle) {
    display: none;
  }
}
@media (max-width: 620px) {
  .main-nav {
    gap: 12px;
  }
  .hero .wrap {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section {
    padding: 60px 0;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}
