/* ====================================================================
   PureLux Cleaning — Shared Stylesheet
   Aesthetic: Premium concierge / luxury hotel
==================================================================== */

:root {
  /* Color tokens */
  --black:        #0A0A0A;
  --black-2:      #121212;
  --black-3:      #1A1A1A;
  --charcoal:     #2A2A2A;
  --charcoal-2:   #3A3A3A;
  --gold:         #C9A84C;
  --gold-2:       #D9BE6A;
  --gold-deep:    #8E7430;
  --champagne:    #E8D5B5;
  --offwhite:     #F8F6F1;
  --ivory:        #FFFDF7;
  --line:         rgba(201, 168, 76, 0.22);
  --line-soft:    rgba(255, 253, 247, 0.08);

  /* Typography */
  --serif:  "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans:   "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --italic: "Cormorant Garamond", "Playfair Display", Georgia, serif;

  /* Layout */
  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 140px);
  --radius: 2px;
  --radius-lg: 6px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ivory);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(40px, 6.4vw, 88px); font-weight: 400; }
h2 { font-size: clamp(32px, 4.4vw, 56px); font-weight: 400; }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: clamp(18px, 1.6vw, 22px); }

p { margin: 0 0 1em; text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.italic-accent {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  color: var(--champagne);
}

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

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section { padding-block: var(--section-y); }
.section--light { background: var(--offwhite); color: var(--charcoal); }
.section--ivory { background: var(--ivory); color: var(--charcoal); }
.section--light h1, .section--light h2, .section--light h3, .section--light h4,
.section--ivory h1, .section--ivory h2, .section--ivory h3, .section--ivory h4 {
  color: var(--charcoal);
}

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
  border: 0;
}
.divider-gold--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn .btn-arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2);
}
.btn--gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 14px 40px -10px rgba(201, 168, 76, 0.45),
              0 0 0 1px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 14px 40px -16px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--black-3);
  box-shadow: 0 14px 40px -10px rgba(0,0,0,0.4);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  padding: 14px 0;
  border-bottom-color: var(--line-soft);
}

.logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.logo__img {
  height: 72px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease), height 0.3s var(--ease);
}
.logo:hover .logo__img { opacity: 0.85; }
.logo__pure { color: var(--ivory); }
.logo__lux  { color: var(--gold); font-style: italic; }
.logo__mark {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 6px;
  display: inline-block;
  transform: translateY(-4px);
}
.nav.is-scrolled .logo__img { height: 56px; }
.footer .logo__img { height: 72px; }
@media (max-width: 880px) {
  .logo__img { height: 56px; }
  .nav.is-scrolled .logo__img { height: 46px; }
}

/* ---------- Instagram icon in nav ---------- */
.nav__ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 6px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: transparent;
}
.nav__ig svg { width: 28px; height: 28px; display: block; }
.nav__ig:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 2px rgba(214, 41, 118, 0.35),
              0 8px 24px -6px rgba(214, 41, 118, 0.5);
}
@media (max-width: 880px) {
  .nav__ig { display: none; }
  .nav__mobile .nav__ig { display: inline-flex; margin-top: 16px; }
}

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active {
  color: var(--gold);
}
.nav__links a:hover::after, .nav__links a.is-active::after {
  width: 100%;
}

.nav__cta {
  padding: 12px 22px;
  font-size: 11px;
}

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 36px; height: 36px;
  cursor: pointer;
  padding: 0;
  color: var(--ivory);
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  margin: 6px auto;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 80px var(--pad-x);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav__mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav__mobile a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.nav__mobile a.is-active { color: var(--gold); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__mobile { display: flex; }
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 120px var(--pad-x) 80px;
  background: radial-gradient(1200px 600px at 50% 100%, rgba(201, 168, 76, 0.12), transparent 70%),
              linear-gradient(180deg, #050505 0%, var(--black) 60%, #0d0b06 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0 119px,
      rgba(255,253,247,0.025) 119px 120px
    );
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__shimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(2px 2px at 20% 30%, rgba(201,168,76,0.6), transparent 60%),
              radial-gradient(2px 2px at 70% 60%, rgba(201,168,76,0.5), transparent 60%),
              radial-gradient(1.5px 1.5px at 40% 80%, rgba(232,213,181,0.6), transparent 60%),
              radial-gradient(1.5px 1.5px at 85% 25%, rgba(201,168,76,0.6), transparent 60%),
              radial-gradient(2px 2px at 12% 70%, rgba(232,213,181,0.4), transparent 60%),
              radial-gradient(1px 1px at 55% 18%, rgba(201,168,76,0.7), transparent 60%),
              radial-gradient(1.5px 1.5px at 90% 80%, rgba(201,168,76,0.5), transparent 60%),
              radial-gradient(1px 1px at 30% 50%, rgba(232,213,181,0.4), transparent 60%);
  animation: shimmer 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { opacity: 0.55; transform: translateY(0); }
  100% { opacity: 1;    transform: translateY(-8px); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}
.hero__eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .italic-accent { display: block; }
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(248, 246, 241, 0.78);
  max-width: 640px;
  margin: 0 auto 44px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 17px;
  color: var(--champagne);
}
.hero__phone strong {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--ivory);
}
.hero__phone-line {
  width: 40px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.6s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ---------- Generic page banner (smaller hero for subpages) ---------- */
.banner {
  padding: 180px var(--pad-x) 100px;
  text-align: center;
  background: radial-gradient(900px 400px at 50% 100%, rgba(201, 168, 76, 0.10), transparent 70%),
              linear-gradient(180deg, #050505 0%, var(--black) 100%);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.banner h1 { margin-bottom: 16px; }
.banner p {
  color: rgba(248, 246, 241, 0.72);
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(15px, 1.3vw, 18px);
}
.banner .eyebrow { margin-bottom: 24px; }
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.5);
  margin-top: 28px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); margin: 0 10px; }

/* ---------- Section header ---------- */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .eyebrow { justify-content: center; margin-bottom: 22px; }
.section-head .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  margin-left: 14px;
}
.section-head h2 { margin-bottom: 18px; }
.section-head p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--charcoal-2);
  font-size: 16.5px;
}
.section--dark .section-head p { color: rgba(248, 246, 241, 0.7); }

/* ---------- Services grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .services { grid-template-columns: 1fr; gap: 20px; }
}

.service-card {
  background: var(--ivory);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 40px 32px 36px;
  position: relative;
  transition: transform 0.5s var(--ease),
              box-shadow 0.5s var(--ease),
              border-color 0.5s var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 30px 70px -30px rgba(201, 168, 76, 0.4),
              0 1px 0 rgba(201, 168, 76, 0.4);
}
.service-card__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--gold);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-card:hover .service-card__icon {
  background: rgba(201, 168, 76, 0.08);
  transform: rotate(45deg);
}
.service-card:hover .service-card__icon svg {
  transform: rotate(-45deg);
}
.service-card__icon svg {
  transition: transform 0.4s var(--ease);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p {
  color: var(--charcoal-2);
  font-size: 14.5px;
  margin-bottom: 22px;
}
.service-card__link {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.service-card__link:hover { color: var(--gold); gap: 16px; }
.service-card__num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  color: rgba(201, 168, 76, 0.6);
  letter-spacing: 0.08em;
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 56px 40px;
  position: relative;
  text-align: center;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: 0; }
@media (max-width: 820px) {
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
}
.pillar__icon {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pillar:hover .pillar__icon {
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.08),
              0 0 30px -4px rgba(201, 168, 76, 0.45);
}
.pillar h3 { margin-bottom: 14px; }
.pillar p { color: rgba(248, 246, 241, 0.7); font-size: 15px; margin: 0; max-width: 320px; margin-inline: auto; }

/* dark variant of pillars (light section) */
.section--light .pillar p { color: var(--charcoal-2); }

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
@media (max-width: 820px) { .process { grid-template-columns: 1fr; gap: 56px; } }
.process::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 0;
}
@media (max-width: 820px) { .process::before { display: none; } }

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--italic);
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  position: relative;
}
.section--dark .step__num { background: var(--black-2); }
.step__num::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--charcoal-2); max-width: 280px; margin: 0 auto; font-size: 15px; }
.section--dark .step p { color: rgba(248, 246, 241, 0.7); }

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: linear-gradient(180deg, var(--black) 0%, #0d0b06 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: rgba(255,253,247,0.025);
  border: 1px solid var(--line-soft);
  padding: 40px 32px 32px;
  position: relative;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.testimonial:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(255,253,247,0.04);
}
.testimonial__quote {
  font-family: var(--italic);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.testimonial p {
  font-size: 15.5px;
  color: rgba(248, 246, 241, 0.85);
  margin-bottom: 24px;
}
.testimonial__stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 14px;
}
.testimonial__author {
  font-family: var(--italic);
  font-style: italic;
  font-size: 16px;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__author::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
}
.testimonials--row2 { margin-top: 28px; grid-template-columns: 1fr 1fr; max-width: 880px; margin-inline: auto; }
@media (max-width: 640px) { .testimonials--row2 { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(800px 300px at 20% 50%, rgba(232, 213, 181, 0.5), transparent 70%),
    linear-gradient(135deg, #b8932f 0%, #d9be6a 45%, #b8932f 100%);
  color: var(--black);
  padding: 80px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='6' height='6'><circle cx='1' cy='1' r='0.6' fill='%23000' opacity='0.06'/></svg>");
  opacity: 0.6;
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.cta-banner .eyebrow { color: rgba(10,10,10,0.7); }
.cta-banner .eyebrow::before { background: var(--black); }
.cta-banner h2 {
  color: var(--black);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(10,10,10,0.78);
  font-size: 17px;
  margin-bottom: 36px;
}
.cta-banner__phone {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 17px;
  color: var(--charcoal);
}
.cta-banner__phone strong {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--black);
}

/* ---------- Footer ---------- */
.footer {
  background: #050505;
  color: rgba(248, 246, 241, 0.7);
  padding: 80px var(--pad-x) 28px;
  position: relative;
  border-top: 1px solid var(--line-soft);
}
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.footer__about p {
  font-size: 14.5px;
  margin: 18px 0 22px;
  max-width: 340px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(248,246,241,0.7);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.footer__links a:hover { color: var(--gold); padding-left: 6px; }

.footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(248,246,241,0.78);
  margin-bottom: 14px;
}
.footer__contact-line svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-soft);
  display: grid; place-items: center;
  border-radius: 50%;
  color: rgba(248,246,241,0.7);
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(248,246,241,0.4);
}
.footer__bottom .italic-accent { font-size: 14px; }

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  z-index: 9999;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.5),
              0 16px 40px -10px rgba(0,0,0,0.5),
              0 0 0 8px rgba(201, 168, 76, 0.15);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.06);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.5),
                         0 16px 40px -10px rgba(0,0,0,0.5),
                         0 0 0 8px rgba(201, 168, 76, 0.15); }
  50%      { box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.6),
                         0 16px 40px -10px rgba(0,0,0,0.5),
                         0 0 0 14px rgba(201, 168, 76, 0.05); }
}

/* ---------- Reveal-on-scroll ----------
   Default state is VISIBLE. JS adds inline opacity:0 only to below-the-fold
   elements, then removes it on intersection. This guarantees content is
   never invisible if JS/animations/transitions misfire. */
.reveal { /* visible by default */ }
.reveal.is-hidden {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in.reveal--d1 { transition-delay: 0.08s; }
.reveal.is-in.reveal--d2 { transition-delay: 0.16s; }
.reveal.is-in.reveal--d3 { transition-delay: 0.24s; }
.reveal.is-in.reveal--d4 { transition-delay: 0.32s; }
.reveal.is-in.reveal--d5 { transition-delay: 0.40s; }
.reveal.is-in.reveal--d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in, .reveal.is-hidden {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Image placeholder (subtle striped) ---------- */
.img-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg,
      #1a1a1a 0,
      #1a1a1a 14px,
      #161616 14px,
      #161616 28px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.img-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201,168,76,0.12), transparent 60%);
}
.img-ph__label {
  position: relative;
  z-index: 1;
  font-family: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.8);
  text-align: center;
  padding: 8px 14px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(10,10,10,0.55);
}
.img-ph--light {
  background:
    repeating-linear-gradient(135deg,
      #efeae0 0,
      #efeae0 14px,
      #e8e2d4 14px,
      #e8e2d4 28px);
  border-color: rgba(201, 168, 76, 0.3);
}
.img-ph--light::after {
  background: radial-gradient(circle at 70% 30%, rgba(201,168,76,0.16), transparent 60%);
}
.img-ph--light .img-ph__label {
  background: rgba(255,253,247,0.7);
  color: var(--gold-deep);
  border-color: rgba(142, 116, 48, 0.4);
}

/* ---------- Real photos (replaces .img-ph placeholders) ---------- */
.media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  background: #1a1a1a;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.feature-row__media .media { aspect-ratio: 5 / 4; }
.story__media .media,
.intro-split .media { aspect-ratio: 4 / 5; }
.feature-row__media,
.story__media,
.intro-split .reveal { overflow: hidden; }
.feature-row__media:hover .media,
.intro-split .reveal:hover .media { transform: scale(1.03); }

/* ---------- Services page: feature row ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}
.feature-row:first-of-type { border-top: 0; }
.feature-row--reverse .feature-row__media { order: 2; }
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row--reverse .feature-row__media { order: 0; }
}
.feature-row__media .img-ph { aspect-ratio: 5/4; }
.feature-row__num {
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.feature-row h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 18px;
}
.feature-row__intro {
  font-size: 16px;
  color: var(--charcoal-2);
  margin-bottom: 28px;
}
.feature-row ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.feature-row li {
  position: relative;
  padding-left: 28px;
  color: var(--charcoal);
  font-size: 15px;
}
.feature-row li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1px;
  background: var(--gold);
}

/* ---------- About: values grid ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .values { grid-template-columns: 1fr; } }
.value-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: var(--ivory);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px -28px rgba(201,168,76,0.4);
}
.value-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
}
.value-card h4 { margin-bottom: 8px; }
.value-card p {
  font-size: 14px;
  color: var(--charcoal-2);
  margin: 0;
}

/* ---------- About: story split ---------- */
.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .story { grid-template-columns: 1fr; gap: 40px; } }
.story__media .img-ph { aspect-ratio: 4/5; }
.story p { color: var(--charcoal-2); font-size: 16px; }
.story .pull {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--gold-deep);
  line-height: 1.4;
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--gold);
  margin: 28px 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-form {
  background: var(--ivory);
  border: 1px solid rgba(201,168,76,0.22);
  padding: 44px 40px;
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form p.lead { color: var(--charcoal-2); margin-bottom: 28px; }
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.field--row { grid-template-columns: 1fr 1fr; gap: 16px; display: grid; margin-bottom: 20px; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.field label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(42,42,42,0.2);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--gold);
}

.contact-info {
  padding: 8px 8px 0;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--charcoal-2); margin-bottom: 36px; font-size: 16px; }
.info-line {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.info-line:last-of-type { border-bottom: 0; }
.info-line__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.info-line h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 6px;
}
.info-line p { margin: 0; color: var(--charcoal); font-size: 16px; }
.info-line .italic-accent { color: var(--charcoal-2); font-size: 15px; }

.map-frame {
  margin-top: 8px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1a1a;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.4) contrast(0.95);
}

/* ---------- Stat / accent strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .strip { grid-template-columns: 1fr 1fr; } }
.strip__cell {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.strip__cell:last-child { border-right: 0; }
@media (max-width: 720px) {
  .strip__cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip__cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .strip__cell:nth-last-child(-n+2) { border-bottom: 0; }
}
.strip__num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.strip__num small {
  font-size: 18px;
  color: var(--gold);
  margin-left: 4px;
  font-family: var(--italic);
  font-style: italic;
}
.strip__label {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.55);
}
.section--light .strip__label { color: var(--charcoal-2); }

/* ---------- Two-up hero feature (home below hero) ---------- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .intro-split { grid-template-columns: 1fr; gap: 40px; } }
.intro-split .eyebrow { margin-bottom: 22px; }
.intro-split h2 { margin-bottom: 22px; }
.intro-split p { color: var(--charcoal-2); font-size: 16.5px; }
.intro-split .img-ph { aspect-ratio: 4/5; }

/* ---------- Page sections background variants used on multiple pages ---------- */
.section--dark { background: var(--black); color: var(--ivory); }
.section--dark .section-head p { color: rgba(248,246,241,0.7); }

/* ---------- Tiny utility for spacing inside cards ---------- */
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
