/* ═══════════════════════════════════════════
   Shoe & Luggage Repair Center — Shared CSS
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

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

:root {
  --gold:        #c9a84c;
  --gold-dim:    rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.35);
  --dark:        #1a1208;
  --dark-mid:    #261c0c;
  --cream:       #f5edd8;
  --muted:       #a09070;
  --bg:          #f7f4ef;
  --white:       #ffffff;
  --text:        #1c1a16;
  --text-mid:    #5a5244;
  --border:      rgba(0,0,0,0.09);
  --radius:      12px;
  --radius-sm:   8px;
  --max-w:       1060px;
}

/* ── Base ── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* ── Nav ── */
nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--gold); }

/* hamburger — hidden by default */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-toggle:hover span { background: var(--gold); }

/* ── Containers & layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2rem;
}

/* ── Typography helpers ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.serif { font-family: 'Playfair Display', serif; }

/* ── Buttons ── */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.87; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,237,216,0.22);
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Page hero (interior pages) ── */
.page-hero {
  background: var(--dark);
  padding: 4.5rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 60px,rgba(255,255,255,0.012) 60px,rgba(255,255,255,0.012) 61px);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 50px);
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.page-hero p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  max-width: 560px;
}

/* ── Panels (hours/contact) ── */
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.panel-title {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-mid); }
.hours-time { font-weight: 500; }
.hours-closed { color: #b5a898; font-style: italic; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 14px;
  line-height: 1.5;
}
.contact-row:last-child { border-bottom: none; }
.contact-icon { color: var(--gold); font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 10.5px; color: var(--text-mid); letter-spacing: 0.05em; display: block; margin-bottom: 1px; }

/* ── Card footer ── */
.card-footer {
  padding: 0.75rem 1rem;
  font-size: 12px;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-tag {
  font-size: 11px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 2px 9px;
  border-radius: 99px;
}

/* ── CTA box ── */
.cta-box {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 0.5rem;
}
.cta-box p { color: var(--text-mid); margin-bottom: 1.25rem; font-size: 15px; }

/* ── Footer ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.14);
  padding: 2.25rem 1.5rem;
  margin-top: 5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--cream); }
.footer-brand span { color: var(--gold); }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: #6a5e4a; margin-top: 0.35rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 58px;
    left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(201,168,76,0.18);
    padding: 0.5rem 1rem 1rem;
    flex-direction: column;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 0.5rem; font-size: 14px; }
}
