:root {
  --bg: #070908;
  --bg-2: #0d100f;
  --surface: #111514;
  --surface-2: #171b1a;
  --line: rgba(255,255,255,.11);
  --text: #f7f7f4;
  --muted: #aeb4b0;
  --accent: #ffc400;
  --accent-2: #ffda4a;
  --black: #080a09;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0,0,0,.34);
  --container: min(1180px, calc(100% - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 9999;
  padding: 10px 14px; background: var(--accent); color: #000;
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  background: rgba(6,8,7,.92);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand { display: inline-flex; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 190px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.3vw, 36px); margin-left: auto; }
.desktop-nav a, .mobile-nav a {
  text-decoration: none; color: #f1f2ef; font-size: 14px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em;
}
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--accent); transition: right .2s;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language-switch { display: flex; align-items: center; gap: 8px; color: #8f9591; }
.lang-btn {
  border: 0; padding: 8px 9px; border-radius: 8px; background: transparent; color: #fff; cursor: pointer; font-weight: 800;
}
.lang-btn.is-active { color: var(--accent); outline: 1px solid rgba(255,196,0,.55); }
.menu-button { display: none; width: 44px; height: 44px; background: transparent; color: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 11px; cursor: pointer; }
.menu-button span { display: block; width: 100%; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; padding: 8px 20px 24px; background: rgba(6,8,7,.98); border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); }

.hero {
  position: relative; min-height: 790px; display: grid; align-items: center; overflow: hidden;
  background: #060807;
}
.hero-media, .hero-fallback, .hero-fallback img, #master-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-fallback img, #master-video { object-fit: cover; object-position: center; }
#master-video { opacity: 0; transition: opacity .6s; }
.hero-media.has-video #master-video { opacity: 1; }
.hero-media.has-video .hero-fallback { opacity: 0; transition: opacity .6s; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,5,.98) 0%, rgba(4,6,5,.92) 30%, rgba(4,6,5,.60) 52%, rgba(4,6,5,.15) 78%, rgba(4,6,5,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25), transparent 35%, rgba(0,0,0,.42));
}
.hero-content { position: relative; z-index: 2; padding-top: 112px; padding-bottom: 72px; min-width: 0; }
.hero-copy { max-width: 690px; }
.eyebrow {
  margin: 0 0 16px; color: var(--accent); font-size: 13px; line-height: 1; font-weight: 850; letter-spacing: .14em; text-transform: uppercase;
}
.hero h1 {
  margin: 0; max-width: 680px; font-size: clamp(52px, 6.2vw, 92px); line-height: .94; letter-spacing: -.045em; text-transform: uppercase;
  overflow-wrap: break-word;
}
.hero h1 span { display: block; color: var(--accent); }
.hero-text { max-width: 620px; margin: 26px 0 24px; color: #d6d9d6; font-size: clamp(18px, 2vw, 22px); }
.trust-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px 24px; max-width: 620px; margin: 28px 0; }
.trust-list div { display: flex; align-items: center; gap: 10px; color: #f2f3f0; font-weight: 650; }
.trust-list svg { width: 23px; height: 23px; color: var(--accent); flex: 0 0 auto; }
.hero-phone { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; font-size: clamp(31px, 4vw, 47px); font-weight: 850; letter-spacing: .01em; margin: 2px 0 24px; }
.hero-phone svg { width: 38px; height: 38px; color: var(--accent); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 58px; display: inline-flex; align-items: center; justify-content: center; padding: 15px 26px;
  border: 1px solid transparent; border-radius: 9px; text-decoration: none; cursor: pointer;
  font-weight: 850; text-transform: uppercase; letter-spacing: .02em; transition: transform .18s, background .18s, border-color .18s, color .18s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #111; box-shadow: 0 12px 35px rgba(255,196,0,.18); }
.button-primary:hover { background: var(--accent-2); }
.button-outline { color: #fff; background: rgba(0,0,0,.18); border-color: rgba(255,255,255,.65); }
.button-outline:hover { border-color: var(--accent); color: var(--accent); }
.button-full { width: 100%; }

.quick-services { position: relative; z-index: 4; margin-top: -1px; background: rgba(8,10,9,.97); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quick-grid { display: grid; grid-template-columns: repeat(6,1fr); }
.quick-grid article { min-height: 150px; display: grid; place-items: center; align-content: center; gap: 12px; text-align: center; padding: 22px 14px; border-right: 1px solid var(--line); }
.quick-grid article:first-child { border-left: 1px solid var(--line); }
.quick-grid svg { width: 40px; height: 40px; color: var(--accent); }
.quick-grid p { margin: 0; font-size: 13px; line-height: 1.35; font-weight: 750; text-transform: uppercase; }

.section { padding: 105px 0; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section h2, .business-banner h2, .booking-dialog h2 {
  margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -.035em;
}
.section-heading > p:last-child, .section-copy > p, .business-banner p, .contact-copy > p {
  color: var(--muted); font-size: 18px;
}
.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.section-copy > p { max-width: 650px; }
.about { background: linear-gradient(180deg, #0a0d0c, #0c0f0e); }
.about-points { display: grid; gap: 15px; margin-top: 30px; }
.about-points div { display: grid; gap: 3px; padding-left: 18px; border-left: 3px solid var(--accent); }
.about-points strong { font-size: 18px; }
.about-points span { color: var(--muted); }
.about-image { position: relative; min-height: 650px; }
.about-image picture, .about-image img { width: 100%; height: 100%; }
.about-image img { position: absolute; inset: 0; object-fit: cover; object-position: center; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-badge { display: inline-grid; gap: 3px; margin-top: 28px; padding: 22px 26px; background: var(--accent); color: #111; border-radius: 12px; box-shadow: var(--shadow); }
.image-badge strong { font-size: 21px; }
.image-badge span { font-weight: 700; }

.services-section { background: #f2f1ec; color: #111; }
.services-section .eyebrow { color: #8b6800; }
.services-section .section-heading > p:last-child { color: #5f625f; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { min-height: 275px; padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid #deded8; box-shadow: 0 12px 35px rgba(0,0,0,.06); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(0,0,0,.1); }
.service-card svg { width: 47px; height: 47px; color: #c28f00; margin-bottom: 26px; }
.service-card h3 { margin: 0 0 12px; font-size: 23px; line-height: 1.15; }
.service-card p { margin: 0; color: #5f625f; }

.tips-section { background: var(--bg); }
.tips-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.tip-card {
  grid-column: span 2; position: relative; min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: #101312; color: #fff; padding: 0; text-align: left; cursor: pointer;
}
.tip-card:nth-child(4), .tip-card:nth-child(5) { grid-column: span 3; }
.tip-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .4s; }
.tip-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 25%, rgba(0,0,0,.9) 100%); }
.tip-card:hover img { transform: scale(1.04); filter: brightness(.9); }
.play { position: absolute; z-index: 2; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; background: rgba(7,9,8,.74); color: var(--accent); border: 1px solid rgba(255,255,255,.48); backdrop-filter: blur(7px); }
.play svg { width: 28px; height: 28px; margin-left: 4px; }
.tip-number { position: absolute; z-index: 2; top: 18px; left: 18px; color: var(--accent); font-size: 14px; font-weight: 850; }
.tip-copy { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 21px; display: grid; gap: 5px; }
.tip-copy strong { font-size: 21px; line-height: 1.15; }
.tip-copy small { color: #d0d4d1; }

.benefits-section { background: #101312; }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.benefit { min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); }
.benefit > span { display: inline-block; color: var(--accent); font-size: 17px; font-weight: 900; margin-bottom: 52px; }
.benefit h3 { margin: 0 0 10px; font-size: 23px; }
.benefit p { margin: 0; color: var(--muted); }

.business-banner { padding: 76px 0; color: #141414; background: var(--accent); }
.business-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.business-banner .eyebrow { color: #4f3b00; }
.business-banner h2 { max-width: 850px; font-size: clamp(34px, 4.5vw, 58px); }
.business-banner p { color: #443600; max-width: 760px; margin-bottom: 0; }
.business-banner .button-primary { background: #101312; color: #fff; box-shadow: none; }
.business-banner .button-primary:hover { background: #242927; }

.faq-section { background: #f2f1ec; color: #111; }
.faq-section .eyebrow { color: #8b6800; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.accordion { border-top: 1px solid #cfcfc8; }
.accordion details { border-bottom: 1px solid #cfcfc8; }
.accordion summary { list-style: none; cursor: pointer; padding: 24px 46px 24px 0; font-size: 20px; font-weight: 800; position: relative; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 8px; top: 20px; font-size: 28px; color: #8b6800; transition: transform .2s; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion p { margin: 0; padding: 0 46px 23px 0; color: #60635f; }

.contacts-section { background: radial-gradient(circle at 75% 30%, rgba(255,196,0,.08), transparent 35%), #0a0d0c; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-copy { position: sticky; top: 125px; }
.contact-phone { display: flex; align-items: center; gap: 18px; margin: 35px 0 20px; text-decoration: none; }
.contact-phone svg { width: 45px; height: 45px; color: var(--accent); }
.contact-phone span { display: grid; }
.contact-phone small { color: var(--muted); }
.contact-phone strong { font-size: clamp(34px, 4vw, 50px); }
.messenger-row { display: flex; gap: 12px; flex-wrap: wrap; }
.messenger-row a { padding: 12px 18px; border-radius: 8px; border: 1px solid var(--line); text-decoration: none; font-weight: 800; }
.messenger-row a:hover { border-color: var(--accent); color: var(--accent); }
.contact-note { display: flex; gap: 13px; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-note svg { width: 28px; height: 28px; color: var(--accent); }
.contact-note span { display: grid; }
.contact-note small { color: var(--muted); }

.booking-form { padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.045); box-shadow: var(--shadow); }
.booking-form h3 { margin: 0 0 28px; font-size: 31px; }
.booking-form label { display: grid; gap: 8px; margin-bottom: 18px; color: #e7e9e6; font-weight: 750; }
.booking-form input, .booking-form textarea, .booking-form select {
  width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 9px; background: #111514; color: #fff; padding: 14px 15px; outline: none;
}
.booking-form input:focus, .booking-form textarea:focus, .booking-form select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,196,0,.12); }
.booking-form textarea { resize: vertical; }
.booking-form .has-error { border-color: #ff6b6b; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 13px; text-align: center; }

.site-footer { padding: 42px 0 94px; border-top: 1px solid var(--line); background: #060807; color: var(--muted); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.footer-brand img { width: 170px; }
.footer-inner p { margin: 0; }
.footer-legal { display: grid; gap: 6px; justify-items: end; }
.footer-credit {
  display: inline-block; text-decoration: none; font-weight: 850; letter-spacing: .03em;
  background: linear-gradient(100deg, #b8860b, var(--accent) 45%, var(--accent-2) 65%, #b8860b);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: opacity .18s;
}
.footer-credit:hover { opacity: .8; }

.mobile-callbar { display: none; }

dialog {
  color: var(--text); background: #111514; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.booking-dialog { width: min(560px, calc(100% - 28px)); padding: 0; }
.dialog-content { padding: 38px; }
.dialog-content p:not(.eyebrow) { color: var(--muted); }
.dialog-actions { display: grid; gap: 12px; margin: 28px 0 18px; }
.dialog-form-link { display: block; text-align: center; color: var(--accent); }
.dialog-close {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; border: 1px solid var(--line);
  border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; font-size: 26px; line-height: 1; cursor: pointer;
}
.video-dialog { width: min(900px, calc(100% - 28px)); padding: 0; overflow: hidden; }
.video-frame { aspect-ratio: 16/9; display: grid; background: #060807; }
.video-frame video, .video-placeholder { width: 100%; height: 100%; grid-area: 1/1; }
.video-frame video { display: none; background: #000; }
.video-placeholder { display: grid; place-items: center; align-content: center; text-align: center; gap: 16px; padding: 40px; }
.video-placeholder svg { width: 70px; height: 70px; color: var(--accent); }
.video-placeholder h2 { margin: 0; font-size: clamp(26px,4vw,42px); }
.video-placeholder p { max-width: 580px; margin: 0; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav.is-open { display: block; }
  .hero { min-height: 740px; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,6,5,.98) 0%, rgba(4,6,5,.86) 52%, rgba(4,6,5,.22) 100%); }
  .quick-grid { grid-template-columns: repeat(3,1fr); }
  .quick-grid article:nth-child(4) { border-left: 1px solid var(--line); }
  .split-layout, .contact-layout { gap: 45px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  html { scroll-padding-top: 72px; }
  .header-inner { height: 70px; }
  .brand img { width: 155px; }
  .language-switch { gap: 4px; }
  .lang-btn { padding: 6px 7px; }
  .hero { min-height: 810px; align-items: end; }
  .hero-media { animation: subtle-zoom 14s ease-in-out infinite alternate; }
  .hero-fallback img, #master-video { object-position: 58% center; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4,6,5,.18) 0%, rgba(4,6,5,.42) 34%, rgba(4,6,5,.97) 73%, rgba(4,6,5,1) 100%),
      linear-gradient(90deg, rgba(4,6,5,.42), rgba(4,6,5,.08));
  }
  .hero-content { padding-top: 118px; padding-bottom: 38px; }
  .hero h1 { font-size: clamp(43px, 14vw, 68px); }
  .hero-text { font-size: 17px; margin: 20px 0; }
  .trust-list { grid-template-columns: 1fr; gap: 9px; margin: 20px 0; }
  .trust-list div { font-size: 14px; }
  .hero-phone { font-size: 34px; margin-bottom: 18px; }
  .hero-phone svg { width: 31px; height: 31px; }
  .hero-buttons .button { width: 100%; }
  .quick-grid { grid-template-columns: repeat(2,1fr); }
  .quick-grid article { min-height: 130px; }
  .quick-grid article:nth-child(3), .quick-grid article:nth-child(5) { border-left: 1px solid var(--line); }
  .quick-grid article:nth-child(4) { border-left: 0; }
  .section { padding: 76px 0; }
  .section h2, .business-banner h2 { font-size: clamp(36px, 11vw, 52px); }
  .split-layout, .contact-layout, .faq-layout, .business-inner { grid-template-columns: 1fr; gap: 38px; }
  .about-image { min-height: 520px; order: -1; }
  .image-badge { width: 100%; margin-top: 22px; }
  .services-grid, .benefits-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .tips-grid { grid-template-columns: 1fr; }
  .tip-card, .tip-card:nth-child(4), .tip-card:nth-child(5) { grid-column: auto; min-height: 300px; }
  .business-inner .button { width: 100%; }
  .faq-layout .section-heading { margin-bottom: 0; }
  .contact-copy { position: static; }
  .booking-form { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-legal { justify-items: center; }
  .site-footer { padding-bottom: 110px; }
  .mobile-callbar {
    position: fixed; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); z-index: 950;
    display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 14px; box-shadow: 0 14px 38px rgba(0,0,0,.42);
  }
  .mobile-callbar a, .mobile-callbar button {
    min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; text-decoration: none; font-weight: 850; cursor: pointer;
  }
  .mobile-callbar a { background: #fff; color: #111; }
  .mobile-callbar button { background: var(--accent); color: #111; }
  .mobile-callbar svg { width: 22px; height: 22px; }
  .video-frame { aspect-ratio: 9/14; }
}
@media (max-width: 360px) {
  .brand img { width: 128px; }
  .header-inner { gap: 14px; }
  .header-actions { gap: 8px; }
  .language-switch { gap: 3px; }
  .lang-btn { padding: 6px 5px; }
}
@keyframes subtle-zoom { from { transform: scale(1); } to { transform: scale(1.035) translateY(-4px); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
