:root {
  --black: #0a0a0a;
  --near-black: #121212;
  --charcoal: #1b1b1b;
  --charcoal-light: #262626;
  --white: #f5f5f5;
  --grey: #b8b8b8;
  --grey-dim: #8a8a8a;
  --rainbow: linear-gradient(90deg, #ff3b30, #ff9500, #ffcc00, #34c759, #00c7be, #007aff, #af52de);
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-large { padding: 1.1rem 2.4rem; font-size: 1rem; margin-top: 2rem; }

/* Top bar */
.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--grey);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.topbar-inner a { color: var(--white); font-weight: 600; white-space: nowrap; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #b9bec4 45%, #6f757b 55%, #d9dde1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-tagline {
  font-size: 0.65rem;
  color: var(--grey-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.main-nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.main-nav a { color: var(--grey); transition: color 0.15s ease; }
.main-nav a:hover { color: var(--white); }
.header-cta { padding: 0.6rem 1.3rem; font-size: 0.8rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.78) 55%, rgba(6,6,6,0.96) 100%),
    linear-gradient(90deg, rgba(6,6,6,0.9) 0%, rgba(6,6,6,0.35) 55%, rgba(6,6,6,0.75) 100%);
}
.hero-rainbow-line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--rainbow);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  width: 100%;
  min-width: 0;
}
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--grey);
  margin: 0 0 1rem;
}
.eyebrow-dark { color: var(--grey-dim); }
.chrome-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  margin: 0 0 1.3rem;
  letter-spacing: 0.01em;
  max-width: 900px;
  background: linear-gradient(180deg, #ffffff 0%, #d7dade 30%, #8b9095 50%, #cfd3d7 62%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 620px;
  margin: 0 0 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero-trust {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--grey);
}
.hero-trust li { position: relative; padding-left: 1.2rem; }
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rainbow);
}

/* Stat strip */
.strip { background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,0.06); }
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  background: linear-gradient(180deg, #fff, #9a9fa4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.strip-item span { font-size: 0.82rem; color: var(--grey-dim); }

/* Sections */
.section { padding: 5.5rem 0; }
.section-dark { background: var(--near-black); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 1rem;
  color: var(--white);
}
.section-lead { color: var(--grey); max-width: 640px; font-size: 1.05rem; margin-bottom: 2.5rem; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  background: var(--rainbow);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-family: var(--font-head); font-size: 1.15rem; margin: 0 0 0.6rem; }
.card p { color: var(--grey); font-size: 0.95rem; margin: 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-copy p { color: var(--grey); }
.check-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.check-list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--white);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #34c759;
  font-weight: 700;
}
.about-panel {
  background: radial-gradient(circle at 30% 20%, #1f1f1f, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.about-logo { width: 160px; margin: 0 auto 1.2rem; border-radius: 50%; }
.about-panel-quote {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--grey);
  font-size: 1.05rem;
  margin: 0;
}

/* Gallery slideshow */
.gallery-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
}
.slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: gallery-fade 24s infinite;
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-slideshow:hover .slide { animation-play-state: paused; }
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }
.slide:nth-child(4) { animation-delay: 12s; }
.slide:nth-child(5) { animation-delay: 16s; }
.slide:nth-child(6) { animation-delay: 20s; }
@keyframes gallery-fade {
  0% { opacity: 0; }
  4.1667% { opacity: 1; }
  12.5% { opacity: 1; }
  16.6667% { opacity: 0; }
  100% { opacity: 0; }
}
.gallery-rainbow-line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--rainbow);
  z-index: 1;
}

/* Gallery CTA */
.gallery-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.gallery-cta-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin: 0;
  color: var(--white);
}
.chrome-text-inline {
  background: linear-gradient(180deg, #ffffff 0%, #d7dade 30%, #8b9095 50%, #cfd3d7 62%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gallery-cta-sub {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--grey);
  margin: 0.3rem 0 1rem;
}
.gallery-cta-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--grey-dim);
  margin: 0 0 1.2rem;
}
.gallery-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Testimonial */
.testimonial {
  margin: 0;
  padding: 2.5rem 3rem;
  background: var(--charcoal);
  border-left: 4px solid transparent;
  border-image: var(--rainbow) 1;
  border-radius: 6px;
  max-width: 780px;
}
.testimonial p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.testimonial cite { color: var(--grey-dim); font-style: normal; font-size: 0.9rem; }

/* Areas */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.areas-list span {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--grey);
}

/* CTA / Contact */
.cta-section { background: var(--charcoal); text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-section .section-lead { margin-left: auto; margin-right: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  width: 100%;
  margin-top: 1rem;
}
.contact-card {
  background: var(--near-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:not(.contact-card-static):hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.contact-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--grey-dim);
}
.contact-value { font-size: 1rem; font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-logo { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand p { color: var(--grey); font-size: 0.9rem; margin: 0; }
.footer-details p { color: var(--grey); font-size: 0.9rem; margin: 0 0 0.4rem; }
.footer-details a:hover { color: var(--white); }
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  color: var(--grey-dim);
  font-size: 0.8rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .topbar-inner {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
  .topbar-inner span,
  .topbar-inner a {
    width: 100%;
    white-space: normal;
  }
  .header-inner { flex-wrap: wrap; gap: 0.6rem; row-gap: 0.5rem; }
  .brand { min-width: 0; }
  .brand-tagline { display: none; }
  .header-cta { padding: 0.5rem 0.9rem; font-size: 0.68rem; flex-shrink: 0; }
  .brand-name { font-size: 1rem; }
  .brand-logo { width: 34px; height: 34px; }
  .hero-content { padding-top: 4rem; }
  .hero-sub { overflow-wrap: break-word; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .testimonial { padding: 2rem 1.5rem; }
}
