/* Lake Fix site v2 — logo-forward, photo-led */
:root {
  --navy: #0c3a56;
  --navy-deep: #082a3f;
  --navy-soft: #e8f1f6;
  --orange: #e86a1a;
  --orange-deep: #c9540f;
  --sand: #f7f3ec;
  --ink: #1a1a1a;
  --muted: #5a6570;
  --white: #ffffff;
  --border: rgba(12, 58, 86, 0.14);
  --radius: 16px;
  --shadow: 0 12px 36px rgba(8, 42, 63, 0.1);
  --max: 72rem;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.5;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
a:hover { color: var(--orange-deep); }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Header (nav only — logo lives in hero/footer) ───────── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 100;
  font-weight: 800;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
}
.header-no-logo {
  flex-wrap: wrap;
}
.header-no-logo .nav {
  flex: 1;
  justify-content: flex-start;
}
.header-call {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 800;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  white-space: nowrap;
}
.header-call:hover { background: var(--orange-deep); color: #fff !important; }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
}
.nav a:hover, .nav a[aria-current="page"] {
  background: var(--navy-soft);
}

/* ── Hero with photo + oversized logo ─────────────────────── */
.hero {
  position: relative;
  min-height: min(72vh, 560px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 42, 63, 0.88) 0%,
    rgba(12, 58, 86, 0.72) 48%,
    rgba(12, 58, 86, 0.45) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2.5rem 0 2.75rem;
}
.hero-logo {
  width: clamp(140px, 22vw, 220px);
  height: clamp(140px, 22vw, 220px);
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.hero .lede {
  margin: 0 0 1.1rem;
  font-size: 1.12rem;
  max-width: 34rem;
  opacity: 0.95;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font: inherit;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-deep); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); }
.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy-deep); }

/* ── Social / review bar — brand-style icon buttons ───────── */
.social-bar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.65rem 0;
}
.social-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.88rem;
}
.social-bar-hint { opacity: 0.75; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
/* Official-looking platform buttons */
.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  border: none;
  color: #fff !important;
  line-height: 1;
}
.soc-btn svg { display: block; flex-shrink: 0; }
.soc-btn.google { background: #ea4335; }
.soc-btn.google:hover { background: #d33426; color: #fff !important; }
.soc-btn.facebook { background: #1877f2; }
.soc-btn.facebook:hover { background: #0f66d8; color: #fff !important; }
.soc-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.soc-btn.instagram:hover { filter: brightness(1.05); color: #fff !important; }
.soc-btn.nextdoor { background: #8ed500; color: #1a1a1a !important; }
.soc-btn.nextdoor:hover { filter: brightness(0.95); }
.social-links-footer .soc-btn { font-size: 0.82rem; padding: 0.4rem 0.65rem; }

/* Sticky mobile conversion bar */
.sticky-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(8, 42, 63, 0.96);
  border-top: 1px solid rgba(255,255,255,0.12);
  gap: 0.5rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.2);
}
.sticky-call-btn {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  line-height: 1.15;
}
.sticky-call-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.9; }
.sticky-call-num { font-size: 1rem; }
.sticky-req-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy) !important;
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  font-size: 0.92rem;
}
@media (max-width: 760px) {
  .sticky-call { display: flex; }
  body.has-sticky-call { padding-bottom: 4.75rem; }
  .header-call { font-size: 0.88rem; padding: 0.55rem 0.75rem; }
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 3rem 0; }
.section-head {
  margin-bottom: 1.35rem;
  max-width: 38rem;
}
.section-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-head p { margin: 0; color: var(--muted); }
.bg-white { background: var(--white); }
.bg-navy-soft { background: var(--navy-soft); }

/* Home: three best photos only */
.home-services-head { max-width: 36rem; }
.featured-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.featured-three figure {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4 / 3;
}
.featured-three img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-three figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(transparent, rgba(8, 42, 63, 0.82));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.home-work-cta {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.featured-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.featured-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.hero-micro {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  opacity: 0.88;
  font-weight: 600;
}
.hero-micro a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* Conversion band */
.convert-band { padding: 2.5rem 0; }
.convert-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}
.convert-inner h2 { margin: 0 0 0.35rem; font-size: 1.45rem; color: #fff; }
.convert-inner p { margin: 0; opacity: 0.92; max-width: 28rem; }
.convert-hours { margin-top: 0.45rem !important; font-size: 0.9rem; font-weight: 700; opacity: 0.85 !important; }
.convert-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.btn-lg { padding: 0.95rem 1.35rem; font-size: 1.05rem; }

/* Gallery (work page) */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.65rem;
}
.gallery figure {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  min-height: 160px;
}
.gallery figure:first-child {
  grid-row: span 2;
  min-height: 340px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: inherit;
}
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.8rem;
  background: linear-gradient(transparent, rgba(8, 42, 63, 0.85));
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}
.gallery-note {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.08rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 0.4rem;
}
.card-photo {
  margin: -1.15rem -1.15rem 0.85rem;
  height: 150px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.quote {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.quote .stars {
  color: var(--orange);
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.quote blockquote {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
}
.quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
}
.review-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.reviews-cta-card {
  max-width: 40rem;
}
.reviews-cta-card .reviews-lead {
  margin: 0 0 0.25rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.5;
}
.about-points {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink);
}
.about-points li {
  margin-bottom: 0.55rem;
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #cfe0ea;
}
#service-map {
  height: min(62vh, 480px);
  width: 100%;
  z-index: 1;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.85rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}
.map-legend .swatch {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  background: rgba(232, 106, 26, 0.35);
  border: 2px solid var(--orange);
  vertical-align: middle;
  margin-right: 0.35rem;
}

/* Form */
form.contact-form { display: grid; gap: 0.75rem; }
.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}
.form-status { min-height: 1.4rem; font-weight: 700; font-size: 0.95rem; }
.form-status.ok { color: #1b6b3a; }
.form-status.err { color: #a32020; }
.form-note { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours th, .hours td {
  text-align: left;
  padding: 0.5rem 0.35rem;
  border-bottom: 1px solid var(--border);
}
.hours th { color: var(--muted); font-weight: 700; width: 40%; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 0;
}
.page-hero-inner {
  display: block;
}
.page-hero h1 { margin: 0 0 0.3rem; font-size: clamp(1.55rem, 3vw, 2rem); }
.page-hero p { margin: 0; opacity: 0.92; max-width: 36rem; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: 2rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
  flex-shrink: 0;
}
.site-footer h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: #fff;
}
.site-footer a { color: #b8d8ea; text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.35rem; }
.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero h1 { max-width: none; }
  .hero-actions { justify-content: center; }
  .featured-three { grid-template-columns: 1fr; }
  .featured-three figure { aspect-ratio: 16 / 10; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure:first-child { grid-row: span 1; min-height: 220px; }
  .cards, .quotes, .split, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .brand-logo { width: 72px; height: 72px; }
}
