/* ---------- Tokens ---------- */
:root{
  --bg: #17181A;
  --panel: #1F2124;
  --panel-2: #2A2C30;
  --line: rgba(237,234,227,0.09);
  --paper: #EDEAE3;
  --muted: #9BA0A6;
  --amber: #F2A93B;
  --amber-dim: #C9862A;
  --blue: #4C86B8;
  --radius: 8px;
  --display: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Roboto Mono", monospace;
}

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

body{
  position: relative;
  margin:0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(237,234,227,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,234,227,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, black);
}

.wrap{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

a{ color: inherit; text-decoration: none; }

::selection{ background: var(--amber); color: #1a1a1a; }

/* ---------- Shutter intro ---------- */
.shutter{
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none;
}
.shutter-panel{
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, #2c2e32 0px, #2c2e32 18px, #24262a 18px, #24262a 36px);
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.6);
  animation: shutterUp 1.1s cubic-bezier(.77,0,.18,1) 0.15s forwards;
}
@keyframes shutterUp{
  to{ transform: translateY(-100%); }
}
@media (prefers-reduced-motion: reduce){
  .shutter{ display:none; }
}

/* ---------- Header ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.solid{
  background: rgba(23,24,26,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; gap: 24px;
  height: 76px;
}
.logo{ display:flex; align-items:center; gap:10px; margin-right: auto; }
.logo-mark{
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.1rem;
  width: 36px; height: 36px;
  display:flex; align-items:center; justify-content:center;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  color: var(--paper);
}
.logo-mark-accent{ color: var(--amber); }
.logo-text{
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.logo-text em{ font-style: normal; color: var(--amber); }

.nav{ display:flex; gap: 28px; }
.nav a{
  font-size: 0.92rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: color .2s ease;
}
.nav a:hover, .nav a:focus-visible{ color: var(--paper); }

.nav-toggle{
  display:none;
  flex-direction: column; justify-content:center; gap:5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span{
  display:block; height:2px; width: 100%;
  background: var(--paper);
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--amber);
  color: #1a1408;
}
.btn-primary:hover{ background: #ffbb52; }
.btn-ghost{
  border-color: rgba(237,234,227,0.25);
  color: var(--paper);
}
.btn-ghost:hover{ border-color: var(--paper); background: rgba(237,234,227,0.06); }
.btn-call{
  border-color: rgba(76,134,184,0.5);
  color: var(--paper);
  font-family: var(--mono);
}
.btn-call:hover{ border-color: var(--blue); background: rgba(76,134,184,0.12); }
.header-call{ padding: 9px 16px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 168px 0 90px;
  overflow: hidden;
}
.hero-texture{
  position:absolute; inset:0; z-index:0;
  background-image: radial-gradient(ellipse 60% 55% at 25% 15%, rgba(242,169,59,0.14), transparent 70%);
}
.hero-inner{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow{
  font-family: var(--mono);
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin: 0 0 18px;
}
.hero h1{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.hero h1 .hl{ color: var(--amber); }
.hero-lede{
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 46ch;
  margin: 0 0 34px;
}
.hero-actions{ display:flex; gap: 14px; flex-wrap: wrap; }

/* Gauge signature */
.gauge-card{
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 20px 22px;
  display:flex; flex-direction: column; align-items:center;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.gauge{ overflow: visible; }
.gauge-track{ stroke: rgba(237,234,227,0.1); }
.gauge-fill{
  stroke: var(--amber);
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  filter: drop-shadow(0 0 6px rgba(242,169,59,0.55));
  animation: gaugeFill 1.4s cubic-bezier(.22,1,.36,1) 1.1s forwards;
}
@keyframes gaugeFill{ to{ stroke-dashoffset: 27; } }
.gauge-needle{
  stroke: var(--paper);
  stroke-width: 2.5;
  stroke-linecap: round;
  transform-origin: 100px 110px;
  transform: rotate(-90deg);
  animation: needleSweep 1.4s cubic-bezier(.22,1,.36,1) 1.1s forwards;
}
@keyframes needleSweep{ to{ transform: rotate(58deg); } }
.gauge-hub{ fill: var(--amber); }
.gauge-readout{
  margin-top: -18px;
  font-family: var(--mono);
  display:flex; align-items: baseline; gap: 4px;
}
.gauge-value{ font-size: 2.1rem; font-weight: 700; color: var(--paper); }
.gauge-max{ color: var(--muted); font-size: 1rem; }
.gauge-caption{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* ---------- Stats ---------- */
.stats{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 28px;
  gap: 20px;
}
.stat{ text-align:center; }
.stat-num{
  display:block;
  font-family: var(--mono);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--amber);
}
.stat-label{
  display:block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Section commons ---------- */
section{ padding: 96px 0; }
.section-eyebrow{
  font-family: var(--mono);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin: 0 0 12px;
}
.section-title{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  letter-spacing: -0.01em;
  margin: 0 0 44px;
  max-width: 22ch;
}

.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in{ opacity: 1; transform: none; }

/* ---------- Services ---------- */
.service-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 24px;
  transition: background .2s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover{
  background: var(--panel-2);
  border-color: rgba(242,169,59,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -18px rgba(0,0,0,0.55);
}
.service-icon{
  color: var(--amber);
  width: 34px; height: 34px;
  margin-bottom: 18px;
  transition: transform .25s ease;
}
.service-card:hover .service-icon{ transform: scale(1.08) rotate(-4deg); }
.service-card h3{
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.05rem;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.service-card p{
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Why ---------- */
.why{ background: var(--panel); }
.why-inner{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}
.statement{
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: none;
  margin-bottom: 32px;
}
.statement-strike{
  position: relative;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.62em;
}
.statement-strike::after{
  content: "";
  position: absolute;
  left: 0; right: 0; top: 52%;
  height: 2px;
  background: currentColor;
  opacity: 0.5;
  transform: skewY(-2deg);
}
.statement-hl{
  color: var(--amber);
  text-shadow: 0 0 28px rgba(242,169,59,0.35);
}

.why-copy p{ color: var(--muted); font-size: 1.02rem; max-width: 50ch; }
.why-list{
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-list li{
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: var(--paper);
}
.why-list li::before{
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--amber);
}
.why-quote{
  background: var(--panel-2);
  border-left: 3px solid var(--amber);
  border-radius: 4px;
  padding: 32px 28px;
  align-self: center;
}
.why-quote blockquote{
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 600;
}
.why-quote cite{
  display:block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Reviews ---------- */
.review-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
  display:flex; flex-direction:column; gap: 14px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.review-card:hover{
  transform: translateY(-4px);
  border-color: rgba(242,169,59,0.3);
  box-shadow: 0 16px 32px -18px rgba(0,0,0,0.55);
}
.review-stars{
  color: var(--amber);
  letter-spacing: 2px;
  font-size: 0.9rem;
}
.review-card p{ margin:0; font-size: 0.95rem; color: var(--paper); flex: 1; }
.review-author{
  font-family: var(--mono);
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Location ---------- */
.location-inner{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.status-line{
  display:flex; align-items:center; gap:10px;
  margin: 6px 0 28px;
  font-family: var(--mono);
  font-size: 0.9rem;
}
.status-dot{
  width: 9px; height:9px; border-radius:50%;
  background: var(--muted);
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.status-dot.open{ background: #6DBE7A; box-shadow: 0 0 10px 1px rgba(109,190,122,0.6); }
.status-dot.closed{ background: #C96A5A; box-shadow: 0 0 10px 1px rgba(201,106,90,0.6); }

.info-list{ margin: 0 0 32px; }
.info-list > div{
  display:flex; justify-content: space-between; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-list dt{
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-list dd{
  margin:0;
  font-family: var(--mono);
  text-align: right;
}
.info-list a:hover{ color: var(--amber); }
.location-actions{ display:flex; gap: 14px; flex-wrap: wrap; }

.location-panel{
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.6);
}
.location-panel iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: invert(92%) hue-rotate(180deg) saturate(0.8) brightness(0.95) contrast(0.9);
}

/* ---------- Footer ---------- */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 44px 0;
}
.footer-inner{ text-align:center; display:flex; flex-direction:column; align-items:center; gap:12px; }
.footer-brand{ display:flex; align-items:center; gap:10px; }
.footer-addr, .footer-copy{ color: var(--muted); font-size: 0.85rem; margin:0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero-inner, .why-inner, .location-inner{ grid-template-columns: 1fr; }
  .gauge-card{ justify-self: start; }
  .service-grid{ grid-template-columns: repeat(2,1fr); }
  .review-grid{ grid-template-columns: repeat(2,1fr); }
  .stats-grid{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px){
  .nav{
    position: fixed; top: 76px; left:0; right:0;
    background: rgba(23,24,26,0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 12px 28px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.open{ opacity:1; transform: none; pointer-events:auto; }
  .nav a{ padding: 10px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle{ display:flex; }
  .header-call{ display:none; }
  .service-grid{ grid-template-columns: 1fr; }
  .review-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: repeat(2,1fr); }
  .info-list > div{ flex-direction: column; gap: 4px; }
  .info-list dd{ text-align: left; }
  .wrap{ padding: 0 20px; }
  .hero{ padding: 128px 0 64px; }
  section{ padding: 64px 0; }
  .gauge-card{ width: 100%; }
  .hero-actions, .location-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .location-actions .btn{ text-align: center; justify-content: center; }
  .statement-strike{ font-size: 0.56em; }
}

@media (max-width: 420px){
  .stats-grid{ grid-template-columns: 1fr 1fr; padding: 32px 20px; gap: 24px 12px; }
  .hero h1{ font-size: clamp(2rem, 9vw, 2.6rem); }
  .section-title{ font-size: clamp(1.5rem, 7vw, 1.9rem); }
}
