/* ============ Theme ============ */
:root {
  --bg: #f9f7eb;     /* off-white/cream */
  --accent: #ce1018; /* brand red from your logo */
  --text: #222222;
  --muted: #6b6b6b;
  --card: #ffffff;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
  --header-height: 72px;
}

/* ============ Base ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ============ Header ============ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 1200;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  min-height: var(--header-h);
}

.brand h1 {
  margin: 0 0 8px 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}
.site-nav a:hover { background: rgba(206,16,24,.08); transform: translateY(-1px); }
.site-nav a.active { background: rgba(206,16,24,.12); }

.header-image {
  width: 120px;
}
.header-image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* ============ Hero ============ */
.hero {
  text-align: center;
  padding: 48px 0 36px;
}
.hero h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}
.hero p {
  margin: 0;
  color: var(--muted);
}

/* ============ Sections ============ */
section {
  padding: 28px 0;
}

.about .container,
.hours .container,
.location .container {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.about h2,
.hours h2,
.location h2 {
  margin: 0 0 10px;
  color: #000;
}

/* ============ Hours list ============ */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
}
.hours-list li span { color: var(--muted); }
.hours-list li strong { color: #000; }

/* ============ Location ============ */
.location .tel {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}
.location .tel:hover { text-decoration: underline; }

/* ============ Footer ============ */
.site-footer {
  margin-top: 28px;
  border-top: 1px solid rgba(0,0,0,.06);
  background: var(--bg);
  color: var(--accent);
  text-align: center;
  padding: 16px 0;
}

/* ============ Gallery (kept, but cleaner) ============ */
.gallery img {
  width: 100%;
  max-width: 340px;
  margin: 8px;
  border: 2px solid rgba(206,16,24,.2);
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

/* ============ Small screens tweaks ============ */
@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: 1fr;      /* single column */
    text-align: center;
  }
  .header-image {
    order: -1;                       /* move image above brand */
    margin-bottom: 10px;
  }
  .hours-list li {
    padding: 10px 12px;
  }
}

/* ===== Gallery page ===== */
.gallery-section h2 { margin-top: 0; }
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap:12px;
}
.gallery-item{
  background:#fff;border-radius:12px;overflow:hidden;box-shadow:var(--shadow);
}
.gallery-item img{
  width:100%;height:100%;aspect-ratio: 4 / 5; object-fit: cover; display:block;
}


/* ===== Booking embed card ===== */
.embed-card{
  background:#fff;
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  min-height: 300px;
}


/* Accessibility skip link (hidden unless tabbed to) */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  clip: auto;
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* ===== Mobile nav (burger) ===== */
.menu-toggle{
  display: none; /* shown on small screens */
  position: relative;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.menu-toggle:hover{ background: rgba(206,16,24,.08); transform: translateY(-1px); }
.menu-toggle:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; }

.menu-toggle .icon-close{ display: none; }


/* Mobile layout */
@media (max-width: 760px){
  .menu-toggle{ display: inline-flex; }

  .site-nav{
    display: none !important;          /* hidden by default on mobile */
    position: absolute;
    left: 0; 
    right: 0; 
    top: var(--header-h); 
    background: var(--bg);
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    padding: 10px;
    z-index: 1000;
    flex-direction: column;
    gap: 6px;
    max-height: calc(100dvh - var(--header-h));
    overflow: auto;                   /* scroll menu if tall */
  }

  /* OPEN state (toggled directly on the nav) */
  .site-nav.is-open{ display: flex !important; }

  .site-nav a{ padding: 10px 12px; border-radius: 10px; }

  /* Icon swap */
  .site-header.nav-open .menu-toggle .icon-burger{ display: none; }
  .site-header.nav-open .menu-toggle .icon-close{ display: block; }
}

/* Make sure menu button is always clickable */
.menu-toggle { position: relative; z-index: 1001; }
.header-inner {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr; /* image on left, text/nav on right */
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}

body.nav-open { overflow: hidden; }
