/* ============================================================
   K Loves Group — Dark Casino Aesthetic (Gold + Burgundy)
   Pure CSS, no framework. Bodoni Moda + Manrope + JetBrains Mono.
   ============================================================ */

:root {
  --gold: #D4AF37;
  --gold-soft: #B89730;
  --gold-bright: #F1D05A;
  --burgundy: #6B1818;
  --burgundy-deep: #3F0D0D;
  --green: #1B4D2A;
  --bg: #0B0907;
  --bg-elevated: #14110D;
  --bg-card: #19150F;
  --bg-card-hover: #221C13;
  --line: #2A2218;
  --line-strong: #3B3122;
  --text: #F1E6CB;
  --text-soft: #BCAE8C;
  --text-mute: #80755B;
  --text-dim: #5C543F;

  --font-display: "Bodoni Moda", "Bodoni 72", "Didot", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Iosevka", ui-monospace, monospace;

  --shadow-sm: 0 2px 6px rgba(0,0,0,.4);
  --shadow-md: 0 12px 32px rgba(0,0,0,.55);
  --shadow-gold: 0 0 0 1px rgba(212,175,55,.18), 0 18px 48px rgba(212,175,55,.08);

  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(107,24,24,.10), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(212,175,55,.06), transparent 55%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* ----- Grain noise overlay for texture ----- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
  z-index: 1;
}
main, header, footer { position: relative; z-index: 2; }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.01em;
  margin: 0 0 .6em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.4rem; line-height: 1.25; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; color: var(--text-soft); }
a  { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow::before { content: "♠ "; color: var(--gold-soft); }

/* ----- Layout helpers ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  margin: 0 auto;
  max-width: 320px;
  opacity: .5;
}

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }

/* ----- Header / nav ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 9, 7, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(11, 9, 7, 0.92);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .6);
  border-bottom-color: transparent;
}
.site-header.scrolled .nav-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
.site-header.scrolled .brand .brand-logo {
  height: 26px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 18px 28px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 16px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: .02em;
}
.brand-text {
  min-width: 0;
  line-height: 1.15;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-cta-label--short { display: none; }
.nav-cta-btn { white-space: nowrap; }
.brand .pip {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
}
.brand .brand-logo {
  width: auto;
  height: 32px;
  display: block;
  flex-shrink: 0;
}
.brand-text { display: none; }
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex; gap: 26px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  color: var(--text-soft);
  font-size: .9rem;
  letter-spacing: .04em;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-soft);
  letter-spacing: .05em;
}
.nav-phone:hover { color: var(--gold); }

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--gold);
  padding: 8px 12px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mobile-toggle[aria-expanded="true"] {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212,175,55,.08);
}
.site-nav { flex-shrink: 0; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #0E0A06;
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(212,175,55,.18);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); color: #0E0A06; }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-soft);
}
.btn-ghost:hover { background: rgba(212,175,55,.08); color: var(--gold-bright); }
.btn-burgundy {
  background: var(--burgundy);
  color: var(--text);
  border-color: var(--burgundy);
}
.btn-burgundy:hover { background: #802222; transform: translateY(-1px); }
.btn-block { width: 100%; justify-content: center; }
.btn-test { margin-top: auto }
.btn-sm { padding: 9px 16px; font-size: .8rem; }
.btn-lg { padding: 18px 32px; font-size: .95rem; }

/* Subtle elevated section background — used to separate content bands. */
.bg-section {
  background:
    linear-gradient(180deg, rgba(212,175,55,.025), transparent 60%),
    var(--bg-elevated);
  border-block: 1px solid var(--line);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(107,24,24,.30), transparent 60%),
    radial-gradient(ellipse at 20% 30%, rgba(212,175,55,.15), transparent 55%),
    linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.hero h1 { letter-spacing: -.02em; }
.hero h1 em {
  font-style: italic; color: var(--gold-bright);
  font-family: var(--font-display);
}
.hero-lead { font-size: 1.12rem; max-width: 540px; color: var(--text-soft); }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--gold-bright); font-weight: 500;
}
.hero-stat span {
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .25em; color: var(--text-mute);
  text-transform: uppercase;
}

.hero-art {
  aspect-ratio: 4/5;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.18);
  pointer-events: none;
}

/* ----- Section heading ----- */
.section-head {
  display: flex; flex-direction: column;
  align-items: flex-start;
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head.center {
  align-items: center;
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.section-head h2 {
  margin-top: 14px;
}

/* ----- Cards ----- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}
.card h3 { color: var(--text); }
.card .price {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .08em;
  margin-top: 14px;
  display: block;
}
.card .ico {
  width: 46px; height: 46px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-bright);
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

/* Service / package card variants */
.pkg-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.pkg-card.featured {
  border-color: var(--gold-soft);
  background: linear-gradient(180deg, rgba(212,175,55,.05), var(--bg-card) 60%);
  box-shadow: var(--shadow-gold);
}
.pkg-card .tier {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}
.pkg-card .tier.platinum { color: var(--gold-bright); }
.pkg-card .price-big {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--text);
  letter-spacing: -.02em;
}
.pkg-card .price-big sub {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--text-mute);
  margin-left: 8px;
  text-transform: uppercase;
}
.pkg-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pkg-card li {
  font-size: .9rem;
  color: var(--text-soft);
  padding-left: 22px;
  position: relative;
}
.pkg-card li::before {
  content: "♦";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-size: .7rem;
}

/* Process timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 36px;
  list-style-type: none;
}
.timeline::before {
  content: ""; position: absolute;
  top: 30px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft) 20%, var(--gold-soft) 80%, transparent);
}
.timeline-step {
  text-align: center; padding: 0 20px;
  position: relative;
}
.timeline-step .num {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.timeline-step h4 { margin-bottom: 6px; }
.timeline-step p { font-size: .85rem; color: var(--text-mute); }

/* Gallery masonry */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
}
.gallery-item:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .meta {
  padding: 14px 16px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}
.gallery-item .meta strong {
  color: var(--gold);
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 4px;
  line-height: 1.2;
}
.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.gallery-filters a {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.gallery-filters a:hover { border-color: var(--gold-soft); color: var(--gold-bright); }
.gallery-filters a.active { background: var(--gold); color: #0E0A06; border-color: var(--gold); }

/* ----- Testimonials ----- */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute; top: -20px; left: 18px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--burgundy);
  line-height: 1;
}
.testimonial .stars {
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: 4px;
  font-size: .85rem;
}
.testimonial .quote { color: var(--text); font-size: 1.02rem; line-height: 1.65; }
.testimonial .who { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em; color: var(--text-mute); text-transform: uppercase; }
.testimonial .who strong { color: var(--gold); display: block; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0; text-transform: none; margin-bottom: 4px; }

/* ----- Forms ----- */
.form {
  display: grid; gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.form label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.form input, .form select, .form textarea {
  width: 100%;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s ease, background .2s ease;
}
.form select {
  color-scheme: light;
  cursor: pointer;
}
.form select option {
  background-color: #ffffff;
  color: #0E0A06;
}
.form input::placeholder, .form textarea::placeholder { color: var(--text-dim); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,175,55,.04);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .field { display: flex; flex-direction: column; }
.field-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-soft);
  cursor: pointer;
}
.field-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.field-checkbox a { color: var(--gold); }
.form-msg {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .05em;
  line-height: 1.5;
}
.form-msg.is-visible {
  display: block;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}
.form-msg--ok {
  background: rgba(34, 139, 34, .12);
  border: 1px solid rgba(34, 139, 34, .35);
  color: #B6E3B5;
}
.form-msg--error {
  background: rgba(107, 24, 24, .25);
  border: 1px solid rgba(180, 80, 80, .45);
  color: #ff9a9a;
}
.form-msg--info {
  background: rgba(212, 175, 55, .08);
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
}

/* ----- Contact page layout ----- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.contact-layout > aside {
  position: sticky;
  top: 96px;
}
@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-layout > aside {
    position: static;
  }
}

/* ----- FAQ Accordion ----- */
/* ----- FAQ redesign: tab nav + open cards ----- */
.faq-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.faq-nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text-mute);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color .2s, background .2s, border-color .2s;
}
.faq-tab:hover {
  color: var(--text-soft);
  background: var(--bg-card);
}
.faq-tab.active {
  color: var(--gold);
  background: var(--bg-card);
  border-color: var(--line-strong);
}
.faq-tab-icon {
  font-size: .85rem;
  color: var(--gold-soft);
  flex-shrink: 0;
}
.faq-tab.active .faq-tab-icon { color: var(--gold); }
.faq-tab-label { flex: 1; }
.faq-tab-count {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--text-dim);
  background: var(--bg-elevated);
  border-radius: 10px;
  padding: 1px 7px;
}
.faq-tab.active .faq-tab-count { color: var(--text-mute); }

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-panel-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.faq-panel-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.faq-cards {
  display: grid;
  gap: 16px;
}
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 28px;
  transition: border-color .2s, transform .2s;
}
.faq-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.faq-card-q {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-card-a {
  color: var(--text-soft);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 680px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .faq-tab {
    flex: 0 0 auto;
    width: auto;
    padding: 8px 14px;
  }
  .faq-tab-count { display: none; }
}

/* ----- Equipment ----- */
.equip-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color .3s, transform .3s;
}
.equip-card:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.equip-card img {
  width: 220px; height: 160px; object-fit: cover; border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
}
.equip-card .cat {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.equip-card .specs {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-mute);
  margin-top: 8px;
}
.equip-card .price-tag {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-bright);
  text-align: right;
  white-space: nowrap;
}
.equip-card .price-tag span {
  display: block;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ----- Calculator ----- */
.calc {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.calc h3 { margin-top: 0; }
.calc-options { display: flex; flex-direction: column; gap: 24px; }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.calc-summary {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, rgba(212,175,55,.05), transparent 70%);
  position: sticky;
  top: 100px;
  align-self: start;
}
.calc-summary .total {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-bright);
  margin: 18px 0 4px;
}
.calc-line {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-soft);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.calc-line.total-line {
  color: var(--gold-bright);
  border-bottom: none;
  margin-top: 10px;
  font-size: .92rem;
}
.addons { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 10px; }
.addon-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .85rem;
  color: var(--text-soft);
  transition: border-color .2s, background .2s;
}
.addon-chip:hover { border-color: var(--gold-soft); }
.addon-chip input { accent-color: var(--gold); }
.addon-chip.active {
  border-color: var(--gold);
  background: rgba(212,175,55,.06);
  color: var(--gold-bright);
}

/* ----- Tables (admin) ----- */
.adm-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-soft);
}
.adm-table th, .adm-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}
.adm-table th {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg-elevated);
}
.adm-table td.kind {
  font-weight: 600; color: var(--gold-bright);
}
.stat-row { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; }
.stat-tile {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  flex: 1;
  min-width: 160px;
}
.stat-tile small {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.stat-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-bright);
  margin-top: 4px;
}

/* ----- Footer ----- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 64px 0 28px;
  margin-top: 80px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 8px;
}
.footer-brand:hover { opacity: .85; }
.footer-brand h4 { margin: 0; }
.footer-logo {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--text-soft); font-size: .9rem; }
.foot-col a:hover { color: var(--gold-bright); }
.foot-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--text-mute);
}

/* ----- CTA banner ----- */
.cta-band {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,175,55,.15), transparent 60%),
    linear-gradient(135deg, var(--burgundy-deep), var(--bg-elevated));
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: var(--text-soft); margin: 0; max-width: 480px; }

/* ----- Page header ----- */
.page-header {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 40%, rgba(107,24,24,.18), transparent 60%);
}
.page-header .container { display: flex; flex-direction: column; gap: 14px; max-width: 880px; }
.page-header .crumbs {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .25em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.page-header .crumbs a:hover { color: var(--gold); }
.page-header p { color: var(--text-soft); font-size: 1.1rem; max-width: 640px; }

/* ----- Animations ----- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { opacity: 0; animation: rise .8s ease forwards; }
.rise.d1 { animation-delay: .12s; }
.rise.d2 { animation-delay: .24s; }
.rise.d3 { animation-delay: .36s; }
.rise.d4 { animation-delay: .48s; }

/* Fallback — if JS is disabled or animation doesn't fire, show content after 1.5s */
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; animation: none; }
}

::selection { background: var(--gold); color: #0E0A06; }

/* ----- Vendor directory ----- */
.vendor-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
}
.vendor-filters .field label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.vendor-filters select {
  width: 100%;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .88rem;
  color-scheme: light;
  cursor: pointer;
}
.vendor-filters select option {
  background-color: #ffffff;
  color: #0E0A06;
}
.vendor-filters select:focus { outline:none; border-color: var(--gold); }

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.vendor-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
  position: relative;
}
.vendor-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
}
.vendor-card > img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-bottom: 1px solid var(--line-strong);
}
.vendor-card .vendor-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.vendor-card h3 { margin: 4px 0 0; }
.vendor-card h3 a { color: var(--text); }
.vendor-card h3 a:hover { color: var(--gold-bright); }
.vendor-card p { font-size: .92rem; margin: 0; }
.vendor-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-top: 8px;
}
.vendor-meta .rating {
  font-family: var(--font-mono);
  color: var(--gold-bright);
  font-size: .88rem;
  letter-spacing: .04em;
}
.vendor-meta .rating small { color: var(--text-mute); }
.vendor-meta .price {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .06em;
}
.vendor-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.vendor-tags .tag {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  color: var(--text-soft);
  background: rgba(212,175,55,.05);
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
}
.vendor-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0E0A06;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 700;
}

/* ----- City cards ----- */
.city-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s;
  color: var(--text);
}
.city-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
  color: var(--text);
}
.city-card img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  filter: saturate(.8) contrast(1.05);
}
.city-card .city-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.city-card h3 { margin: 4px 0 0; color: var(--text); }
.city-card p { font-size: .92rem; margin: 4px 0 8px; }

/* ----- Booking wizard ----- */
.wizard-steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  gap: 8px;
  counter-reset: wiz;
}
.wizard-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--text-mute);
  text-transform: uppercase;
  background: var(--bg-card);
  transition: border-color .3s, color .3s, background .3s;
}
.wizard-step.active {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(212,175,55,.08), transparent 80%);
}
.wizard-step.done {
  border-color: var(--gold-soft);
  color: var(--gold);
}
.wizard-step .pill {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: .9rem;
}
.wizard-pane { display: none; border: none; padding: 0; margin: 0; }
.wizard-pane.active { display: flex; flex-direction: column; gap: 18px; }
.wizard-pane legend {
  float: none;
  padding: 0 0 14px;
  border: none;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  width: 100%;
}

/* ----- Responsive ----- */
@media (max-width: 980px) {
  .hero { padding: 80px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 36px; }
  .timeline::before { display: none; }
  .calc { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
  .equip-card { grid-template-columns: 1fr; }
  .equip-card img { width: 100%; height: 180px; }
  .equip-card .price-tag { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1291px) and (max-width: 1500px) {
  .nav-inner { padding-left: 16px; padding-right: 16px; gap: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-cta-label--long { display: none; }
  .nav-cta-label--short { display: inline; }
}
@media (max-width: 1290px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand controls"
      "nav   nav";
    align-items: center;
    column-gap: 32px;
    row-gap: 0;
  }
  .brand {
    grid-area: brand;
    flex: initial;
    max-width: none;
  }
  .nav-cta {
    grid-area: controls;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .lang-switcher {
    margin-left: 0;
  }
  .site-nav {
    grid-area: nav;
    width: 100%;
    flex: initial;
    order: initial;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: static;
    width: 100%;
    margin: 0;
    padding: 14px 0 6px;
    background: transparent;
    border-top: 1px solid var(--line);
    max-height: min(60vh, 420px);
    overflow-y: hidden;
  }
  .nav-links.open a {
    padding: 10px 0;
    font-size: .95rem;
  }
  .mobile-toggle { display: inline-flex; }
  .nav-phone { display: none; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 1024px) {
  .vendor-filters { grid-template-columns: 1fr 1fr; }
  .vendor-grid { grid-template-columns: 1fr; }
  .wizard-steps { flex-direction: column; }
  .wizard-step { font-size: .72rem; }
}
@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
  .cta-band > div:last-child { display: flex; flex-direction: column; gap: 12px; width: 100%; }
  .cta-band > div:last-child .btn { width: 100%; justify-content: center; }
  .section { padding: 64px 0; }
  .calc-row { grid-template-columns: 1fr; }
  .vendor-filters { grid-template-columns: 1fr; }
  .container, .container-narrow { padding: 0 20px; }
  .nav-inner { padding: 12px 16px; column-gap: 8px; }
  .brand { font-size: 1.05rem; }
  .brand small { display: none; }
  .brand .pip { width: 28px; height: 28px; }
  .brand .brand-logo { width: 28px; height: 28px; }
  .nav-cta { gap: 10px; }
  .lang-switcher { gap: 8px; margin-left: 4px; }
  .nav-cta-btn { padding: 8px 14px; font-size: .78rem; }
  .mobile-toggle { padding: 8px 10px; font-size: .72rem; }
  .page-header { padding: 64px 0 40px; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .hero { padding: 60px 0 48px; }
  .hero-stats { gap: 28px; }
  .hero-stat strong { font-size: 1.6rem; }
  .calc { padding: 20px; }
  .card { padding: 22px; }
  .pkg-card { padding: 24px 22px; }
  .pkg-card .price-big { font-size: 1.8rem; }
  .foot-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  .adm-table th, .adm-table td { padding: 8px 6px; font-size: .72rem; }
  /* Planner + contact dual-column layouts collapse */
  section .container[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 28px !important; }
  .calc-summary { position: static !important; top: auto !important; }
}

/* ----- Cookie consent modal ----- */
.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  padding: 24px;
  pointer-events: none;
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent.is-visible { pointer-events: auto; }
.cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 9, 7, .72);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .28s ease;
}
.cookie-consent.is-visible .cookie-consent__backdrop { opacity: 1; }
.cookie-consent__panel {
  position: relative;
  width: min(560px, 100%);
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  padding: 28px 28px 24px;
  transform: translateY(16px);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.cookie-consent.is-visible .cookie-consent__panel {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-soft);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.cookie-consent__close:hover {
  color: var(--gold-bright);
  border-color: var(--gold-soft);
  background: rgba(212,175,55,.06);
}
.cookie-consent__body {
  padding-right: 28px;
}
.cookie-consent__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.cookie-consent__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
}
.cookie-consent__text {
  margin: 0;
  font-size: .94rem;
  color: var(--text-soft);
}
.cookie-consent__text a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent__text a:hover { color: var(--gold); }
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}
body.cookie-consent-open { overflow: hidden; }

/* ----- Legal policy pages ----- */
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.legal-nav a {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  transition: color .2s, border-color .2s, background .2s;
}
.legal-nav a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-soft);
}
.legal-nav a[aria-current="page"] {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(212,175,55,.08);
}
.legal-geo-note { margin: 0 0 16px; color: var(--text-soft); }
.geo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
}
.geo-badge {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-sm);
  color: var(--gold-bright);
  background: rgba(212,175,55,.06);
}
.foot-geo {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--gold);
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .brand-text { display: none; }
  .brand { gap: 0; }
  .nav-cta-label--long { display: none; }
  .nav-cta-label--short { display: inline; }
  .nav-cta { gap: 8px; }
  .lang-switcher { gap: 6px; margin-left: 2px; padding: 0; }
  .nav-cta-btn { padding: 8px 12px; font-size: .74rem; }
  .mobile-toggle { padding: 8px 10px; font-size: .68rem; }
  .cookie-consent { padding: 16px; }
  .cookie-consent__panel { padding: 24px 20px 20px; }
  .cookie-consent__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .cookie-consent__actions .btn { width: 100%; justify-content: center; }
  .timeline { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .equip-card { padding: 18px; }
  .equip-card img { height: 160px; }
  .testimonial { padding: 24px 20px; }
  .timeline-step { padding: 0; }
}

@media (max-width: 380px) {
  .container, .container-narrow { padding: 0 14px; }
  .nav-inner { padding: 10px 14px; column-gap: 12px; }
  .nav-cta { gap: 7px; }
  .lang-switcher { gap: 5px; margin-left: 0; }
  .nav-cta-btn { padding: 7px 10px; font-size: .7rem; }
  .mobile-toggle { padding: 7px 8px; font-size: .65rem; }
  .card { padding: 16px; }
  .pkg-card { padding: 18px 14px; }
  .form { padding: 20px 16px; }
  .page-header { padding: 48px 0 28px; }
  .section { padding: 48px 0; }
  .section-tight { padding: 36px 0; }
  .cta-band { padding: 28px 16px; }
  h1 { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  h2 { font-size: clamp(1.25rem, 6vw, 1.6rem); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .foot-grid { gap: 28px; }
  .foot-bottom { font-size: .65rem; }
  .vendor-filters { padding: 14px; }
  .vendor-grid { grid-template-columns: 1fr; }
  .vendor-card .vendor-body { padding: 16px; }
  .btn { padding: 12px 18px; }
  .btn-sm { padding: 8px 12px; }
  .btn-lg { padding: 14px 22px; }
  .faq-card { padding: 18px 16px; }
  .gallery-filters { gap: 6px; }
  .gallery-filters a { padding: 6px 12px; font-size: .65rem; }
  .calc { padding: 16px; }
  .calc-summary { padding: 16px; }
  .calc-summary .total { font-size: 2.2rem; }
}

/* lang switcher */
.lang-switcher { display:flex; gap:10px; align-items:center; margin-left:20px; }
.lang-switcher a, .lang-switcher span { font-family:var(--font-mono); font-size:.65rem; letter-spacing:.12em; color:var(--text-mute); text-decoration:none; padding:4px 8px; border:1px solid transparent; border-radius:3px; text-transform:uppercase; transition:color .15s,border-color .15s; }
.lang-switcher a:hover { color:var(--text-main); border-color:var(--border); }
.lang-switcher a[aria-current] { color:var(--gold); border-color:var(--gold); }
