/* =========================
   Fish The Mechanic — Light Theme
   Mobile-first • easier to read • same class names
   ========================= */

/* ---- Design tokens ---- */
:root{
  /* Light theme surfaces */
  --bg: #f6f7fb;
  --bg2:#eef1f7;
  --panel:#ffffff;
  --panel2:#f8fafc;

  /* Text */
  --text:#111827;       /* slate-900 */
  --muted:#4b5563;      /* slate-600 */
  --muted2:#6b7280;     /* slate-500 */

  /* Lines + shadows */
  --line: rgba(17,24,39,.10);
  --line2: rgba(17,24,39,.14);
  --shadow: 0 18px 45px rgba(17,24,39,.10);
  --shadow2: 0 10px 22px rgba(17,24,39,.08);

  /* Brand */
  --brand:#f0c24b;   /* warm gold */
  --brand2:#eaa92a;  /* deeper gold */
  --brandInk:#3b2a05;

  /* Layout */
  --radius:18px;
  --radius2:14px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";

  /* Motion */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* ---- Base ---- */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  line-height:1.55;

  /* Subtle “premium” background without being dark */
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(240,194,75,.22), transparent 60%),
    radial-gradient(650px 450px at 85% 0%, rgba(234,169,42,.16), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 18px; }

/* A11y focus */
:focus-visible{
  outline: 3px solid rgba(240,194,75,.55);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ---- Topbar / Nav ---- */
.topbar{
  position:sticky; top:0; z-index:999;
  background: rgba(246,247,251,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.2px;
}

.logo{
  width:34px; height:34px;
  border-radius:12px;
  background: radial-gradient(circle at 30% 30%, var(--brand), var(--brand2));
  box-shadow: 0 12px 24px rgba(240,194,75,.25);
  flex:0 0 auto;
}

.menu{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0;
  margin:0;
}
.menu > li{ list-style:none; position:relative; }
.menu > li > a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  font-weight:700;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.menu > li > a:hover{
  background: rgba(17,24,39,.06);
  color:var(--text);
}

.caret{ font-size:12px; opacity:.7; }

/* Dropdown (still hover-based like yours) */
.dropdown{
  position:absolute;
  top:46px; left:0;
  min-width:240px;
  background: rgba(255,255,255,.98);
  border:1px solid var(--line2);
  border-radius:16px;
  box-shadow: var(--shadow);
  padding:10px;
  display:none;
}
.dropdown a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  font-weight:700;
  white-space:nowrap;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.dropdown a:hover{
  background: rgba(240,194,75,.16);
  color:var(--text);
}
.menu > li:hover .dropdown{ display:block; }

.cta{ display:flex; align-items:center; gap:10px; }
.mobile-toggle{ display:none; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.75);
  color:var(--text);
  cursor:pointer;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .12s var(--ease), border-color .12s var(--ease);
  white-space:nowrap;
  box-shadow: 0 8px 18px rgba(17,24,39,.06);
}
.btn:hover{
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 14px 26px rgba(17,24,39,.10);
}
.btn-primary{
  background: linear-gradient(180deg, rgba(240,194,75,1), rgba(234,169,42,1));
  color: var(--brandInk);
  border-color: rgba(234,169,42,.55);
  box-shadow: 0 18px 40px rgba(234,169,42,.22);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 24px 50px rgba(234,169,42,.26);
}
.btn-outline{
  background: transparent;
  border-color: rgba(234,169,42,.45);
  color: #7a5206;
  box-shadow:none;
}
.btn-outline:hover{
  background: rgba(240,194,75,.14);
  border-color: rgba(234,169,42,.55);
}

/* ---- Cards / surfaces ---- */
.card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---- Hero ---- */
.hero{ padding:34px 0 18px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1fr; /* mobile-first */
  gap:14px;
  align-items:stretch;
}

.hero-main{ padding:18px; }
.hero-side{ padding:16px; display:flex; flex-direction:column; gap:10px; }

h1{
  margin:0 0 10px;
  font-size: clamp(26px, 5.5vw, 44px);
  line-height:1.12;
  letter-spacing:-.6px;
}

.lead{
  color:var(--muted);
  font-size:16px;
  max-width:62ch;
  margin:0 0 16px;
}

.hero-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }

.quicklinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  color: var(--muted);
  font-weight:800;
  font-size:13px;
  box-shadow: 0 8px 18px rgba(17,24,39,.06);
  transition: transform .12s var(--ease), background .12s var(--ease), border-color .12s var(--ease);
}
.pill:hover{
  transform: translateY(-1px);
  background:#fff;
  border-color: rgba(234,169,42,.35);
  color: var(--text);
}

/* Side mini cards */
.hero-side .mini{
  border-radius:16px;
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  padding:14px;
  box-shadow: var(--shadow2);
}
.mini .kicker{
  color: var(--muted2);
  font-weight:900;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.mini .big{ margin-top:6px; font-weight:950; font-size:16px; }
.mini .small{ margin-top:6px; color:var(--muted); font-weight:650; font-size:13px; }

/* ---- Sections ---- */
section{ padding:22px 0; }
.section-head{ margin-bottom:14px; }

h2{
  margin:0 0 8px;
  font-size: clamp(20px, 4.4vw, 28px);
  letter-spacing:-.3px;
}
.sub{ margin:0; color:var(--muted); max-width:80ch; }

/* ---- Grid system ---- */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.col-4{ grid-column: span 12; } /* mobile-first */
.col-6{ grid-column: span 12; }
.col-12{ grid-column: span 12; }

/* ---- Tiles (service/location cards) ---- */
.tile{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), border-color .12s var(--ease), background .12s var(--ease);
  min-height:120px;

  /* little unique touch: subtle gold “edge” on hover */
  position:relative;
  overflow:hidden;
}
.tile::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:20px;
  pointer-events:none;
  opacity:0;
  background:
    radial-gradient(600px 120px at 20% 0%, rgba(240,194,75,.25), transparent 60%),
    radial-gradient(600px 120px at 80% 100%, rgba(234,169,42,.18), transparent 60%);
  transition: opacity .12s var(--ease);
}
.tile:hover{
  transform: translateY(-2px);
  background:#fff;
  border-color: rgba(234,169,42,.35);
  box-shadow: 0 18px 35px rgba(17,24,39,.12);
}
.tile:hover::after{ opacity:1; }

.tile h3{ margin:0 0 6px; font-size:16px; }
.tile p{ margin:0; color:var(--muted); font-size:14px; }
.tile .link{
  margin-top:10px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  color: #7a5206;
  font-weight:900;
  font-size:13px;
}
.tile .link:hover{ text-decoration: underline; }

/* ---- About + Testimonial ---- */
.split{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.box{ padding:18px; }

.stars{
  letter-spacing:2px;
  color: #b77b09;
  font-weight:950;
}
.quote{ color:var(--muted); margin-top:10px; }
.who{ margin-top:10px; font-weight:900; }

/* ---- FAQ ---- */
.faq{ display:grid; gap:10px; }
details{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.82);
  padding:12px 14px;
  box-shadow: var(--shadow2);
}
summary{
  cursor:pointer;
  font-weight:950;
  color:var(--text);
  list-style:none;
}
summary::-webkit-details-marker{ display:none; }
details p{ margin:10px 0 0; color:var(--muted); }

/* ---- Footer ---- */
footer{
  margin-top:18px;
  border-top:1px solid var(--line);
  padding:22px 0 34px;
  color:var(--muted);
  background: rgba(255,255,255,.45);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  align-items:start;
}
.foot-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.foot-links a{
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:12px;
  background: rgba(255,255,255,.75);
  transition: background .12s var(--ease), transform .12s var(--ease), border-color .12s var(--ease);
}
.foot-links a:hover{
  transform: translateY(-1px);
  background:#fff;
  border-color: rgba(234,169,42,.35);
  color:var(--text);
}

/* ---- Responsive upgrades ---- */
@media (min-width: 720px){
  .wrap{ padding:0 20px; }
  .col-4{ grid-column: span 6; }
  .col-6{ grid-column: span 6; }
  .footer-grid{ grid-template-columns: 1.2fr .8fr; }
}

@media (min-width: 920px){
  .hero{ padding:56px 0 26px; }
  .hero-grid{ grid-template-columns: 1.25fr .85fr; gap:22px; }
  .split{ grid-template-columns: 1.1fr .9fr; gap:14px; }
  .col-4{ grid-column: span 4; }
}

/* Keep your existing mobile menu behavior (menu hidden on smaller screens) */
@media (max-width: 920px){
  .menu{ display:none; }
  .mobile-toggle{ display:inline-flex; }
}
.link-list{
  margin: 10px 0 0;
  padding-left: 18px;
}
.link-list li{
  margin: 8px 0;
}
.internal-links .link{
  font-weight: 800;
}
.dropdown a:first-child{
  border-bottom: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
  padding-bottom: 12px;
  margin-bottom: 6px;
}
