/* ============================================================
   Saune Personalizate Brașov — Forest Premium Theme
   ============================================================ */

:root {
  --c-bg:         #0a1410;
  --c-bg-2:       #0e1a14;
  --c-bg-3:       #14241c;
  --c-surface:    #182a21;
  --c-surface-2:  #1f3429;
  --c-line:       #2a4133;
  --c-wood:       #5a3a22;
  --c-wood-2:     #3d2817;
  --c-wood-soft:  #8b5e3c;
  --c-gold:       #d4af6a;
  --c-gold-2:     #c8a05a;
  --c-gold-soft:  #e6c98a;
  --c-text:       #f4e8d3;
  --c-text-mute:  #b8a98a;
  --c-text-dim:   #7a6f5c;
  --c-success:    #5fb27a;
  --c-danger:     #d4734f;

  --shadow-soft: 0 10px 30px rgba(0,0,0,.35);
  --shadow-deep: 0 30px 80px rgba(0,0,0,.55);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Outfit", "Inter", system-ui, sans-serif;

  --max-w: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  background-image:
    radial-gradient(1100px 600px at 12% -10%, rgba(212,175,106,.06), transparent 60%),
    radial-gradient(900px 500px at 110% 20%, rgba(95,178,122,.05), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--c-gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-gold-soft); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--c-gold); color: #1a120a; }

.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }

.skip-link {
  position: absolute; top: -40px; left: 8px; padding: 8px 12px;
  background: var(--c-gold); color: #111; border-radius: 6px; z-index: 9999;
}
.skip-link:focus { top: 8px; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.01em;
  color: var(--c-text);
  line-height: 1.12;
}

h1 { font-size: clamp(2.4rem, 4.8vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); }
.text-display { font-family: var(--font-display); }

.lead {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: var(--c-text-mute);
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  text-transform: uppercase; letter-spacing: .22em;
  font-size: .72rem; color: var(--c-gold);
  padding: .35rem .75rem;
  border: 1px solid rgba(212,175,106,.35);
  border-radius: 999px;
  background: rgba(212,175,106,.06);
}

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

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(10,20,16,.92), rgba(10,20,16,.78));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,106,.12);
}

.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 1rem;
}

.brand {
  display: flex; align-items: center; gap: .75rem;
  color: var(--c-text);
}
.brand-img {
  height: 92px; width: auto;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.6));
  transition: transform .35s ease, filter .35s ease;
}
.brand:hover .brand-img { transform: scale(1.05); filter: drop-shadow(0 6px 22px rgba(212,175,106,.5)); }
@media (max-width: 760px) { .brand-img { height: 70px; } }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.nav-link {
  position: relative; color: var(--c-text-mute);
  font-size: .92rem; font-weight: 500; letter-spacing: .02em;
  padding: .35rem 0;
}
.nav-link:hover, .nav-link.is-active { color: var(--c-gold); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.nav-cta {
  background: linear-gradient(180deg, #25d366, #1eb858);
  color: #08110a !important;
  padding: .65rem 1.1rem; border-radius: 999px;
  font-weight: 600; letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(37,211,102,.28);
  transition: transform .2s ease, box-shadow .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.4); }

.nav-toggle {
  display: none; width: 42px; height: 42px;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
  border: 1px solid rgba(212,175,106,.3); border-radius: 10px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-gold); transition: all .25s ease; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--c-gold-soft), var(--c-gold));
  color: #1a120a;
  box-shadow: 0 12px 30px rgba(212,175,106,.28);
}
.btn--primary:hover { transform: translateY(-2px); color: #1a120a; box-shadow: 0 16px 36px rgba(212,175,106,.42); }
.btn--ghost {
  background: transparent; color: var(--c-text);
  border: 1px solid rgba(212,175,106,.35);
}
.btn--ghost:hover { background: rgba(212,175,106,.08); color: var(--c-gold); border-color: var(--c-gold); }
.btn--wa {
  background: linear-gradient(180deg, #25d366, #1eb858);
  color: #08110a;
  box-shadow: 0 12px 28px rgba(37,211,102,.32);
}
.btn--wa:hover { transform: translateY(-2px); color: #08110a; box-shadow: 0 16px 32px rgba(37,211,102,.45); }
.btn--sm { padding: .55rem 1rem; font-size: .85rem; }

/* ============================================================
   Sections
   ============================================================ */
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head .eyebrow { margin-bottom: 1rem; }

/* Sub-page hero (smaller) keep good top breathing room */
.sub-hero {
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(4rem, 6vw, 6rem);
  min-height: 50vh;
}
.sub-hero h1 { margin-top: 1.5rem; }
.sub-hero .lead { margin-top: 1.5rem; }

/* Breadcrumb */
.breadcrumb {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-text-mute);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--c-gold-soft); transition: color .25s ease; }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb i { color: var(--c-gold); font-size: .65rem; opacity: .7; }
.breadcrumb .current { color: var(--c-text); font-weight: 500; }

/* ============================================================
   Hero
   ============================================================ */
/* ============================================================
   Hero - with sauna PNG centerpiece + animated forest bg
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(5rem, 9vw, 7rem);
  border-bottom: 1px solid rgba(212,175,106,.08);
  min-height: 70vh;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,16,.55) 0%, rgba(10,20,16,.78) 60%, var(--c-bg) 100%),
    url("../img/hero-cover.jpg") center center/cover no-repeat;
  background-attachment: fixed;
  z-index: -3;
}
@media (max-width: 760px) {
  .hero::before { background-attachment: scroll; }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% 50%, rgba(212,175,106,.18), transparent 65%),
    radial-gradient(700px 400px at 20% 30%, rgba(255,170,80,.06), transparent 65%);
  z-index: -2;
  pointer-events: none;
}

/* Decorative tree silhouettes on the sides */
.hero-trees {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  overflow: hidden;
}
.hero-trees::before, .hero-trees::after {
  content: "";
  position: absolute; bottom: 0;
  width: 240px; height: 80%;
  background: no-repeat bottom / contain;
  opacity: 0.55;
  filter: brightness(.5);
  animation: treeSway 8s ease-in-out infinite;
}
.hero-trees::before {
  left: -40px; transform-origin: bottom center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'><path d='M50 20 L70 70 L60 70 L80 130 L65 130 L85 180 L15 180 L35 130 L20 130 L40 70 L30 70 Z' fill='%230d1610'/><rect x='46' y='180' width='8' height='20' fill='%230d1610'/></svg>");
}
.hero-trees::after {
  right: -40px; transform-origin: bottom center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'><path d='M50 10 L75 60 L62 60 L82 120 L68 120 L88 175 L12 175 L32 120 L18 120 L38 60 L25 60 Z' fill='%230d1610'/><rect x='46' y='175' width='8' height='25' fill='%230d1610'/></svg>");
  animation-delay: -3s;
}
@keyframes treeSway {
  0%,100% { transform: rotate(-1.5deg); }
  50%     { transform: rotate(1.5deg); }
}

/* Floating embers/leaves animation */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.hero-particles span {
  position: absolute; bottom: -30px; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, #ffb766, rgba(212,175,106,0));
  opacity: 0; filter: blur(.5px);
  animation: emberFly 9s linear infinite;
}
.hero-particles span:nth-child(1)  { left: 8%;  animation-delay: 0s;   animation-duration: 11s; }
.hero-particles span:nth-child(2)  { left: 18%; animation-delay: 2s;   animation-duration: 8s;  }
.hero-particles span:nth-child(3)  { left: 28%; animation-delay: 4s;   animation-duration: 12s; }
.hero-particles span:nth-child(4)  { left: 38%; animation-delay: 1s;   animation-duration: 10s; }
.hero-particles span:nth-child(5)  { left: 52%; animation-delay: 3.5s; animation-duration: 9s;  }
.hero-particles span:nth-child(6)  { left: 64%; animation-delay: 5s;   animation-duration: 11s; }
.hero-particles span:nth-child(7)  { left: 74%; animation-delay: 6s;   animation-duration: 10s; }
.hero-particles span:nth-child(8)  { left: 86%; animation-delay: 2.5s; animation-duration: 8s;  }
.hero-particles span:nth-child(9)  { left: 92%; animation-delay: 0.5s; animation-duration: 12s; }
.hero-particles span:nth-child(10) { left: 45%; animation-delay: 7s;   animation-duration: 9s;  }
@keyframes emberFly {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(40px); opacity: 0; }
}

.hero-grid {
  position: relative;
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-content { max-width: 760px; position: relative; z-index: 2; }
.hero h1 { margin: 1rem 0 1.25rem; }
.hero .lead { color: #e0d4ba; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-meta {
  margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.5rem 3rem;
  color: var(--c-text-mute); font-size: .9rem;
}
.hero-meta i { color: var(--c-gold); margin-right: .45rem; }

.hero-figure {
  position: relative;
  display: grid; place-items: center;
}
.hero-figure-img {
  position: relative; z-index: 2;
  width: 100%; max-width: 520px;
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,.7))
    drop-shadow(0 0 80px rgba(255,170,80,.25));
  animation: floatSauna 6s ease-in-out infinite;
}
@keyframes floatSauna {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.hero-figure::before {
  content: ""; position: absolute; width: 70%; height: 70%;
  border-radius: 50%; left: 15%; top: 18%;
  background: radial-gradient(closest-side, rgba(255,170,80,.35), transparent 70%);
  filter: blur(28px); z-index: 1;
  animation: glowPulse 4.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .55; transform: scale(.96); }
  50%     { opacity: .85; transform: scale(1.04); }
}
.hero-figure::after {
  content: ""; position: absolute; bottom: 0; left: 10%; right: 10%; height: 30px;
  background: radial-gradient(closest-side, rgba(0,0,0,.7), transparent 70%);
  filter: blur(14px); z-index: 0;
}
@media (max-width: 980px) { .hero-figure-img { max-width: 380px; } }

/* ============================================================
   Feature cards
   ============================================================ */
.feature-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature-card {
  background: linear-gradient(180deg, var(--c-surface), var(--c-surface-2));
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform .35s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(212,175,106,.35); box-shadow: var(--shadow-soft); }
.feature-card:hover::before { opacity: 1; }
.feature-card .ic {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(212,175,106,.15), rgba(212,175,106,.05));
  color: var(--c-gold);
  border: 1px solid rgba(212,175,106,.2);
  margin-bottom: 1.1rem;
  font-size: 1.2rem;
}
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p { color: var(--c-text-mute); font-size: .95rem; }

/* ============================================================
   Showroom split
   ============================================================ */
.split {
  display: grid; gap: 3rem;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}
.split-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-deep);
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.split:hover .split-img img { transform: scale(1.04); }
.split-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10,20,16,.4));
  pointer-events: none;
}
.split-text .check-list { list-style: none; margin: 1.5rem 0 2rem; display: grid; gap: .65rem; }
.split-text .check-list li { display: flex; gap: .65rem; align-items: flex-start; color: var(--c-text-mute); }
.split-text .check-list i { color: var(--c-gold); margin-top: 3px; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  columns: 3 280px;
  gap: 1rem;
}

/* Home preview gallery - uniform grid (no masonry) */
.home-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .home-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .home-gallery { grid-template-columns: 1fr; } }
.home-gallery-item {
  aspect-ratio: 4 / 5;
  margin-bottom: 0;
}
.home-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--c-line);
  cursor: zoom-in;
  background: var(--c-surface);
}
.gallery-item img { width: 100%; height: auto; transition: transform .7s ease, filter .4s ease; filter: saturate(.95) brightness(.95); }
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.1) brightness(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(5,10,8,.94); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-deep); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,.06);
  color: var(--c-gold); width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.2rem;
  border: 1px solid rgba(212,175,106,.3); transition: background .25s ease;
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox button:hover { background: rgba(212,175,106,.18); }

/* ============================================================
   Modele saune
   ============================================================ */
.empty-state {
  text-align: center;
  max-width: 680px; margin: 0 auto;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--c-surface), var(--c-bg-3));
  border: 1px dashed rgba(212,175,106,.3);
  border-radius: var(--radius-lg);
  position: relative;
}
.empty-state .ic-big {
  font-size: 2.2rem; color: var(--c-gold);
  margin-bottom: 1.25rem;
  display: inline-block;
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.modele-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.model-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.model-card:hover { transform: translateY(-4px); border-color: rgba(212,175,106,.35); box-shadow: var(--shadow-soft); }
.model-thumb { aspect-ratio: 4/3; overflow: hidden; background: #0e1a14; position: relative; }
.model-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.model-card:hover .model-thumb img { transform: scale(1.06); }
.model-body { padding: 1.25rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.model-title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: .35rem; }
.model-desc { color: var(--c-text-mute); font-size: .92rem; flex: 1; margin-bottom: 1rem; }
.model-cta { display: flex; gap: .5rem; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 1rem; max-width: 880px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item[open] { border-color: rgba(212,175,106,.35); }
.faq-item summary {
  cursor: pointer; padding: 1.2rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--c-text);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--c-gold); transition: transform .3s ease; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-body { padding: 0 1.4rem 1.3rem; color: var(--c-text-mute); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
.contact-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(212,175,106,.15), rgba(212,175,106,.05));
  display: grid; place-items: center;
  color: var(--c-gold); flex-shrink: 0;
  border: 1px solid rgba(212,175,106,.18);
}
.contact-list .lab { color: var(--c-text-dim); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-list .val { color: var(--c-text); font-size: 1.05rem; }
.contact-list a { color: var(--c-text); }
.contact-list a:hover { color: var(--c-gold); }

.contact-form { display: grid; gap: 1rem; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { font-size: .85rem; color: var(--c-text-mute); margin-bottom: .35rem; display: block; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: .8rem 1rem;
  background: var(--c-bg-2); color: var(--c-text);
  border: 1px solid var(--c-line); border-radius: 10px;
  font: inherit;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(212,175,106,.18);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-line); aspect-ratio: 16/10; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(.92) hue-rotate(180deg) saturate(.85); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  margin-top: 4rem;
  background: linear-gradient(180deg, var(--c-bg-2), #050a08);
  border-top: 1px solid rgba(212,175,106,.1);
  padding: 4rem 0 1.5rem;
  color: var(--c-text-mute);
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
}
.footer-h {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--c-gold); margin-bottom: 1rem;
}
.footer-links { list-style: none; display: grid; gap: .55rem; font-size: .92rem; }
.footer-links a, .footer-links li { color: var(--c-text-mute); }
.footer-links a:hover { color: var(--c-gold); }
.footer-links i { color: var(--c-gold); margin-right: .45rem; }
.footer-tagline { font-family: var(--font-display); color: var(--c-text); margin-top: 1rem; font-size: 1.05rem; }
.footer-mini { font-size: .85rem; color: var(--c-text-dim); margin-top: .5rem; }
.brand--footer .brand-img { height: 64px; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(212,175,106,.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  font-size: .85rem; color: var(--c-text-dim);
}

/* ============================================================
   Floating elements
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(180deg, #25d366, #1eb858);
  color: white; display: grid; place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 12px 28px rgba(37,211,102,.4);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); color: white; }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: pulseRing 2.2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.to-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(212,175,106,.12);
  border: 1px solid rgba(212,175,106,.35);
  color: var(--c-gold);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .25s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); background: rgba(212,175,106,.2); }

/* ============================================================
   Animations on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"].is-in { transition-delay: .1s; }
.reveal[data-delay="2"].is-in { transition-delay: .2s; }
.reveal[data-delay="3"].is-in { transition-delay: .3s; }
.reveal[data-delay="4"].is-in { transition-delay: .4s; }

/* ============================================================
   Page intro (3D welcome) - index.php
   ============================================================ */
body.page-index {
  overflow: hidden; height: 100vh;
}
.intro-stage {
  position: fixed; inset: 0; background: #06100b;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center; justify-items: center;
}
.intro-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.intro-fog {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(60% 50% at 50% 80%, rgba(212,175,106,.15), transparent 70%),
    linear-gradient(180deg, rgba(6,16,11,.35) 0%, rgba(6,16,11,.55) 100%);
}

.intro-top, .intro-center, .intro-bottom { position: relative; z-index: 5; text-align: center; padding: 1.25rem; }

.intro-top { padding-top: clamp(1.5rem, 4vh, 3rem); }
.intro-logo {
  height: clamp(150px, 22vh, 240px);
  width: auto;
  filter: drop-shadow(0 6px 30px rgba(212,175,106,.55));
  opacity: 0; animation: fadeUp 1.2s .2s forwards;
}

.intro-center { display: grid; place-items: center; }

.intro-bottom { padding-bottom: clamp(2rem, 5vh, 3.5rem); }
.intro-tag {
  color: var(--c-gold-soft); letter-spacing: .26em; text-transform: uppercase;
  font-size: .9rem; margin-bottom: 1.25rem;
  opacity: 0; animation: fadeUp 1.2s .6s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.enter-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(110px, 13vmin, 140px);
  height: clamp(110px, 13vmin, 140px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(240,214,143,.96), rgba(212,175,106,.92) 55%, rgba(139,94,60,.92));
  color: #1a120a; font-family: var(--font-display); font-size: clamp(.95rem, 2vmin, 1.15rem); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow:
    0 0 35px rgba(212,175,106,.5),
    inset 0 3px 10px rgba(255,235,180,.55),
    inset 0 -6px 14px rgba(90,58,34,.5);
  border: 2px solid rgba(255,235,180,.45);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .3s ease;
  opacity: 0; animation: fadeUp 1.2s .9s forwards;
  text-align: center; line-height: 1.05;
}
.enter-btn small {
  font-size: .65em; opacity: .85; letter-spacing: .22em; display: block; margin-top: 2px;
}
.enter-btn::before, .enter-btn::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%; border: 1px solid rgba(212,175,106,.4);
  animation: ringExpand 3s ease-out infinite;
}
.enter-btn::after { animation-delay: 1.5s; }
@keyframes ringExpand {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.enter-btn:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 80px rgba(212,175,106,.65),
    inset 0 4px 12px rgba(255,235,180,.7),
    inset 0 -8px 18px rgba(90,58,34,.55);
}
.enter-btn:active { transform: scale(.97); }
.intro-skip {
  display: inline-block;
  color: var(--c-text-dim); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  opacity: .7; transition: opacity .3s ease;
}
.intro-skip:hover { opacity: 1; color: var(--c-gold); }
.intro-credit {
  position: absolute; bottom: 22px; left: 32px; z-index: 5;
  color: var(--c-text-dim); font-size: .75rem; letter-spacing: .2em;
}
@media (max-width: 760px) {
  .intro-credit { display: none; }
}
.fade-out { animation: fadeOut .8s forwards; }
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--c-bg-2); border-bottom: 1px solid var(--c-line);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-20px); opacity: 0; pointer-events: none;
    transition: transform .35s ease, opacity .35s ease;
  }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-link { padding: .85rem 0; width: 100%; border-bottom: 1px solid rgba(212,175,106,.08); }
  .nav-link.is-active::after { display: none; }
  .nav-cta { margin-top: .75rem; width: 100%; justify-content: center; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 16px; right: 16px; width: 56px; height: 56px; font-size: 1.5rem; }
  .to-top { bottom: 16px; left: 16px; width: 44px; height: 44px; }
  .enter-btn { width: 150px; height: 150px; font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation: none !important; transition: none !important; }
}
