:root {
  --primary: #B3261E;
  --secondary: #1F1F1F;
  --text: #1f1f1f;
  --bg: #ffffff;
  --bg-alt: #f7f5f2;
  --border: #e5e2dd;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --section-padding: 64px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

.eyebrow {
  display: block;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-padding) 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

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

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

/* Header */
.site-header {
  background: var(--secondary);
  color: #fff;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo-img {
  max-height: 56px;
  width: auto;
}

.logo-text {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  text-decoration: underline;
}

.header-phone {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 70vh;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 780px;
}

.hero-subheadline {
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 1.5rem;
}

/* About */
.about {
  background: var(--bg-alt);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(var(--menu-cols-mobile, 2), 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.service-card h3 {
  color: var(--primary);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Hours + Location + Contact */
.hours-location {
  background: var(--bg-alt);
}

.hours-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

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

.hours-table td {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-table td:last-child {
  text-align: right;
}

.hours-table tr.today td {
  font-weight: 700;
  color: var(--primary);
}

.contact-block a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.social-icon {
  color: var(--secondary);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--secondary);
  color: #fff;
  text-align: center;
}

.site-footer .section-inner {
  padding: 1.5rem 1.25rem;
}

.designer-credit {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Mobile-first: base styles above already target 375px.
   Widen typography and spacing at larger breakpoints. */
@media (min-width: 768px) {
  :root {
    --section-padding: 96px;
  }

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

  .services-grid {
    grid-template-columns: repeat(var(--menu-cols-desktop, 4), 1fr);
  }

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