/* ============= Variables ============= */
:root{
  --brand:#e54833;
  --ink:#1a1a1a;
  --muted:#666;
  --radius:16px;
  --shadow:0 10px 20px rgba(0,0,0,.07);
  --container:1200px;
  --logo-header: 48px;
  --logo-footer: 58px;
}

/* ============= Base ============= */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:#fff;
}
.container{max-width:var(--container); margin:0 auto; padding:0 20px}

/* ============= Header / Nav ============= */
.site-header{
  border-bottom:1px solid #eee;
  background:#fff;
  position:sticky; top:0;
  z-index:10000;
}
.main-nav{display:flex; align-items:center; gap:18px}
.main-nav a{text-decoration:none; color:var(--ink)}

/* --- Services dropdown --- */
.nav-item.has-dropdown { position: relative; }
.nav-item .dropdown{
  position: absolute; left: 0; top: 100%;
  background: #fff; border: 1px solid #eee; border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 240px; padding: 8px;
  display: none; z-index: 10001;
}
.nav-item:hover .dropdown{ display: block; }        /* desktop hover */

.dropdown-item{
  display:block; padding:10px 12px; border-radius:8px;
  color: var(--ink); text-decoration:none;
}
.dropdown-item:hover{ background:#f6f6f6; }

/* mobile/touch: show when parent has .open */
.nav-item.open .dropdown{ display:block; }

/* ============= Buttons ============= */
.btn{display:inline-block; padding:12px 18px; border-radius:999px; text-decoration:none; border:0}
.btn.cta{background:var(--brand); color:#fff; box-shadow:var(--shadow)}
.btn-lg{padding:16px 26px; font-size:1.05rem}
.btn-block{display:block; width:100%; text-align:center}
.btn.directions{
  background: var(--brand);
  color:#fff;
  box-shadow: var(--shadow);
  display:inline-block;    
}
.btn.directions:hover{ filter: brightness(.92); }
.btn-sm { padding: 8px 14px; font-size: .95rem; }
/* center the button under the map */
.map-actions { margin-top: 12px; text-align: center; }

/* spacing when two buttons sit side-by-side */
.btn + .btn { margin-left: .5rem; }

/* subtle secondary button (outline) */
.btn.outline{
  background:#fff;
  color: var(--brand);
  border: 2px solid var(--brand);
  box-shadow:none;
}

.btn.outline:hover{
  background:#ff6a5f;        /* fallback */
  border-color:#ff6a5f;
  color:#fff;
  /* progressive enhancement */
  background: color-mix(in srgb, var(--brand) 20%, #fff);
}



/* ============= Home / Landing ============= */
/* hero split */
.hero--split{
  display:grid; grid-template-columns:1.05fr .95fr;
  gap:28px; align-items:center; padding:42px 0;
}
.hero-copy h1{font-size:clamp(32px,4vw,48px); line-height:1.05; margin:0 0 8px}
.hero-copy .muted{color:#999; font-weight:600}
.hero-copy .brand{color:var(--brand)}
.sub{color:var(--muted); margin-bottom:20px}

/* right gallery card */
.hero-card{background:#fff; border-radius:24px; padding:18px; box-shadow:var(--shadow)}
.card-title{text-align:center; margin:4px 0 12px}
.gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.gallery img{
  width:100%;
  aspect-ratio: 16 / 10;   /* pick 16/9 or 4/3 if you prefer */
  height:auto;
  object-fit:cover;
  border-radius:14px;
}

/* address/hours + map */
.contact-block{
  display:grid; grid-template-columns:1fr 1.2fr;
  gap:24px; margin:28px 0; align-items:start;
}
.kv{background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); padding:20px}
.kv div{margin:6px 0}
.hours{margin:8px 0 0 0; padding-left:18px}
.map-wrap iframe{width:100%; height:320px; border:0; border-radius:var(--radius); box-shadow:var(--shadow)}

/* why choose us */
.why{padding:36px 0 8px}
.why h2{font-size:clamp(24px,3vw,34px)}
.lede{color:var(--muted); max-width:900px}
.why-box{background:#f0f1f2; border-radius:18px; padding:18px 20px; margin-top:16px}
.why-box ul{list-style:none; padding:0; margin:0}
.why-box li{display:flex; align-items:flex-start; gap:10px; padding:8px 0}
.bullet{width:10px; height:10px; background:var(--brand); border-radius:3px; margin-top:8px; transform:rotate(45deg)}

/* CTA band */
.cta-band{text-align:center; padding:40px 0}





/* ============ Service Detail Page ============ */
/* service detail hero */
.service-hero .page-title{ text-align:center; }
.service-hero .lede{
  text-align:center;
  max-width: 60ch;
  margin: .25rem auto 0;
}
.service-hero .notice{ text-align:center; }



/* ============= Contact Page ============= */
.page-title{text-align:center; margin:34px 0 22px; font-size:clamp(24px,3.2vw,32px)}

.contact-grid{
  display:grid; grid-template-columns:1fr 1.7fr;
  gap:28px; align-items:start;
  margin:10px auto 40px; max-width:var(--container); padding:0 20px;
}

.contact-card{
  background:var(--brand); color:#fff;
  padding:24px; border-radius:22px; box-shadow:var(--shadow);
}
.contact-card h3{margin:0 0 10px; font-size:24px; letter-spacing:.4px}
.contact-card a{color:#fff; text-decoration:underline}
.contact-card .line{display:flex; gap:10px; margin:10px 0; align-items:flex-start}
.contact-card .icon{line-height:1.4}
.mini-map iframe{width:100%; height:220px; border:0; border-radius:14px; margin:12px 0 16px; box-shadow:var(--shadow)}

/* dark form panel */
.contact-form-panel{
  background:#1a1a1a; color:#fff;
  padding:28px; border-radius:22px; box-shadow:var(--shadow);
}
.contact-form-panel h3{margin:0 0 16px; text-align:center; color:var(--brand); font-size:26px}
.form--dark label{display:block; font-size:14px; color:#bbb; margin-bottom:6px}
.form--dark .field{margin-bottom:14px}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:14px}


/* ============ Why Choose Us - feature cards ============ */
.reason-list{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.reason-list li{
  background:#fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}
.reason-list li h3{ margin: 0 0 .35rem; }
.reason-list li p{ margin: 0; color:#333; }

.reason-list li:hover,
.reason-list li:focus-within{
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  border-color: color-mix(in srgb, var(--brand) 35%, #eee);
}

/* ============ Soft quote band for About Us page */
.about-quote{
  margin: 1rem auto 1.25rem;
  padding: 14px 18px;
  max-width: var(--container);
  text-align: center;
  font-style: italic;
  background: #f7f7f7;
  border-radius: 14px;
  color: #333;
}


/* ============ Thank-you layout ============ */
.thanks {
  text-align: center;
  padding: 4rem 0 5rem;
}
.thanks .lede { margin: .75rem 0 2rem; opacity: .9; }


/* left accent that appears on hover/focus */
.reason-list li::before{
  content:"";
  position:absolute; /* establish containing block via relative on li */
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 16px 0 0 16px;
  background: var(--brand);
  transition: width .18s ease;
}
.reason-list li{ position:relative; overflow:hidden; }
.reason-list li:hover::before,
.reason-list li:focus-within::before{ width: 6px; }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reason-list li{ transition: none; transform: none !important; }
  .reason-list li::before{ transition: none; }
}


/* white inputs on dark panel */
.form--dark input,
.form--dark textarea,
.form--dark select{
  width:100%; padding:14px;
  border:1px solid #d0d0d0; border-radius:12px;
  background:#fff; color:#111; outline:none;
}
.form--dark textarea{min-height:140px; resize:vertical}
.form--dark input::placeholder,
.form--dark textarea::placeholder{color:#9aa0a6}
.form--dark input:focus,
.form--dark textarea:focus,
.form--dark select:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(229,72,51,.2);
  background:#fff;
}

/* Services index grid */
.services-grid{
  display:grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px; margin: 10px auto 40px;
}
.service-card{
  background:#fff; border:1px solid #eee; border-radius:14px; padding:16px;
  box-shadow: var(--shadow);
}
.service-card h3{margin:0 0 6px}
.service-card .muted{color:#666; margin:0 0 10px}
.card-actions{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  display:inline-block; background:#fbeaea; color:#a52518;
  padding:3px 8px; border-radius:999px; font-size:12px; margin-bottom:8px;
}
.notice{
  background:#fff6ea; border:1px solid #ffe1b9; color:#5e3a00;
  padding:10px 12px; border-radius:10px; display:inline-block;
}


/* ============= background ============= */
/* Site-wide background behind everything */
html{
  background:
    /* brand glow (top-left) — stronger & larger */
    radial-gradient(1300px 650px at 8% -6%,
      rgba(229,72,51,.26) 0%, rgba(229,72,51,0) 64%),

    /* cool shade (top-right) — deeper */
    radial-gradient(1200px 680px at 98% -10%,
      rgba(26,26,26,.16) 0%, rgba(26,26,26,0) 70%),

    /* bottom brand lift */
    radial-gradient(1000px 600px at 50% 122%,
      rgba(229,72,51,.14) 0%, rgba(229,72,51,0) 72%),

    /* subtle vignette around edges */
    radial-gradient(1600px 900px at 50% 50%,
      rgba(0,0,0,.06) 0%, rgba(0,0,0,0) 60%) ,

    /* base blend */
    linear-gradient(180deg, #efefef 0%, #ffffff 55%, #ffffff 100%);
}

body{ background: transparent; position: relative; z-index: 0; }

/* slightly strong noise so the page doesn’t feel flat */
html::after{
  content:"";
  position: fixed; inset:0; z-index:-1; pointer-events:none; opacity:.085;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cdefs%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  background-size:300px 300px;
}

@media (prefers-reduced-motion: reduce){
  html::after { will-change: auto; }
}






/* ============= language toggle button ============= */
.lang-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
}
.lang-fab img { width: 30px; height: 30px; display:block; }
.lang-fab:hover { transform: translateY(-1px); }


/* ============= Footer (bigger & responsive) ============= */
.site-footer{background:#121212; color:#e9e9e9; margin-top:40px}
.site-footer a{color:#e9e9e9; text-decoration:none}
.site-footer .footer-inner{
  display:grid; grid-template-columns:1.2fr 1fr 1fr;
  gap:24px; padding:40px 20px;
}
.footer-brand img{display:block; margin-bottom:8px}
.footer-brand p{margin:0 0 6px; color:#cfcfcf}
.footer-brand small{color:#9a9a9a}
.footer-nav{display:flex; flex-direction:column; gap:10px}
.footer-nav a:hover{text-decoration:underline}
.footer-social{display:flex; align-items:center; gap:14px; justify-content:flex-start}
.soc{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:999px; background:#1f1f1f; color:#fff;
  font-weight:700; font-size:18px; text-decoration:none;
}
.soc:hover{background:var(--brand)}



/* ============= Logo sizing ============ */
/* --- Header logo (PNG, no borders) --- */
/* Keep the header row tight and aligned */
.nav{ display:flex; align-items:center; gap:16px; }
.brand{ flex:0 0 auto; padding:6px 0; line-height:0; }   /* line-height:0 removes extra inline gap */

/* The logo itself */
.brand img{ 
  height: var(--logo-header); 
  width: auto; 
  display: block;             /* prevents descender whitespace */
  object-fit: contain;        /* safety: if you ever constrain width, don't squish it */
}

/* Let the nav items take the remaining space */
.main-nav{ flex:1 1 auto; display:flex; align-items:center; gap:18px; }

/* --- Footer logo --- */
.footer-brand img{
  height: var(--logo-footer);
  width: auto;
  display: block;
}




/* ============= Responsive ============= */
@media (max-width:980px){
  /* landing */
  .hero--split, .contact-block{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}

  /* contact page */
  .contact-grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}

  /* footer */
  .site-footer .footer-inner{grid-template-columns:1fr; text-align:center}
  .footer-social{justify-content:center}

  /* services grid */
  .services-grid{grid-template-columns:1fr 1fr}
}

@media (max-width:620px){
  .services-grid{grid-template-columns:1fr}
  .map-actions .btn { display: block; width: 100%; }
}

/* Optional: reduce logo sizes on small screens */
@media (max-width: 980px){
  :root{ --logo-header: 44px; --logo-footer: 56px; }
}
@media (max-width: 620px){
  :root{ --logo-header: 40px; --logo-footer: 52px; }
}
