/* =========================================================
   Lafayette Tech Store — Redesign
   Mobile-first, local-SEO focused, walk-in + online-booker
   ========================================================= */

:root {
  --navy: #141414;
  --navy-700: #202020;
  --blue: #141414;
  --blue-600: #000000;
  --amber: #ffc400;
  --amber-600: #b8860b;
  --ink: #16202b;
  --muted: #5b6b7b;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --bg-soft-2: #fff4cc;
  --green: #141414;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(14, 42, 71, .06);
  --shadow: 0 10px 30px rgba(14, 42, 71, .10);
  --shadow-lg: 0 24px 60px rgba(14, 42, 71, .18);
  --maxw: 1140px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); background: var(--bg-soft-2);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-weight: 700; font-size: 1rem; padding: 13px 24px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: .18s ease; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: #141414; box-shadow: 0 8px 20px rgba(255,196,0,.45); }
.btn-primary:hover { background: #e6b000; color: #141414; }
.btn-secondary { background: var(--blue); color: #fff; }
.btn-secondary:hover { background: var(--blue-600); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-light:hover { background: rgba(255,255,255,.24); color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy); color: #e8e8e8; font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .tb-left { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--navy); font-size: 1.15rem; }
.brand:hover { text-decoration: none; }
.brand .logo {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
}
.brand small { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .94rem; padding: 9px 12px; border-radius: 9px; }
.nav-links a:hover { background: var(--bg-soft); text-decoration: none; color: var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* dropdown */
.has-drop { position: relative; }
.drop { position: absolute; top: calc(100% + 6px); left: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 8px; min-width: 230px; display: none; }
.has-drop:hover .drop { display: block; }
.drop a { display: block; padding: 10px 12px; border-radius: 9px; font-size: .92rem; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: radial-gradient(1200px 500px at 80% -10%, rgba(255,196,0,.20), transparent 60%), linear-gradient(135deg, #000 0%, #161616 55%, #242424 100%); }
.hero .container { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 78px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.hero h1 { color: #fff; }
.hero p { color: #e6e6e6; font-size: 1.18rem; max-width: 560px; }
.hero .pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #eaf2fc; padding: 7px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,.97); color: var(--ink); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--navy); }
.hero-card ul { list-style: none; margin: 0; padding: 0; }
.hero-card li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-weight: 600; font-size: .95rem; }
.hero-card li:last-child { border-bottom: 0; }
.check { color: var(--green); flex: none; margin-top: 2px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy-700); color: #e8e8e8; }
.trust .container { display: flex; justify-content: space-around; gap: 16px; flex-wrap: wrap; padding: 22px 20px; text-align: center; }
.trust .stat b { display: block; color: #fff; font-size: 1.5rem; font-weight: 800; }
.trust .stat span { font-size: .85rem; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: .2s; height: 100%;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: #d4e2f3; }
.card .ico {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--bg-soft-2); color: var(--blue); margin-bottom: 14px;
}
.card h3 a { color: var(--navy); }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.card .more { font-weight: 700; font-size: .9rem; color: var(--blue); display: inline-flex; gap: 6px; align-items: center; }
.card.link-card { display: flex; flex-direction: column; }
.card.link-card .more { margin-top: auto; }

/* ---------- Service detail ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.media-box { background: linear-gradient(135deg, #f3f3f3, #e6e6e6); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow-sm); }
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 0; }
.feature-list .ic { color: var(--green); flex: none; margin-top: 3px; }
.price-tag { color: var(--amber-600); font-weight: 800; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px 24px 70px; position: relative; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 18px; top: 22px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800;
}

/* ---------- Products ---------- */
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: .2s; display: flex; flex-direction: column; }
.product:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product .thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, #f3f3f3, #e6e6e6); display: grid; place-items: center; color: var(--ink); }
.product .body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product .name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.product .price { color: var(--amber-600); font-weight: 800; font-size: 1.3rem; }
.product .meta { font-size: .82rem; color: var(--muted); }
.badge { display: inline-block; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: #fff4cc; color: #141414; }
.badge.warn { background: #f3f3f3; color: #141414; }

/* ---------- CTA band ---------- */
.cta-band { background: radial-gradient(900px 400px at 20% 0%, rgba(255,196,0,.22), transparent 60%), linear-gradient(135deg, #000, #1d1d1d); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e6e6e6; max-width: 620px; margin: 0 auto 24px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- FAQ ---------- */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--blue); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .a { padding: 16px 22px; color: var(--muted); }

/* ---------- Discount banner ---------- */
.disc { background: linear-gradient(135deg, var(--amber), #ffd84d); color: #141414; border-radius: var(--radius-lg); padding: 30px; display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.disc h3 { color: #141414; margin: 0; }
.disc p { margin: 4px 0 0; color: #3a3a3a; }

/* ---------- Booking page ---------- */
.book-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--shadow); }
.book-wrap iframe { width: 100%; border: 0; border-radius: 12px; min-height: 700px; background: transparent; }
.book-note { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }

/* ---------- Contact ---------- */
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--bg-soft-2); color: var(--blue); display: grid; place-items: center; flex: none; }
.info-list b { color: var(--navy); }
.map-embed { border: 0; width: 100%; min-height: 320px; border-radius: var(--radius); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.hours-table tr.today td { color: var(--blue); }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: radial-gradient(800px 300px at 85% -20%, rgba(255,196,0,.20), transparent 60%), linear-gradient(135deg, #000, #1f1f1f); color: #fff; padding: 54px 0; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #e6e6e6; max-width: 640px; }
.crumbs { font-size: .85rem; color: #b3b3b3; margin-bottom: 12px; }
.crumbs a { color: #e8e8e8; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c9c9c9; padding: 56px 0 26px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.site-footer a { color: #e2e2e2; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; font-size: .92rem; }
.foot-brand .brand { color: #fff; }
.foot-brand .brand small { color: #b0b0b0; }
.foot-brand p { font-size: .92rem; color: #b0b0b0; margin-top: 14px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem; color: #9a9a9a; }

/* ---------- Float call (mobile) ---------- */
.float-call { display: none; position: fixed; bottom: 16px; right: 16px; z-index: 60; background: var(--amber); color: #141414; width: 58px; height: 58px; border-radius: 50%; place-items: center; box-shadow: var(--shadow-lg); }
.float-call:hover { color: #141414; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 30px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 760px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 10px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; border-radius: 9px; }
  .has-drop .drop { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 12px; min-width: 0; }
  .has-drop .drop a { font-size: .88rem; color: var(--muted); }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .topbar .tb-left { gap: 12px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .trust .container { gap: 18px; }
  .trust .stat { flex: 1 1 40%; }
  .cta-band, .disc { padding: 30px 22px; }
  .float-call { display: grid; }
  .section { padding: 48px 0; }
}
@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact form ---------- */
.contact-form{max-width:760px;margin:24px auto 0;display:grid;gap:16px}
.contact-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.contact-form label{display:flex;flex-direction:column;gap:6px;font-weight:600;font-size:.92rem;color:var(--ink)}
.contact-form input,.contact-form textarea{font:inherit;padding:11px 13px;border:1px solid var(--line);border-radius:10px;background:#fff;color:var(--ink);width:100%}
.contact-form textarea{resize:vertical}
.contact-form input:focus,.contact-form textarea:focus{outline:2px solid var(--accent);border-color:var(--accent)}
.contact-form button{justify-self:start;margin-top:4px}
@media(max-width:600px){.contact-form .form-row{grid-template-columns:1fr}}

/* ---------- Logo image ---------- */
.brand .logo-img{height:40px;width:auto;display:block;flex:none}
@media(max-width:760px){.brand .logo-img{height:36px}}

/* ---------- Repair Course page ---------- */
.seats{margin-top:18px;font-weight:800;color:var(--amber)}
.trust-bar{background:var(--navy-700);color:#e8e8e8}
.trust-bar .container{display:flex;flex-wrap:wrap;gap:14px 30px;justify-content:center;padding:20px;font-size:.92rem;text-align:center}
.trust-bar b{color:#fff}
.mods{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:24px}
.mod{display:flex;gap:12px;background:#fff;border:1px solid var(--line);border-radius:10px;padding:14px 16px;font-size:.95rem;box-shadow:var(--shadow-sm)}
.mod .n{color:var(--amber-600);font-weight:800;min-width:22px}
@media(max-width:680px){.mods{grid-template-columns:1fr}}
.tiers{display:grid;grid-template-columns:1fr 1.1fr;gap:22px;align-items:stretch;margin-top:30px}
.tier{background:#fff;border:1px solid var(--line);border-radius:16px;padding:30px;display:flex;flex-direction:column;box-shadow:var(--shadow-sm)}
.tier.flag{border:2px solid var(--amber);box-shadow:0 0 0 4px rgba(255,196,0,.10);position:relative}
.flag-tag{position:absolute;top:-12px;right:22px;background:var(--amber);color:#141414;font-weight:800;font-size:.72rem;padding:5px 12px;border-radius:20px;letter-spacing:.04em}
.tier h3{font-size:1.25rem}
.tier .sub{color:var(--muted);font-size:.92rem;margin:4px 0 16px}
.tier .price{font-size:2.4rem;font-weight:800;color:var(--navy);letter-spacing:-.02em}
.tier .price small{font-size:1rem;color:var(--muted);font-weight:500}
.tier .was{color:var(--muted);text-decoration:line-through;font-size:1.05rem;margin-left:8px}
.tier ul{list-style:none;margin:18px 0 24px;padding:0;display:flex;flex-direction:column;gap:10px}
.tier li{padding-left:26px;position:relative;font-size:.95rem;color:var(--ink)}
.tier li:before{content:"\2713";position:absolute;left:0;color:var(--amber-600);font-weight:800}
.tier .btn{margin-top:auto;text-align:center}
@media(max-width:680px){.tiers{grid-template-columns:1fr}}
.founder-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:34px;align-items:center}
.founder-card{background:#fff;border:1px solid var(--line);border-radius:14px;padding:28px;box-shadow:var(--shadow-sm)}
.founder-card .ph{width:72px;height:72px;border-radius:50%;background:var(--amber);color:#141414;display:grid;place-items:center;font-weight:800;font-size:1.3rem;margin-bottom:14px}
.course-quote{font-size:1.2rem;line-height:1.55;color:var(--ink);margin-top:12px}
@media(max-width:760px){.founder-grid{grid-template-columns:1fr}}
.contact-form select{font:inherit;padding:11px 13px;border:1px solid var(--line);border-radius:10px;background:#fff;color:var(--ink);width:100%}

/* Form fields: stronger border so inputs are clearly visible on white sections */
.contact-form input,.contact-form textarea,.contact-form select{border-color:#c3ccd6;box-shadow:0 1px 2px rgba(0,0,0,.04)}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:#9aa6b2}
