:root {
  --bg: #060b14;
  --bg-soft: #0d1524;
  --panel: rgba(15, 24, 39, 0.88);
  --panel-strong: rgba(11, 19, 33, 0.96);
  --line: rgba(212, 168, 84, 0.22);
  --line-strong: rgba(212, 168, 84, 0.4);
  --text: #f7f5ef;
  --muted: #b8c1cf;
  --gold: #d0a24d;
  --gold-deep: #b48838;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top, rgba(208, 162, 77, 0.12), transparent 0 38%),
    linear-gradient(180deg, #08101c 0%, #050913 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

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

.site-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(208, 162, 77, 0.12);
  border: 1px solid rgba(208, 162, 77, 0.4);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.06em;
  flex: 0 0 auto;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-location {
  margin-top: 2px;
  font-size: 0.92rem;
  color: var(--muted);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
}

.desktop-nav a,
.mobile-menu-link {
  color: #d6dde8;
  font-size: 0.96rem;
}

.mobile-menu-link {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(208, 162, 77, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  padding: 44px 0 10px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.83rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(1.6rem, 5.6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--muted);
}

.info-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.info-pill {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0f3f8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.info-link {
  transition: border-color 160ms ease, transform 160ms ease;
}

.info-link:hover,
.info-link:focus-visible {
  border-color: rgba(208, 162, 77, 0.45);
  transform: translateY(-1px);
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  min-height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-primary {
  background: var(--gold);
  color: #0e1117;
  box-shadow: 0 12px 30px rgba(208, 162, 77, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(208, 162, 77, 0.48);
  background: rgba(255, 255, 255, 0.01);
  color: #f4f1e9;
}

.hero-photo-placeholder,
.secondary-photo-placeholder {
  margin-top: 26px;
  border-radius: 24px;
  border: 1px dashed rgba(208, 162, 77, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top, rgba(208, 162, 77, 0.06), transparent 0 42%),
    #0b1220;
  display: grid;
  place-items: center;
  color: #d7deea;
  text-align: center;
  overflow: hidden;
}

.hero-photo-placeholder {
  min-height: 220px;
  padding: 26px 20px;
}

.secondary-photo-placeholder {
  min-height: 200px;
  padding: 24px 18px;
}

.hero-photo-placeholder span,
.secondary-photo-placeholder span {
  opacity: 0.95;
  font-size: 1rem;
}

.content-section {
  padding: 34px 0 10px;
}

.content-section h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.55rem, 4.8vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-grid,
.contact-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.service-card,
.contact-card {
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 22px 20px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.service-card p,
.section-copy,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.content-section-split {
  display: grid;
  gap: 18px;
}

.contact-section {
  padding-bottom: 20px;
}

.contact-card {
  padding: 20px;
}

.contact-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.contact-card a {
  color: var(--text);
}

@media (min-width: 768px) {
  .site-shell {
    width: min(1120px, calc(100% - 48px));
    padding-top: 28px;
  }

  .mobile-menu-link {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    max-width: 11.5ch;
    font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  }

  .hero-copy {
    font-size: 1.08rem;
  }

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

  .cta-row {
    width: fit-content;
    min-width: 420px;
  }

  .hero-photo-placeholder {
    min-height: 320px;
    margin-top: 32px;
  }

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

  .content-section-split {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    align-items: start;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
