:root {
  --ink: #101513;
  --ink-soft: #161d1a;
  --panel: #1d2521;
  --line: rgba(234, 240, 236, 0.16);
  --muted: #9da8a2;
  --paper: #eef2ef;
  --paper-soft: #dce3df;
  --accent: #b9e769;
  --accent-dark: #263514;
  --radius: 14px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 8px;
}

.skip-link:focus { top: 16px; }
.page-shell { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(16, 21, 19, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav-shell {
  width: min(1380px, calc(100% - 48px));
  height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand { width: 220px; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 38px); }
.main-nav a { color: #c9d1cd; font-size: 14px; font-weight: 600; transition: color .25s var(--ease); }
.main-nav a:hover { color: var(--accent); }

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.nav-cta { min-height: 42px; background: var(--accent); color: var(--ink); }
.nav-cta:hover, .button-primary:hover { background: #cdf58a; transform: translateY(-2px); }
.nav-cta:active, .button:active { transform: translateY(1px) scale(.985); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { z-index: -3; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 10, 8, .96) 0%, rgba(7, 10, 8, .80) 35%, rgba(7, 10, 8, .12) 70%), linear-gradient(0deg, rgba(7, 10, 8, .62), transparent 42%);
}

.hero-content { padding-top: 72px; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 108px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 780;
}

.hero h1 em { color: var(--accent); font-style: normal; font-weight: 520; }
.hero-copy { max-width: 520px; margin: 28px 0 0; color: #d5ddd9; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button-primary { background: var(--accent); color: var(--ink); }
.button span { margin-left: 22px; font-size: 18px; }
.text-link { padding: 14px 0; color: var(--paper); font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(238, 242, 239, .4); }
.text-link span { margin-left: 9px; color: var(--accent); }

.trust-rail { background: var(--accent); color: var(--ink); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid p { margin: 0; padding: 24px 26px; border-left: 1px solid rgba(16, 21, 19, .25); }
.trust-grid p:last-child { border-right: 1px solid rgba(16, 21, 19, .25); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 15px; }
.trust-grid span { margin-top: 5px; font-size: 12px; color: #334020; }

.breadcrumb { padding-top: 28px; }
.breadcrumb ol { display: flex; gap: 10px; padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: 12px; }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; color: #59635e; }
.breadcrumb a:hover { color: var(--accent); }

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) .6fr;
  gap: 80px;
  align-items: end;
  padding-top: 120px;
  padding-bottom: 140px;
}

.intro-copy h2, .section-heading h2, .security h2, .process h2, .reviews h2, .faq h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}

.intro-copy p { max-width: 780px; margin: 30px 0 0; color: #b7c1bc; font-size: clamp(18px, 2vw, 26px); line-height: 1.52; }
.intro-stamp { width: min(100%, 290px); justify-self: end; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-soft); }
.intro-stamp span { color: var(--accent); font-size: 11px; letter-spacing: .2em; }
.intro-stamp strong { display: block; margin-top: 48px; font-size: 28px; line-height: .9; letter-spacing: -.04em; }

.facility-showcase {
  margin-top: -36px;
  margin-bottom: 150px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.facility-image { overflow: hidden; aspect-ratio: 2.18 / 1; }
.facility-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.facility-showcase:hover .facility-image img { transform: scale(1.018); }
.facility-showcase figcaption { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: end; padding: 28px 32px; }
.facility-showcase figcaption strong { font-size: clamp(22px, 2.6vw, 34px); line-height: 1.08; letter-spacing: -.035em; }
.facility-showcase figcaption span { color: var(--muted); font-size: 14px; line-height: 1.55; }

.services { padding-bottom: 150px; }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading p, .faq-heading p { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.service-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: minmax(250px, auto); gap: 14px; }
.service-grid article { position: relative; overflow: hidden; border-radius: var(--radius); }
.service-feature { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; padding: 40px; background: var(--paper); color: var(--ink); }
.service-feature h3 { max-width: 460px; font-size: clamp(36px, 4.6vw, 62px); line-height: .95; letter-spacing: -.055em; }
.service-grid h3 { margin: 0; }
.service-grid p { margin: 16px 0 0; line-height: 1.55; }
.service-feature p { max-width: 520px; color: #56615b; font-size: 17px; }
.service-number { font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.service-arrow { position: absolute; right: 36px; top: 34px; font-size: 28px; }
.service-item { min-height: 250px; padding: 30px; border: 1px solid var(--line); background: var(--ink-soft); }
.service-item h3 { margin-top: 56px; font-size: 24px; letter-spacing: -.025em; }
.service-item p { color: var(--muted); font-size: 14px; }
.service-accent { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.service-accent p { color: #3e4c28; }
.service-image { padding: 0; grid-row: span 1; }
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-dark { background: #090d0b; }
.service-valet-image { padding: 0; min-height: 250px; isolation: isolate; }
.service-valet-image > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.service-valet-image::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(8, 12, 10, .95) 0%, rgba(8, 12, 10, .58) 55%, rgba(8, 12, 10, .08) 100%); }
.service-valet-copy { position: absolute; inset: auto 0 0; padding: 30px; }
.service-valet-copy h3 { margin-top: 34px; }
.service-valet-copy p { color: #c1cac5; }
.service-wide { grid-column: span 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.service-wide h3 { margin-top: 24px; }
.service-wide a { flex: 0 0 auto; padding-bottom: 5px; color: var(--accent); font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--accent); }

.security { padding: 150px 0; background: #1a211e; }
.security-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.security-copy { position: sticky; top: 120px; }
.security-copy > p:not(.eyebrow) { max-width: 550px; margin: 28px 0 36px; color: #aeb8b3; font-size: 18px; line-height: 1.65; }
.button-outline { color: var(--paper); border-color: rgba(238, 242, 239, .5); }
.button-outline:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.security-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.security-list article { min-height: 260px; padding: 30px; border-radius: var(--radius); background: #222b27; }
.security-list article:nth-child(2), .security-list article:nth-child(3) { background: #111714; }
.security-list span { color: var(--accent); font-size: 12px; }
.security-list h3 { margin: 90px 0 0; font-size: 24px; letter-spacing: -.03em; }
.security-list p { color: var(--muted); line-height: 1.5; }
.handover-media { display: grid; grid-template-columns: 1.45fr .55fr; min-height: 420px; margin-top: 70px; margin-inline: auto; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #111714; }
.handover-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.handover-media figcaption { display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; }
.handover-media figcaption strong { font-size: clamp(24px, 3vw, 38px); line-height: 1.05; letter-spacing: -.04em; }
.handover-media figcaption span { margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.55; }

.process { padding-top: 150px; padding-bottom: 160px; }
.process h2 { max-width: 900px; }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 74px; border-top: 1px solid var(--line); }
.process-track article { position: relative; padding: 38px 28px 0 0; }
.process-track article::before { content: ""; position: absolute; width: 10px; height: 10px; top: -5px; left: 0; border-radius: 50%; background: var(--accent); }
.process-track strong { font-size: 18px; }
.process-track p { max-width: 245px; color: var(--muted); line-height: 1.55; }

.reviews { padding: 140px 0; background: var(--accent); color: var(--ink); }
.reviews-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.reviews-summary h2 { font-size: clamp(42px, 5vw, 70px); }
.reviews-summary > p { max-width: 400px; color: #3f4d2b; line-height: 1.55; }
.rating-placeholder { margin-top: 30px; font-weight: 750; color: var(--ink) !important; }
.review-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-slots article { min-height: 230px; padding: 28px; border-radius: var(--radius); background: rgba(16, 21, 19, .08); border: 1px solid rgba(16, 21, 19, .23); }
.review-slots article:first-child { grid-column: span 2; }
.review-slots span { font-size: 12px; font-weight: 800; }
.review-slots blockquote { max-width: 590px; margin: 48px 0 22px; font-size: 21px; line-height: 1.35; letter-spacing: -.02em; }
.review-slots p { font-size: 12px; color: #4d5d36; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; padding-top: 150px; padding-bottom: 150px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 24px; padding: 27px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--accent); font-size: 24px; transition: transform .25s var(--ease); }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 700px; margin: -4px 50px 26px 0; color: var(--muted); line-height: 1.65; }

.final-cta { padding: 140px 0; background: #0b0f0d; }
.final-cta-inner { text-align: center; }
.final-cta h2 { max-width: 980px; margin-inline: auto; }
.final-cta .button { margin-top: 42px; }

.site-footer { padding: 80px 0 24px; border-top: 1px solid var(--line); background: #090d0b; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .5fr .5fr 1fr; gap: 50px; }
.footer-brand { width: 250px; }
.footer-grid h2 { margin: 0 0 20px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.footer-grid > div a { display: block; width: fit-content; margin: 12px 0; color: #d1d8d4; font-size: 14px; }
.footer-grid > div a:hover { color: var(--accent); }
.footer-note { max-width: 320px; margin: 0; color: var(--muted); line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 22px; border-top: 1px solid var(--line); color: #7f8a84; font-size: 12px; }
.footer-bottom p { margin: 0; }

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--ink); backdrop-filter: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * { opacity: 0; transform: translateY(24px); animation: enter .85s var(--ease) forwards; }
  .hero-content > *:nth-child(2) { animation-delay: .08s; }
  .hero-content > *:nth-child(3) { animation-delay: .16s; }
  .hero-content > *:nth-child(4) { animation-delay: .24s; }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.is-visible { opacity: 1; transform: none; }
  @keyframes enter { to { opacity: 1; transform: none; } }
}

@media (max-width: 1024px) {
  .nav-shell { grid-template-columns: 210px 1fr auto; gap: 16px; }
  .brand { width: 190px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 13px; }
  .intro, .security-layout, .faq { gap: 54px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-feature { grid-row: span 2; }
  .service-wide { grid-column: span 1; display: block; }
  .service-wide a { display: inline-block; margin-top: 24px; }
  .reviews-layout { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .page-shell, .nav-shell { width: min(100% - 32px, 640px); }
  .site-header { background: rgba(16, 21, 19, .96); }
  .nav-shell { height: 66px; grid-template-columns: 1fr auto; }
  .brand { width: 172px; }
  .nav-cta { display: none; }
  .menu-toggle { display: grid; place-content: center; gap: 6px; width: 44px; height: 44px; padding: 0; color: var(--paper); background: transparent; border: 1px solid var(--line); border-radius: 10px; }
  .menu-toggle span { display: block; width: 19px; height: 2px; background: currentColor; transition: transform .25s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: absolute; top: 65px; left: 0; right: 0; display: none; align-items: stretch; padding: 18px 16px 24px; background: var(--ink); border-bottom: 1px solid var(--line); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 16px; }

  .hero { min-height: 100dvh; align-items: flex-end; }
  .hero-content { padding: 118px 0 52px; }
  .hero-media img { object-position: 68% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(7, 10, 8, .98) 10%, rgba(7, 10, 8, .50) 72%, rgba(7, 10, 8, .38)); }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-copy { max-width: 390px; margin-top: 22px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 28px; }
  .button { width: 100%; }
  .text-link { padding: 12px 2px; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid p { padding: 18px 12px; border-bottom: 1px solid rgba(16, 21, 19, .25); }
  .trust-grid p:nth-child(even) { border-right: 1px solid rgba(16, 21, 19, .25); }
  .trust-grid span { font-size: 11px; }
  .breadcrumb { padding-top: 20px; }

  .intro { grid-template-columns: 1fr; gap: 44px; padding-top: 84px; padding-bottom: 96px; }
  .intro-copy h2, .section-heading h2, .security h2, .process h2, .reviews h2, .faq h2, .final-cta h2 { font-size: clamp(38px, 12vw, 54px); }
  .intro-copy p { font-size: 18px; }
  .intro-stamp { justify-self: start; }

  .facility-showcase { margin-top: -18px; margin-bottom: 96px; }
  .facility-image { aspect-ratio: 4 / 3; }
  .facility-showcase figcaption { grid-template-columns: 1fr; gap: 14px; padding: 24px; }
  .facility-showcase:hover .facility-image img { transform: none; }

  .services { padding-bottom: 96px; }
  .section-heading { margin-bottom: 34px; }
  .service-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .service-feature, .service-item, .service-wide { grid-column: auto; grid-row: auto; min-height: 260px; }
  .service-feature { min-height: 420px; padding: 28px; }
  .service-item { padding: 26px; }
  .service-image { padding: 0; aspect-ratio: 4 / 3; }
  .service-valet-image { min-height: 340px; }
  .service-valet-copy { padding: 26px; }

  .security { padding: 96px 0; }
  .security-layout { grid-template-columns: 1fr; gap: 52px; }
  .security-copy, .faq-heading { position: static; }
  .security-list { grid-template-columns: 1fr; }
  .security-list article { min-height: 220px; }
  .security-list h3 { margin-top: 64px; }
  .handover-media { grid-template-columns: 1fr; min-height: 0; margin-top: 46px; }
  .handover-media img { min-height: 0; aspect-ratio: 4 / 3; }
  .handover-media figcaption { padding: 26px; }

  .process { padding-top: 96px; padding-bottom: 96px; }
  .process-track { grid-template-columns: 1fr; margin-top: 50px; padding-left: 24px; border-top: 0; border-left: 1px solid var(--line); }
  .process-track article { padding: 0 0 42px 20px; }
  .process-track article::before { top: 5px; left: -29px; }

  .reviews { padding: 96px 0; }
  .reviews-layout { gap: 46px; }
  .review-slots { grid-template-columns: 1fr; }
  .review-slots article:first-child { grid-column: auto; }

  .faq { grid-template-columns: 1fr; gap: 46px; padding-top: 96px; padding-bottom: 96px; }
  .faq summary { font-size: 16px; }
  .final-cta { padding: 96px 0; }

  .site-footer { padding-top: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 24px; }
  .footer-brand, .footer-note { grid-column: span 2; }
  .footer-bottom { margin-top: 50px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 45px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p, .trust-grid p:nth-child(even) { border-right: 1px solid rgba(16, 21, 19, .25); }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
