:root {
  --bg: #0b1120;
  --bg-soft: #111827;
  --card: #0f172a;
  --card-soft: #111c33;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --line: rgba(255,255,255,0.08);
  --gold: #d4a64a;
  --gold-soft: #f2d38b;
  --shadow: 0 18px 48px rgba(0,0,0,0.35);
  --radius: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #09101d 0%, #0b1120 32%, #0f172a 100%);
  color: var(--text);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 12, 24, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #111827;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-location {
  font-size: 0.78rem;
  color: var(--muted);
}

.header-phone {
  white-space: nowrap;
  font-size: 0.92rem;
  color: var(--gold-soft);
}

.hero {
  padding: 2.2rem 0 1.2rem;
}

.hero-inner {
  display: grid;
  gap: 1.1rem;
}

.hero-inner--centred {
  justify-items: center;
  text-align: center;
}

.hero-inner--wide {
  max-width: 860px;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.contact-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-copy {
  display: grid;
  gap: 0.95rem;
}

.hero-copy--big-centred {
  width: 100%;
  max-width: 760px;
}

.eyebrow, .section-kicker {
  margin: 0;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-support {
  margin: 0 auto;
  max-width: 680px;
  color: #cbd5e1;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #111827;
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.feature-photo,
.services,
.about,
.contact {
  padding: 1.2rem 0 1.6rem;
}

.photo-frame {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #060b14;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.photo-frame > img {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading {
  margin-bottom: 1rem;
}
.section-heading h2,
.about h2,
.contact h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  line-height: 1.12;
}

.service-grid,
.about-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.service-card p,
.about p,
.contact p {
  margin: 0;
  color: #cbd5e1;
}

.about-grid {
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-details {
  display: grid;
  gap: 0.55rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 3.2rem 0 1.6rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .contact-card {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}