/* Phone Style staging — editorial, mobile-first */
:root {
  --orange: #e87722;
  --orange-dark: #c96212;
  --orange-soft: #fff4eb;
  --ink: #0a0a0a;
  --ink-2: #1c1c1c;
  --muted: #5c5c5c;
  --line: #e8e6e3;
  --paper: #faf9f7;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(10,10,10,.08);
  --header-h: 68px;
  --banner-h: 40px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Instrument Sans", "DM Sans", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 88px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-dark); text-underline-offset: 2px; }
a:hover { color: var(--orange); }
h1,h2,h3 { font-family: var(--display); line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); font-weight: 700; }
.h1-subloc { display: block; margin-top: .2em; font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.45rem, 3.5vw, 2rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .35em; }
p { margin: 0 0 1em; }
address { font-style: normal; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Preview banner */
.preview-banner {
  position: sticky; top: 0; z-index: 60;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem;
  min-height: var(--banner-h);
  padding: .45rem 1rem;
  background: #1a120c; color: #f5e6d8;
  font-size: .78rem; text-align: center;
}
.preview-banner strong { color: var(--orange); letter-spacing: .04em; }
.preview-banner .dot {
  width: 4px; height: 4px; border-radius: 50%; background: #8a6a4a;
}

/* Header */
.site-header {
  position: sticky; top: var(--banner-h); z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 1rem;
  padding: .55rem 1.1rem; min-height: var(--header-h);
}
.logo-img--header { width: 132px; height: auto; }
.logo-img--header,
.logo-img--hero {
  background: transparent;
  mix-blend-mode: multiply; /* kills leftover white fringe on pale backgrounds */
}
.logo-img--hero { width: min(220px, 70vw); height: auto; margin-bottom: 1rem; }
.logo-img--footer { width: 180px; height: auto; margin-bottom: 1rem; }
.header-nav { display: none; gap: 1.15rem; margin-left: auto; }
.header-nav a {
  text-decoration: none; color: var(--ink-2); font-weight: 500; font-size: .92rem;
}
.header-nav a:hover { color: var(--orange); }
.header-actions { display: none; gap: .55rem; margin-left: .5rem; }

.menu-toggle {
  margin-left: auto;
  width: 48px; height: 48px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); display: grid; place-content: center; gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: .25rem;
  padding: .5rem 1.1rem 1.1rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  text-decoration: none; color: var(--ink);
  padding: .85rem .4rem; font-weight: 560; font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { border-bottom: 0; margin-top: .5rem; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: inherit; font-weight: 600; text-decoration: none !important;
  border-radius: 999px; border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  cursor: pointer;
}
.btn--touch { min-height: 48px; padding: .7rem 1.2rem; font-size: .95rem; }
.btn--sm { min-height: 42px; padding: .5rem 1rem; font-size: .88rem; }
.btn--lg { min-height: 52px; padding: .85rem 1.45rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--accent { background: var(--orange); color: #fff !important; border-color: var(--orange); }
.btn--accent:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff !important; }
.btn--outline { background: transparent; color: var(--ink) !important; border-color: var(--ink); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange) !important; }
.btn--outline-light { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--ghost { background: var(--orange-soft); color: var(--orange-dark) !important; border-color: transparent; }
.btn--ghost:hover { background: #ffe4cc; }
.btn--ghost-dark { background: rgba(255,255,255,.1); color: #fff !important; border-color: rgba(255,255,255,.2); }

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 10% -10%, #fff1e4 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 2rem 1.1rem 2.5rem;
  display: grid; gap: 1.75rem;
}
.eyebrow {
  display: inline-block; margin: 0 0 .75rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--on-dark { color: #ffb36b; }
.hero-lead { font-size: 1.05rem; color: var(--muted); max-width: 38rem; }
.hero-address {
  display: flex; gap: .55rem; align-items: flex-start;
  font-size: .95rem; color: var(--ink-2); font-weight: 500;
  margin: 0 0 1.25rem;
}
.hero-address .ico { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px; color: var(--orange); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: .85rem; }
.hero-subcta { font-size: .9rem; color: var(--muted); margin: 0; }
.hero-subcta a { font-weight: 600; text-decoration: none; }
.hero-subcta a:hover { text-decoration: underline; }

.hero-panel {
  background: var(--ink);
  color: #f3f3f3;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  height: fit-content;
  align-self: start;
}
.hero-panel-body { padding: 1.15rem 1.15rem 1.2rem; }
.hero-panel-body h2 { color: #fff; font-size: 1.15rem; }
.panel-facts { list-style: none; padding: 0; margin: 0 0 1.1rem; }
.panel-facts li {
  padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .92rem; color: #cfcfcf;
}
.panel-facts strong { color: #fff; }
.hero-panel .btn { margin-bottom: .55rem; }
.hero-panel .btn:last-child { margin-bottom: 0; }

/* Trust */
.trust {
  background: var(--ink);
  color: #fff;
  border-bottom: 3px solid var(--orange);
}
.trust-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 1.15rem 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem 1rem;
}
.trust-item { text-align: center; padding: .35rem; }
.trust-num {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 1.15rem; color: var(--orange); letter-spacing: -.01em;
}
.trust-label { font-size: .8rem; color: #bdbdbd; }

/* Sections */
.section { padding: 3.25rem 0; }
.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.1rem; }
.section-inner.narrow { max-width: 760px; }
.section-head { margin-bottom: 1.75rem; }
.section-head--center { text-align: center; }
.section-lead { color: var(--muted); max-width: 36rem; margin: 0; }
.section-head--center .section-lead { margin-inline: auto; }

.services { background: var(--white); }
.services-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.svc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem 1.25rem;
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
}
.svc-card:hover { border-color: #f0c9a6; box-shadow: var(--shadow); background: #fff; }
.svc-icon {
  width: 48px; height: 48px; color: var(--orange);
  margin-bottom: .75rem;
}
.svc-icon svg { width: 100%; height: 100%; }
.svc-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.services-note { margin-top: 1.5rem; color: var(--muted); font-size: .95rem; }

.brands { background: var(--paper); border-block: 1px solid var(--line); }
.brand-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem;
}
.brand-list li {
  text-align: center; font-weight: 600; letter-spacing: .02em;
  padding: 1rem .75rem; border-radius: 12px;
  background: #fff; border: 1px solid var(--line);
}

.accessories { background: #fff; }
.acc-layout { display: grid; gap: 1.75rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.35rem; }
.check-list li {
  position: relative; padding: .45rem 0 .45rem 1.6rem; color: var(--ink-2);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .7rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
}
.acc-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: .85rem;
}
.acc-tile {
  min-height: 128px;
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  color: var(--ink);
  font-weight: 700;
  background: #f0efed !important;
  background-image: none !important;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  box-shadow: 0 10px 28px rgba(10,10,10,.06);
}
.acc-tile span {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.5vw, 1.7rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.acc-tile small {
  display: block;
  font-weight: 500;
  font-size: .95rem;
  color: var(--muted);
  opacity: 1;
  margin-top: 0;
}
.acc-tile--a { border-left-color: var(--orange); }
.acc-tile--b { border-left-color: #d97706; }
.acc-tile--c { border-left-color: #ea580c; }
.acc-tile--d { border-left-color: #c2410c; }

.hours { background: var(--paper); border-top: 1px solid var(--line); }
.hours-layout { display: grid; gap: 1.25rem; }
.hours-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
.hours-table th, .hours-table td {
  padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { font-weight: 600; width: 42%; }
.hours-table .is-late { background: #fff8f1; }
.hours-table .is-sun { background: #fff1e4; }
.hours-table .is-sun th, .hours-table .is-sun td { color: var(--orange-dark); font-weight: 700; }
.hours-aside { display: grid; gap: .85rem; }
.hours-highlight {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: 12px; padding: 1rem 1.1rem;
}
.hours-highlight--dark {
  background: var(--ink); color: #eee; border-color: transparent; border-left-color: var(--orange);
}
.hours-highlight h3 { margin-bottom: .35rem; }
.hours-highlight p { margin: 0; font-size: .92rem; color: var(--muted); }
.hours-highlight--dark p { color: #bdbdbd; }
.hours-highlight--dark h3 { color: #fff; }

.find-us { background: #fff; }
.find-grid { display: grid; gap: 1rem; }
.find-card, .map-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.2rem; background: var(--paper);
}
.find-phone { font-size: 1.35rem; font-weight: 700; margin: 1rem 0; }
.find-phone a { text-decoration: none; color: var(--ink); }
.find-phone a:hover { color: var(--orange); }
.find-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.map-card { padding: .75rem; overflow: hidden; }
.map-embed-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
  background: #e8e6e3;
}
.map-embed {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}
.map-embed-footer {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem; padding: .85rem .55rem .35rem;
}
.map-embed-footer p { margin: 0; font-weight: 600; color: var(--ink-2); font-size: .95rem; }

.faq { background: var(--paper); border-top: 1px solid var(--line); }
.faq-list { display: grid; gap: .65rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: .15rem 1rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; padding: 1rem 0;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  min-height: 48px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--orange); font-size: 1.25rem; font-weight: 500; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); margin: 0 0 1rem; }

.cta-band { background: #fff; padding-top: 1rem; }
.cta-box {
  background: var(--ink); color: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: 1.75rem 1.35rem;
  display: grid; gap: 1.25rem;
  border-top: 3px solid var(--orange);
}
.cta-box h2 { color: #fff; }
.cta-box p { color: #c8c8c8; margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .65rem; }

/* Footer */
.site-footer {
  background: #0a0a0a; color: #cfcfcf;
  padding: 2.75rem 0 1.25rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.1rem 2rem;
  display: grid; gap: 2rem;
}
.footer-brand p { max-width: 28rem; font-size: .92rem; }
.footer-cols { display: grid; gap: 1.35rem; grid-template-columns: 1fr; }
.footer-cols h3 {
  color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .55rem;
}
.footer-cols a { color: #fff; text-decoration: none; font-weight: 600; }
.footer-cols a:hover { color: var(--orange); }
.footer-cols .sun { color: #ffb36b; font-weight: 700; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 1rem 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem;
  font-size: .8rem; color: #8a8a8a;
}
.staging-note { color: #6a6a6a; }

/* FAB */
.fab-call {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 40;
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--orange); color: #fff !important; text-decoration: none !important;
  padding: 0 1.15rem; min-height: 52px; border-radius: 999px;
  font-weight: 700; box-shadow: 0 10px 30px rgba(232,119,34,.45);
}
.fab-call:hover { background: var(--orange-dark); color: #fff !important; }

@media (min-width: 720px) {
  body { padding-bottom: 0; }
  .fab-call { display: none; }
  .trust-inner { grid-template-columns: repeat(5, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-list { grid-template-columns: repeat(4, 1fr); }
  .hours-layout { grid-template-columns: 1.2fr .8fr; align-items: start; }
  .find-grid { grid-template-columns: 1fr 1.1fr; }
  .acc-layout { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .cta-box { grid-template-columns: 1.4fr auto; align-items: center; padding: 2rem 2rem; }
}

@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .header-nav, .header-actions { display: flex; }
  .logo-img--header { width: 150px; }
  .hero-inner { grid-template-columns: 1.35fr .9fr; align-items: start; padding: 3rem 1.1rem 3.5rem; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid .svc-card:last-child { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1.3fr 1.5fr; }
}

.preview-banner{display:none!important}
.site-header{top:0!important}

.hero-logo-wrap{display:none!important}
