/* =========================================================
   ACE Mobile Massage — Luxury Spa Stylesheet (A-Style)
   Palette:
     --black-luxury #0e0e10   --black-warm #1a1815
     --black-soft   #16141a   --ivory      #faf7f2
     --ivory-alt    #f2ede4   --gold       #b8944a
     --gold-light   #d4af6a   --gold-deep  #8b6f2e
   Fonts:   Playfair Display (headings) | Inter (body)
   ========================================================= */

:root {
  --gold:          #b8944a;
  --gold-light:    #d4af6a;
  --gold-deep:     #8b6f2e;
  --black-luxury:  #0e0e10;
  --black-warm:    #1a1815;
  --black-soft:    #16141a;
  --ivory:         #faf7f2;
  --ivory-alt:     #f2ede4;
  --text-primary:  #1a1815;
  --text-secondary:#6b5d4f;
  --text-on-dark:  #faf7f2;
  --text-muted-dark:#a89a82;
  --gold-hairline: rgba(212, 175, 106, 0.22);
  --gold-stroke:   rgba(212, 175, 106, 0.42);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--gold); text-decoration: none; transition: color 0.18s ease; }
a:hover { text-decoration: underline; color: var(--gold-deep); }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }
blockquote { margin: 0; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }
section.alt { background: var(--ivory-alt); }

/* Dark section variant (luxury black bg) */
section.dark {
  background: var(--black-luxury);
  color: var(--text-on-dark);
  position: relative;
}
section.dark h1,
section.dark h2,
section.dark h3 { color: var(--ivory); }
section.dark p { color: var(--text-muted-dark); }
section.dark .eyebrow { color: var(--gold-light); }
section.dark .section-head h2::after { background: var(--gold-light); }

/* Gold hairline edges for dark sections */
section.dark::before,
section.dark::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--gold-hairline) 20%,
    var(--gold-stroke) 50%,
    var(--gold-hairline) 80%,
    transparent 100%
  );
}
section.dark::before { top: 0; }
section.dark::after  { bottom: 0; }

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1em;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 2px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.2s ease,
              background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }

.btn-primary {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(139, 111, 46, 0.36);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(184, 148, 74, 0.28);
  text-decoration: none;
}

/* Button variants on dark sections */
section.dark .btn-secondary {
  color: var(--ivory);
  border-color: var(--gold-light);
}
section.dark .btn-secondary:hover {
  background: var(--gold);
  color: var(--black-luxury);
  border-color: var(--gold);
}

/* ---------- Media frames (replace old placeholders) ---------- */
.media-frame {
  position: relative;
  display: block;
  border-radius: 2px;
  overflow: hidden;
  background: var(--black-soft);
  border: 1px solid var(--gold-hairline);
}
.media-frame svg,
.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid var(--gold-hairline);
  border-radius: 1px;
}

/* Legacy placeholder class — kept for backward compat, styled for dark theme */
.placeholder {
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 175, 106, 0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139, 111, 46, 0.22), transparent 55%),
    linear-gradient(135deg, var(--black-warm) 0%, var(--black-luxury) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  overflow: hidden;
  color: var(--gold-light);
  border: 1px solid var(--gold-hairline);
}
.placeholder span {
  background: rgba(14, 14, 16, 0.7);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold-hairline);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 16, 0.96);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gold-hairline);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand:hover { text-decoration: none; color: var(--gold-light); }
.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1px solid var(--gold-hairline);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}
.main-nav a {
  color: var(--ivory);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.main-nav a:hover { color: var(--gold-light); text-decoration: none; }

.btn-call { flex-shrink: 0; }

@media (max-width: 820px) {
  .main-nav { display: none; }
  .nav-wrap { gap: 12px; }
  .btn-call { padding: 10px 16px; font-size: 0.85rem; }
  .brand { font-size: 1.05rem; }
  .brand-mark { width: 24px; height: 24px; }
}

/* ---------- Hero (full-screen luxury background image) ---------- */
.hero {
  position: relative;
  min-height: 720px;
  padding: 160px 0 140px;
  background: var(--black-luxury);
  color: var(--text-on-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Hero background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Dark gradient overlay — left side heavier for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(14, 14, 16, 0.92) 0%,
      rgba(14, 14, 16, 0.78) 38%,
      rgba(14, 14, 16, 0.5)  65%,
      rgba(14, 14, 16, 0.35) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(14, 14, 16, 0.25) 0%,
      rgba(14, 14, 16, 0.55) 70%,
      rgba(14, 14, 16, 0.8)  100%
    );
}

/* Gold hairline top/bottom frames */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  z-index: 2;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--gold-hairline) 20%,
    var(--gold-stroke) 50%,
    var(--gold-hairline) 80%,
    transparent 100%
  );
}
.hero::before { top: 0; }
.hero::after  { bottom: 0; }

/* Hero text content — overlay on top of image */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}
.hero-content h1 {
  margin: 0 0 22px;
  color: var(--ivory);
  font-size: clamp(2.6rem, 5.8vw, 4rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}
.hero-content .eyebrow {
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.hero-content .subhead {
  font-size: 1.12rem;
  color: rgba(250, 247, 242, 0.86);
  margin-bottom: 36px;
  max-width: 560px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero .btn-secondary {
  color: var(--ivory);
  border-color: var(--gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(14, 14, 16, 0.3);
}
.hero .btn-secondary:hover {
  background: var(--gold);
  color: var(--black-luxury);
  border-color: var(--gold);
}

/* Brand decoration: bottom-right floating */
.hero-brand-decoration {
  position: absolute;
  right: 48px;
  bottom: 44px;
  z-index: 3;
  width: 140px;
  height: 140px;
  padding: 10px;
  border: 1px solid var(--gold-hairline);
  border-radius: 2px;
  background: rgba(14, 14, 16, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.hero-brand-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .hero {
    padding: 110px 0 90px;
    min-height: 580px;
  }
  .hero-brand-decoration {
    right: 20px;
    bottom: 20px;
    width: 88px;
    height: 88px;
    padding: 6px;
  }
}

@media (max-width: 520px) {
  .hero-brand-decoration {
    width: 68px;
    height: 68px;
  }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-art,
.placeholder-about {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-height: 560px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-secondary); }
.about-text p + p { margin-top: 1em; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-art,
  .placeholder-about { aspect-ratio: 4 / 3; max-height: 360px; }
}

/* ---------- Feature Highlights (dark section) ---------- */
.features {
  background: var(--black-warm);
  color: var(--text-on-dark);
  position: relative;
}
.features::before,
.features::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent, var(--gold-hairline), var(--gold-stroke),
    var(--gold-hairline), transparent
  );
}
.features::before { top: 0; }
.features::after  { bottom: 0; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.feature {
  background: var(--black-soft);
  padding: 44px 38px;
  border-radius: 2px;
  border: 1px solid var(--gold-hairline);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
}
.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold) 35%, var(--gold) 65%, transparent);
  opacity: 0.7;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--gold-stroke);
}
.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--ivory);
}
.feature p {
  color: var(--text-muted-dark);
  margin: 0;
}

@media (max-width: 720px) {
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature { padding: 34px 28px; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 2px;
  padding: 36px 28px;
  box-shadow: 0 4px 14px rgba(26, 24, 21, 0.06);
  border: 1px solid var(--gold-hairline);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(26, 24, 21, 0.10);
  border-color: var(--gold-stroke);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  margin-bottom: 24px;
  flex-shrink: 0;
  background: radial-gradient(circle at center, var(--ivory-alt) 0%, var(--ivory) 70%);
  border: 1px solid var(--gold-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.service-icon svg { width: 100%; height: 100%; display: block; }
.service-icon span {
  background: rgba(250, 247, 242, 0.92);
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
}
.service h3 {
  font-size: 1.22rem;
  margin: 0 0 12px;
}
.service p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1000px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Why Choose Us ---------- */
.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-grid li {
  padding: 30px 26px;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.why-grid h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 0 0 10px;
}
.why-grid p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery (dark section) ---------- */
.gallery {
  background: var(--black-luxury);
  color: var(--text-on-dark);
  position: relative;
}
.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent, var(--gold-hairline), var(--gold-stroke),
    var(--gold-hairline), transparent
  );
}
.gallery::before { top: 0; }
.gallery::after  { bottom: 0; }

.gallery h2 { color: var(--ivory); }
.gallery .eyebrow { color: var(--gold-light); }
.gallery .section-head h2::after { background: var(--gold-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--gold-hairline);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.gallery-item:hover {
  border-color: var(--gold-stroke);
  transform: translateY(-2px);
}
.gallery-item svg,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  margin: 0;
}
figure.gallery-item { margin: 0; padding: 0; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid var(--gold-hairline);
  border-radius: 1px;
}

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials (Google Reviews) ---------- */

/* Aggregate badge */
.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -28px auto 44px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--gold-hairline);
  border-radius: 2px;
  max-width: fit-content;
  box-shadow: 0 6px 18px rgba(26, 24, 21, 0.08);
}
.google-g {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.reviews-badge .rating-value {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  line-height: 1;
}
.reviews-badge .rating-stars {
  color: #FBBC05;
  letter-spacing: 2px;
  font-size: 1rem;
}
.reviews-badge .review-count {
  color: var(--text-secondary);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

/* Testimonials masonry grid (varying card heights look natural) */
.testimonials-grid {
  column-count: 2;
  column-gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}
.testimonial {
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  margin: 0 0 24px 0;
}
.testimonial .stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin: 0 0 14px;
}
.testimonial blockquote {
  color: var(--text-primary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 18px;
  font-style: normal;
}

/* Author row with avatar */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gold-hairline);
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.author-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.93rem;
}
.author-date {
  color: var(--text-secondary);
  font-size: 0.78rem;
}

/* "View all on Google" CTA */
.reviews-cta {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 720px) {
  .testimonials-grid { column-count: 1; }
  .reviews-badge { margin-bottom: 32px; padding: 12px 18px; }
  .reviews-badge .rating-value { font-size: 1.2rem; }
}

/* ---------- Bottom CTA (dark section) ---------- */
.cta-bottom {
  background: var(--black-luxury);
  color: var(--text-on-dark);
  position: relative;
}
.cta-bottom::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent, var(--gold-hairline), var(--gold-stroke),
    var(--gold-hairline), transparent
  );
}
.cta-bottom-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-bottom-inner h2 {
  margin-bottom: 18px;
  color: var(--ivory);
}
.cta-bottom-inner p {
  color: var(--text-muted-dark);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black-luxury);
  color: var(--text-muted-dark);
  padding: 72px 0 30px;
  border-top: 1px solid var(--gold-hairline);
}
.site-footer a { color: var(--gold-light); }
.site-footer a:hover { color: var(--ivory); text-decoration: none; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--ivory);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer-tagline {
  color: var(--text-muted-dark);
  font-size: 0.92rem;
  margin: 0;
}
.footer-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  font-weight: 600;
  margin: 0 0 10px;
}
.footer-col p:last-child {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}
.footer-bottom {
  border-top: 1px solid var(--gold-hairline);
  padding-top: 22px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #6f665a;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- How It Works ---------- */
.steps-grid {
  list-style: none;
  counter-reset: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--gold) 0 8px,
    transparent 8px 18px
  );
  z-index: 0;
}
.step {
  background: #fff;
  border-radius: 2px;
  padding: 40px 28px 34px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(26, 24, 21, 0.06);
  border: 1px solid var(--gold-hairline);
  position: relative;
  z-index: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(26, 24, 21, 0.10);
  border-color: var(--gold-stroke);
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--black-luxury);
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 16px rgba(14, 14, 16, 0.3);
  border: 1px solid var(--gold);
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  margin: 0 0 12px;
}
.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}
.step p a { color: var(--gold); font-weight: 600; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid::before { display: none; }
}

/* ---------- FAQ ---------- */
.faq-inner { max-width: 820px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list details {
  background: #fff;
  border-radius: 2px;
  border: 1px solid var(--gold-hairline);
  padding: 0 24px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.faq-list details[open] {
  box-shadow: 0 8px 24px rgba(26, 24, 21, 0.06);
  border-color: var(--gold-stroke);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text-primary);
  position: relative;
  line-height: 1.4;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.22s ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-list details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ---------- Mobile-only fixed call bar ---------- */
.mobile-call-bar { display: none; }

@media (max-width: 820px) {
  .mobile-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--gold);
    color: var(--ivory);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.35);
    z-index: 60;
    transition: background 0.18s ease;
  }
  .mobile-call-bar:hover,
  .mobile-call-bar:active {
    background: var(--gold-deep);
    text-decoration: none;
    color: #fff;
  }
  .mobile-call-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.9;
  }
  .mobile-call-number {
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  body { padding-bottom: 76px; }
}

/* ---------- Focus state (accessibility) ---------- */
a:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ---------- Photo frames (raster images) ---------- */
/* Shared: cover the full frame, preserve aspect ratio */
img.about-art,
figure.gallery-item img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}

/* About photo */
.about-art {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--gold-hairline);
  box-shadow: 0 16px 40px rgba(26, 24, 21, 0.18);
}

/* ---------- Language switcher ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold-hairline);
  border-radius: 2px;
  padding: 6px 22px 6px 10px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
    linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
  background-position:
    right 8px top 50%,
    right 4px top 50%;
  background-size:
    4px 4px,
    4px 4px;
  background-repeat: no-repeat;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.lang-select:hover { border-color: var(--gold-stroke); }
.lang-select option {
  background: var(--black-luxury);
  color: var(--ivory);
}

@media (max-width: 820px) {
  .lang-select { font-size: 0.78rem; padding: 5px 20px 5px 8px; }
}

/* ---------- Floating contact buttons (SMS + WhatsApp) ---------- */
/* Shared base for circular floating buttons */
.sms-float,
.wa-float {
  position: fixed;
  right: 20px;
  z-index: 55;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sms-float svg,
.wa-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* WhatsApp — bottom, green */
.wa-float {
  bottom: 24px;
  background: #25D366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.42), 0 4px 12px rgba(0, 0, 0, 0.28);
}
.wa-float:hover,
.wa-float:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0, 0, 0, 0.32);
  text-decoration: none;
}

/* SMS — stacked above WhatsApp, gold */
.sms-float {
  bottom: 94px;  /* 24 (WA bottom) + 56 (WA height) + 14 (gap) */
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(184, 148, 74, 0.42), 0 4px 12px rgba(0, 0, 0, 0.28);
}
.sms-float:hover,
.sms-float:focus-visible {
  transform: translateY(-2px) scale(1.04);
  background: var(--gold-deep);
  box-shadow: 0 14px 36px rgba(139, 111, 46, 0.5), 0 6px 16px rgba(0, 0, 0, 0.32);
  text-decoration: none;
}

/* Mobile: both sit above the bottom call bar */
@media (max-width: 820px) {
  .wa-float {
    right: 16px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }
  .sms-float {
    right: 16px;
    bottom: calc(82px + 50px + 12px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }
  .sms-float svg,
  .wa-float svg { width: 24px; height: 24px; }
}

/* ---------- Trust pillars bar ---------- */
.trust-pillars {
  background: var(--black-warm);
  padding: 26px 0;
  border-top: 1px solid var(--gold-hairline);
  border-bottom: 1px solid var(--gold-hairline);
}
.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px;
  color: var(--ivory);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gold-hairline);
}
.trust-icon {
  color: var(--gold-light);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-item { padding: 6px 16px; font-size: 0.78rem; }
}
@media (max-width: 620px) {
  .trust-grid { flex-direction: column; gap: 12px; }
  .trust-item { padding: 2px 0; }
  .trust-item + .trust-item::before { display: none; }
}

/* ---------- Areas We Serve (SEO hotels list) ---------- */
.areas { color: var(--text-on-dark); }
.areas h2 { color: var(--ivory); }
.areas .eyebrow { color: var(--gold-light); }
.areas .section-head h2::after { background: var(--gold-light); }
.section-lede {
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin: 16px auto 0;
  max-width: 640px;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  max-width: 1080px;
  margin: 0 auto;
}
.area-block {
  padding: 28px 26px;
  background: var(--black-soft);
  border: 1px solid var(--gold-hairline);
  border-radius: 2px;
}
.area-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-hairline);
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.area-block:first-child .area-list {
  grid-template-columns: 1fr 1fr;
}
.area-list li {
  color: var(--text-muted-dark);
  font-size: 0.92rem;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.area-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.6rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr; gap: 20px; }
  .area-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .area-list { grid-template-columns: 1fr; }
}

/* ---------- Footer links (privacy/terms) ---------- */
.footer-links {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-muted-dark);
}
.footer-links a {
  color: var(--gold-light);
  margin: 0 6px;
}
.footer-links a:hover { color: var(--ivory); }

/* ---------- Legal pages (Privacy / Terms) ---------- */
.legal-page {
  padding: 80px 0 100px;
  background: var(--ivory);
}
.legal-inner {
  max-width: 820px;
}
.legal-page h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin: 0 0 8px;
}
.legal-updated {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0 0 40px;
}
.legal-page h2 {
  font-size: 1.35rem;
  margin: 38px 0 14px;
  color: var(--text-primary);
}
.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
}
.legal-page ul {
  padding-left: 20px;
  margin: 10px 0 18px;
}
.legal-page ul li { margin-bottom: 8px; }
.legal-page a {
  color: var(--gold);
  text-decoration: underline;
}
.legal-page a:hover { color: var(--gold-deep); }
.legal-back {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-hairline);
}
.legal-back a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.legal-back a:hover { text-decoration: underline; }

/* ---------- Photo Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(14, 14, 16, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px 20px;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-image {
  max-width: 94%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border: 1px solid var(--gold-hairline);
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.is-open .lightbox-image { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--gold-hairline);
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--black-luxury);
  border-color: var(--gold);
}

/* ---------- Anchor scroll offset (sticky header) ---------- */
section[id] {
  scroll-margin-top: 78px;
}
@media (max-width: 820px) {
  section[id] { scroll-margin-top: 64px; }
}

/* ---------- Mobile: Hamburger + Drawer Menu ---------- */
/* Short/long call-button text swap (desktop shows full number, mobile shows "Call") */
.btn-call-short { display: none; }
@media (max-width: 820px) {
  .btn-call-long  { display: none; }
  .btn-call-short { display: inline; }
}

/* Hamburger button (hidden on desktop, shown on mobile) */
.nav-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.nav-hamburger span:nth-child(1) { top: 2px; }
.nav-hamburger span:nth-child(2) { top: 10px; }
.nav-hamburger span:nth-child(3) { top: 18px; }

/* Scrim / backdrop — hidden by default */
.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 16, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 48;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 820px) {
  .nav-hamburger { display: block; }

  /* Convert nav into a full-height right drawer */
  .main-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 78vw;
    max-width: 320px;
    background: var(--black-luxury);
    border-left: 1px solid var(--gold-hairline);
    padding: 90px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(.4, 0, .2, 1);
    z-index: 49;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.5);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav li {
    border-bottom: 1px solid var(--gold-hairline);
  }
  .main-nav li:last-child { border-bottom: none; }
  .main-nav a {
    display: block;
    padding: 18px 0;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .main-nav a:hover { color: var(--gold-light); }

  /* Checkbox toggles drawer + scrim */
  .nav-toggle:checked ~ .main-nav { transform: translateX(0); }
  .nav-toggle:checked ~ .nav-scrim { display: block; opacity: 1; }

  /* Hamburger morphs to X when open */
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(1) {
    top: 10px; transform: rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(3) {
    top: 10px; transform: rotate(-45deg);
  }

  /* Prevent body scroll when menu open */
  body:has(.nav-toggle:checked) { overflow: hidden; }
}

/* ---------- Mobile: Hero slim-down ---------- */
@media (max-width: 720px) {
  .hero {
    padding: 86px 0 72px;
    min-height: 500px;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 68px 0 58px;
    min-height: 420px;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.4rem);
    margin-bottom: 16px;
  }
  .hero-content .subhead {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }
  .hero-content .cta-row { gap: 10px; }
  .hero .btn-lg { padding: 14px 22px; font-size: 0.92rem; }
  /* Hide the brand decoration on small screens — nav already has the logo */
  .hero-brand-decoration { display: none; }
}

/* ---------- Photo Wall (masonry) ---------- */
.photo-wall {
  background: var(--black-luxury);
  color: var(--text-on-dark);
}
.photo-wall .section-head h2::after { background: var(--gold-light); }

/* CSS columns = masonry. Each image keeps its natural aspect ratio. */
.wall-grid {
  column-count: 5;
  column-gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

figure.wall-item {
  break-inside: avoid;
  display: block;
  margin: 0 0 10px 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--gold-hairline);
  background: var(--black-soft);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
figure.wall-item::after {
  content: "";
  position: absolute;
  inset: 6px;
  pointer-events: none;
  border: 1px solid var(--gold-hairline);
  opacity: 0.55;
  border-radius: 1px;
  transition: opacity 0.28s ease, inset 0.28s ease;
}
figure.wall-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
figure.wall-item:hover {
  border-color: var(--gold-stroke);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
  transform: translateY(-3px);
  z-index: 2;
}
figure.wall-item:hover::after {
  opacity: 1;
  inset: 8px;
}
figure.wall-item:hover img {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .wall-grid { column-count: 4; }
}

@media (max-width: 720px) {
  .wall-grid { column-count: 3; }
}

@media (max-width: 520px) {
  .wall-grid { column-count: 2; column-gap: 8px; }
  figure.wall-item { margin-bottom: 8px; }
}

/* Expand button — hidden on desktop, shown on mobile. */
.wall-expand-btn {
  display: none;
}
.wall-expand-btn .show-less { display: none; }

@media (max-width: 520px) {
  /* Hide items 5-9 when toggle is OFF */
  .wall-toggle:not(:checked) ~ .wall-grid > .wall-item:nth-child(n+5) {
    display: none;
  }
  /* Show the expand button on mobile */
  .wall-expand-btn {
    display: block;
    margin: 18px auto 0;
    max-width: 220px;
    text-align: center;
    padding: 12px 20px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.18s ease, color 0.18s ease;
  }
  .wall-expand-btn:hover,
  .wall-expand-btn:active {
    background: var(--gold);
    color: var(--black-luxury);
  }
  /* Swap label text based on toggle state */
  .wall-toggle:checked ~ .wall-expand-btn .show-more { display: none; }
  .wall-toggle:checked ~ .wall-expand-btn .show-less { display: inline; }
}

