/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #8b2020;
  --red-bright: #a52a2a;
  --navy: #0f1d2e;
  --navy-mid: #1a2d42;
  --slate: #2c3e50;
  --cream: #f5f0eb;
  --warm-white: #faf8f5;
  --dark: #111111;
  --white: #ffffff;
  --text: #3a3a3a;
  --text-muted: #7a7a7a;
  --border: #e2ddd7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

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

a {
  color: var(--navy-mid);
  text-decoration: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/joe.jpeg') center 20% / cover no-repeat;
  filter: brightness(0.35) saturate(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 29, 46, 0.6) 0%, rgba(15, 29, 46, 0.2) 40%, rgba(15, 29, 46, 0.85) 100%);
}

/* Top bar */
.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-logo {
  width: 28px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.topbar-name {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-phone {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.topbar-phone:hover {
  color: var(--white);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px 80px;
  max-width: 780px;
}

.hero-location {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.tagline {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.cta-btn {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}

.cta-btn:not(.cta-outline) {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}

.cta-btn:not(.cta-outline):hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.cta-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-outline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.hero-quick-info {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.hero-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== About ===== */
.about {
  padding: 100px 0;
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.highlight-box {
  background: var(--white);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.highlight-box p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

/* ===== Section Headings ===== */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-heading p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services h2 {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 780px;
  margin: 0 auto;
}

.service-card {
  padding: 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--warm-white);
}

.service-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.service-card.do h3 {
  color: var(--navy-mid);
}

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

.service-card ul {
  list-style: none;
}

.service-card ul li {
  padding: 5px 0;
  padding-left: 24px;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-card.do ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--navy-mid);
  font-weight: 600;
  font-size: 0.85rem;
}

.service-card.dont ul li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 400;
}

/* ===== Community ===== */
.community {
  background: var(--navy);
  overflow: hidden;
}

.community-banner {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.community-banner img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 70%;
  filter: saturate(0.7) brightness(0.85);
  transition: filter 0.4s;
}

.community-banner:hover img {
  filter: saturate(0.9) brightness(0.95);
}

.community-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 56px 0;
}

.community-patch {
  flex-shrink: 0;
  width: 180px;
}

.community-patch img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.community-text h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.community-text p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 480px;
}

@media (max-width: 768px) {
  .community-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 40px 0;
  }

  .community-patch {
    width: 140px;
  }

  .community-text p {
    max-width: none;
  }

  .community-banner img {
    height: 120px;
  }
}

/* ===== Info ===== */
.info {
  padding: 100px 0;
  background: var(--cream);
}

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

.info-card {
  background: var(--white);
  padding: 36px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.info-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding: 5px 0;
  font-size: 0.88rem;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.hours-table tr.closed td {
  color: var(--text-muted);
  opacity: 0.45;
}

.hours-note {
  margin-top: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 500;
}

/* How It Works */
.how-it-works {
  padding-left: 18px;
}

.how-it-works li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0;
  line-height: 1.6;
}

.how-it-works li::marker {
  color: var(--red);
  font-weight: 600;
  font-size: 0.8rem;
}

.how-note {
  margin-top: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* Payment */
.payment-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payment-info .accepted,
.payment-info .not-accepted {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
}

.payment-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.accepted .payment-icon {
  background: #e8f5e9;
  color: #2e7d32;
}

.not-accepted .payment-icon {
  background: #fbe9e7;
  color: var(--red);
}

/* ===== Location ===== */
.location {
  padding: 100px 0;
  background: var(--white);
}

.location h2 {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 56px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.location-details address {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 8px;
}

.location-note {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.phone-link {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.phone-link:hover {
  color: var(--red);
}

.directions-btn {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.directions-btn:hover {
  background: var(--navy-mid);
}

.map-embed iframe {
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ===== Footer ===== */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 40px 32px;
}

footer p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.footer-sub {
  margin-top: 8px;
  font-size: 0.75rem;
}

.footer-sub a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-sub a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .topbar {
    padding: 20px 24px;
  }

  .topbar-name {
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 0 24px 60px;
  }

  .hero-quick-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hero-divider {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    max-width: 360px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100vh;
  }
}

@media (max-width: 480px) {
  .topbar-phone {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-btn {
    text-align: center;
  }

  .about,
  .services,
  .info,
  .location {
    padding: 72px 0;
  }

  .container {
    padding: 0 20px;
  }
}
