:root {
  --bg: #080808;
  --bg-soft: #101010;
  --panel: #121212;
  --text: #f6f6f6;
  --muted: #b7b7b7;
  --accent: #f47a00;
  --accent-2: #ff9b31;
  --line: rgba(244, 122, 0, .62);
  --white-line: rgba(255,255,255,.11);
  --shadow: 0 20px 70px rgba(0,0,0,.5);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 92, 255, .10), transparent 27rem),
    radial-gradient(circle at 82% 42%, rgba(244, 122, 0, .08), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--white-line);
}
.brand {
  font-weight: 900;
  letter-spacing: .035em;
  font-size: 1.55rem;
  white-space: nowrap;
  color: var(--accent);
}
.brand-text { color: var(--accent); }
.brand-text > span { color: #fff; }
.brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: .18em;
}
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(244,122,0,.2), 0 8px 24px rgba(0,0,0,.35);
}
.nav { display: flex; align-items: center; gap: 26px; font-size: .92rem; }
.nav > a:not(.nav-cta) { color: #d8d8d8; }
.nav-cta {
  border: 1px solid var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
}
.menu-btn { display: none; background: none; border: 0; color: #fff; font-size: 1.5rem; }

.section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  padding: 62px 0 88px;
}
.hero-photo-wrap { position: relative; }
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  width: 70%; height: 70%;
  left: 15%; top: 14%;
  border-radius: 50%;
  background: rgba(0, 105, 255, .25);
  filter: blur(80px);
  z-index: -1;
}
.hero-photo-ring {
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, #ff9a25, #b84f00 44%, #ff8a00 70%, #552000);
  box-shadow: 0 0 0 1px rgba(244,122,0,.2), var(--shadow);
  overflow: hidden;
}
.hero-photo-ring img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: .76rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(4.5rem, 9vw, 7.6rem);
  line-height: .88;
  letter-spacing: -.05em;
  font-weight: 950;
  color: var(--accent);
}
.hero h1 span { color: #fff; }
.tagline { margin: 22px 0 18px; letter-spacing: .22em; font-size: .9rem; color: #ddd; }
.hero-text { color: var(--muted); font-size: 1.08rem; max-width: 610px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 11px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.07); color: inherit; }
.btn-primary { background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: #090909; box-shadow: 0 10px 30px rgba(244,122,0,.18); }
.btn-secondary { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.03); color: #fff; }
.quick-contact { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 9px; color: #a8a8a8; font-size: .92rem; }

.services { padding: 90px 0; border-top: 1px solid var(--white-line); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2, .booking h2 { margin: 0; font-size: clamp(2.3rem, 4.5vw, 4rem); letter-spacing: -.035em; line-height: 1.05; }
.service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.service-card {
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  padding: 28px 22px 30px;
  min-height: 290px;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .55;
}
.service-icon { color: var(--accent); height: 56px; display: flex; align-items: center; }
.service-icon svg { width: 34px; height: 34px; display: block; }
.service-card h3 { margin: 9px 0 12px; font-size: 1.17rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.booking {
  padding: 95px 0 100px;
  border-top: 1px solid var(--white-line);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}
.booking-intro > p:not(.eyebrow) { color: var(--muted); max-width: 440px; }
.areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.areas span { border: 1px solid var(--line); color: #eaeaea; border-radius: 999px; padding: 8px 13px; font-size: .85rem; }
.booking-form {
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form label { display: grid; gap: 8px; margin-bottom: 16px; font-size: .84rem; font-weight: 750; color: #d9d9d9; }
input, select, textarea {
  width: 100%;
  color: #fff;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  outline: none;
  padding: 13px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(244,122,0,.12); }
select option { background: #111; }
textarea { resize: vertical; min-height: 138px; }
.submit-btn { width: 100%; border: 0; }

.contact-note { margin: -4px 0 16px; color: #a9a9a9; font-size: .8rem; line-height: 1.45; }
.optional-label { color: #8f8f8f; font-weight: 600; }

.form-status { min-height: 24px; margin: 12px 0 0; color: #cfcfcf; font-size: .9rem; }
.form-status.success { color: #a9e8a9; }
.form-status.error { color: #ffadad; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer {
  border-top: 1px solid var(--white-line);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 35px 0 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 30px;
  color: #989898;
  font-size: .86rem;
}
.footer-brand { grid-row: 1 / span 3; font-size: 1.45rem; align-self: start; }
.footer-brand .brand-logo { width: 54px; height: 54px; }
.site-footer p { margin: 0; text-align: right; }
.copyright { font-size: .78rem; }

@media (max-width: 1120px) and (min-width: 901px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 74px; right: 20px; flex-direction: column; align-items: stretch; background: #111; border: 1px solid var(--white-line); border-radius: 14px; padding: 16px; min-width: 210px; z-index: 50; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .menu-btn { display: block; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 46px; }
  .hero-photo-wrap { width: min(590px, 92%); margin: 0 auto; }
  .hero-copy { max-width: 720px; margin: 0 auto; }
  .hero-actions, .quick-contact { justify-content: center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .booking { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header, .section-shell, .site-footer { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding-bottom: 62px; gap: 34px; }
  .hero h1 { font-size: clamp(4rem, 23vw, 6.3rem); }
  .tagline { letter-spacing: .13em; font-size: .75rem; }
  .service-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .booking-form { padding: 20px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { grid-row: auto; justify-self: center; }
  .footer-brand .brand-logo { width: 50px; height: 50px; }
  .site-footer p { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
