/* =====================================================
   GOOGLE FONTS
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

/* =====================================================
   MEYER RESET CSS v2.0
===================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }

/* Global Box Sizing & Additional Resets */
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font: inherit; background: none; border: none; }

/* =====================================================
   DESIGN TOKENS
===================================================== */
:root {
  --orange:        #E8620A;
  --orange-light:  #FF7A24;
  --orange-glow:   rgba(232, 98, 10, 0.25);
  --dark:          #0D0D0D;
  --dark-card:     #161616;
  --dark-border:   #222222;
  --dark-mid:      #1C1C1C;
  --text-primary:  #F5F5F5;
  --text-muted:    #888888;
  --text-faint:    #444444;
  --white:         #FFFFFF;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --shadow:        0 8px 40px rgba(0,0,0,0.6);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --transition:    0.25s ease;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;
  --max-width:     1200px;
  --header-h:      72px;
}

/* =====================================================
   BASE
===================================================== */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Base icon sizing */
.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 1.5;
  vertical-align: middle;
}

/* =====================================================
   HEADER & NAV
   Note: .main-header / .header-container styles are
   defined further down for the PHP includes structure.
===================================================== */

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo {
  height: 44px;
  width: auto;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.85; }

nav { display: flex; align-items: center; gap: 0.25rem; }

#nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

#nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
#nav-links a:hover { color: var(--text-primary); background: var(--dark-card); }
#nav-links a.active { color: var(--text-primary); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--orange-glow);
}

/* Mobile toggle & Responsive nav styles are defined
   further down (HAMBURGER ICON / HEADER sections)
   to work with the PHP includes structure. */

/* =====================================================
   RESPONSIVE NAV
===================================================== */
@media (max-width: 768px) {
  #nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    gap: 0.5rem;
    overflow-y: auto;
  }
  #nav-links.active { display: flex; }
  #nav-links a { font-size: 1.1rem; padding: 0.75rem 1rem; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
}

/* =====================================================
   LAYOUT UTILITIES
===================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }

/* =====================================================
   TYPOGRAPHY
===================================================== */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}
.text-center { text-align: center; }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--orange-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--dark-border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 !important;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: high-quality;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,1) 0%,
    rgba(13,13,13,0.7) 40%,
    rgba(13,13,13,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-content h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(245,245,245,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 600px) {
  .hero-content { padding: 3rem 1.25rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}

/* Hero opening hours badge */
.hero-hours {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.hero-status {
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-hours-text {
  font-size: 0.85rem;
  color: rgba(245,245,245,0.6);
  font-weight: 500;
}
@media (max-width: 600px) {
  .hero-hours { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* =====================================================
   INTRO STRIP
===================================================== */
.intro-strip {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 3rem 0 !important;
}
.intro-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .intro-strip .container { grid-template-columns: 1fr; gap: 1.5rem; }
}
.intro-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.intro-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--orange-glow);
  border: 1px solid rgba(232,98,10,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.intro-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.intro-card p { font-size: 0.9rem; margin-bottom: 0; }

/* =====================================================
   SECTION INTRO (shared text block)
===================================================== */
.section-intro {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-intro p { font-size: 1.1rem; }

/* =====================================================
   GALLERY GRID
===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-grid figure {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 1.5rem 1rem 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

/* =====================================================
   BRANDS
===================================================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.brand-pill {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.brand-pill:hover {
  border-color: var(--orange);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px var(--orange-glow);
}

/* =====================================================
   ABOUT PROFILE (about page)
===================================================== */
.about-hero {
  background: var(--dark-card);
  border-bottom: 1px solid var(--dark-border);
  padding: 5rem 0 !important;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
}
.about-split img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-text .label { margin-bottom: 1rem; }

/* =====================================================
   VALUES GRID
===================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.95rem; margin-bottom: 0; }

/* =====================================================
   SERVICES (services page)
===================================================== */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }

/* =====================================================
   FIND-US PAGE
===================================================== */
.findus-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .findus-grid { grid-template-columns: 1fr; }
}
.info-block {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.info-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.5rem; }
.info-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--dark-border);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row p { font-size: 1rem; color: var(--text-primary); margin-bottom: 0.15rem; }
.info-row span { font-size: 0.85rem; color: var(--text-muted); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  margin: 0;
  border-radius: 0;
  filter: grayscale(30%) contrast(1.05);
}

/* =====================================================
   CTA BANNER
===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #B84500 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); font-family: var(--font-display); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-banner .btn {
  background: var(--white);
  color: var(--orange);
  font-weight: 800;
}
.cta-banner .btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
@media (max-width: 600px) {
  .cta-banner { padding: 3rem 1.5rem; }
  .cta-banner .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   PAGE HERO (inner pages)
===================================================== */
.page-hero {
  background: var(--dark-card);
  border-bottom: 1px solid var(--dark-border);
  padding: 4.5rem 0 !important;
}
.page-hero h1 { font-family: var(--font-display); color: var(--text-primary); }
.page-hero .label { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; max-width: 600px; }

/* Old hours-grid and footer styles removed — see PHP-structure
   styles (.hours-table, .main-footer) defined further below. */
.footer-brand img { height: 36px; width: auto; opacity: 0.7; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 0; }

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.35s; }
.fade-up-d4 { animation-delay: 0.5s; }

/* =====================================================
   DIVIDER
===================================================== */
.divider {
  height: 1px;
  background: var(--dark-border);
  margin: 0;
}

/* =====================================================
   DARK SECTION BG
===================================================== */
.section-dark {
  background: var(--dark-mid);
}

/* =====================================================
   SKIP LINK (accessibility)
===================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.75rem;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* =====================================================
   HAMBURGER ICON (animated bars)
===================================================== */
.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--dark-border);
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
#menu-toggle:hover { background: var(--dark-card); }
#menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}
#menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   HEADER (PHP includes structure)
===================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
}
.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .header-container { padding: 0 1.25rem; }
  #menu-toggle { display: flex; }
}

/* =====================================================
   SHOP STATUS INDICATOR
===================================================== */
.shop-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}
.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.open {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: pulse-green 2s ease-in-out infinite;
}
.status-dot.closed {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.35);
}
.shop-status.is-open,
.hero-status.is-open  { color: #22c55e; }
.shop-status.is-closed,
.hero-status.is-closed { color: var(--text-muted); }

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

/* =====================================================
   FOOTER (PHP includes structure)
===================================================== */
.main-footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 3.5rem 0 !important;
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) { .footer-container { padding: 0 1.25rem; } }

.main-footer .footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .main-footer .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.main-footer .footer-links h2,
.main-footer .footer-legal h2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.main-footer .footer-links ul,
.main-footer .footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.main-footer .footer-links a,
.main-footer .footer-legal a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 0.2rem 0;
}
.main-footer .footer-links a:hover,
.main-footer .footer-legal a:hover { color: var(--orange); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
}
.footer-bottom .footer-copy {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin: 0;
}

/* =====================================================
   HOURS TABLE (find-us page)
===================================================== */
.hours-table {
  width: 100%;
  margin-top: 1.25rem;
  border-collapse: collapse;
}
.hours-table .hours-row th,
.hours-table .hours-row td {
  font-size: 0.95rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--dark-border);
  text-align: left;
}
.hours-table .hours-row:last-child th,
.hours-table .hours-row:last-child td { border-bottom: none; }
.hours-table .hours-row th { color: var(--text-primary); font-weight: 500; }
.hours-table .hours-row td { color: var(--text-muted); text-align: right; }

.hours-today {
  background: rgba(232, 98, 10, 0.08);
  border-radius: var(--radius-sm);
}
.hours-today th,
.hours-today td {
  color: var(--orange) !important;
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* =====================================================
   TEL LINK
===================================================== */
.tel-link {
  color: var(--text-primary);
  font-weight: 600;
  border-bottom: 1px dashed var(--dark-border);
  transition: color var(--transition), border-color var(--transition);
}
.tel-link:hover { color: var(--orange); border-color: var(--orange); }

/* =====================================================
   MAP PHOTO
===================================================== */
.map-photo {
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
}
.map-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 16/6;
  object-fit: cover;
}

/* =====================================================
   FIND-US h2 inside info-block
===================================================== */
.info-block h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* =====================================================
   ACCESSORIES GRID (services page)
===================================================== */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.acc-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.acc-item:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.acc-item span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}
.acc-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* =====================================================
   404 ERROR PAGE
===================================================== */
.error-section {
  padding: 6rem 0 !important;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-inner {
  max-width: 560px;
  margin: 0 auto;
}
.error-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: wobble 3s ease-in-out infinite;
}
.error-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.error-inner p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.error-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 500px) {
  .error-links { flex-direction: column; }
  .error-links .btn { width: 100%; justify-content: center; }
}
@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(-8deg); }
  75%      { transform: rotate(8deg); }
}

/* =====================================================
   ACCESSIBILITY / PROSE PAGE
===================================================== */
.prose-block {
  max-width: 740px;
}
.prose-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.prose-block h2:first-child { margin-top: 0; }
.prose-block p {
  font-size: 1rem;
  line-height: 1.8;
}
.prose-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.prose-list li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.prose-list li strong { color: var(--text-primary); }
.prose-list code {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--orange);
}
.prose-link {
  color: var(--orange);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.prose-link:hover { border-bottom-color: var(--orange); }
.prose-meta {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--text-faint);
  font-style: italic;
}

/* =====================================================
   FOCUS STYLES (accessibility)
===================================================== */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* =====================================================
   REDUCED MOTION
===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-img { transform: none !important; transition: none !important; }
}

/* =====================================================
   PRINT STYLES
===================================================== */
@media print {
  header, footer, .nav-cta, .cta-banner, .hero-overlay, #menu-toggle, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .hero { min-height: auto; }
}

/* =====================================================
   INTERMEDIATE BREAKPOINTS (between mobile & desktop)
===================================================== */
@media (min-width: 601px) and (max-width: 900px) {
  .hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
  .about-split { gap: 2.5rem; }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .findus-grid { gap: 2rem; }
  .brands-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .accessories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 400px) {
  :root { --header-h: 60px; }
  .logo { height: 36px; }
  h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .page-hero { padding: 3rem 0 !important; }
  .cta-banner { padding: 2.5rem 1.25rem; }
  .info-block { padding: 1.5rem; }
  .accessories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   TOUCH TARGET SIZES (min 44x44px per WCAG 2.5.5)
===================================================== */
#nav-links a { min-height: 44px; display: inline-flex; align-items: center; }
.footer-links a, .footer-legal a { min-height: 44px; display: inline-flex; align-items: center; }
.btn { min-height: 44px; }
.tel-link { display: inline-block; min-height: 44px; line-height: 44px; }
