/* ─── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Palette */
  --ink:        #1B2025;
  --ink-soft:   #3A3F44;
  --muted:      #6E6A64;    /* darkened to clear WCAG AA (4.5:1) on light bg */
  --rule:       #E0DACE;    /* warm cream hairline — matches parent brands */
  --offwhite:   #FAF7F0;    /* warm cream base (rajakabagh.com / himalayanamrit.com) */
  --white:      #FFFFFF;

  --hot-acc:    #B8945F;    /* warm gold/bronze — Raja Ka Bagh hotel */
  --hot-dark:   #866843;    /* darkened slightly to clear AA on cream/tint */
  --hot-tint:   #F7F1E4;

  --hos-acc:    #1E5F74;    /* deep teal — hospital / healthcare track */
  --hos-dark:   #143E4D;
  --hos-tint:   #EDF3F5;

  --amr-acc:    #2D5016;    /* forest green — Himalayan Amrit (herbal tea & honey) */
  --amr-dark:   #234011;
  --amr-tint:   #EAEFE3;

  /* Type */
  --font-serif: "Lora", "Georgia", serif;
  --font-sans:  "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing — 8pt baseline */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  12px;
  --sp-lg:  16px;
  --sp-xl:  24px;
  --sp-2xl: 32px;
  --sp-3xl: 48px;
  --sp-4xl: 64px;
  --sp-5xl: 96px;
  --sp-6xl: 144px;

  /* Layout */
  --max-w:   1180px;
  --gutter:  clamp(20px, 5vw, 48px);
}

/* ─── RESET / BASE ─────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Brand-tinted links — each parent brand keeps its own accent on light bg */
a.amr { color: var(--amr-acc); }
a.rkb { color: var(--hot-dark); }

/* ─── UTILITIES ────────────────────────────────────────────── */
.eyebrow,
.section-eyebrow,
.pitch-eyebrow,
.contact-card-label,
.footer-col-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow--light,
.eyebrow--light * { color: rgba(255,255,255,0.85); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: var(--sp-md);
}

.lede {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(15.5px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
  margin-top: var(--sp-2xl);
}

/* ─── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease,
              box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
/* Top scrim — keeps white nav legible over a bright hero photo */
.nav::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 132px;
  background: linear-gradient(180deg, rgba(20,38,49,0.55), rgba(20,38,49,0));
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.nav.is-scrolled::before { opacity: 0; }

.nav-mark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.005em;
}
.nav.is-scrolled .nav-mark { color: var(--ink); }

.nav-links {
  display: flex;
  gap: var(--sp-2xl);
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav.is-scrolled .nav-links a { color: var(--ink-soft); }

/* Mobile "Enquire" button — appears when the inline links collapse */
.nav-cta {
  display: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 9px 18px;
  border-radius: 2px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.2s ease;
}
.nav.is-scrolled .nav-cta { color: var(--ink); border-color: var(--rule); }
.nav-cta:hover { background: rgba(255,255,255,0.12); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { display: inline-block; }
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5xl) var(--gutter) var(--sp-4xl);
  overflow: hidden;
  isolation: isolate;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-image: url("images/cover_exterior.jpg");
  background-size: cover;
  background-position: center 40%;
  z-index: -2;
  transform: scale(1.06);
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.16); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    /* directional pocket — darkens the bottom-left where the text sits, fades to reveal the building top-right */
    radial-gradient(130% 115% at -8% 108%,
      rgba(10,20,28,0.92) 0%,
      rgba(10,20,28,0.55) 34%,
      rgba(10,20,28,0.14) 60%,
      transparent 76%),
    /* base veil for overall legibility */
    linear-gradient(180deg,
      rgba(18,34,45,0.44) 0%,
      rgba(18,34,45,0.30) 34%,
      rgba(18,34,45,0.52) 68%,
      rgba(18,34,45,0.80) 100%);
  z-index: -1;
}

.hero-inner {
  color: var(--white);
  max-width: 980px;
  width: 100%;
  text-shadow: 0 1px 16px rgba(8,16,22,0.5);
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 26px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot-acc);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 1px 12px rgba(0,0,0,0.4);
  animation: heroTagIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroTagIn {
  from { opacity: 0; transform: translateY(12px); letter-spacing: 0.24em; }
  to   { opacity: 1; transform: translateY(0);    letter-spacing: 0.14em; }
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(46px, 9vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: var(--sp-md);
}
.hero-loc {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
  margin-top: var(--sp-lg);
}
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
  margin-top: var(--sp-lg);
  max-width: 760px;
}
.hero-meta {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(13px, 1.3vw, 15.5px);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-top: var(--sp-lg);
  max-width: 720px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-3xl);
  padding: 14px 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-cta:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
}
.hero-cta-arrow {
  display: inline-block;
  transform: translateY(1px);
  transition: transform 0.3s ease;
}
.hero-cta:hover .hero-cta-arrow {
  transform: translateY(3px);
}

/* On phones a full-bleed cover crop zooms hard into a narrow vertical strip of
   the wide building photo. Instead, stack: show the whole photo uncropped as a
   banner, with the headline on a solid panel below it. */
@media (max-width: 760px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
  }
  .hero-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 66.67vw;          /* 3:2 image shown in full — no crop */
    background-position: center;
    transform: none;
    animation: none;
    z-index: 0;
  }
  .hero-veil {
    height: 66.67vw;          /* veil sits over the image only */
    bottom: auto;
    background: linear-gradient(180deg,
      rgba(8,16,22,0.34) 0%,
      rgba(8,16,22,0.04) 22%,
      transparent 52%,
      rgba(27,32,37,0.92) 100%);
    z-index: 1;
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    background: var(--ink);
    padding: var(--sp-2xl) var(--gutter) var(--sp-4xl);
    text-shadow: none;
    margin-top: -1px;         /* seamless seam with the image fade */
  }
  .hero-title { margin-top: var(--sp-sm); }
}

/* ─── GLANCE ───────────────────────────────────────────────── */
.glance {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-5xl) var(--gutter);
}

.glance-offerings {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: var(--sp-lg);
  max-width: 760px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2xl);
  margin: var(--sp-3xl) 0 var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--rule);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.stat-num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-num-suffix {
  font-size: 0.55em;
  font-weight: 400;
  margin-left: 2px;
  color: var(--ink-soft);
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: var(--sp-sm);
}

@media (max-width: 760px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: var(--sp-xl); }
}

/* ─── PITCHES ──────────────────────────────────────────────── */
.pitches {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-5xl) var(--gutter);
}

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2xl);
  margin-top: var(--sp-3xl);
}
.pitch-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1000px) {
  .pitch-grid,
  .pitch-grid--2 { grid-template-columns: 1fr; }
}

.pitch {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pitch:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20,38,49,0.10);
}
.pitch-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.pitch-accent {
  height: 4px;
}
.pitch--hotel .pitch-accent { background: var(--hot-acc); }
.pitch--hospital .pitch-accent { background: var(--hos-acc); }

.pitch-eyebrow { padding: var(--sp-xl) var(--sp-xl) var(--sp-md); }
.pitch--hotel .pitch-eyebrow { color: var(--hot-dark); }
.pitch--hospital .pitch-eyebrow { color: var(--hos-dark); }

.pitch-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.005em;
  padding: 0 var(--sp-xl);
  color: var(--ink);
}
.pitch-body {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding: var(--sp-lg) var(--sp-xl) 0;
}
.pitch-specs {
  list-style: none;
  padding: var(--sp-lg) var(--sp-xl);
  margin: var(--sp-md) 0 0;
  border-top: 1px solid var(--rule);
}
.pitch-specs li {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  padding: 8px 0 8px 16px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.pitch-specs li:last-child { border-bottom: none; }
.pitch-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.pitch--hotel .pitch-specs li::before    { background: var(--hot-acc); }
.pitch--hospital .pitch-specs li::before { background: var(--hos-acc); }

.pitch-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: var(--sp-lg) var(--sp-xl);
  border-top: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.pitch--hotel .pitch-cta    { color: var(--hot-dark); }
.pitch--hospital .pitch-cta { color: var(--hos-dark); }
.pitch--hotel .pitch-cta:hover    { background: var(--hot-tint); }
.pitch--hospital .pitch-cta:hover { background: var(--hos-tint); }
.pitch-cta-arrow { transition: transform 0.2s ease; }
.pitch-cta:hover .pitch-cta-arrow { transform: translateX(4px); }

/* ─── PULL QUOTE ──────────────────────────────────────────── */
.pullquote {
  background: var(--ink);
  color: var(--white);
  padding: var(--sp-5xl) var(--gutter);
  text-align: center;
}
.pullquote-mark {
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  color: var(--hot-acc);
  margin-bottom: -28px;
}
.pullquote blockquote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.45;
  color: var(--white);
  max-width: 840px;
  margin: 0 auto;
}
.pullquote-attr {
  margin-top: var(--sp-xl);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ─── GALLERY ──────────────────────────────────────────────── */
.gallery {
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--sp-5xl) var(--gutter);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-3xl);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--rule);
  aspect-ratio: 4 / 3;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,38,49,0.28), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  /* hide the building (last image) on 2-column layouts — it stays the closing image on the wider desktop grid */
  .gallery-grid .gallery-item:last-child { display: none; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-sm); }
}

/* ─── FLOOR PLAN ──────────────────────────────────────────── */
.floorplan {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-5xl) var(--gutter);
}
.floorplan-figure {
  margin-top: var(--sp-3xl);
  border: 1px solid var(--rule);
  padding: var(--sp-xl);
  background: var(--white);
  overflow-x: auto;
}
.floorplan-figure img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}
.floorplan-figure figcaption {
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
}

/* ─── LOCATION ─────────────────────────────────────────────── */
.location {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-5xl) var(--gutter);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl);
  margin-top: var(--sp-3xl);
  align-items: start;
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; gap: var(--sp-3xl); }
}
.location-prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: var(--sp-lg);
}
.location-table table {
  width: 100%;
  border-collapse: collapse;
}
.location-table td {
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15.5px;
  color: var(--ink);
}
.location-table td:first-child { font-weight: 500; }
.location-table td:last-child {
  text-align: right;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--hos-dark);
  white-space: nowrap;
  font-size: 14.5px;
  letter-spacing: 0.02em;
}

/* Interactive Google Map */
.location-map {
  margin-top: var(--sp-4xl);
  border: 1px solid var(--rule);
  background: var(--white);
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}
.location-map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-lg) var(--sp-xl);
  border-top: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hos-dark);
  transition: background 0.2s ease;
}
.location-map-link:hover { background: var(--hos-tint); }
.loc-map-arrow { transition: transform 0.2s ease; }
.location-map-link:hover .loc-map-arrow { transform: translateX(4px); }
@media (max-width: 600px) {
  .location-map iframe { height: 320px; }
}

/* ─── HISTORY ──────────────────────────────────────────────── */
.history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 540px;
  margin-top: var(--sp-4xl);
}
@media (max-width: 900px) {
  .history { grid-template-columns: 1fr; }
  .history-img { min-height: 380px; }
}
.history-img {
  background-size: cover;
  background-position: center;
}
.history-prose {
  background: var(--hot-tint);
  padding: var(--sp-5xl) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.history-prose .section-title {
  color: var(--ink);
  margin-bottom: var(--sp-xl);
}
.history-prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: var(--sp-md);
  max-width: 540px;
}
.history-prose a {
  color: var(--hot-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}
.history-prose a.amr { color: var(--amr-acc); }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-5xl) var(--gutter);
}
.faq-list {
  margin-top: var(--sp-3xl);
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-xl) 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.35;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-lg);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--hot-dark);
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 0 var(--sp-xl);
  max-width: 760px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ─── MOBILE RHYTHM — tighten vertical pacing on phones ────── */
@media (max-width: 600px) {
  .glance, .pitches, .gallery, .floorplan,
  .location, .faq, .contact, .pullquote {
    padding-top: var(--sp-4xl);
    padding-bottom: var(--sp-4xl);
  }
}

/* ─── CONTACT ──────────────────────────────────────────────── */
.contact {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-5xl) var(--gutter);
}
.contact-lede {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
  margin-top: var(--sp-xl);
  font-weight: 400;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-3xl);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  display: block;
  padding: var(--sp-2xl) var(--sp-xl);
  border: 1px solid var(--rule);
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
}
.contact-card--phone:hover     { border-color: var(--hos-acc); }
.contact-card--whatsapp:hover  { border-color: #25D366; }
.contact-card--email:hover     { border-color: var(--hot-acc); }

.contact-card-label {
  margin-bottom: var(--sp-md);
}
.contact-card-value {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-card-sub {
  margin-top: var(--sp-sm);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-address {
  margin-top: var(--sp-3xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--rule);
}
.contact-address-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-sm);
}
.contact-address p:not(.contact-address-label) {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
}
.contact-address-ref {
  margin-top: var(--sp-md);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.contact-address-ref a {
  border-bottom: 1px solid var(--rule);
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: var(--sp-4xl) var(--gutter) var(--sp-2xl);
  margin-top: var(--sp-3xl);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  gap: var(--sp-3xl);
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-2xl); }
}
.footer-col { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-mark {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
}
.footer-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: var(--sp-sm);
}
.footer-col-label {
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-sm);
}
.footer-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-col a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.footer-fineprint {
  max-width: var(--max-w);
  margin: var(--sp-3xl) auto 0;
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* ─── REVEAL ON SCROLL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who ask for reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ─── LIGHTBOX ─────────────────────────────────────────────── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,18,22,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
  padding: var(--sp-xl);
}
.lb-overlay.is-open { display: flex; }
.lb-overlay img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255,255,255,0.85);
  font-size: 32px;
  font-family: var(--font-serif);
  font-weight: 400;
  background: none;
  border: none;
  line-height: 1;
  cursor: pointer;
}
