/* ═══════════════════════════════════════════════
   ASMAC — Main Stylesheet
   Dark · Copper Metallic · Apple-inspired
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Dark surfaces */
  --bg:           #080808;
  --bg-1:         #111111;
  --bg-2:         #1A1A1A;
  --bg-3:         #222222;
  --border:       rgba(255,255,255,.07);
  --border-cu:    rgba(184,115,51,.25);

  /* Copper palette */
  --cu-dark:      #5C3118;
  --cu-mid:       #B87333;
  --cu-base:      #C8843A;
  --cu-light:     #D4956A;
  --cu-bright:    #F0C080;
  --cu-shine:     #FFE0A0;

  /* Copper gradients */
  --cu-grad:      linear-gradient(135deg, #5C3118 0%, #B87333 30%, #F0C080 50%, #B87333 70%, #7C4A2B 100%);
  --cu-grad-h:    linear-gradient(90deg,  #3D1F0D 0%, #9E6128 20%, #F0C080 45%, #D4956A 65%, #7C4A2B 100%);
  --cu-grad-text: linear-gradient(135deg, #C8843A 0%, #F0C080 40%, #FFE0A0 52%, #D4956A 65%, #9E6128 100%);
  --cu-grad-btn:  linear-gradient(145deg, #9E6128 0%, #D4956A 35%, #F0C080 50%, #C8843A 70%, #7C4A2B 100%);
  --cu-glow:      0 0 24px rgba(200,132,58,.25), 0 0 48px rgba(184,115,51,.12);

  /* Text */
  --txt:          #F0EDE8;
  --txt-mid:      #A09890;
  --txt-dim:      #5A5450;

  /* Type */
  --font:         'Inter', 'Helvetica Neue', Arial, sans-serif;
  --mono:         'Courier New', monospace;

  /* Spacing */
  --nav-h:        64px;
  --radius:       6px;
  --radius-lg:    14px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { background:var(--bg); color:var(--txt); font-family:var(--font); font-weight:300; line-height:1.6; overflow-x:hidden; }
img, video { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { border:none; background:none; cursor:pointer; font-family:var(--font); }
ul { list-style:none; }

/* ── COPPER TEXT ── */
.cu-text {
  background: var(--cu-grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cu-line {
  display:block; height:1px;
  background: var(--cu-grad-h);
  border:none;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 48px;
  transition:background .4s ease, border-color .4s ease;
  border-bottom:1px solid transparent;
}
.nav.scrolled {
  background:rgba(8,8,8,.92);
  backdrop-filter:blur(16px);
  border-bottom-color:var(--border-cu);
}
.nav__logo {
  display:flex; align-items:center; gap:12px;
}
.nav__logo-mark {
  width:36px; height:36px;
  background:var(--cu-grad);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-size:.7rem; font-weight:700; color:#000;
  letter-spacing:-.05em;
  box-shadow:var(--cu-glow);
  flex-shrink:0;
}
.nav__logo-name {
  font-size:.82rem; font-weight:400; letter-spacing:.18em;
  text-transform:uppercase; color:var(--txt);
}
.nav__links {
  display:flex; align-items:center; gap:36px;
}
.nav__link {
  font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--txt-mid); transition:color .2s;
  position:relative;
}
.nav__link::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px;
  background:var(--cu-grad-h); transform:scaleX(0);
  transition:transform .25s ease; transform-origin:left;
}
.nav__link:hover { color:var(--txt); }
.nav__link:hover::after { transform:scaleX(1); }
.nav__cta {
  padding:9px 22px;
  background:transparent;
  border:1px solid var(--cu-mid);
  color:var(--cu-light); font-size:.68rem; letter-spacing:.18em; text-transform:uppercase;
  border-radius:var(--radius);
  transition:all .25s ease;
  position:relative; overflow:hidden;
}
.nav__cta::before {
  content:''; position:absolute; inset:0;
  background:var(--cu-grad-btn); opacity:0;
  transition:opacity .25s ease;
}
.nav__cta:hover { color:#000; border-color:transparent; }
.nav__cta:hover::before { opacity:1; }
.nav__cta span { position:relative; z-index:1; }
.nav__burger { display:none; flex-direction:column; gap:5px; padding:4px; }
.nav__burger span { display:block; width:22px; height:1px; background:var(--txt-mid); transition:all .3s; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height:100vh;
  display:flex; align-items:center;
  padding:calc(var(--nav-h) + 80px) 48px 80px;
  position:relative; overflow:hidden;
}
.hero__bg {
  position:absolute; inset:0; z-index:0;
  background:radial-gradient(ellipse 60% 60% at 70% 50%, rgba(184,115,51,.08) 0%, transparent 70%),
             radial-gradient(ellipse 40% 80% at 30% 80%, rgba(92,49,24,.12) 0%, transparent 60%);
}
.hero__grid {
  position:absolute; inset:0; z-index:0;
  background-image:
    linear-gradient(rgba(184,115,51,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,115,51,.04) 1px, transparent 1px);
  background-size:80px 80px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__content {
  position:relative; z-index:1; max-width:720px;
}
.hero__eyebrow {
  font-family:var(--mono); font-size:.85rem; letter-spacing:.35em;
  text-transform:uppercase; color:#fff;
  margin-bottom:24px; display:flex; align-items:center; gap:12px;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
  font-weight: 400;
}
.hero__eyebrow::before {
  content:''; display:block; width:32px; height:1px;
  background:var(--cu-grad-h);
}
.hero__h1 {
  font-size:clamp(2.8rem, 6vw, 5.5rem);
  font-weight:200; line-height:1.05;
  letter-spacing:-.02em;
  margin-bottom:28px;
}
.hero__h1 strong {
  font-weight:300; display:block;
}
.hero__sub {
  font-size:1rem; font-weight:300; color:var(--txt-mid);
  max-width:480px; line-height:1.7; margin-bottom:48px;
}
.hero__btns {
  display:flex; gap:16px; flex-wrap:wrap; align-items:center;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 32px; border-radius:var(--radius);
  font-size:.72rem; letter-spacing:.18em; text-transform:uppercase;
  font-weight:400; transition:all .25s ease;
  position:relative; overflow:hidden;
}
.btn-copper {
  background:var(--cu-grad-btn);
  color:#0A0505;
  box-shadow:0 4px 20px rgba(184,115,51,.3);
}
.btn-copper:hover {
  box-shadow:0 6px 32px rgba(184,115,51,.45), var(--cu-glow);
  transform:translateY(-1px);
}
.btn-outline {
  background:transparent;
  border:1px solid var(--border-cu);
  color:var(--cu-light);
}
.btn-outline:hover {
  border-color:var(--cu-mid);
  background:rgba(184,115,51,.06);
  color:var(--cu-bright);
}
.btn-ghost {
  color:var(--txt-mid); font-size:.72rem; letter-spacing:.12em;
  text-transform:uppercase; padding:13px 0;
  border-bottom:1px solid transparent;
  transition:all .2s;
}
.btn-ghost:hover { color:var(--cu-light); border-bottom-color:var(--cu-mid); }

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
section { padding:100px 48px; }
.section-label {
  font-family:var(--mono); font-size:1rem; letter-spacing:.3em;
  text-transform:uppercase; color:var(--cu-mid);
  margin-bottom:20px; display:flex; align-items:center; gap:14px;
  font-weight:700;
}
.section-label::before { content:''; display:block; width:24px; height:1px; background:var(--cu-grad-h); }
.section-title {
  font-size:clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight:200; letter-spacing:-.02em; line-height:1.1;
  margin-bottom:16px;
}
.section-sub {
  color:var(--txt-mid); font-weight:300; font-size:.95rem;
  max-width:560px; line-height:1.7;
}
.section-header { margin-bottom:64px; }

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services { background:var(--bg); }
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.service-card {
  background:var(--bg-1);
  padding:36px 32px;
  transition:background .3s ease;
  position:relative; overflow:hidden;
  cursor:default;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:var(--cu-grad-h); opacity:0;
  transition:opacity .3s;
}
.service-card:hover { background:var(--bg-2); }
.service-card:hover::before { opacity:1; }
.service-icon {
  display:none;
}
.service-card:hover .service-icon {
  border-color:var(--cu-mid);
}
.service-title {
  font-size:1.25rem; font-weight:400; margin-bottom:10px;
  letter-spacing:-.02em;
}
.service-desc {
  font-size:.82rem; color:var(--txt-mid); line-height:1.65;
}

/* ══════════════════════════════════════════
   REPAIRS SECTION
══════════════════════════════════════════ */
.repairs { background:var(--bg-1); }
.repairs-list {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
}
.repair-item {
  padding:24px 28px;
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  display:flex; align-items:flex-start; gap:16px;
  transition:border-color .25s, transform .25s;
}
.repair-item:hover {
  border-color:var(--border-cu);
  transform:translateY(-2px);
}
.repair-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--cu-grad);
  margin-top:8px; flex-shrink:0;
  box-shadow:0 0 8px rgba(184,115,51,.5);
}
.repair-name { font-size:.88rem; font-weight:300; margin-bottom:4px; }
.repair-note { font-size:.72rem; color:var(--txt-mid); }

/* ══════════════════════════════════════════
   METALLIC DIVIDER / BANNER
══════════════════════════════════════════ */
.cu-banner {
  padding:64px 48px;
  background:linear-gradient(135deg, #0D0805 0%, #1A0F07 40%, #120A04 100%);
  border-top:1px solid var(--border-cu);
  border-bottom:1px solid var(--border-cu);
  position:relative; overflow:hidden;
}
.cu-banner::before {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(90deg, transparent 0%, rgba(184,115,51,.05) 30%, rgba(240,192,128,.08) 50%, rgba(184,115,51,.05) 70%, transparent 100%);
  animation:shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,100% { opacity:.6; }
  50%      { opacity:1; }
}
.cu-banner__inner {
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:space-between;
  gap:40px; flex-wrap:wrap; max-width:1100px; margin:0 auto;
}
.cu-banner__text h2 {
  font-size:clamp(1.4rem, 3vw, 2rem); font-weight:200;
  letter-spacing:-.02em; margin-bottom:10px;
}
.cu-banner__text p { color:var(--txt-mid); font-size:.9rem; }

/* ══════════════════════════════════════════
   ABOUT / STATS
══════════════════════════════════════════ */
.about { background:var(--bg); }
.about-layout {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.about-copy p {
  color:var(--txt-mid); font-size:.95rem; line-height:1.8; margin-bottom:20px;
}
.about-stats {
  display:grid; grid-template-columns:1fr 1fr; gap:32px;
}
.stat {
  padding:28px 24px;
  background:var(--bg-1); border:1px solid var(--border);
  border-radius:var(--radius); text-align:center;
  transition:border-color .25s;
}
.stat:hover { border-color:var(--border-cu); }
.stat-num {
  font-size:2.4rem; font-weight:200; letter-spacing:-.04em;
  background:var(--cu-grad-text);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  display:block; margin-bottom:6px;
}
.stat-label { font-size:.65rem; letter-spacing:.22em; text-transform:uppercase; color:var(--txt-dim); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { background:var(--bg-1); }
.testimonials-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:24px;
}
.testimonial {
  padding:32px;
  background:var(--bg-2); border:1px solid var(--border);
  border-radius:var(--radius-lg);
  transition:border-color .25s;
  position:relative;
}
.testimonial::before {
  content:'"'; font-size:4rem; line-height:1;
  background:var(--cu-grad-text);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  position:absolute; top:16px; left:28px;
  font-weight:300; font-family:Georgia, serif;
}
.testimonial:hover { border-color:var(--border-cu); }
.testimonial-text {
  font-size:.88rem; color:var(--txt-mid); line-height:1.75;
  margin-bottom:24px; margin-top:24px;
}
.testimonial-author { font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color:var(--cu-light); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { background:var(--bg); }
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; }
.contact-info { display:flex; flex-direction:column; gap:32px; }
.contact-item { display:flex; gap:20px; align-items:flex-start; }
.contact-icon {
  width:40px; height:40px; flex-shrink:0;
  border:1px solid var(--border-cu);
  border-radius:var(--radius); display:flex; align-items:center; justify-content:center;
  font-size:.9rem; background:var(--bg-1);
}
.contact-label { font-family:var(--mono); font-size:.5rem; letter-spacing:.3em; text-transform:uppercase; color:var(--cu-mid); margin-bottom:6px; }
.contact-val { font-size:.92rem; color:var(--txt); }
.contact-val a { transition:color .2s; }
.contact-val a:hover { color:var(--cu-light); }

/* ── FORM ── */
.form { display:flex; flex-direction:column; gap:22px; }
.form-field { display:flex; flex-direction:column; gap:8px; }
.form-label { font-family:var(--mono); font-size:.5rem; letter-spacing:.3em; text-transform:uppercase; color:var(--txt-dim); }
.form-input, .form-select, .form-textarea {
  background:var(--bg-1); border:1px solid var(--border);
  border-radius:var(--radius); padding:13px 16px;
  color:var(--txt); font-family:var(--font); font-size:.88rem; font-weight:300;
  outline:none; transition:border-color .2s;
  width:100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--cu-mid);
  box-shadow:0 0 0 3px rgba(184,115,51,.08);
}
.form-textarea { resize:vertical; min-height:120px; }
.form-select { appearance:none; cursor:pointer; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }


/* ══════════════════════════════════════════
   GOOGLE MAPS SECTION
══════════════════════════════════════════ */
.map-section {
  width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
}
.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.6) sepia(0.25) hue-rotate(5deg) brightness(0.92);
}
/* copper tint overlay */
.map-copper-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(184,115,51,0.10) 0%,
    rgba(120,70,20,0.06) 50%,
    rgba(184,115,51,0.08) 100%);
  pointer-events: none;
  z-index: 2;
}
/* info card */
.map-card {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(184,115,51,0.35);
  border-radius: 16px;
  padding: 16px 24px;
  text-decoration: none;
  min-width: 300px;
  transition: border-color .25s, box-shadow .25s;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.map-card:hover {
  border-color: var(--cu-mid);
  box-shadow: 0 12px 40px rgba(184,115,51,.18);
}
.map-card__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.map-card__info { display: flex; flex-direction: column; gap: 3px; }
.map-card__name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--cu-light);
  letter-spacing: .02em;
}
.map-card__addr {
  font-size: .78rem;
  color: var(--txt-dim);
  line-height: 1.55;
}
.map-card__cta {
  font-size: .72rem;
  color: var(--cu-mid);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: .03em;
}
/* light mode map adjustments */
body.light .map-iframe {
  filter: saturate(0.75) sepia(0.15) hue-rotate(5deg) brightness(0.97);
}
body.light .map-card {
  background: rgba(245,240,235,0.92);
  border-color: rgba(184,115,51,0.4);
}
body.light .map-card__name { color: var(--cu-dark); }
body.light .map-card__addr { color: #555; }
@media (max-width:600px) {
  .map-section { height: 400px; }
  .map-card { min-width: 260px; padding: 12px 16px; bottom: 20px; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background:var(--bg-1);
  border-top:1px solid var(--border-cu);
  padding:60px 48px 32px;
}
.footer-main {
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px;
  margin-bottom:48px;
}
.footer-brand p { font-size:.82rem; color:var(--txt-mid); line-height:1.7; margin-top:16px; max-width:240px; }
.footer-col-title { font-family:var(--mono); font-size:.5rem; letter-spacing:.32em; text-transform:uppercase; color:var(--cu-mid); margin-bottom:18px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-link { font-size:.82rem; color:var(--txt-mid); transition:color .2s; }
.footer-link:hover { color:var(--cu-light); }
.footer-bottom {
  padding-top:24px; border-top:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-copy { font-size:.85rem; color:var(--txt-dim); font-family:var(--mono); letter-spacing:.06em; }
.footer-socials { display:flex; gap:16px; }
.social-icon {
  width:40px; height:40px; border:1px solid var(--border);
  border-radius:var(--radius); display:flex; align-items:center; justify-content:center;
  font-size:.85rem; color:var(--txt-dim); transition:all .25s; font-weight:500;
}
.social-icon:hover { border-color:var(--cu-mid); color:var(--cu-light); box-shadow:0 0 12px rgba(184,115,51,.2); }

/* ══════════════════════════════════════════
   CURSOR (desktop only)
══════════════════════════════════════════ */
.cursor {
  width:8px; height:8px; border-radius:50%;
  background:var(--cu-mid);
  position:fixed; pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .2s, height .2s, background .2s, opacity .3s;
  box-shadow:0 0 12px rgba(184,115,51,.5);
}
.cursor-ring {
  width:32px; height:32px; border-radius:50%;
  border:1px solid rgba(184,115,51,.4);
  position:fixed; pointer-events:none; z-index:9998;
  transform:translate(-50%,-50%);
  transition:width .25s, height .25s, border-color .25s;
}
.cursor.big { width:14px; height:14px; background:var(--cu-bright); }
.cursor-ring.big { width:50px; height:50px; border-color:rgba(184,115,51,.6); }

/* ══════════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════════ */
.nav-drawer {
  position:fixed; inset:0; z-index:99;
  background:rgba(8,8,8,.96); backdrop-filter:blur(20px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:32px;
  transform:translateX(100%); transition:transform .35s cubic-bezier(.77,0,.175,1);
}
.nav-drawer.open { transform:translateX(0); }
.nav-drawer .nav__link { font-size:1.4rem; letter-spacing:.08em; color:var(--txt); }
.nav-drawer .nav__link::after { bottom:-6px; }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1024px) {
  section { padding:80px 32px; }
  .nav { padding:0 32px; }
  .hero { padding:calc(var(--nav-h) + 60px) 32px 60px; }
  .about-layout, .contact-layout { grid-template-columns:1fr; gap:48px; }
  .footer-main { grid-template-columns:1fr 1fr; gap:36px; }
}
@media(max-width:768px) {
  section { padding:64px 20px; }
  .nav { padding:0 20px; }
  .nav__links { display:none; }
  .nav__cta { display:none; }
  .nav__burger { display:flex; }
  .hero { padding:calc(var(--nav-h) + 40px) 20px 40px; }
  .footer { padding:48px 20px 24px; }
  .footer-main { grid-template-columns:1fr; gap:28px; }
  .form-row { grid-template-columns:1fr; }
  .about-stats { grid-template-columns:1fr 1fr; }
  .cu-banner { padding:48px 20px; }
  .cursor, .cursor-ring { display:none; }
}

/* ══════════════════════════════════════════
   LANGUAGE SWITCHER
══════════════════════════════════════════ */
.lang-switch {
  display:flex; align-items:center; gap:6px;
  margin-right:4px;
}
.lang-sep {
  color:var(--txt-dim); font-size:.6rem; user-select:none;
}
.lang-btn {
  font-family:var(--mono); font-size:.82rem; letter-spacing:.15em;
  font-weight:700; color:var(--txt-dim); padding:5px 3px;
  border-bottom:2px solid transparent;
  transition:color .2s, border-color .2s;
  background:none; border-top:none; border-left:none; border-right:none;
  cursor:pointer;
}
body.light .lang-btn { color: #555; }
body.light .lang-btn.active { color: var(--cu-mid); border-bottom-color: var(--cu-mid); }
body.light .lang-sep { color: #888; }
.lang-btn:hover { color:var(--cu-light); }
.lang-btn.active {
  color:var(--cu-light);
  border-bottom-color:var(--cu-mid);
}
.lang-switch--drawer {
  margin-top:16px;
}
.lang-switch--drawer .lang-btn {
  font-size:1rem; padding:8px 4px;
}
@media(max-width:768px) {
  .lang-switch:not(.lang-switch--drawer) { display:none; }
}

/* ══════════════════════════════════════════
   LIGHT MODE TOKENS
══════════════════════════════════════════ */
body.light {
  --bg:           #F2F2F4;
  --bg-1:         #EAEAEC;
  --bg-2:         #DFDFE1;
  --bg-3:         #D4D4D6;
  --border:       rgba(0,0,0,.08);
  --border-cu:    rgba(184,115,51,.3);
  --txt:          #1D1D1F;
  --txt-mid:      #6E6E73;
  --txt-dim:      #AEAEB2;
  --cu-glow:      0 0 24px rgba(184,115,51,.18), 0 0 48px rgba(184,115,51,.08);
}

/* Nav light */
body.light .nav.scrolled {
  background: rgba(255,255,255,.88);
  border-bottom-color: var(--border-cu);
}
body.light .nav__logo-mark {
  box-shadow: var(--cu-glow);
}

/* Hero light */
body.light .hero__bg {
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(184,115,51,.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 80% at 30% 80%, rgba(184,115,51,.04) 0%, transparent 60%);
}
body.light .hero__grid {
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
}

/* Cards light */
body.light .service-card { background: var(--bg-1); }
body.light .service-card:hover { background: var(--bg-2); }
body.light .repair-item { background: var(--bg-1); }

/* Cu banner light */
body.light .cu-banner {
  background: linear-gradient(135deg, #F5F0EA 0%, #EDE3D6 40%, #F2EBE0 100%);
  border-color: rgba(184,115,51,.2);
}
body.light .cu-banner::before {
  background: linear-gradient(90deg, transparent 0%, rgba(184,115,51,.06) 30%, rgba(240,192,128,.1) 50%, rgba(184,115,51,.06) 70%, transparent 100%);
}

/* About / stats light */
body.light .stat { background: var(--bg-1); }

/* Testimonials light */
body.light .testimonial { background: var(--bg-1); }

/* Contact form light */
body.light .form-input,
body.light .form-select,
body.light .form-textarea {
  background: var(--bg-1);
  color: var(--txt);
}
body.light .form-input::placeholder,
body.light .form-textarea::placeholder { color: var(--txt-dim); }

/* Footer light */
body.light .footer {
  background: var(--bg-1);
  border-top-color: var(--border-cu);
}
body.light .footer-bottom { border-top-color: var(--border); }

/* Contact icon light */
body.light .contact-icon { background: var(--bg-2); }

/* Nav drawer light */
body.light .nav-drawer { background: rgba(255,255,255,.97); }


/* ══════════════════════════════════════════
   THEME TOGGLE SWITCH (macOS style)
══════════════════════════════════════════ */
.theme-toggle {
  position: relative;
  width: 44px; height: 26px;
  flex-shrink: 0;
}
.theme-toggle input {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.theme-track {
  position: absolute; inset: 0;
  border-radius: 13px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
/* Dark mode: track lit with copper */
body:not(.light) .theme-track {
  background: linear-gradient(90deg, #5C3118, #B87333);
  border-color: transparent;
}
.theme-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem;
}
/* Moved right = dark mode (default) */
body:not(.light) .theme-knob {
  transform: translateX(18px);
  background: #fff;
}
body.light .theme-knob {
  transform: translateX(0);
}
/* Icons inside knob */
.theme-knob::before {
  content: '☀️';
  font-size: .5rem;
  display: none;
}
body.light .theme-knob::before { display: block; }
body:not(.light) .theme-knob::after {
  content: '🌙';
  font-size: .45rem;
  display: block;
}
body.light .theme-knob::after { display: none; }

/* Nav placement */
.nav__theme { display: flex; align-items: center; }

/* Transition for smooth mode switch */
body {
  transition: background .35s ease, color .35s ease;
}
.service-card, .repair-item, .stat, .footer,
.testimonial, .contact-icon, .form-input,
.form-select, .form-textarea, .nav, .cu-banner {
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}

/* ══════════════════════════════════════════
   HERO SLIDESHOW
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  overflow: hidden;
}

.hero__slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.50) 55%,
    rgba(0,0,0,.25) 100%
  );
}

/* Light mode — same black overlay, keeps text readable */
body.light .hero__slide-overlay {
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.45) 55%,
    rgba(0,0,0,.20) 100%
  );
}

/* Slideshow dots */
.hero__dots {
  position: absolute; bottom: 36px; left: 48px;
  display: flex; gap: 8px; z-index: 2;
}
.hero__dot {
  width: 24px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .3s, width .3s;
}
.hero__dot.active {
  background: var(--cu-grad-h);
  width: 40px;
}

/* Slide counter */
.hero__counter {
  position: absolute; bottom: 32px; right: 48px;
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .25em; color: rgba(255,255,255,.35);
  z-index: 2;
}
body.light .hero__counter { color: rgba(0,0,0,.3); }

/* Prev/Next arrows */
.hero__arrows {
  position: absolute; bottom: 24px; right: 100px;
  display: flex; gap: 8px; z-index: 2;
}
.hero__arrow {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  backdrop-filter: blur(4px);
}
.hero__arrow:hover {
  border-color: var(--cu-mid);
  color: var(--cu-light);
  background: rgba(184,115,51,.1);
}
body.light .hero__arrow {
  border-color: rgba(0,0,0,.15);
  color: rgba(0,0,0,.4);
  background: rgba(0,0,0,.04);
}

/* ══════════════════════════════════════════
   SERVICE CARDS WITH IMAGE
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: transparent;
  border: none;
}

.service-card {
  background: var(--bg-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
  cursor: default;
  display: flex; flex-direction: column;
}
.service-card::before { display: none; } /* remove old top border trick */

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-cu);
  box-shadow: 0 12px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(184,115,51,.15);
}

.service-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: saturate(.85) brightness(.9);
  transition: filter .4s ease, transform .5s ease;
}
.service-card:hover .service-img {
  filter: saturate(1) brightness(1);
  transform: scale(1.03);
}
.service-img-wrap {
  overflow: hidden;
  position: relative;
}
.service-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,8,.4) 100%);
  pointer-events: none;
}
body.light .service-img-wrap::after {
  background: linear-gradient(to bottom, transparent 50%, rgba(255,255,255,.2) 100%);
}

.service-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.service-icon { display: none; }
.service-header { display: flex; align-items: center; gap: 10px; }
.service-title { font-size: 1.1rem; font-weight: 400; letter-spacing: -.02em; }
.service-desc { font-size: .8rem; color: var(--txt-mid); line-height: 1.65; }

@media(max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .hero__dots { left: 20px; bottom: 24px; }
  .hero__counter, .hero__arrows { display: none; }
}

/* ══════════════════════════════════════════
   LOGO SVG
══════════════════════════════════════════ */
.nav__logo-svg { display:block; height:34px; width:auto; }
.nav__logo-img { display:block; height:44px; width:auto; filter: drop-shadow(0 0 6px rgba(184,115,51,.15)); }
body.light .nav__logo-img { filter: drop-shadow(0 0 4px rgba(140,80,20,.2)); }
.nav__logo { padding: 2px 0; }

/* ══════════════════════════════════════════
   BIGGER BODY TEXT + CONTRAST FIXES
══════════════════════════════════════════ */
body { font-size: 17px; }

.hero__sub    { font-size: 1.1rem; max-width: 540px; }
.section-sub  { font-size: 1.05rem; }
.service-desc { font-size: .9rem; line-height: 1.7; }
.repair-name  { font-size: .95rem; }
.repair-note  { font-size: .8rem; }
.about-copy p { font-size: 1.02rem; }
.testimonial-text { font-size: .95rem; }
.contact-val  { font-size: 1rem; }
.footer-link  { font-size: .9rem; }
.footer-brand p { font-size: .9rem; }

/* Nav links bigger */
.nav__link { font-size: .78rem; }

/* Light mode contrast improvements */
body.light .service-desc { color: #3A3A3C; }
body.light .section-sub  { color: #3A3A3C; }
body.light .repair-note  { color: #515154; }
body.light .hero__sub    { color: #3A3A3C; }
body.light .about-copy p { color: #3A3A3C; }
body.light .footer-brand p { color: #515154; }
body.light .footer-link  { color: #515154; }
body.light .testimonial-text { color: #3A3A3C; }
body.light .stat-label   { color: #6E6E73; }
body.light .contact-val  { color: #1D1D1F; }
body.light .footer-copy  { color: #6E6E73; }

/* ══════════════════════════════════════════
   SLIDE TEXT TRANSITION
══════════════════════════════════════════ */
#slideTitle, #slideSub {
  transition: opacity .5s ease, transform .5s ease;
}
.slide-fade-out {
  opacity: 0 !important;
  transform: translateY(10px) !important;
}
.slide-fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ══════════════════════════════════════════
   GOOGLE MAPS SECTION
══════════════════════════════════════════ */
.map-section {
  width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
}
.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.6) sepia(0.25) hue-rotate(5deg) brightness(0.92);
}
/* copper tint overlay */
.map-copper-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(184,115,51,0.10) 0%,
    rgba(120,70,20,0.06) 50%,
    rgba(184,115,51,0.08) 100%);
  pointer-events: none;
  z-index: 2;
}
/* info card */
.map-card {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(184,115,51,0.35);
  border-radius: 16px;
  padding: 16px 24px;
  text-decoration: none;
  min-width: 300px;
  transition: border-color .25s, box-shadow .25s;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.map-card:hover {
  border-color: var(--cu-mid);
  box-shadow: 0 12px 40px rgba(184,115,51,.18);
}
.map-card__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.map-card__info { display: flex; flex-direction: column; gap: 3px; }
.map-card__name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--cu-light);
  letter-spacing: .02em;
}
.map-card__addr {
  font-size: .78rem;
  color: var(--txt-dim);
  line-height: 1.55;
}
.map-card__cta {
  font-size: .72rem;
  color: var(--cu-mid);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: .03em;
}
/* light mode map adjustments */
body.light .map-iframe {
  filter: saturate(0.75) sepia(0.15) hue-rotate(5deg) brightness(0.97);
}
body.light .map-card {
  background: rgba(245,240,235,0.92);
  border-color: rgba(184,115,51,0.4);
}
body.light .map-card__name { color: var(--cu-dark); }
body.light .map-card__addr { color: #555; }
@media (max-width:600px) {
  .map-section { height: 400px; }
  .map-card { min-width: 260px; padding: 12px 16px; bottom: 20px; }
}

/* ══════════════════════════════════════════
   FOOTER LEGAL LINKS
══════════════════════════════════════════ */
.footer-legal-links {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-top: 8px;
}
.footer-legal-link {
  font-size: .82rem; letter-spacing: .04em;
  color: var(--txt-dim); transition: color .2s;
}
.footer-legal-link:hover { color: var(--cu-light); }
.footer-legal-sep { color: var(--txt-dim); font-size: .75rem; }

/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-page {
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  max-width: 860px; margin: 0 auto;
}
.legal-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 200;
  letter-spacing: -.02em; margin-bottom: 8px;
}
.legal-page .legal-updated {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .2em;
  color: var(--cu-mid); text-transform: uppercase; margin-bottom: 48px;
  display: flex; align-items: center; gap: 10px;
}
.legal-page .legal-updated::before {
  content: ''; display: block; width: 20px; height: 1px;
  background: var(--cu-grad-h);
}
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-size: 1.05rem; font-weight: 400; letter-spacing: -.01em;
  color: var(--cu-light); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-cu);
}
.legal-section h3 {
  font-size: .9rem; font-weight: 400; color: var(--txt-mid);
  margin-bottom: 10px; margin-top: 20px;
}
.legal-section p {
  font-size: .92rem; color: var(--txt-mid); line-height: 1.8;
  margin-bottom: 14px;
}
body.light .legal-section p { color: #3A3A3C; }
body.light .legal-section h2 { color: var(--cu-mid); }
.legal-section ul { padding-left: 20px; margin-bottom: 14px; }
.legal-section li {
  font-size: .9rem; color: var(--txt-mid); line-height: 1.75;
  margin-bottom: 8px; list-style: none; padding-left: 16px; position: relative;
}
body.light .legal-section li { color: #3A3A3C; }
.legal-section li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cu-mid);
}
.legal-table {
  width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: .82rem;
}
.legal-table th {
  background: var(--bg-2); color: var(--cu-light); font-weight: 400;
  padding: 10px 14px; text-align: left; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--border);
}
.legal-table td {
  padding: 10px 14px; color: var(--txt-mid); border: 1px solid var(--border);
  vertical-align: top; line-height: 1.6;
}
body.light .legal-table td { color: #3A3A3C; }
body.light .legal-table th { background: var(--bg-2); }

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--bg-1);
  border-top: 1px solid var(--border-cu);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform .4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
body.light .cookie-banner { background: rgba(245,245,247,.96); }
.cookie-banner__text {
  font-size: .85rem; color: var(--txt-mid); max-width: 640px; line-height: 1.65;
}
body.light .cookie-banner__text { color: #3A3A3C; }
.cookie-banner__text a { color: var(--cu-light); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn-accept {
  padding: 10px 24px; border-radius: var(--radius);
  background: var(--cu-grad-btn); color: #0A0505;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 400; cursor: pointer; border: none; font-family: var(--font);
  transition: box-shadow .2s, transform .2s;
}
.cookie-btn-accept:hover { box-shadow: var(--cu-glow); transform: translateY(-1px); }
.cookie-btn-reject {
  padding: 10px 24px; border-radius: var(--radius);
  background: transparent; border: 1px solid var(--border);
  color: var(--txt-mid); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; font-family: var(--font); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-btn-reject:hover { border-color: var(--txt-dim); color: var(--txt); }
.cookie-btn-config {
  padding: 10px 20px; border-radius: var(--radius);
  background: transparent; border: 1px solid var(--border-cu);
  color: var(--cu-light); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; font-family: var(--font); cursor: pointer;
  transition: background .2s;
}
.cookie-btn-config:hover { background: rgba(184,115,51,.08); }

/* ── Hero text always white (black overlay on both modes) ── */
.hero__content { color: #fff; }
.hero__eyebrow { color: rgba(255,255,255,.6) !important; }
body.light .hero__h1 strong { color: #fff; }
body.light .hero__sub { color: rgba(255,255,255,.82); }
body.light .hero__dots .hero__dot { background: rgba(255,255,255,.3); }
body.light .hero__counter { color: rgba(255,255,255,.4); }
body.light .hero__arrow { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.5); background: rgba(0,0,0,.15); }

/* ── Footer phone & address ── */
.footer-phone { font-size: 1rem !important; font-weight: 500; color: var(--txt-hi) !important; letter-spacing: -.01em; }
.footer-address { font-size: .9rem !important; line-height: 1.7; }
.footer-about-link { font-size: .82rem; color: var(--cu-light) !important; opacity:.85; transition:opacity .2s; }
.footer-about-link:hover { opacity:1; }

/* ── Urgent service card badge ── */
.service-card--urgent { position: relative; }
.urgent-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: linear-gradient(90deg, var(--cu-dark), var(--cu-mid));
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 20px;
  white-space: nowrap;
}
