:root {
  --bg: #0f1115;
  --panel: #171b22;
  --panel-soft: #1c2129;
  --text: #f5f7fa;
  --muted: #b7bec9;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c59a4a;
  --accent-strong: #e0b86d;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #0c0f14 0%, #11161d 100%);
  color: var(--text);
  line-height: 1.55;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

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

.brand strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2c333d, #171b22);
  border: 1px solid rgba(197, 154, 74, 0.35);
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(1.65rem, 5.4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 13ch;
  margin-bottom: 16px;
}

.lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 22px;
}

.details-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.details-strip span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.92rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #14110c;
}

.button-secondary {
  border: 1px solid rgba(197, 154, 74, 0.45);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(1.45rem, 4.5vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

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

.service-card {
  padding: 22px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p,
.body-copy,
.contact-card p,
.contact-card li {
  color: var(--muted);
}

.image-slot {
  min-height: 280px;
  border-style: dashed;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  color: var(--muted);
}

.hero-slot {
  min-height: 360px;
}

.services-slot {
  min-height: 250px;
}

.contact-card {
  padding: 24px;
}

.contact-card a {
  color: var(--accent-strong);
  font-weight: 700;
}

.hours-block {
  margin-top: 22px;
}

.hours-block h3 {
  margin-bottom: 14px;
}

.hours-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hours-block li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hours-block li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-block strong {
  color: var(--text);
  text-align: right;
}

@media (max-width: 900px) {
  .hero-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-slot {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 52px 0;
  }

  .header-inner {
    min-height: 64px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  h1 {
    max-width: 12.5ch;
  }

  .lead {
    font-size: 0.98rem;
  }

  .details-strip {
    gap: 8px;
  }

  .details-strip span {
    width: 100%;
    border-radius: 14px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
  }

  .hours-block li {
    flex-direction: column;
    gap: 4px;
  }

  .hours-block strong {
    text-align: left;
  }
}
