/* =========================================================
   BRANCH PAGE STYLES
   ========================================================= */

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px var(--gutter);
  background: linear-gradient(to bottom, rgba(8,8,10,0.65), rgba(8,8,10,0));
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.sticky-header.is-scrolled {
  background: rgba(8,8,10,0.92);
  border-bottom-color: var(--line);
  padding: 12px var(--gutter);
}
.sticky-header .header-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sticky-header .header-logo span { color: var(--ember); }
.sticky-header .header-logo .back-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.sticky-header .header-logo:hover .back-arrow {
  background: var(--ember);
  border-color: var(--ember);
  transform: translateX(-4px);
}
.sticky-header .header-logo .back-arrow svg { width: 12px; height: 12px; fill: currentColor; }

.sticky-header .header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: none;
  color: var(--text);
}
@media (min-width: 900px) {
  .sticky-header .header-title { display: block; }
}
.sticky-header .header-cta .btn {
  padding: 12px 22px;
  font-size: 0.75rem;
}

/* =========================================================
   Branch Hero (video)
   ========================================================= */
.branch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.branch-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.branch-hero__media video,
.branch-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.95);
  transform: scale(1.04);
}
.branch-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(8,8,10,0.35) 0%, rgba(8,8,10,0.85) 70%),
    linear-gradient(to top, rgba(8,8,10,0.9) 0%, rgba(8,8,10,0.25) 45%, rgba(8,8,10,0.55) 100%);
}
.branch-hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(60px, 8vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.branch-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.branch-hero h1 {
  font-size: clamp(2.8rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 22px;
  max-width: 12ch;
}
.branch-hero__loc {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  margin-bottom: 16px;
}
.branch-hero__tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  color: var(--text);
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.4;
}
.branch-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Branch hero scroll indicator removed — felt template-y */

/* =========================================================
   Stats Strip (branch page)
   ========================================================= */
.branch-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.branch-stats .stat {
  padding: 36px var(--gutter);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.branch-stats .stat:last-child { border-right: none; }
.branch-stats .stat__num { font-size: clamp(2rem, 4vw, 3rem); }
@media (max-width: 768px) {
  .branch-stats { grid-template-columns: 1fr 1fr; }
  .branch-stats .stat:nth-child(2n) { border-right: none; }
  .branch-stats .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* =========================================================
   Editorial Intro (two column)
   ========================================================= */
.editorial {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.editorial-grid .lead h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 18px;
}
.editorial-grid .lead h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--ember-warm);
}
.editorial-grid .body {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.75;
}
.editorial-grid .body p + p { margin-top: 1.3em; }
.editorial-grid .body strong { color: var(--text); font-weight: 500; }
@media (max-width: 880px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   Section Header
   ========================================================= */
.section-header {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.section-header h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--ember-warm);
}
.section-header .section-sub {
  max-width: 420px;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================================
   Gallery (asymmetric)
   ========================================================= */
.gallery-section { padding: var(--section-y) var(--gutter); background: var(--surface-1); }
.gallery-section .wrap-narrow { max-width: var(--max); margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid .ph {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-grid .ph:last-child {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}
.gallery-grid .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-out), filter 0.6s ease;
  filter: brightness(0.95);
  display: block;
}
.gallery-grid .ph:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.gallery-grid .ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.45), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-grid .ph:hover::after { opacity: 1; }
.gallery-grid .ph .ph-num {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--text);
  opacity: 0;
  z-index: 2;
  letter-spacing: 0.1em;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(8px);
}
.gallery-grid .ph:hover .ph-num { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-grid .ph,
  .gallery-grid .ph:last-child {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
  .gallery-grid .ph:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/10;
  }
}

/* =========================================================
   Timings & Facilities (combined)
   ========================================================= */
.combo-section {
  padding: var(--section-y) var(--gutter);
}
.combo-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.timings-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
}
.timings-card .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ember);
  margin-bottom: 28px;
}
.timings-list { display: flex; flex-direction: column; gap: 18px; }
.timings-list .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.timings-list .row:last-child { border-bottom: none; padding-bottom: 0; }
.timings-list .row .day {
  font-size: 0.92rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.timings-list .row .hrs {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
}
.timings-card .note {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.facility {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
.facility:hover {
  transform: translateY(-3px);
  border-color: var(--ember);
  background: var(--surface-3);
}
.facility .ico {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ember-soft);
  border-radius: 50%;
  transition: background 0.3s ease;
}
.facility:hover .ico { background: var(--ember); }
.facility .ico svg { width: 20px; height: 20px; fill: var(--ember); transition: fill 0.3s ease; }
.facility:hover .ico svg { fill: #fff; }
.facility h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.facility p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }

@media (max-width: 880px) {
  .combo-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Trainers
   ========================================================= */
.trainers-section { padding: var(--section-y) var(--gutter); background: var(--surface-1); }
.trainers-section .wrap-narrow { max-width: var(--max); margin: 0 auto; }
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trainer-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.3s ease;
}
.trainer-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.trainer-img {
  aspect-ratio: 4/5;
  background-color: var(--surface-3);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.trainer-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.5), transparent 50%);
}
.trainer-info { padding: 22px 24px 26px; }
.trainer-info h4 { font-size: 1.25rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.trainer-info .role {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}
.trainer-info .exp { color: var(--text-dim); font-size: 0.9rem; }
@media (max-width: 768px) {
  .trainers-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .trainers-grid::-webkit-scrollbar { display: none; }
  .trainer-card { min-width: 78vw; scroll-snap-align: center; }
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-section { padding: var(--section-y) var(--gutter); }
.pricing-section .wrap-narrow { max-width: var(--max); margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.5s var(--ease-out), border-color 0.3s ease, background 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--surface-3);
}
.pricing-card.popular {
  border-color: var(--ember);
  background: linear-gradient(to bottom, rgba(255,87,34,0.06), var(--surface-2));
}
.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ember);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.pricing-card .tier {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pricing-card .price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.025em;
}
.pricing-card .price .per {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-left: 6px;
  letter-spacing: 0;
}
.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.pricing-card ul li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ember-soft);
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path fill='%23FF5722' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-card .btn { margin-top: auto; }
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Testimonials marquee
   ========================================================= */
.testimonials-section {
  padding-block: var(--section-y);
  background: var(--surface-1);
  overflow: hidden;
}
.testimonials-section .wrap { padding-bottom: 60px; }
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 120s linear infinite;
  padding-inline: var(--gutter);
}
.testimonials-track:hover { animation-play-state: paused; }
.testimonial {
  width: 380px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial .stars {
  color: var(--ember);
  letter-spacing: 4px;
  font-size: 0.9rem;
}
.testimonial blockquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testimonial .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ember-soft);
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.testimonial .meta { display: flex; flex-direction: column; }
.testimonial .name { font-weight: 500; font-size: 0.95rem; }
.testimonial .meta small { color: var(--text-dim); font-size: 0.78rem; }

/* =========================================================
   Location
   ========================================================= */
.location-section { padding: var(--section-y) var(--gutter); }
.location-section .wrap-narrow { max-width: var(--max); margin: 0 auto; }
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-container {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--surface-2);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.4);
}
.open-maps-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}
.open-maps-btn:hover {
  background: var(--ember);
  color: #fff;
  transform: translateY(-2px);
}
.open-maps-btn svg { width: 14px; height: 14px; fill: currentColor; }
.map-help-text {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.map-help-text.error { color: #ff8a65; }

.location-info { display: flex; flex-direction: column; gap: 20px; }
.location-info .info-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.location-info .info-row:last-child { border-bottom: none; }
.location-info .label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.location-info .val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.location-info .val a { transition: color 0.3s ease; }
.location-info .val a:hover { color: var(--ember); }

@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Other Branches Strip
   ========================================================= */
.other-branches {
  padding: var(--section-y) var(--gutter);
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.other-branches .wrap-narrow { max-width: var(--max); margin: 0 auto; }
.other-branches h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 40px;
  letter-spacing: -0.025em;
}
.other-branches h3 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--ember-warm);
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.other-branch {
  display: block;
  position: relative;
  aspect-ratio: 5/4;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}
.other-branch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.9), rgba(8,8,10,0.2) 50%, rgba(8,8,10,0.4));
  z-index: 1;
  transition: background 0.4s ease;
}
.other-branch:hover::after {
  background: linear-gradient(to top, rgba(8,8,10,0.95), rgba(8,8,10,0.4) 50%, rgba(8,8,10,0.6));
}
.other-branch .ob-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.other-branch .ob-num {
  position: absolute;
  top: 18px;
  left: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.85;
  z-index: 3;
}
.other-branch h4 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.other-branch p { color: var(--text-dim); font-size: 0.85rem; }
.other-branch .ob-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.other-branch .ob-cta svg {
  width: 14px; height: 14px;
  fill: currentColor;
  transition: transform 0.4s var(--ease-out);
}
.other-branch:hover .ob-cta svg { transform: translateX(4px); }

@media (max-width: 768px) {
  .other-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Modal
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,10,0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: clamp(32px, 5vw, 48px);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: scale(0.96) translateY(20px);
  transition: transform 0.5s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-content { transform: scale(1) translateY(0); }
.close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out);
  border: none;
}
.close-modal:hover { background: var(--ember); color: #fff; transform: rotate(90deg); }
.modal-content h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.modal-content .modal-sub {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.form-group input:focus {
  outline: none;
  border-color: var(--ember);
  background: var(--surface-2);
}
.form-group input[readonly] {
  color: var(--ember);
  font-weight: 600;
  cursor: default;
}
.modal-content .btn { width: 100%; margin-top: 6px; }

/* =========================================================
   Floating Buttons
   ========================================================= */
.floating-btns {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease-elastic), box-shadow 0.3s ease;
  position: relative;
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(0,0,0,0.55);
}
.float-btn.whatsapp-btn { background: #25D366; }
.float-btn.phone-btn { background: var(--ember); }
.float-btn svg { width: 24px; height: 24px; fill: #fff; }
.float-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulse 2.4s ease-out infinite;
}
.float-btn.phone-btn::before { color: var(--ember); }
.float-btn.whatsapp-btn::before { color: #25D366; }
@keyframes pulse {
  0% { opacity: 0.6; transform: scale(0.85); }
  100% { opacity: 0; transform: scale(1.4); }
}
@media (max-width: 540px) {
  .floating-btns { bottom: 16px; right: 16px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 22px; height: 22px; }
}

/* =========================================================
   Lightbox (gallery)
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,8,10,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.lightbox-close:hover { background: var(--ember); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.lightbox-nav:hover { background: var(--ember); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
@media (max-width: 540px) {
  .lightbox-nav { width: 40px; height: 40px; }
}
