/* ==========================================================================
   Formația Mordasan — design system
   Stil: bold, editorial, "brand" modern. Negru + accent portocaliu-roșu vibrant.
   Tipografie: Manrope (un singur font family, greutăți diferite).
   ========================================================================== */

:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-surface: #161616;
  --color-surface-border: #2a2a2a;

  --color-cream: #f5f3ef;
  --color-cream-alt: #ece8e0;

  --color-text: #fafafa;
  --color-text-muted: #a3a3a3;
  --color-text-dark: #141414;
  --color-text-dark-muted: #5a5a5a;

  --color-gold: #ff5a36;
  --color-gold-bright: #ff8256;
  --color-gold-deep: #c23a1c;

  --color-focus: #ff8256;

  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 140px;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1180px;
  --shadow-soft: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 14px 34px -12px rgba(255, 90, 54, 0.5);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 280ms;

  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  :root { --dur: 0ms; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; }
p { margin: 0 0 var(--space-sm); color: var(--color-text-muted); max-width: 60ch; }
.section--light p, .section--light .eyebrow, .section--light li { color: var(--color-text-dark-muted); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-gold);
}

/* Highlighted word — solid pill, like a brand mark inline in a headline */
mark, .pill-highlight {
  background: var(--color-gold);
  color: #1a0500;
  padding: 0.02em 0.28em;
  border-radius: 0.22em;
  font-weight: 800;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--color-gold);
  color: #1a0500;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--color-gold-bright); box-shadow: 0 18px 40px -10px rgba(255, 90, 54, 0.65); }
.btn-light {
  background: var(--color-cream);
  color: var(--color-text-dark);
}
.btn-light:hover { background: #fff; }
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(250, 250, 250, 0.25);
}
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold-bright); }
.section--light .btn-outline { color: var(--color-text-dark); border-color: rgba(20, 20, 20, 0.2); }
.btn-block { width: 100%; }

/* Header / nav — floating pill */
.site-header {
  position: fixed;
  top: var(--space-sm); left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--space-md);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
  padding: 8px 8px 8px 22px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(250, 250, 250, 0.1);
  border-radius: 999px;
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.8);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-scrolled .container {
  background: rgba(10, 10, 10, 0.92);
  border-color: rgba(255, 90, 54, 0.3);
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-mark { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; color: var(--color-text); }
.logo-mark span { color: var(--color-gold); }
.logo-sub { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 2px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(250,250,250,0.2); border-radius: 50%;
  color: var(--color-text);
  cursor: pointer;
}
.main-nav { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links { display: flex; gap: var(--space-md); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.88rem; font-weight: 600; letter-spacing: -0.01em;
  padding: var(--space-2xs) 2px; position: relative;
  white-space: nowrap;
  color: var(--color-text-muted);
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--color-text); }
.nav-links a.is-active { color: var(--color-gold); }
.nav-cta { display: flex; align-items: center; gap: var(--space-sm); }
.nav-phone { display: none; }
.nav-cta .btn { min-height: 44px; padding: 0 22px; font-size: 0.88rem; }

@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; z-index: 160; position: relative; }
  .main-nav {
    display: none;
    position: fixed; top: 0; right: 0; left: 0;
    height: 100vh; height: 100dvh;
    background: var(--color-bg);
    flex-direction: column; align-items: center; justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    z-index: 150;
    overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .nav-links { flex-direction: column; gap: var(--space-md); align-items: center; text-align: center; }
  .nav-links a { font-size: 1.4rem; color: var(--color-text); }
  .nav-cta { flex-direction: column; align-items: center; margin-top: var(--space-lg); gap: var(--space-md); }
}

/* Hero — full-bleed video background, centered bold headline */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-2xl) + var(--space-lg)) var(--space-md) var(--space-2xl);
  overflow: hidden;
  background: #000;
  text-align: center;
}
.hero-bg-video, .hero-bg-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.35), rgba(10,10,10,0.15) 30%, rgba(10,10,10,0.15) 70%, rgba(10,10,10,0.35));
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero-kicker { color: var(--color-gold-bright); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: var(--space-md); display: block; }
.hero h1 { color: var(--color-text); max-width: 15ch; }
.hero-lead { font-size: 1.15rem; color: #e5e5e5; max-width: 52ch; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-lg); justify-content: center; }
.hero-actions.stacked { flex-direction: column; width: 100%; max-width: 320px; }
.hero-actions.stacked .btn { width: 100%; }

/* Floating stat chips over hero/media */
.stat-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(250,250,250,0.15);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  z-index: 3;
  box-shadow: var(--shadow-soft);
}
.stat-chip .stat-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-gold); color: #1a0500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-chip .stat-icon svg { width: 16px; height: 16px; }
.stat-chip strong { display: block; font-size: 0.95rem; line-height: 1.1; color: var(--color-text); }
.stat-chip span { font-size: 0.7rem; color: var(--color-text-muted); }
.stat-chip--tl { top: 14%; left: 4%; }
.stat-chip--tr { top: 20%; right: 4%; }
.stat-chip--bl { bottom: 14%; left: 6%; }
@media (max-width: 780px) {
  .stat-chip { padding: 6px 12px 6px 6px; }
  .stat-chip strong { font-size: 0.82rem; }
  .stat-chip span { font-size: 0.62rem; }
  .stat-chip .stat-icon { width: 26px; height: 26px; }
  .stat-chip--tl { top: 8%; left: 3%; }
  .stat-chip--tr { top: 12%; right: 3%; }
  .stat-chip--bl { bottom: 8%; left: 3%; }
}

/* Generic sections */
section { padding: var(--space-2xl) 0; position: relative; }
.section--alt { background: var(--color-bg-alt); }
.section--light { background: var(--color-cream); color: var(--color-text-dark); }
.section--light h2, .section--light h3, .section--light .logo-mark { color: var(--color-text-dark); }
.section-head { max-width: 720px; margin-bottom: var(--space-xl); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Bento media grid (below hero) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: var(--space-sm);
  position: relative;
}
.bento-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  background: var(--color-surface) center/cover;
  border: 1px solid var(--color-surface-border);
}
.bento-item video, .bento-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento-item.video-card-tile { cursor: pointer; }
.bento-item.video-card-tile video { display: none; }
.bento-item.video-card-tile.is-playing img { display: none; }
.bento-item.video-card-tile.is-playing video { display: block; }
.play-badge-sm {
  position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(10,10,10,0.55); border: 1px solid rgba(255,90,54,0.6);
  display: flex; align-items: center; justify-content: center; color: var(--color-gold-bright);
  z-index: 2; transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.play-badge-sm svg { width: 22px; height: 22px; margin-left: 2px; }
.bento-item:hover .play-badge-sm { transform: scale(1.1); background: rgba(255,90,54,0.3); }
.bento-item.video-card-tile.is-playing .play-badge-sm { display: none; }
.bento-item.span-2x2 { grid-column: span 2; grid-row: span 2; }
.bento-item.span-2x1 { grid-column: span 2; grid-row: span 1; }
.bento-item.span-1x2 { grid-column: span 1; grid-row: span 2; }
.bento-item.span-1x1 { grid-column: span 1; grid-row: span 1; }
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .bento-item.span-2x2 { grid-column: span 2; grid-row: span 2; }
}

/* Services / offerings — list rows */
.list-rows { border-top: 1px solid var(--color-surface-border); }
.section--light .list-rows { border-color: #e2ddd2; }
.list-row {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg);
  padding: var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--color-surface-border);
  transition: background var(--dur) var(--ease), padding-left var(--dur) var(--ease);
  border-radius: var(--radius-sm);
}
.section--light .list-row { border-color: #e2ddd2; }
.list-row:hover { background: var(--color-gold); padding-left: calc(var(--space-md) + 10px); }
.list-row:hover, .list-row:hover p, .list-row:hover .list-row-tag { color: #1a0500 !important; }
.list-row-main { display: flex; align-items: flex-start; gap: var(--space-md); }
.list-row-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,90,54,0.12); color: var(--color-gold-bright);
  display: flex; align-items: center; justify-content: center;
}
.list-row:hover .list-row-icon { background: rgba(26,5,0,0.15); color: #1a0500; }
.list-row-icon svg { width: 22px; height: 22px; }
.list-row h3 { margin-bottom: 4px; }
.list-row p { margin-bottom: 0; max-width: 52ch; }
.list-row-tag {
  flex-shrink: 0; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-gold-bright);
  border: 1px solid currentColor; border-radius: 999px; padding: 6px 14px;
}
@media (max-width: 700px) {
  .list-row { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
}

/* Cards (band members, generic) */
.grid { display: grid; gap: var(--space-md); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,90,54,0.5); box-shadow: var(--shadow-soft); }
.card .icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,90,54,0.12);
  color: var(--color-gold-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: var(--space-2xs); }
.card p { margin-bottom: 0; }
.card ul { margin: var(--space-sm) 0 0; padding-left: 1.1em; color: var(--color-text-muted); }
.section--light .card { background: #fff; border-color: #e2ddd2; }

/* Band member card (photo-forward, "Masters" style) */
.member-card {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.member-card:hover { transform: translateY(-4px); border-color: rgba(255,90,54,0.5); }
.member-card .member-photo { aspect-ratio: 4/5; background: var(--color-bg-alt) center/cover; }
.member-card .member-body { padding: var(--space-md); text-align: center; }
.member-card h3 { margin-bottom: 2px; }
.member-card .member-role { font-size: 0.85rem; color: var(--color-gold-bright); font-weight: 600; margin-bottom: var(--space-md); }

/* Stat / badge row */
.badge-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.badge {
  display: inline-flex; align-items: center; gap: var(--space-2xs);
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,90,54,0.1); border: 1px solid rgba(255,90,54,0.35);
  font-size: 0.85rem; font-weight: 600; color: var(--color-gold-bright);
}
.badge svg { width: 16px; height: 16px; }

/* Inline video-embed card (YouTube facade used within page content, not the main hero) */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--color-surface-border);
  box-shadow: var(--shadow-soft);
  background: var(--color-surface) center/cover;
  cursor: pointer;
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15), rgba(10,10,10,0.75) 80%);
}
.hero-visual .frame-content { position: absolute; z-index: 1; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: var(--space-sm); text-align: center; padding: var(--space-lg); }
.hero-visual .play-badge {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(250,250,250,0.08);
  border: 1px solid rgba(255,90,54,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold-bright);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hero-visual:hover .play-badge { transform: scale(1.08); background: rgba(255,90,54,0.2); }
.hero-visual .play-badge svg { width: 24px; height: 24px; margin-left: 3px; }
.hero-visual figcaption { font-size: 0.85rem; color: var(--color-text-muted); }
.hero-visual iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Native video card (self-hosted clips) */
.video-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--color-surface-border);
  background: #000;
}
.video-card video { width: 100%; display: block; }
.video-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-md);
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  font-size: 0.85rem; color: var(--color-text);
  font-weight: 600;
}

/* Gallery (YouTube facades) */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 1/1; background: var(--color-surface) center/cover;
  border: 1px solid var(--color-surface-border);
  cursor: pointer;
  transition: transform var(--dur) var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.05), rgba(10,10,10,0.55));
}
.gallery-item.video::after {
  content: ""; position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(10,10,10,0.55); border: 1px solid rgba(255,90,54,0.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff8256'%3E%3Cpath d='M9 6v12l10-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 20px;
}
.gallery-item iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
@media (max-width: 780px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Coverage / area list */
.coverage-list { display: flex; flex-wrap: wrap; gap: var(--space-2xs); padding: 0; margin: 0; list-style: none; }
.coverage-list li {
  padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(250,250,250,0.12); font-size: 0.86rem; font-weight: 500;
}
.section--light .coverage-list li { background: #fff; border-color: #e2ddd2; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--color-surface-border);
  padding: var(--space-md) 0;
}
.section--light .faq-item { border-color: #e2ddd2; }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-surface); color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq-item summary .chev svg { width: 16px; height: 16px; }
.faq-item[open] summary .chev { transform: rotate(180deg); background: var(--color-gold); color: #1a0500; }
.faq-item p { margin-top: var(--space-sm); }

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(255,90,54,0.22), transparent 70%),
    var(--color-bg);
  border-top: 1px solid var(--color-surface-border);
  border-bottom: 1px solid var(--color-surface-border);
  text-align: center;
}
.section--alt + .cta-band { border-top-color: rgba(255,90,54,0.25); }
.cta-band .section-head { margin: 0 auto var(--space-lg); }
.cta-band .hero-actions { justify-content: center; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: var(--space-sm); margin-bottom: var(--space-md); align-items: flex-start; }
.contact-info-item .icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,90,54,0.12); color: var(--color-gold-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .icon svg { width: 20px; height: 20px; }
.contact-info-item strong { display: block; margin-bottom: 2px; }

/* Social floating bar */
.social-float {
  position: fixed; right: var(--space-md); bottom: var(--space-md); z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.social-float a {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface); border: 1px solid rgba(255,90,54,0.4);
  color: var(--color-gold-bright);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.social-float a:hover { transform: translateY(-3px) scale(1.05); background: rgba(255,90,54,0.2); }
.social-float a svg { width: 22px; height: 22px; }
.social-float .whatsapp { background: #25d366; border-color: #25d366; color: #06210f; }
@media (max-width: 640px) { .social-float { right: var(--space-sm); bottom: var(--space-sm); } .social-float a { width: 44px; height: 44px; } .social-float a svg { width: 20px; height: 20px; } }

/* Footer */
.site-footer { background: #050505; padding: var(--space-2xl) 0 var(--space-lg); border-top: 1px solid rgba(255,90,54,0.15); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--space-sm); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--color-gold-bright); }
.footer-socials { display: flex; gap: var(--space-xs); margin-top: var(--space-sm); }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(250,250,250,0.15); display: flex; align-items: center; justify-content: center; }
.footer-socials a svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm); padding-top: var(--space-lg); border-top: 1px solid rgba(250,250,250,0.08); font-size: 0.82rem; color: var(--color-text-muted); }

/* Breadcrumb (service pages) */
.breadcrumb { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.breadcrumb a:hover { color: var(--color-gold-bright); }

/* Page hero (interior pages, shorter than homepage hero) */
.page-hero { padding: calc(var(--space-2xl) + var(--space-lg)) 0 var(--space-xl); background: var(--color-bg); text-align: center; }
.page-hero .section-head { margin: 0 auto; }

/* Reveal-on-scroll (respects reduced motion via CSS var above) */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--color-gold); color: #1a0500; padding: 12px 20px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
