/* ─── Tokens ─── */
:root {
  --bg:         #0e0a04;
  --bg-2:       #181008;
  --bg-3:       #221608;
  --bg-4:       #2e1e0c;
  --amber:      #D4900A;
  --amber-2:    #E8A820;
  --amber-dim:  rgba(212, 144, 10, 0.12);
  --red:        #C0392B;
  --green:      #27AE60;
  --text:       #F2E8D0;
  --text-2:     #C8B898;
  --muted:      #8A7A5A;
  --border:     #2e1e0c;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg:  0 12px 48px rgba(0, 0, 0, 0.65);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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

/* ─── TRAFFIC LIGHT DOTS (logo element) ─── */
.tl {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.tl-red   { background: #C0392B; box-shadow: 0 0 8px rgba(192, 57, 43, 0.6); }
.tl-amber { background: #E8A820; box-shadow: 0 0 8px rgba(232, 168, 32, 0.6); }
.tl-green { background: #27AE60; box-shadow: 0 0 8px rgba(39, 174, 96, 0.6); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -5%, rgba(212, 144, 10, 0.1) 0%, transparent 65%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.008) 0px,
      rgba(255,255,255,.008) 1px,
      transparent 1px,
      transparent 40px
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--bg-2));
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

/* Logo */
.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(212, 144, 10, 0.3), var(--shadow-lg);
}

.hero-tl-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero-heading span {
  color: var(--amber-2);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 500px;
}

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

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: #1a0e04;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(212, 144, 10, 0.35);
}

.btn-primary:hover {
  background: var(--amber-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 144, 10, 0.5);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 36px;
  border-radius: 100px;
  border: 1px solid rgba(242, 232, 208, 0.25);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber-2);
  transform: translateY(-2px);
}

.hero-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
}

.open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(39, 174, 96, 0.7);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

.hero-scroll-hint svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Shared section header ─── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-header p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 16px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: block;
}

/* ─── ABOUT ─── */
.about {
  padding: 96px 0;
  background: var(--bg-2);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 16px;
}

.about-since {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--amber-dim);
  border: 1px solid rgba(212, 144, 10, 0.25);
  border-radius: var(--radius);
  padding: 16px 28px;
  margin-top: 12px;
  gap: 2px;
}

.since-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--amber-2);
  line-height: 1;
}

.since-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feature-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.feature-item span {
  font-size: 13px;
  color: var(--text-2);
}

/* ─── SERVICES ─── */
.services {
  padding: 96px 0;
  background: var(--bg);
}

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

.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.service-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ─── OPENING HOURS ─── */
.hours {
  padding: 96px 0;
  background: var(--bg-2);
}

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hours-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.hours-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 32px;
}

/* decorative traffic light column */
.tl-decoration {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
  background: var(--bg-4);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 14px 12px;
}

.tl-light {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.tl-light-red   { background: #C0392B; box-shadow: 0 0 12px rgba(192,57,43,.5); }
.tl-light-amber { background: #E8A820; box-shadow: 0 0 12px rgba(232,168,32,.5); }
.tl-light-green { background: #27AE60; box-shadow: 0 0 12px rgba(39,174,96,.5); }

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
  font-size: 15px;
  transition: background var(--transition);
}

.hours-row:last-child { border-bottom: none; }

.hours-row:hover { background: var(--bg-4); }

.hours-row--highlight {
  background: var(--bg-4);
  border-left: 3px solid var(--amber);
}

.hours-day { color: var(--text-2); font-weight: 500; }

.hours-time {
  font-weight: 700;
  color: var(--amber-2);
  font-variant-numeric: tabular-nums;
}

/* ─── REVIEWS ─── */
.reviews {
  padding: 96px 0;
  background: var(--bg);
}

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

.review-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reviewer-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-4);
  border: 1px solid var(--border);
  color: var(--amber-2);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #FBBF24;
}

.review-stars svg { width: 13px; height: 13px; }

.review-date {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 2px;
}

.review-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-2);
  font-style: italic;
}

.review-source {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── CONTACT + MAP ─── */
.contact { border-top: 1px solid var(--border); }

.contact-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 540px;
}

.contact-panel {
  background: var(--bg-3);
  border-right: 1px solid var(--border);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow--light { color: var(--amber); }

.contact-panel h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
}

.contact-panel h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-top: 10px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--amber-dim);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-list li > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-list strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.contact-list a {
  color: var(--text);
  transition: color var(--transition);
}

.contact-list a:hover { color: var(--amber-2); }

.contact-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg-4);
  border: 1px solid var(--border);
  padding: 9px 14px;
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition);
}

.social-link:hover {
  border-color: var(--amber);
  color: var(--amber-2);
}

.contact-map { position: relative; }

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 20px 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-tl {
  display: flex;
  gap: 5px;
  align-items: center;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .about-inner,
  .hours-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 380px;
    position: relative;
  }
}

@media (max-width: 600px) {
  .hero { padding: 60px 20px 50px; min-height: auto; }

  .logo-text { font-size: 42px; }

  .container { padding: 0 20px; }

  .about, .services, .hours, .reviews { padding: 64px 0; }

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

  .contact-panel { padding: 40px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
