:root {
  --steel: #0f171f;
  --panel: #16212b;
  --cream: #f2f4f6;
  --orange: #d9682c;
  --orange-dark: #b6541f;
  --blue: #3a7ca5;
  --gray: #5c6773;
  --radius: 4px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--steel);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, .logo {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--steel);
  color: var(--cream);
  border-bottom: 3px solid var(--orange);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-size: 26px;
  color: var(--cream);
  text-decoration: none;
}
.logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  text-transform: none;
}

.nav-links a:hover { color: var(--orange); }

.btn-nav {
  background: var(--orange);
  padding: 8px 16px;
  border-radius: var(--radius);
  color: #fff !important;
}
.btn-nav:hover { background: var(--orange-dark); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  display: block;
}

/* Hero */
.hero {
  background-color: var(--steel);
  background-size: cover;
  background-position: center;
  color: var(--cream);
  padding: 100px 0 76px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 54px);
  margin: 0 0 20px;
  line-height: 1.15;
  text-transform: none;
}

.hero-sub {
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: #cbd3da;
  font-family: 'Source Sans 3', sans-serif;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  border: 1px solid var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: var(--cream); color: var(--steel); }

/* Services */
.services { padding: 80px 0; }
.services h2 { font-size: 34px; text-align: center; margin-bottom: 40px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid #dde2e6;
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.service-card h3 {
  font-size: 21px;
  margin: 0 0 10px;
  text-transform: none;
}

.service-card p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
}

.services-note {
  text-align: center;
  margin-top: 34px;
  color: var(--gray);
  font-size: 14px;
}

/* Gallery */
.gallery {
  padding: 70px 0;
  background: var(--panel);
  color: var(--cream);
}

.gallery h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* About */
.about {
  padding: 70px 0;
}

.about-text { max-width: 640px; margin: 0 auto; text-align: center; }
.about-text h2 { font-size: 32px; margin-bottom: 18px; }
.about-text p { color: var(--gray); font-size: 16px; font-family: 'Source Sans 3', sans-serif; }

/* Hours & Location */
.hours { padding: 80px 0; background: #fff; }

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.hours h2, .hours-location h2 { font-size: 30px; margin-bottom: 20px; }

.hours-table table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #dde2e6;
  font-weight: 400;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
}

.hours-table th { color: var(--steel); font-weight: 700; }
.hours-table td { color: var(--gray); }

.hours-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray);
}

.hours-location address {
  font-style: normal;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: none;
  font-family: 'Source Sans 3', sans-serif;
}

.hours-location p a {
  text-decoration: none;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 17px;
}

.hours-location .btn { margin-top: 14px; }

/* Footer */
.site-footer {
  background: var(--steel);
  color: #a9b4bd;
  padding: 26px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a {
  text-decoration: none;
  color: var(--orange);
}

/* Responsive */
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--steel);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    gap: 18px;
    display: none;
    border-bottom: 3px solid var(--orange);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hours-inner { grid-template-columns: 1fr; gap: 40px; }
}
