/* ── Design tokens ── */
:root {
  --bg:       #0d0e10;
  --surface:  #16181c;
  --surface2: #1e2126;
  --border:   #272b32;
  --red:      #c0392b;
  --red-dark: #a93226;
  --red-glow: rgba(192,57,43,.2);
  --text:     #dde1e8;
  --muted:    #7a8290;
  --white:    #ffffff;
  --radius:   6px;
  --nav-h:    90px;
  --max-w:    1160px;
  --font:     'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { color: #e74c3c; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: 1rem; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-sub {
  color: var(--muted);
  margin-bottom: 52px;
  max-width: 540px;
  font-size: .95rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.tag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,57,43,.4); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.divider { width: 40px; height: 3px; background: var(--red); border-radius: 2px; margin-bottom: 28px; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13,14,16,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img { height: 78px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 8px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; width: 100%; padding: 12px 28px; font-size: .95rem; }
  .nav-cta { margin-left: 0; border-top: 1px solid var(--border); width: 100%; padding-top: 8px; }
  .nav-cta .btn { margin: 0 20px; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../hero-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,11,.94) 0%, rgba(8,9,11,.80) 50%, rgba(8,9,11,.3) 100%),
    linear-gradient(180deg, rgba(8,9,11,.2) 0%, transparent 30%, rgba(8,9,11,.55) 100%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); border-radius: 1px; }
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 38px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-divider {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  gap: 48px;
}
.hero-stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Trust strip ── */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  divide: var(--border);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--red-glow);
  border: 1px solid rgba(192,57,43,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.trust-item h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.trust-item p  { font-size: .8rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 768px) {
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background .2s;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 0;
  background: var(--red);
  transition: height .2s;
  border-radius: 1px 1px 0 0;
}
.service-card:hover { background: var(--surface2); }
.service-card:hover::after { height: 2px; }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--red-glow);
  border: 1px solid rgba(192,57,43,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, #13090a 0%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Forms ── */
.form-wrap { max-width: 760px; margin: 0 auto; padding: 80px 28px; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px;
}
.form-section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 24px;
  margin-top: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 11px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select option { background: var(--surface2); }
.field-note { font-size: .76rem; color: var(--muted); margin-top: 3px; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; padding: 14px; font-size: .95rem; }
.success-msg {
  display: none;
  background: rgba(39,174,96,.1);
  border: 1px solid rgba(39,174,96,.3);
  border-radius: var(--radius);
  color: #27ae60;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: .88rem;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.gallery-item:hover { border-color: var(--red); transform: translateY(-2px); }
.gallery-item .ph-icon { color: var(--muted); opacity: .4; }
.gallery-item .ph-label { font-size: .8rem; color: var(--muted); text-align: center; padding: 0 16px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: .95rem; line-height: 1.75; }
.about-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}
.spec-item h4 { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.spec-item p  { font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.quote-block {
  margin-top: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 22px 24px;
}
.quote-block p { font-size: .9rem; color: var(--muted); line-height: 1.75; font-style: italic; }
.quote-block cite { display: block; margin-top: 10px; font-size: .8rem; font-weight: 700; color: var(--text); font-style: normal; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--red); }
.contact-card .ci {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--red-glow);
  border: 1px solid rgba(192,57,43,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-card h4 { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 5px; }
.contact-card p, .contact-card a { color: var(--text); font-size: .92rem; line-height: 1.6; }
.contact-card a:hover { color: var(--red); }
.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(50%) invert(90%) hue-rotate(180deg); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr + tr td { border-top: 1px solid var(--border); }
.hours-table td { padding: 9px 0; font-size: .88rem; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--text); font-weight: 500; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 44px;
}
.page-hero .tag { margin-bottom: 10px; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.page-hero p { color: var(--muted); font-size: .95rem; }

/* ── Booking layout ── */
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } }
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.info-box-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.note-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
}
.note-box strong { color: var(--text); }

/* ── Footer ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .86rem; max-width: 300px; line-height: 1.7; }
.footer-col h5 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--text); font-size: .86rem; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--red); }
.footer-col p { color: var(--muted); font-size: .86rem; line-height: 1.75; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }
