:root {
  color-scheme: light;
  --bg: #111827;
  --text: #111827;
  --muted: #475569;
  --accent: #f59e0b;
  --accent-dark: #b45309;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header-inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  padding: 0.35rem 0;
}

.site-nav a:hover {
  color: var(--accent-dark);
}

.hero {
  background: linear-gradient(135deg, var(--bg), #1f2937);
  color: white;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}

.hero-text {
  min-width: 0;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand-card {
  width: 100%;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 18px;
  padding: 0.9rem;
  box-shadow: 0 16px 38px rgba(2, 6, 23, 0.35);
}

.logo-image {
  width: 100%;
  max-width: 260px;
  max-height: 240px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(2, 6, 23, 0.15));
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.02);
}

.eyebrow {
  letter-spacing: 0.08em;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

h1,
h2 {
  margin-top: 0;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 700px;
}

h1 {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent);
  color: #111827;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}

.button:hover {
  background: var(--accent-dark);
  color: white;
}

.hero-contact {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.5rem;
  max-width: 520px;
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(245, 158, 11, 0.75);
  background: rgba(15, 23, 42, 0.18);
  border-radius: 0 14px 14px 0;
}

.hero-contact p {
  margin: 0;
  font-size: 1rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f8fafc;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card--services {
  align-items: stretch;
  text-align: left;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.service-media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  background: #f8fafc;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border-radius: 12px;
  border: 2px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-icon:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
  border-color: var(--accent);
  transform: translateY(-5px);
}

.icon {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-card {
  background: var(--surface);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
}

.contact-card-header {
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.contact-header-image {
  width: 100%;
  height: clamp(180px, 30vw, 280px);
  object-fit: cover;
  display: block;
}

.contact-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-card-body {
  padding: 1.75rem 2rem 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  padding: 0.5rem 0 0.5rem 1.4rem;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: stretch;
}

.footer-info h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-info p {
  margin: 0 0 0.65rem;
}

.footer-eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.footer-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #111827;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

ul {
  padding-left: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .site-header-inner {
    padding-block: 0.6rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .lead {
    margin: 0 auto;
  }

  .hero-brand-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-contact {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(720px, calc(100% - 1.5rem));
  }

  .site-header-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-block: 0.75rem;
  }

  .site-nav {
    justify-content: center;
    gap: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-content {
    gap: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    border-radius: 14px;
  }

  .service-card {
    padding: 0 0.5rem;
  }

  .contact-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1.25rem);
  }

  .site-nav {
    gap: 0.75rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: 3rem 0;
  }

  h1 {
    font-size: 1.5rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .hero-brand-card {
    padding: 0.9rem;
  }

  .eyebrow {
    font-size: 1.9rem;
    letter-spacing: 0.04em;
  }

  .contact-header-image {
    height: 180px;
  }
}
