@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #070b10;
  --panel: #0d131a;
  --line: rgba(255,255,255,.13);
  --muted: #929aa3;
  --blue: #2c9cff;
  --white: #f4f7fa;
  --font-body: "Space Grotesk";
  --font-display: "Oxanium";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: var(--font-body), Arial, Helvetica, sans-serif; font-feature-settings: "ss01" 1, "ss02" 1; }
a { color: inherit; text-decoration: none; }

main { min-height: 100vh; overflow: hidden; background: radial-gradient(circle at 28% 60%, #0f1823 0, transparent 38%), var(--ink); }
.site-header { height: 92px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 48px; padding: 0 5vw; border-bottom: 1px solid var(--line); position: relative; z-index: 5; }
.brand { display: flex; align-items: center; }
.brand-logo { width: clamp(190px, 16vw, 260px); height: auto; display: block; }
nav { display: flex; gap: 38px; color: #cbd0d6; font-family: var(--font-display), sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
nav a { transition: color .2s; }
nav a:hover { color: white; }
.header-cta { justify-self: end; padding: 14px 21px; border: 1px solid rgba(44,156,255,.7); font-family: var(--font-display), sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.header-cta span { color: var(--blue); margin-left: 9px; }

.hero { min-height: calc(100vh - 92px); display: grid; grid-template-columns: 56% 44%; }
.hero-copy { padding: 9.5vh 4vw 3vh 7vw; position: relative; z-index: 2; }
.eyebrow { color: #b7bec6; font: 700 11px/1 Arial; letter-spacing: 2.5px; text-transform: uppercase; display: flex; align-items: center; gap: 11px; margin: 0 0 28px; }
.eyebrow span { width: 34px; height: 1px; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
h1 { margin: 0; font-family: var(--font-display), sans-serif; font-size: clamp(54px, 5.7vw, 92px); line-height: .97; letter-spacing: -3.2px; text-transform: uppercase; max-width: 920px; font-weight: 700; }
h1 em { display: inline-block; padding-top: .08em; color: transparent; -webkit-text-stroke: 1px #77828d; font-style: normal; font-weight: 500; }
.hero-lead { margin: 31px 0 0; max-width: 600px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.hero-actions { margin-top: 35px; display: flex; align-items: center; gap: 32px; }
.primary-button { background: var(--blue); color: #02111e; padding: 18px 23px; min-width: 200px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display), sans-serif; font-size: 16px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; box-shadow: 0 15px 36px rgba(44,156,255,.18); }
.primary-button span { font-size: 20px; }
.text-button { color: #d5d9dd; font-size: 13px; font-weight: 700; letter-spacing: .5px; }
.text-button i { color: var(--blue); font-style: normal; font-size: 8px; margin-right: 8px; }
.service-strip { margin-top: 7vh; border-top: 1px solid var(--line); padding-top: 23px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 900px; }
.service-strip span { font-size: 11px; line-height: 1.35; color: #d7dce1; }
.service-strip small { display: block; color: var(--blue); font-size: 9px; letter-spacing: 1px; margin-bottom: 7px; }

.hero-visual { position: relative; min-height: calc(100vh - 92px); border-left: 1px solid var(--line); background: #111; }
.hero-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.7) contrast(1.1); }
.visual-shade { position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 28%), linear-gradient(0deg, rgba(1,5,9,.86), transparent 50%); }
.shield-mark { position: absolute; right: 8%; top: 7%; width: 76px; height: 76px; border: 1px solid rgba(255,255,255,.38); clip-path: polygon(50% 0,100% 16%,88% 78%,50% 100%,12% 78%,0 16%); display: grid; place-items: center; backdrop-filter: blur(8px); background: rgba(4,9,14,.16); }
.shield-mark img { width: 54px; height: auto; }
.visual-label { position: absolute; left: 9%; bottom: 9%; text-transform: uppercase; }
.visual-label span { display: block; font-size: 11px; color: #aeb7bf; letter-spacing: 3px; margin-bottom: 5px; }
.visual-label strong { font-size: 20px; letter-spacing: 1px; }
.visual-proof { position: absolute; right: 7%; bottom: 8%; display: flex; gap: 12px; align-items: center; padding-left: 16px; border-left: 2px solid var(--blue); }
.visual-proof b { color: var(--blue); font-size: 26px; }
.visual-proof span { color: #b7bec4; font-size: 10px; line-height: 1.5; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 900px) {
  .site-header { height: 76px; padding: 0 20px; grid-template-columns: 1fr auto; }
  nav { display: none; }
  .brand-logo { width: clamp(165px, 47vw, 215px); height: auto; }
  .header-cta { padding: 12px 14px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 64px 22px 42px; }
  h1 { font-size: clamp(47px, 14vw, 69px); letter-spacing: -3px; }
  .hero-lead { font-size: 15px; }
  .service-strip { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero-visual { min-height: 620px; border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 520px) {
  .brand { font-size: 11px; letter-spacing: 2px; }
  .header-cta { font-size: 11px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .primary-button { width: 100%; }
  .text-button { padding: 5px 0; }
}

.section-shell { padding: 130px 7vw; }
.section-heading { display: flex; justify-content: space-between; gap: 60px; align-items: flex-end; margin-bottom: 62px; }
.section-heading h2, .about-copy h2, .booking-intro h2, .contact-copy h2, .brands-intro h2 { margin: 0; font-family: var(--font-display), sans-serif; font-size: clamp(49px, 5vw, 78px); line-height: 1.02; letter-spacing: -2.6px; text-transform: uppercase; font-weight: 700; }
.section-heading h2 em, .about-copy h2 em, .booking-intro h2 em, .contact-copy h2 em, .brands-intro h2 em { display: inline-block; padding-top: .08em; color: transparent; -webkit-text-stroke: 1px #707b86; font-style: normal; font-weight: 500; }
.section-heading > p { max-width: 410px; color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 5px; }

.authorized-strip { min-height: 190px; padding: 34px 7vw; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; background: linear-gradient(105deg, #1b2026 0%, #10161d 55%, #09111a 100%); border-top: 1px solid #373d44; border-bottom: 1px solid #373d44; position: relative; overflow: hidden; }
.authorized-strip::after { content: "ANATOLIA SHIELD"; position: absolute; right: 2%; top: 50%; transform: translateY(-50%); font-family: var(--font-display), sans-serif; font-size: clamp(80px, 10vw, 180px); font-weight: 900; letter-spacing: -4px; color: rgba(255,255,255,.018); white-space: nowrap; }
.authorized-seal { width: 112px; height: 112px; padding: 13px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 28px 8px 28px 8px; background: linear-gradient(145deg, #f7f7f5 0%, #c7c9ca 100%); box-shadow: 0 18px 45px rgba(0,0,0,.3), inset 0 1px 0 white; position: relative; z-index: 1; transform: rotate(-2deg); }
.authorized-seal::after { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(18,23,28,.13); border-radius: 22px 5px 22px 5px; pointer-events: none; }
.authorized-seal img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1) contrast(1.08); }
.authorized-copy { position: relative; z-index: 1; }
.authorized-copy > small { color: #6f7882; font-size: 8px; font-weight: 700; letter-spacing: 2.4px; }
.authorized-copy h2 { margin: 4px 0 0; font-family: var(--font-display), sans-serif; font-size: clamp(34px, 3.5vw, 53px); line-height: 1.08; text-transform: uppercase; letter-spacing: -1px; }
.authorized-copy p { margin: 9px 0 0; color: #a7adb3; font-family: var(--font-display), sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
.authorized-note { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; padding-left: 30px; border-left: 1px solid #424a52; }
.authorized-note > span { width: 34px; height: 34px; border: 1px solid #7b858e; border-radius: 50%; display: grid; place-items: center; color: #bfc4c8; }
.authorized-note p { margin: 0; color: #787f86; font-size: 9px; line-height: 1.6; letter-spacing: 1px; text-transform: uppercase; }
.authorized-note b { color: #c7cbd0; font-weight: 600; }

.services-section { position: relative; overflow: hidden; background: radial-gradient(circle at 12% 10%, rgba(61,77,94,.32), transparent 26%), radial-gradient(circle at 88% 45%, rgba(12,111,194,.13), transparent 30%), linear-gradient(145deg, #111820 0%, #070b10 54%, #0b1219 100%); border-top: 1px solid rgba(255,255,255,.14); }
.services-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom, black, transparent 70%); }
.services-section::after { content: ""; position: absolute; width: 720px; height: 720px; left: -360px; bottom: -410px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.012), 0 0 0 160px rgba(255,255,255,.008); }
.services-section > * { position: relative; z-index: 1; }
.services-ghost { position: absolute; z-index: 0; top: 40px; right: -20px; color: rgba(255,255,255,.025); font-family: var(--font-display), sans-serif; font-size: clamp(90px, 12vw, 210px); line-height: 1; font-weight: 900; letter-spacing: -7px; white-space: nowrap; pointer-events: none; }
.services-heading-side { max-width: 465px; display: grid; grid-template-columns: auto auto; gap: 5px 16px; align-items: center; }
.services-heading-side > b { color: var(--blue); font-family: var(--font-display), sans-serif; font-size: 53px; line-height: .8; font-weight: 700; }
.services-heading-side > span { color: #d3d8dd; font-family: var(--font-display), sans-serif; font-size: 13px; line-height: 1.05; font-weight: 700; letter-spacing: 2px; }
.services-heading-side > p { grid-column: 1 / -1; color: var(--muted); font-size: 14px; line-height: 1.7; margin: 15px 0 0; }
.services-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; gap: 18px; }
.service-card { grid-column: span 4; min-height: 380px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; position: relative; isolation: isolate; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: #0b1117; box-shadow: 0 22px 60px rgba(0,0,0,.26); transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, box-shadow .4s; }
.service-card.service-feature { grid-column: span 7; min-height: 500px; }
.service-card.service-secondary { grid-column: span 5; min-height: 500px; }
.service-card::after { content: ""; position: absolute; z-index: 2; width: 150px; height: 150%; top: -25%; left: -220px; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent); transition: left .7s ease; pointer-events: none; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(107,188,255,.55); box-shadow: 0 30px 80px rgba(0,0,0,.42), 0 0 0 1px rgba(44,156,255,.12); }
.service-card:hover::after { left: calc(100% + 100px); }
.service-card-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.5) contrast(1.15) brightness(.78); transform: scale(1.02); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s; }
.service-card:nth-child(3) .service-card-image { object-position: 45% 50%; }
.service-card:hover .service-card-image { transform: scale(1.08); filter: saturate(.85) contrast(1.12) brightness(.84); }
.service-card-overlay { position: absolute; z-index: 0; inset: 0; background: linear-gradient(180deg, rgba(2,7,11,.16) 0%, rgba(3,8,13,.28) 34%, rgba(3,8,13,.96) 88%), linear-gradient(90deg, rgba(4,9,14,.48), transparent 60%); }
.service-card-top { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; }
.service-card-top > span { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; display: grid; place-items: center; color: #dbe0e5; font-size: 9px; font-weight: 700; letter-spacing: 1px; backdrop-filter: blur(9px); background: rgba(5,10,15,.28); }
.rw-icon { width: 52px; height: auto; display: block; opacity: .9; }
.service-card-body { position: relative; z-index: 3; max-width: 440px; }
.service-card-body > small { display: inline-flex; align-items: center; gap: 9px; color: #9ed2ff; font-size: 8px; font-weight: 700; letter-spacing: 2px; }
.service-card-body > small::before { content: ""; width: 24px; height: 1px; background: var(--blue); box-shadow: 0 0 9px var(--blue); }
.service-card h3 { margin: 12px 0 11px; font-family: var(--font-display), sans-serif; font-size: clamp(31px, 2.7vw, 45px); line-height: 1.02; font-weight: 700; text-transform: uppercase; letter-spacing: -1.6px; text-shadow: 0 4px 18px rgba(0,0,0,.6); }
.service-card:not(.service-feature):not(.service-secondary) h3 { font-size: clamp(31px, 2.6vw, 42px); }
.service-card-body > p { max-width: 390px; margin: 0 0 23px; color: #b2bbc4; font-size: 12px; line-height: 1.65; text-shadow: 0 2px 10px rgba(0,0,0,.75); }
.service-card-body > a { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.22); display: flex; align-items: center; justify-content: space-between; color: #eef3f7; font-family: var(--font-display), sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }
.service-card-body > a b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #04101a; font-size: 15px; transition: transform .25s; }
.service-card-body > a:hover b { transform: rotate(45deg); }

.gallery-section { background: #05080c; border-top: 1px solid var(--line); }
.gallery-heading { align-items: flex-end; }
.outline-button { min-width: 190px; padding: 15px 18px; border: 1px solid #38434f; display: inline-flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; }
.outline-button span { color: var(--blue); margin-left: 30px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 12px; }
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; background: #111923; }
.gallery-grid figure.gallery-tall { grid-row: span 2; }
.gallery-grid figure.gallery-wide { grid-column: span 2; }
.gallery-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .5s; filter: saturate(.72) contrast(1.05); }
.gallery-grid figure:hover img { transform: scale(1.035); filter: saturate(1); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,6,10,.82), transparent 55%); }
.gallery-grid figcaption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; display: flex; gap: 12px; align-items: center; font-size: 12px; font-weight: 700; letter-spacing: .5px; }
.gallery-grid figcaption span { color: var(--blue); font-size: 9px; }

.about-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; align-items: center; background: #0a1017; border-top: 1px solid var(--line); }
.about-image { min-height: 650px; position: relative; overflow: hidden; }
.about-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.06); }
.about-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,9,14,.75), transparent 52%); }
.about-image-tag { position: absolute; z-index: 2; left: 25px; bottom: 25px; right: 25px; padding: 19px; border: 1px solid rgba(255,255,255,.28); display: flex; align-items: center; gap: 16px; backdrop-filter: blur(10px); }
.about-image-tag .rw-icon { width: 64px; flex: 0 0 auto; }
.about-image-tag span { font-size: 10px; line-height: 1.45; letter-spacing: 1px; text-transform: uppercase; }
.about-lead { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 570px; margin: 28px 0 44px; }
.process-list { border-top: 1px solid var(--line); }
.process-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.process-list b { color: var(--blue); font-size: 10px; letter-spacing: 1px; padding-top: 4px; }
.process-list span { color: var(--muted); font-size: 12px; line-height: 1.55; }
.process-list strong { color: #f0f3f6; display: block; font-size: 14px; margin-bottom: 6px; }

.brands-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; background: #070b10; border-top: 1px solid var(--line); }
.brands-intro > p:last-child { max-width: 480px; margin: 28px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.brand-wall { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-placeholder { min-height: 145px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; background: #0a1016; transition: background .2s; }
.brand-placeholder:hover { background: #101821; }
.brand-placeholder span { color: #49535e; font-size: 8px; letter-spacing: 1px; }
.brand-placeholder strong { color: #9da4aa; font-family: var(--font-display), sans-serif; font-size: 20px; font-weight: 700; font-style: italic; letter-spacing: 1.5px; text-align: center; }
.brand-logo-card { gap: 13px; align-items: center; }
.brand-logo-card > span { align-self: flex-start; }
.brand-logo-card > img { width: 82%; height: 54px; object-fit: contain; filter: grayscale(1) brightness(1.5); }
.brand-logo-card > strong { font-size: 10px; font-style: normal; letter-spacing: 1px; }

.booking-section { display: grid; grid-template-columns: .85fr 1.15fr; background: #0d151e; border-top: 1px solid var(--line); }
.booking-intro { padding: 120px 6vw 110px 7vw; background: radial-gradient(circle at 20% 80%, rgba(44,156,255,.13), transparent 38%); border-right: 1px solid var(--line); }
.booking-intro > p:not(.eyebrow) { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 430px; margin: 30px 0 55px; }
.booking-contact { display: flex; flex-wrap: wrap; gap: 42px; }
.booking-contact a { display: grid; gap: 7px; }
.booking-contact small { font-size: 8px; color: #6f7a85; letter-spacing: 1.5px; }
.booking-contact strong { font-size: 14px; }
.booking-form { padding: 120px 7vw 110px 6vw; display: flex; flex-direction: column; gap: 30px; justify-content: center; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.booking-form label, .field-label { color: #aeb6bf; font-size: 10px; text-transform: uppercase; letter-spacing: 1.3px; }
.booking-form input { width: 100%; margin-top: 11px; padding: 13px 0 15px; border: 0; border-bottom: 1px solid #35404b; background: transparent; border-radius: 0; color: #eef2f5; font: 14px Arial, sans-serif; outline: none; color-scheme: dark; }
.booking-form input:focus { border-color: var(--blue); }
.booking-form input::placeholder { color: #65707c; }
.form-field { position: relative; min-width: 0; }
.field-label { display: block; }
.service-select { position: relative; z-index: 4; margin-top: 11px; }
.service-select.is-open { z-index: 12; }
.service-select-trigger { width: 100%; height: 46px; padding: 0 3px 0 0; border: 0; border-bottom: 1px solid #35404b; background: transparent; color: #65707c; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; text-align: left; outline: none; transition: border-color .25s, color .25s; }
.service-select-trigger > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 400 14px/1 var(--font-body), Arial, sans-serif; letter-spacing: .25px; text-transform: none; }
.service-select-trigger > span.has-value { color: #eef2f5; }
.service-select-trigger > i { width: 30px; height: 30px; flex: 0 0 auto; border: 1px solid #334452; display: grid; place-items: center; position: relative; transform: rotate(45deg); transition: border-color .25s, background .25s, transform .3s; }
.service-select-trigger > i b { position: absolute; width: 7px; height: 1px; background: #8d99a5; transition: background .25s; }
.service-select-trigger > i b:first-child { transform: translateX(-2px) rotate(90deg); }
.service-select-trigger > i b:last-child { transform: translateY(2px); }
.service-select.is-open .service-select-trigger, .service-select-trigger:focus-visible { border-color: var(--blue); }
.service-select.is-open .service-select-trigger > i { border-color: var(--blue); background: rgba(44,156,255,.12); transform: rotate(225deg); }
.service-select.is-open .service-select-trigger > i b { background: #8bcbff; }
.service-select.has-error .service-select-trigger { border-color: #db7272; }
.service-options { position: absolute; z-index: 20; top: calc(100% + 10px); left: 0; right: 0; padding: 9px; border: 1px solid rgba(116,143,168,.42); background: linear-gradient(145deg, rgba(20,31,42,.99), rgba(7,13,19,.99)); box-shadow: 0 26px 65px rgba(0,0,0,.6), 0 0 0 1px rgba(44,156,255,.06), inset 0 1px 0 rgba(255,255,255,.05); backdrop-filter: blur(18px); animation: service-menu-in .18s ease-out both; }
.service-options::before { content: ""; position: absolute; left: 18px; right: 18px; top: -1px; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); box-shadow: 0 0 14px rgba(44,156,255,.7); }
.service-options-head { padding: 9px 11px 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.09); }
.service-options-head span, .service-options-head small { color: #657483; font: 700 8px/1 Arial, sans-serif; letter-spacing: 1.7px; text-transform: uppercase; }
.service-options-head small { color: #79bdf8; }
.service-options > button { width: 100%; min-height: 48px; padding: 0 11px; border: 0; border-bottom: 1px solid rgba(255,255,255,.065); background: transparent; color: #c1c9d0; display: grid; grid-template-columns: 32px 1fr 26px; align-items: center; gap: 10px; cursor: pointer; text-align: left; transition: background .18s, color .18s, transform .18s; }
.service-options > button:last-child { border-bottom: 0; }
.service-options > button small { color: #536575; font: 700 8px/1 Arial, sans-serif; letter-spacing: 1.2px; transition: color .18s; }
.service-options > button span { font-family: var(--font-display), sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .3px; text-transform: uppercase; }
.service-options > button > b { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid transparent; color: #526373; font-size: 11px; font-weight: 500; transition: color .18s, border-color .18s, background .18s; }
.service-options > button.is-active { color: #f4f8fb; background: linear-gradient(90deg, rgba(44,156,255,.14), rgba(44,156,255,.035)); transform: translateX(2px); }
.service-options > button.is-active small, .service-options > button.is-selected small { color: #78c0ff; }
.service-options > button.is-active > b, .service-options > button.is-selected > b { color: #9ed1ff; border-color: rgba(44,156,255,.45); background: rgba(44,156,255,.08); }
.service-options > button.is-selected { color: #fff; }
.field-error { display: block; margin-top: 7px; color: #dc8585; font-size: 8px; letter-spacing: .8px; text-transform: none; }
@keyframes service-menu-in { from { opacity: 0; transform: translateY(-7px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
.booking-button { margin-top: 10px; border: 0; cursor: pointer; width: 100%; font-size: 13px; }
.form-note { color: #687480; font-size: 9px; text-align: center; line-height: 1.5; }
.booking-form .honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.booking-button:disabled { opacity: .55; cursor: wait; }
.form-status { min-height: 18px; margin: -10px 0 0; color: #8b98a4; font-size: 10px; line-height: 1.5; text-align: center; }
.form-status.success { color: #79d7aa; }
.form-status.error { color: #e99296; }

.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; background: #070b10; border-top: 1px solid var(--line); }
.contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 28px 0 34px; }
.map-card { min-height: 500px; position: relative; overflow: hidden; border: 1px solid rgba(117,139,158,.32); background: #0b1117; box-shadow: 0 30px 80px rgba(0,0,0,.28); isolation: isolate; }
.location-map { position: absolute; inset: -26px; width: calc(100% + 52px); height: calc(100% + 52px); border: 0; filter: grayscale(1) invert(.89) hue-rotate(175deg) saturate(.65) contrast(1.18) brightness(.72); opacity: .9; }
.map-shade { position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(4,9,14,.67) 0%, transparent 28%, transparent 63%, rgba(4,9,14,.88) 100%), linear-gradient(90deg, rgba(5,10,15,.3), transparent 35%); box-shadow: inset 0 0 90px rgba(2,7,11,.55); }
.map-status { position: absolute; z-index: 2; top: 24px; left: 24px; right: 24px; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.map-status span, .map-status small { padding: 9px 11px; border: 1px solid rgba(255,255,255,.17); background: rgba(4,10,16,.75); backdrop-filter: blur(11px); color: #c5cdd5; font: 700 8px/1 Arial, sans-serif; letter-spacing: 1.7px; text-transform: uppercase; }
.map-status small { color: #78c0ff; border-color: rgba(44,156,255,.32); }
.map-location { position: absolute; z-index: 3; left: 24px; right: 24px; bottom: 24px; min-height: 84px; padding: 14px 15px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,.2); background: rgba(5,11,17,.88); backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.map-location-icon { width: 54px; height: 54px; display: grid; place-items: center; background: var(--blue); clip-path: polygon(50% 0,100% 16%,88% 78%,50% 100%,12% 78%,0 16%); }
.map-location-icon img { width: 39px; height: auto; filter: brightness(.16); }
.map-location > div:nth-child(2) { display: grid; gap: 7px; }
.map-location small { color: #71808e; font: 700 8px/1 Arial, sans-serif; letter-spacing: 1.8px; }
.map-location strong { color: #eef3f7; font-family: var(--font-display), sans-serif; font-size: 16px; font-weight: 600; letter-spacing: .2px; }
.map-location > a { min-width: 130px; padding: 13px 14px; border: 1px solid #3a4b5a; display: flex; align-items: center; justify-content: space-between; color: #dbe2e8; font: 700 10px/1 var(--font-display), sans-serif; letter-spacing: .5px; text-transform: uppercase; transition: border-color .2s, background .2s; }
.map-location > a:hover { border-color: var(--blue); background: rgba(44,156,255,.1); }
.map-location > a span { color: var(--blue); font-size: 14px; }

.footer { border-top: 1px solid var(--line); padding: 42px 7vw; display: grid; grid-template-columns: 1fr auto 1fr; gap: 45px; align-items: center; background: #05080b; }
.footer-brand { display: grid; gap: 9px; align-items: center; }
.footer-logo { width: min(255px, 100%); height: auto; display: block; }
.footer-brand small { display: block; color: #59636e; font-size: 7px; letter-spacing: 2.2px; }
.footer-links { display: flex; gap: 28px; color: #9da6af; font-size: 11px; }
.footer > p { justify-self: end; color: #545f6a; font-size: 9px; }

@media (max-width: 1050px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card.service-secondary { grid-column: span 1; min-height: 410px; }
  .service-card.service-feature { grid-column: 1 / -1; min-height: 500px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section { gap: 6vw; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-self: end; }
  .footer > p { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 800px) {
  .section-shell { padding: 88px 22px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 28px; margin-bottom: 42px; }
  .services-heading-side { max-width: 540px; }
  .section-heading h2, .about-copy h2, .booking-intro h2, .contact-copy h2, .brands-intro h2 { letter-spacing: -1.5px; }
  .authorized-strip { grid-template-columns: auto 1fr; padding: 30px 22px; }
  .authorized-note { grid-column: 1 / -1; border-left: 0; border-top: 1px solid #424a52; padding: 20px 0 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .gallery-grid figure.gallery-wide { grid-column: span 2; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { min-height: 620px; }
  .booking-section { grid-template-columns: 1fr; }
  .brands-section { grid-template-columns: 1fr; gap: 48px; }
  .booking-intro, .booking-form { padding: 82px 22px; border-right: 0; }
  .booking-form { border-top: 1px solid var(--line); }
  .contact-section { grid-template-columns: 1fr; }
  .map-card { min-height: 470px; }
  .footer { grid-template-columns: 1fr; gap: 30px; padding: 42px 22px; }
  .footer-links { justify-self: start; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.service-feature, .service-card.service-secondary { grid-column: span 1; min-height: 430px; padding: 22px; border-radius: 20px; }
  .service-card h3, .service-card:not(.service-feature):not(.service-secondary) h3 { font-size: 36px; }
  .services-heading-side { grid-template-columns: auto 1fr; }
  .gallery-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .gallery-grid figure, .gallery-grid figure.gallery-tall, .gallery-grid figure.gallery-wide { min-width: 83vw; height: 500px; scroll-snap-align: start; }
  .field-row { grid-template-columns: 1fr; gap: 26px; }
  .authorized-seal { width: 84px; height: 84px; padding: 10px; border-radius: 20px 6px 20px 6px; }
  .authorized-copy h2 { font-size: 36px; }
  .authorized-copy p { font-size: 12px; letter-spacing: 1.8px; }
  .brand-wall { grid-template-columns: repeat(2, 1fr); }
  .brand-placeholder { min-height: 120px; }
  .about-image { min-height: 570px; }
  .booking-contact { flex-direction: column; gap: 24px; }
  .map-card { min-height: 520px; }
  .map-status { top: 16px; left: 16px; right: 16px; }
  .map-location { left: 16px; right: 16px; bottom: 16px; grid-template-columns: auto 1fr; }
  .map-location > a { grid-column: 1 / -1; width: 100%; }
  .footer-links { gap: 18px; }
}
