:root{--brand:#C81D25;--ink:#0E0F10;--muted:#A0A3AA;--ring:#0EA5E9}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,Segoe UI,Helvetica,Arial,sans-serif;background:#fff;color:var(--ink)}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Glass header */
.header{position:fixed;top:0;left:0;right:0;z-index:60;background:linear-gradient(180deg, rgba(10,10,12,.88), rgba(10,10,12,.78));backdrop-filter:blur(10px) saturate(140%);border-bottom:1px solid rgba(255,255,255,.06);box-shadow:0 8px 24px rgba(0,0,0,.28), inset 0 -1px 0 rgba(255,255,255,.04)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.nav nav{display:flex;align-items:center;gap:16px;flex-wrap:nowrap;justify-content:flex-end}
.logo img{height:86px}
.nav nav a{color:#fff;opacity:.95}
.nav a:hover{opacity:1}

/* Buttons */
.btn{display:inline-block;border-radius:12px;font-weight:900}
.btn.primary{
  background:linear-gradient(180deg, #D61E26, #A81218);
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 10px 24px rgba(200,29,37,.22), 0 2px 0 rgba(0,0,0,.08);
  padding:12px 18px;
  letter-spacing:.2px;
  transition:transform .1s ease, box-shadow .2s ease, filter .2s ease, text-shadow .2s ease;
}
.btn.primary:hover{transform:translateY(-1px);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 14px 32px rgba(200,29,37,.28),0 3px 0 rgba(0,0,0,.1);filter:saturate(1.05);text-shadow:0 0 8px rgba(255,255,255,.55)}
.btn.primary:active{transform:translateY(0);box-shadow:inset 0 1px 0 rgba(255,255,255,.18),0 8px 18px rgba(200,29,37,.2)}
/* Slimmer header CTA */
.nav .btn.primary{padding:9px 16px;font-size:14px;border-radius:12px;box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 8px 18px rgba(200,29,37,.18)}
/* Outline button for Contact */
.btn.outline{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.92);padding:9px 16px;font-size:14px;border-radius:12px;transition:background .2s ease,color .2s ease,border-color .2s ease,transform .1s ease}
.btn.outline:hover{background:rgba(255,255,255,.1);transform:translateY(-1px)}
/* Pulse only in hero */
@keyframes ctaPulse{0%{box-shadow:inset 0 1px 0 rgba(255,255,255,.22),0 10px 24px rgba(200,29,37,.22),0 2px 0 rgba(0,0,0,.08)}50%{box-shadow:inset 0 1px 0 rgba(255,255,255,.24),0 16px 36px rgba(200,29,37,.30),0 3px 0 rgba(0,0,0,.1)}100%{box-shadow:inset 0 1px 0 rgba(255,255,255,.22),0 10px 24px rgba(200,29,37,.22),0 2px 0 rgba(0,0,0,.08)}}
.actions .btn.primary{animation:ctaPulse 2.6s ease-in-out infinite}

.hero{min-height:92svh;display:grid;place-items:center;position:relative;color:#fff;text-align:center;padding-top:66px;background-position:center;background-size:cover;background-repeat:repeat;background-color:#0d0e10}
.hero .overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.76))}
.hero .inner{position:relative;z-index:1}
.hero h1{font-size:clamp(34px,6vw,72px);line-height:1.02;margin:0 0 10px;text-transform:uppercase;letter-spacing:.5px}
.hero .subtitle{max-width:780px;margin:0 auto 16px;font-size:18px;color:#f1f1f1}
.actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

.section{padding:44px 0}
.grid{display:grid;gap:18px}
.cols-3{grid-template-columns:1fr}
@media(min-width:900px){.cols-3{grid-template-columns:repeat(3,1fr)}}
.card{background:#fff;border:1px solid #eee;border-radius:16px;padding:18px;box-shadow:0 12px 30px rgba(17,17,17,.06)}
.card h3{margin-top:2px}
.strip{background:#0f0f10;color:#fff;text-align:center;padding:12px 10px;font-weight:800}

/* Footer */
.footer.clean3{background:#0b0c0e;color:#e8e8ea;border-top:1px solid rgba(255,255,255,.06)}
.footer.clean3 .rows{display:grid;gap:26px;padding:28px 20px}
@media(min-width:900px){.footer.clean3 .rows{grid-template-columns:1.2fr 1fr 1fr}}
.footer.clean3 h4{margin:0 0 10px;color:#fff;letter-spacing:.2px}
.footer.clean3 .tag{margin:0 0 10px;color:#cfd0d4}
.footer.clean3 .list{margin:0;padding:0;list-style:none}
.footer.clean3 .list li{margin:8px 0;display:flex;align-items:flex-start;gap:10px}
.footer.clean3 .list.bullets li::before{content:'';width:8px;height:8px;border-radius:999px;background:#C81D25;margin-top:7px;flex:0 0 auto;box-shadow:0 0 0 2px rgba(200,29,37,.15)}
.footer.clean3 a{color:#e0e0e2}
.footer.clean3 a:hover{color:#fff;text-decoration:underline}
.footer.clean3 .copy{border-top:1px solid rgba(255,255,255,.06);padding:12px 20px;font-size:14px;color:#b9b9bd}

input,textarea,select{padding:12px;border:1px solid #ddd;border-radius:10px;font:inherit;width:100%}
input:focus,textarea:focus,select:focus{outline:2px solid var(--ring);border-color:var(--ring)}
.small{color:#666}

/* === Services Grid & Cards === */
.section{padding:60px 0}
.section .section-head{margin-bottom:20px}
.section .section-head h2{font-size:32px;margin:0 0 8px}
.section .section-head .muted{color:#666}

.grid{display:grid;gap:20px}
.grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:980px){.grid.cols-3{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:620px){.grid.cols-3{grid-template-columns:1fr}}

.grid.cards-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:980px){.grid.cards-3{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:620px){.grid.cards-3{grid-template-columns:1fr}}

.card{background:#fff;border:1px solid #e7e7ea;border-radius:14px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.04);display:flex;flex-direction:column}
.card img{width:100%;height:200px;object-fit:cover;background:#f0f2f4}
.card .card-body{padding:16px}
.card h3{margin:0 0 8px;font-size:20px}
.card p{color:#555;margin:0 0 10px}

.card.compact img{height:160px}
.card.compact .card-body{padding:12px}
.card.compact h3{font-size:18px;margin:0 0 6px}
.card.compact p{font-size:14px;margin:0}

.center{text-align:center}

.hero.slim{padding:60px 0;background:#0b0c10;color:#fff}
.hero.slim .lead{color:#d3d6da}

.hero{position:relative;background-size:cover;background-position:center}
.hero .overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,0,0,.55),rgba(0,0,0,.35))}
.hero .inner{position:relative;padding:60px 0;color:#fff}
.hero .subtitle{color:#e7e8ea}

.checklist{margin:10px 0 0 0;padding:0 0 0 22px}
.checklist li{margin:6px 0;color:#444}

.cta{background:linear-gradient(135deg,#e53935,#c62828);color:#fff;padding:32px 0}
.cta .cta-inner{display:flex;align-items:center;justify-content:space-between;gap:16px}
.cta .btn{background:#fff;color:#c62828;border:0}
.cta .btn.primary{background:#0b0c10;color:#fff}
@media (max-width:640px){.cta .cta-inner{flex-direction:column;align-items:flex-start}}

/* Homepage services row */
.services-row{display:grid;grid-template-columns:1fr 2fr;gap:24px;align-items:center}
.services-right h2{margin:0 0 8px;font-size:28px}
.services-right .muted{margin:0 0 14px;color:#666}
.grid.three-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
@media (max-width:980px){
  .services-row{grid-template-columns:1fr}
  .grid.three-cards{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:620px){
  .grid.three-cards{grid-template-columns:1fr}
}

/* active nav state */
nav a.active{font-weight:700;text-decoration:underline}


/* === Dark gradient background for middle services section === */

#services .card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f1f1f1;
}
#services .card h3 {
  color: #fff;
}
#services .card p {
  color: #ddd;
}
#services .btn {
  background: #fff;
  color: #0b0c10;
}


/* === Light tone background for middle services section === */
#services {
  background: linear-gradient(180deg, rgba(245,247,249,1) 0%, rgba(240,243,246,1) 100%);
  color: #0b0c10;
}
#services .card {
  background: #fff;
  border: 1px solid #e3e6ea;
  color: #0b0c10;
}
#services .card h3 {
  color: #0b0c10;
}
#services .card p {
  color: #333;
}


/* === About page refinements (tight spacing, dividers, accents) === */
body.about .section{background:linear-gradient(180deg,rgba(248,249,251,1) 0%,rgba(243,245,247,1) 100%);padding:36px 0;transition:background 0.3s ease;} /* tighter than default 60px */
@media (max-width: 640px){body.about .section{background:linear-gradient(180deg,rgba(248,249,251,1) 0%,rgba(243,245,247,1) 100%);padding:36px 0;transition:background 0.3s ease;}}

body.about .section + .section{border-top:1px solid #e6e8ec}

body.about h2{margin:0 0 8px}
body.about h3{margin:0 0 6px}
body.about p{margin:8px 0 12px}

body.about h2::after{
  content:"";
  display:block;
  width:56px;
  height:3px;
  margin-top:8px;
  border-radius:2px;
  background:linear-gradient(180deg,#D61E26,#A81218);
}

body.about figure{margin:12px 0}
body.about figure img{display:block;width:100%;height:auto;border-radius:12px;border:1px solid #e3e6ea}
body.about .muted{color:#61656b}


/* === About page subtle alternating backgrounds === */

body.about .section{background:linear-gradient(180deg,rgba(248,249,251,1) 0%,rgba(243,245,247,1) 100%);padding:36px 0;transition:background 0.3s ease;}

/* === Reviews section === */
.reviews .section-head h2{margin-bottom:6px}
.reviews-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.review-card{background:#fff;border:1px solid #e7e7ea;border-radius:14px;box-shadow:0 4px 20px rgba(0,0,0,.04);padding:16px;display:flex;flex-direction:column;gap:10px}
.review-card .stars{letter-spacing:2px;font-size:18px;color:#f5a623}
.review-card .quote{color:#333;margin:0}
.review-card .byline{color:#666;font-size:14px}
@media (max-width:980px){.reviews-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:620px){.reviews-grid{grid-template-columns:1fr}}


/* === Reviews with profile photos === */
.review-card{background:#fff;border:1px solid #e7e7ea;border-radius:14px;box-shadow:0 4px 20px rgba(0,0,0,.04);padding:16px;display:flex;flex-direction:column;gap:10px}
.review-header{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.review-header img{width:40px;height:40px;border-radius:50%;object-fit:cover;border:1px solid #ddd}
.review-card .stars{color:#f5a623;font-size:18px;letter-spacing:2px}
.review-card .byline{font-weight:500;color:#333}
.review-card .quote{color:#444;margin-top:4px}


/* === Google-like Reviews styling === */
.reviews.google-look{
  background: linear-gradient(180deg, rgba(245,247,249,1) 0%, rgba(240,243,246,1) 100%);
}
.reviews-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.gcard{background:#fff;border:1px solid #e7e7ea;border-radius:14px;box-shadow:0 2px 16px rgba(0,0,0,.05);padding:16px;display:flex;flex-direction:column;gap:10px}
.g-hdr{display:flex;align-items:center;gap:12px}
.g-avatar{width:40px;height:40px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  background:#DB4437;color:#fff;font-weight:700}
.g-avatar span{transform:translateY(1px)}
.g-meta{display:flex;flex-direction:column}
.g-name{font-weight:600;color:#202124;line-height:1}
.g-stars-time{display:flex;align-items:center;gap:6px;color:#5f6368;font-size:14px}
.g-stars{color:#f4b400;letter-spacing:2px;font-size:16px}
.g-dot{color:#9aa0a6}
.g-time{color:#5f6368}
.g-quote{color:#3c4043;margin:4px 0 0}

@media (max-width: 980px){ .reviews-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width: 640px){ .reviews-grid{grid-template-columns:1fr;} .g-avatar{width:36px;height:36px} }


/* === v7s Review Section Tweaks === */
.reviews.google-look { background: linear-gradient(180deg, rgba(245,247,249,1) 0%, rgba(240,243,246,1) 100%); border: none !important; }
.reviews .section-head h2 { color: #000 !important; }
.gcard { border: none !important; }
.g-hdr { flex-direction: column; align-items: flex-start; gap: 4px; }
.g-avatar { margin-bottom: 4px; }
.g-meta { align-items: flex-start; }
.g-name { font-weight: 600; color: #202124; margin-bottom: 2px; }
.g-stars-time { gap: 6px; color: #5f6368; font-size: 14px; }


/* === v7t Reviews tweaks === */
.reviews, .reviews.google-look, .reviews-grid, .review-card, .gcard { border: none !important; box-shadow: none !important; }
.g-hdr { flex-direction: row !important; align-items: center !important; gap: 12px !important; }
.g-avatar { margin: 0 !important; }
.g-meta { display: flex; flex-direction: column; align-items: flex-start; }


/* === v7u Reviews border removal (hard override) === */
.section.reviews, .reviews, .reviews * {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


/* === v7v Reviews background match === */
.section.reviews, .reviews.google-look {
  background: linear-gradient(180deg, rgba(245,247,249,1) 0%, rgba(240,243,246,1) 100%) !important;
}


/* === v7w Reviews band seamless fix === */
/* Exact Services gray */
:root { --services-gray-top: rgba(245,247,249,1); --services-gray-bot: rgba(240,243,246,1); }
.section.reviews, .reviews.google-look {
  background: linear-gradient(180deg, var(--services-gray-top) 0%, var(--services-gray-bot) 100%) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}
/* Kill any 1px separators some themes add */
.section.reviews::before,
.section.reviews::after { content:none !important; display:none !important; }
/* Remove any global section separators around reviews */
.section + .section.section.reviews { border-top: 0 !important; }
/* Flatten review cards so no drop shadow casts a fake edge */
.review-card, .gcard { box-shadow: none !important; border-color: #e7e7ea; }
/* Nudge padding to perfectly meet previous section (prevents thin line from margin collapse) */
.section.reviews { padding-top: 36px; margin-top: -1px; }


/* === v7x brutal border kill + seamless blend === */
.section.reviews,
.section.reviews .container,
.section.reviews .section-head,
.section.reviews::before,
.section.reviews::after{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* make the band inherit the page bg so it exactly matches whatever is above */
.section.reviews { background: inherit !important; margin-top: -2px !important; padding-top: 38px !important; }
.section.reviews .reviews-grid .gcard { box-shadow: none !important; border: 1px solid rgba(231,231,234,1) !important; }

/* if any hr/divider sneaks in, hide it inside reviews */
.section.reviews hr, .section.reviews .divider { display: none !important; height: 0 !important; border: 0 !important; }

/* also flatten the bottom junction */
.section.reviews { margin-bottom: -2px !important; padding-bottom: 38px !important; }


/* === v7x white text + transparent reviews === */
.section.reviews, .reviews.google-look {
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.section.reviews * {
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}


/* === v7y2: white heading + transparent review cards with white border === */
.section.reviews .section-head h2 { color: #ffffff !important; }
.gcard, .review-card {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.6) !important;
  box-shadow: none !important;
}


/* === v7y3 Mobile Contact tab stability === */
.header nav a[href*="contact"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  line-height: 1;
  border: 1px solid currentColor;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
  background: transparent !important;
  box-shadow: none !important;
}
.header nav a[href*="contact"]:hover,
.header nav a[href*="contact"]:active,
.header nav a[href*="contact"].btn {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
/* Keep header from wrapping Contact on small screens */
@media (max-width: 768px){
  .header { overflow: hidden; }
  .header nav { display:flex; flex-wrap: nowrap !important; gap: 8px; }
  .header nav a { white-space: nowrap; }
  .header nav a[href*="contact"] { padding: 6px 12px; font-size: 14px; }
}


/* === v7ac sticky header (transparent, original look) === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent; /* keep original hero visible under header */
  box-shadow: none;
  backdrop-filter: none;
}
/* Optional: when not over the hero (scrolled), a very soft shadow for separation */
body.scrolled .header {
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  background: rgba(255,255,255,0.85);
}
@media (max-width: 420px){
  body.scrolled .header { background: rgba(255,255,255,0.95); }
}


/* === v7ad Dark charcoal transparent header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 20, 20, 0.9); /* dark charcoal with slight transparency */
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}
body.scrolled .header {
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
@media (max-width: 420px){
  .header { background: rgba(15, 15, 15, 0.92); }
}


/* === v7ak Footer Socials === */
footer .socials-col { display: flex; flex-direction: column; gap: 10px; }
footer .socials { display: flex; gap: 12px; align-items: center; }
footer .socials a { display: inline-flex; border-radius: 10px; }
footer .socials a:hover { transform: translateY(-1px); }


/* === v7an Follow Us under Contact (visible) === */
footer .contact-socials { margin-top:12px; }
footer .contact-socials .follow-label { color:#fff; opacity:.95; margin-bottom:8px; font-weight:600; }
footer .contact-socials .socials-row { display:flex; gap:12px; align-items:center; }
footer .contact-socials .socials-row a { display:inline-flex; transition:transform .15s ease; }
footer .contact-socials .socials-row a:hover { transform: translateY(-2px); }


/* === Responsive hero typography overrides === */
.hero-title{ text-align:center; line-height:1.06; margin-bottom:0.25em; margin-top:0; font-weight:900; color:#fff; font-size: clamp(2.4rem, 9.5vw, 5.6rem);
}
.hero-title .line{ display:block; }

/* Red outline around the title */
.brand-outline{ -webkit-text-stroke:2.2px #c40000; text-shadow:none; }
@media (min-width: 768px){ .hero-title{ font-size: clamp(3.2rem, 8vw, 7rem); } .brand-outline{ -webkit-text-stroke:2.6px #c40000; } }
@media (min-width: 1200px){ .hero-title{ font-size: clamp(4rem, 6.5vw, 8rem); } .brand-outline{ -webkit-text-stroke:3px #c40000; } }

/* Location note below Call Now */
.location-note{ margin-top: clamp(20px, 10vh, 140px); font-size: clamp(1rem, 4vw, 2rem); color:#c40000; font-weight:900; letter-spacing:0.35px; text-align:center; -webkit-text-stroke: 1px #ffffff; text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff; }
@media (min-width: 768px){
  .location-note{ margin-top: clamp(20px, 10vh, 140px); font-size: clamp(1rem, 4vw, 2rem); color:#c40000; font-weight:900; letter-spacing:0.35px; text-align:center; -webkit-text-stroke: 1px #ffffff; text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff; }
}

/* Ensure hero container doesn't overflow small screens */
.hero .inner{
  padding-left: clamp(12px, 4vw, 28px);
  padding-right: clamp(12px, 4vw, 28px);
}

/* Prevent layout shift for stacked title on very small phones */
@media (max-width: 360px){
  .hero-title{ text-align:center; line-height:1.06; margin-bottom:0.25em; margin-top:0; font-weight:900; color:#fff; font-size: clamp(2.4rem, 9.5vw, 5.6rem); }
}


/* Global background fix */
html, body { background:#000; margin:0; }


/* --- Mobile anti-glitch + size bump (keeps desktop/tablet exactly the same) --- */
@media (max-width: 500px){
  .hero-title{
    font-size: clamp(3.4rem, 13vw, 6.6rem);
    transform: translateY(-3vh);
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  /* Swap stroke for layered shadows on small screens to avoid iOS glyph artifacts */
  .brand-outline{
    -webkit-text-stroke: 0 !important;
    text-shadow:
      0 1px 0 #c40000, 0 -1px 0 #c40000, 1px 0 0 #c40000, -1px 0 0 #c40000,
      1px 1px 0 #c40000, -1px 1px 0 #c40000, 1px -1px 0 #c40000, -1px -1px 0 #c40000,
      0 2px 0 #c40000, 0 -2px 0 #c40000, 2px 0 0 #c40000, -2px 0 0 #c40000,
      2px 2px 0 #c40000, -2px 2px 0 #c40000, 2px -2px 0 #c40000, -2px -2px 0 #c40000;
  }
}


/* --- Mobile polish (title bigger/higher, clean location note, bigger CTA) --- */
@media (max-width: 500px){
  /* Bigger and slightly higher title */
  .hero-title{
    font-size: clamp(3.8rem, 14vw, 7.2rem);
    transform: translateY(-4.5vh);
  }

  /* Location line: remove stroke artifacts but keep the white outlined look */
  .location-note{
    -webkit-text-stroke: 0 !important;
    text-shadow:
      0 1px 0 #ffffff, 0 -1px 0 #ffffff, 1px 0 0 #ffffff, -1px 0 0 #ffffff,
      1px 1px 0 #ffffff, -1px 1px 0 #ffffff, 1px -1px 0 #ffffff, -1px -1px 0 #ffffff;
  }

  /* Enlarge the Call Now button */
  .actions .btn, a.btn{
    font-size: clamp(1.1rem, 4.6vw, 1.35rem);
    padding: 16px 32px;
    border-radius: 16px;
  }
}


/* --- Balance mobile vs desktop sizing --- */
/* Desktop / large screens: bigger CTA and title, raised up */
@media (min-width: 992px){
  .hero-title{
    font-size: clamp(5rem, 7.5vw, 9.5rem);
    transform: translateY(-6vh);
  }
  .actions .btn, a.btn{
    font-size: 1.3rem;
    padding: 18px 36px;
    border-radius: 18px;
  }
}

/* Mobile: slightly smaller CTA, title higher and bigger, larger location line */
@media (max-width: 500px){
  .hero-title{
    font-size: clamp(4.1rem, 15vw, 7.6rem);
    transform: translateY(-6vh);
  }
  .actions .btn, a.btn{
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 14px;
  }
  .location-note{
    font-size: clamp(1.25rem, 5.2vw, 2.3rem);
  }
}


/* --- Title enlarged slightly (+0.5x) --- */
.hero-title{
  font-size: clamp(4.2rem, 9vw, 10rem) !important;
  transform: translateY(-6vh) !important;
}
@media (max-width: 500px){
  .hero-title{
    font-size: clamp(3.2rem, 13vw, 6.8rem) !important;
    transform: translateY(-5.5vh) !important;
  }
}


/* --- Ultra-fine fit for ~iPhone 12 width without changing overall design --- */
@media (max-width: 392px){
  /* Nudge title slightly smaller and higher so it never clips */
  .hero-title{ font-size: clamp(3.0rem, 13.6vw, 6.6rem); transform: translateY(-6.5vh); }
  /* Keep CTA readable but compact */
  .actions .btn, a.btn{ font-size: 1rem; padding: 12px 24px; border-radius: 14px; }
  /* Ensure the hero inner content has a touch more breathing room */
  .hero .inner{ padding-left: 16px; padding-right: 16px; }
  /* Avoid accidental overflow on super-tight heights */
  @media (max-height: 740px){
    .location-note{ margin-top: 10vh; }
  }
}

/* Page-specific white background for Contact & Services */
body.bgwhite{ background:#ffffff; }


/* --- Tight hero viewport fit for all phones (no overflow or gaps) --- */
.hero{
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center center;
}
.hero .inner{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding-left: clamp(10px, 4vw, 20px);
  padding-right: clamp(10px, 4vw, 20px);
}
html, body{
  overflow-x: hidden;
}
@media (max-width: 420px){
  .hero{ background-position: center top; }
  .hero .inner{ padding-left: 14px; padding-right: 14px; }
}


/* Ensure brand-outline applies to any heading without changing size */
.brand-outline{
  -webkit-text-stroke: 2px #c40000;
  text-shadow: none;
}
@media (max-width: 500px){
  /* Mobile anti-glitch for all outlined headings */
  .brand-outline{
    -webkit-text-stroke: 0 !important;
    text-shadow:
      0 1px 0 #c40000, 0 -1px 0 #c40000, 1px 0 0 #c40000, -1px 0 0 #c40000,
      1px 1px 0 #c40000, -1px 1px 0 #c40000, 1px -1px 0 #c40000, -1px -1px 0 #c40000;
  }
}


/* Gallery teaser grid */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid img{
  width:100%; height:160px; object-fit:cover; border-radius:10px;
}
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img{ height:120px; }
}


/* Gallery: dark page with white text */
body.gallery-dark{ background:#000; color:#fff; }
body.gallery-dark a{ color:#fff; }
body.gallery-dark .footer, body.gallery-dark .copy{ background:#000; color:#fff; }

/* Placeholder tiles */
.ph{
  width:100%;
  height:160px;
  background:#111;
  border-radius:10px;
  border:1px dashed #444;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
  font-size:0.95rem;
}
@media (max-width: 600px){ .ph{ height:120px; } }

/* About teaser: ensure "See Full Photo Gallery" button shows white text when outlined */
.gallery-teaser .btn.outline{ color:#fff; border-color:#fff; }


/* Gallery light mode enforced */
body.gallery-light, body.gallery, body.gallery-page {
  background:#fff !important;
  color:#000 !important;
}
body.gallery-light h1, body.gallery h1, body.gallery-page h1 { color:#000 !important; -webkit-text-stroke:0 !important; text-shadow:none !important; }


/* Enforced 4-per-row uniform gallery grid */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display:block;
}
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* Enforced 4-col gallery grid */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display:block;
}
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
/* Gallery light mode */
body.gallery-light { background:#fff !important; color:#000 !important; }
body.gallery-light h1 { color:#000 !important; -webkit-text-stroke:0 !important; text-shadow:none !important; }

/* Gallery page polish */
.gallery-page{background:#ffffff !important;}
.gallery-page .header{background:#0b0b0b;}
.gallery-grid.real{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:16px;margin-top:16px}
.gallery-grid.real img{width:100%;height:220px;object-fit:cover;border-radius:12px;display:block}

/* Gallery clickable updates */
.gallery-grid.real {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.gallery-grid.real img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.gallery-grid.real img:hover {
  transform: scale(1.03);
}
.gallery-grid.real a {
  display: block;
}


/* QA: universal responsive safeguards */
img{max-width:100%;height:auto}
.container{max-width:1200px;margin-left:auto;margin-right:auto}
html,body{overflow-x:hidden}
@media (max-width: 480px){
  .nav nav a{padding:8px 10px}
}


/* === Mobile header fixes (keep logo inline) === */
.logo img{height:72px;width:auto;max-width:240px}
.nav nav{display:flex;align-items:center;gap:16px}

@media (max-width:720px){
  .nav{flex-wrap:nowrap;gap:10px}
  .logo img{height:54px;max-width:200px}
  /* keep links on the same row; if they don't fit, allow horizontal scroll instead of stacking */
  .nav nav{
    flex-wrap:nowrap;
    gap:10px;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    white-space:nowrap;
    max-width:70vw;
  }
  .nav nav::-webkit-scrollbar{display:none}
  .nav nav a{font-size:15px;flex:0 0 auto;padding:8px 10px}
  .btn.primary,.btn.outline{padding:10px 14px}
}

@media (max-width:420px){
  .logo img{height:50px;max-width:170px}
  .nav nav{max-width:66vw}
  .nav nav a{font-size:14px}
}


/* === HARD HEADER FIX (single row, no stacking) === */
.header .nav{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
}
.header .logo{
  flex:0 0 auto !important;
}
.header .logo img{
  display:block;
  max-width:200px;
  height:56px;
}
.header nav{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  gap:12px;
  margin-left:auto;
  width:auto !important;
}
.header nav a{
  white-space:nowrap;
  flex:0 0 auto;
}
@media (max-width:600px){
  .header nav{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    max-width:60vw;
  }
  .header nav::-webkit-scrollbar{display:none}
}


/* === Strong mobile header override (no logo stacking, ever) === */
.header .nav{flex-wrap:nowrap !important}
.header .nav > nav{
  display:flex !important;
  flex-wrap:nowrap !important;
  justify-content:flex-end !important;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  white-space:nowrap;
}
.header .nav > nav::-webkit-scrollbar{display:none}


/* === Mobile header spacing cleanup === */
@media (max-width:720px){
  .logo img{
    height:62px;
    max-width:220px;
  }
  .nav{
    padding:8px 0;
    gap:8px;
  }
  .nav nav{
    gap:8px;
    max-width:72vw;
  }
  .nav nav a{
    padding:6px 8px;
    font-size:14px;
  }
}
@media (max-width:420px){
  .logo img{
    height:58px;
    max-width:200px;
  }
  .nav nav{
    max-width:70vw;
  }
}


@media (max-width: 720px){
  .header .logo{
    margin-left: 8px;
  }
}
