/* ==========================================================================
   BodyLume Therapy — stylesheet
   Warm neutral luxe, serif display, gold accents
   ========================================================================== */

:root {
  /* Palette — warm cream / gold */
  --cream-50:  #FBF5EB;
  --cream-100: #F5EDE0;
  --cream-200: #EDE0CC;
  --cream-300: #E2D0B6;
  --sand-400:  #D4BA96;
  --gold-500:  #C9A875;
  --gold-600:  #B6925C;
  --bronze-700:#8B6F49;

  --ink-900:   #3E2E21;
  --ink-700:   #5C4A37;
  --ink-500:   #8C7862;
  --ink-300:   #B5A58E;

  --glow:      #E3896B;
  --glow-soft: #F0B994;

  /* Type */
  --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-body:    'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --bl-text-scale: 0.95;

  /* Radii & shadows */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 48px;
  --r-pill: 999px;

  --shadow-soft: 0 10px 40px -18px rgba(91, 66, 38, 0.25);
  --shadow-card: 0 20px 60px -24px rgba(91, 66, 38, 0.3);

  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* -------------------------------------------------------------------------- */
/*  Base                                                                      */
/* -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html { font-size: calc(16px * var(--bl-text-scale, 1)); }

body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: calc(16px * var(--bl-text-scale, 1));
  line-height: 1.6;
  color: var(--ink-700);
  /* Marbled warm background with layered radial highlights + subtle linen weave + film grain */
  background-color: var(--cream-100);
  background-image:
    /* Fine film grain (SVG noise) */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.40  0 0 0 0 0.25  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"),
    /* Linen-style crosshatch — two thin diagonals at opposite angles */
    repeating-linear-gradient(45deg,  rgba(139, 111, 73, 0.028) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(-45deg, rgba(139, 111, 73, 0.020) 0 1px, transparent 1px 16px),
    /* Existing warm radial highlights */
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255,246,230,0.9), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 30%, rgba(232,208,174,0.55), transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(245,230,208,0.6), transparent 65%),
    radial-gradient(ellipse 90% 70% at 80% 95%, rgba(228,200,164,0.4), transparent 65%);
  background-size:
    400px 400px,
    auto,
    auto,
    auto, auto, auto, auto;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Optional art-deco accent pattern for select section backdrops (used via .bg-pattern--arcs) */
.bg-pattern--arcs {
  position: relative;
  isolation: isolate;
}
.bg-pattern--arcs::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'><g fill='none' stroke='%23B6925C' stroke-width='0.6' opacity='0.12'><circle cx='70' cy='70' r='46'/><circle cx='70' cy='70' r='30'/><circle cx='70' cy='70' r='14'/></g></svg>");
  background-size: 140px 140px;
  background-position: center;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}

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

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

button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* -------------------------------------------------------------------------- */
/*  Typography                                                                */
/* -------------------------------------------------------------------------- */

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink-900);
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
}

.section-title--center { text-align: center; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.eyebrow--center {
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 0.5rem;
  max-width: 720px;
}

.eyebrow__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.eyebrow--center .eyebrow__line { max-width: 100px; }

.eyebrow__label {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--bronze-700);
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/*  Buttons                                                                   */
/* -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .2s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  color: var(--ink-900);
  background: linear-gradient(145deg, #F0DDBF 0%, #E2C497 60%, #D4AE7A 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 6px 18px -8px rgba(139, 111, 73, 0.5);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 12px 26px -10px rgba(139, 111, 73, 0.55);
}

.btn--ghost {
  color: var(--ink-900);
  background: rgba(255, 247, 234, 0.7);
  border: 1px solid rgba(181, 145, 92, 0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255, 247, 234, 0.95);
  border-color: var(--gold-500);
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
}

.btn--block { width: 100%; }

/* -------------------------------------------------------------------------- */
/*  Navigation                                                                */
/* -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 235, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(181, 145, 92, 0.12);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #F5E0BC, #C99B5F 75%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.6),
    0 4px 14px -6px rgba(145, 105, 55, 0.5);
}
.brand__mark-inner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream-50);
  color: var(--bronze-700);
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand__name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-900);
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.nav__link {
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-700);
  padding: 0.3rem 0;
  transition: color .2s ease;
}
.nav__link:hover { color: var(--ink-900); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold-600);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__phone {
  font-size: 0.9rem;
  color: var(--ink-700);
  letter-spacing: 0.03em;
}
.nav__phone:hover { color: var(--ink-900); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border-radius: var(--r-pill);
  background: rgba(255, 247, 234, 0.6);
  border: 1px solid rgba(181, 145, 92, 0.25);
}
.lang-switch button {
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink-500);
  border-radius: var(--r-pill);
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.lang-switch button.is-active {
  color: var(--ink-900);
  background: linear-gradient(145deg, #F0DDBF, #D4AE7A);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 4px 12px -6px rgba(139, 111, 73, 0.4);
}
.lang-switch button:hover:not(.is-active) { color: var(--ink-900); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem var(--gutter) 1.5rem;
  background: var(--cream-50);
  border-bottom: 1px solid rgba(181, 145, 92, 0.12);
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(181, 145, 92, 0.2);
  color: var(--ink-900);
}
.mobile-menu a.btn { border-bottom: 0; margin-top: 0.5rem; }

/* -------------------------------------------------------------------------- */
/*  Sections layout                                                           */
/* -------------------------------------------------------------------------- */

section {
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  position: relative;
}

/* -------------------------------------------------------------------------- */
/*  Hero                                                                      */
/* -------------------------------------------------------------------------- */

.hero {
  /* +2*gutter so the gutter padding doesn't eat into the 1200px content area —
     keeps hero content aligned with .about__inner / .wrap on every page */
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.hero__content {
  max-width: 520px;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--ink-900);
  margin: 0 0 1.25rem;
}

.hero__subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--ink-500);
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  /* fills its grid column so the right edge aligns with about/services/feature visuals */
}

.hero__image {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  /* no border-radius, no shadow — image sits directly on page */
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__glow {
  display: none;
}

/* -------------------------------------------------------------------------- */
/*  About                                                                     */
/* -------------------------------------------------------------------------- */

.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about__text { max-width: 480px; }

.about__copy {
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 2rem;
}

.about__visual {
  position: relative;
}

.about__image {
  aspect-ratio: 5/4;
  background: transparent;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------------------------------------------------- */
/*  Services                                                                  */
/* -------------------------------------------------------------------------- */

.services {
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
  text-align: center;
}

.services__tagline {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink-500);
  margin: 0 0 3.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 3rem;
  position: relative;
}
.services__grid::before,
.services__grid::after {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(181, 145, 92, 0.35), transparent);
}
.services__grid::before { left: 33.333%; }
.services__grid::after { left: 66.666%; }

.service {
  padding: 1rem 1.5rem;
  text-align: center;
}

.service__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  color: var(--gold-600);
  position: relative;
}
.service__icon::before {
  /* Glow halo disabled — kept selector for easy re-enable */
  content: none;
}
.service__icon svg { width: 100%; height: 100%; }

/* Custom illustration variant — bigger, no glow halo */
.service__icon--illus {
  width: 180px;
  height: 180px;
  margin: -0.5rem auto 0.5rem;
}
.service__icon--illus::before { display: none; }
.service__icon--illus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --plain variants retained for backward compat; no extra styling applied */
.hero__image--plain,
.about__image--plain {
  background: transparent;
}

.service__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink-900);
  margin: 0 0 0.6rem;
  letter-spacing: 0.02em;
}

.service__desc {
  color: var(--ink-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 260px;
}

.services__cta {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  position: relative;
}
.services__cta::before,
.services__cta::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 145, 92, 0.5), transparent);
}
.services__cta::before { right: calc(50% + 110px); }
.services__cta::after { left: calc(50% + 110px); }

/* -------------------------------------------------------------------------- */
/*  Footer CTA                                                                */
/* -------------------------------------------------------------------------- */

.footer-cta {
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(181, 145, 92, 0.2);
}

.footer-cta__text { text-align: center; }

.footer-cta__meta {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  color: var(--ink-500);
  font-size: 0.9rem;
}
.footer-cta__meta a:hover { color: var(--ink-900); }
.footer-cta__meta .dot { opacity: 0.6; }

.footer-cta__visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(242,207,175,0.5), transparent 70%),
    linear-gradient(135deg, #F2E2CC 0%, #E4CBA9 100%);
}
.footer-cta__visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.1) saturate(0.85);
}

.footer-meta {
  display: flex;
  justify-content: flex-start;
  padding-top: 1.25rem;
  color: var(--ink-500);
  font-size: 0.85rem;
}
.footer-meta__col { max-width: 320px; }
.footer-meta__row {
  margin: 0.15rem 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.footer-meta__row .ic {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--gold-600);
  font-size: 0.8rem;
}

.footer-meta__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  color: var(--bronze-700);
}
.footer-meta__social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: background .2s ease;
}
.footer-meta__social a:hover { background: rgba(201, 168, 117, 0.18); }

/* -------------------------------------------------------------------------- */
/*  Responsive                                                                */
/* -------------------------------------------------------------------------- */

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .nav__phone { display: none; }
  .nav__burger { display: inline-flex; }

  .hero {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__visual { justify-self: stretch; max-width: 100%; aspect-ratio: 4/3; }

  .about__inner { grid-template-columns: 1fr; }
  .about__text { max-width: 100%; }

  .services__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services__grid::before, .services__grid::after { display: none; }

  .footer-cta__inner { grid-template-columns: 1fr; }
  .footer-cta__visual { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .brand__name { font-size: 1.1rem; letter-spacing: 0.14em; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__mark-inner { width: 30px; height: 30px; font-size: 0.95rem; }

  .btn { padding: 0.75rem 1.6rem; font-size: 0.9rem; }

  .lang-switch button { padding: 0.3rem 0.55rem; font-size: 0.68rem; }
  .nav__actions .btn--primary { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
}

/* ==========================================================================
   CTA band — when used with --plain visual, strip box/shadow/radius
   ========================================================================== */

.footer-cta__visual--plain {
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
}
.footer-cta__visual--plain img {
  filter: none !important;
}

/* Remove the CTA band's bottom hairline since we now have a full footer below */
.footer-cta__inner {
  border-bottom: none;
  padding-bottom: 0;
}

/* ==========================================================================
   Site footer — dark editorial footer (shared on every page)
   ========================================================================== */

.site-footer {
  background: var(--ink-900);
  color: var(--cream-50);
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201,168,117,0.55) 20%,
    rgba(201,168,117,0.55) 80%,
    transparent);
}

.site-footer__main {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
}

/* Brand column */
.site-footer__brand-col { max-width: 320px; }
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.site-footer__brand-mark {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,117,0.55);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-500);
  letter-spacing: 0.05em;
}
.site-footer__brand-name {
  font-family: var(--f-display);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: var(--cream-50);
}
.site-footer__tag {
  margin: 1.4rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 237, 224, 0.65);
  max-width: 300px;
}
.site-footer__social {
  display: flex;
  gap: 0.6rem;
}
.site-footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(201,168,117,0.35);
  border-radius: 50%;
  color: rgba(245, 237, 224, 0.85);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.site-footer__social a:hover {
  background: var(--gold-500);
  color: var(--ink-900);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

/* Column heading + list */
.site-footer__col { min-width: 0; }
.site-footer__heading {
  margin: 0 0 1.3rem;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.site-footer__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.site-footer__list a {
  color: rgba(245, 237, 224, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}
.site-footer__list a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 0;
  transition: width 0.25s ease, margin-right 0.25s ease;
}
.site-footer__list a:hover {
  color: var(--gold-500);
}
.site-footer__list a:hover::before {
  width: 14px;
  margin-right: 8px;
}

/* Contact column */
.site-footer__address {
  font-style: normal;
  color: rgba(245, 237, 224, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.3rem;
}
.site-footer__address p { margin: 0 0 0.55rem; }
.site-footer__address a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.site-footer__address a:hover {
  color: var(--gold-500);
  border-bottom-color: rgba(201,168,117,0.5);
}
.site-footer__hours {
  color: rgba(245, 237, 224, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}
.site-footer__sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
}
.site-footer__hours p { margin: 0; }

/* Bottom legal strip */
.site-footer__bottom {
  border-top: 1px solid rgba(201, 168, 117, 0.18);
}
.site-footer__bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.3rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.55);
}
.site-footer__copy { margin: 0; }
.site-footer__legal {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 1.5rem;
}
.site-footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer__legal a:hover { color: var(--gold-500); }

@media (max-width: 880px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .site-footer__brand-col { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 540px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
