/* =========================================================
   Matty Performance, mobilný autoservis
   Theme: graphite + automotive red
   Picked variants: nav-01 / hero-02 / about-03 / services-02 /
                    gallery-01 / reviews-03 / faq-01 / cta-02 /
                    contact-01 / map-02 / footer-02
   ========================================================= */

:root {
  /* Colors, automotive (graphite + red accent) */
  --color-primary: #d62828;       /* automotive red, primary brand */
  --color-primary-dark: #a51d1d;
  --color-secondary: #1c1c1f;     /* graphite, used on dark surfaces */
  --color-accent: #f5b400;        /* warm yellow for stars / highlights */
  --color-dark: #0e0e10;          /* near-black */
  --color-light: #f6f5f3;
  --color-text: #2a2a2c;
  --color-text-light: #5a5a5e;
  --color-text-on-dark: #e7e5e4;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f3f0;
  --color-border: #d8d5d1;

  /* Typography */
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 6px;
  --transition: 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(12, 10, 9, 0.06);
  --shadow-md: 0 4px 12px rgba(12, 10, 9, 0.08);
  --shadow-lg: 0 12px 32px rgba(12, 10, 9, 0.12);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-padding); }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-secondary); color: var(--color-text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--color-light); }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-secondary);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-secondary); border-color: var(--color-secondary); }
.btn-outline:hover { background: var(--color-secondary); color: #fff; }
.btn-outline-on-dark { color: #fff; border-color: #fff; }
.btn-outline-on-dark:hover { background: #fff; color: var(--color-secondary); }

/* === EYEBROW === */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

/* === SECTION HEADERS === */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; padding: 0 24px; }
.section-head p { color: var(--color-text-light); font-size: 1.05rem; }

/* === FOCUS === */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* === NAVIGATION (nav-01) === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-inner .logo { display: flex; align-items: center; }
.nav-inner .logo img { height: 40px; width: auto; display: block; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.nav-links > li > a:hover { color: var(--color-primary); }

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  margin-left: 4px;
  transition: transform var(--transition);
}
.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
  transform: translateY(1px) rotate(225deg);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: #fff;
  border: 1px solid var(--color-border);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 240px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
/* invisible hover bridge so the cursor can travel from the parent link to
   the dropdown without :hover dropping out */
.dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown li { margin: 0; padding: 0; }
.dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.nav-cta {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--color-primary-dark); color: #fff; }
.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
  }
  .has-dropdown > a::after {
    margin-left: 12px;
    width: 9px;
    height: 9px;
    border-width: 2px;
    transform: translateY(-2px) rotate(45deg);
  }
  .has-dropdown:hover > a::after,
  .has-dropdown:focus-within > a::after {
    transform: translateY(-2px) rotate(45deg);
  }
  .has-dropdown.open > a::after,
  .has-dropdown.open:focus-within > a::after {
    transform: translateY(2px) rotate(225deg);
  }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 8px 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }
  .has-dropdown.open > .dropdown { display: block; }
  .dropdown a { padding: 8px 0; font-size: 0.9rem; border-bottom: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* === HERO (hero-02) === */
.hero {
  position: relative;
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  color: var(--color-light);
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12, 10, 9, 0.82), rgba(28, 25, 23, 0.7));
  z-index: 1;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero h1 { color: var(--color-light); margin-bottom: 20px; }
.hero .lede { font-size: 1.2rem; max-width: 680px; color: var(--color-text-on-dark); margin-bottom: 32px; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-02 { text-align: center; }
.hero-02 .hero-inner { max-width: 820px; margin: 0 auto; }
.hero-02 h1 { margin-left: auto; margin-right: auto; max-width: 820px; }
.hero-02 .lede { margin-left: auto; margin-right: auto; }
.hero-02 .hero-cta { justify-content: center; }

/* === ABOUT (about-03) === */
.about-03 .split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-03 .split img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 800px) {
  .about-03 .split > .split-text { order: 1; }
  .about-03 .split > img { order: 2; }
}
@media (max-width: 800px) {
  .about-03 .split { grid-template-columns: 1fr; gap: 32px; }
  .about-03 .split > .split-text { order: 1; }
  .about-03 .split > img { order: 2; aspect-ratio: 4/3; }
}
.about-03 .split-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 22px;
}
.about-03 .split-text p {
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-03 .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* === SERVICES (services-02, alternating bands) === */
.services-zigzag-banded { padding: 0; }
.services-zigzag-banded .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.services-zigzag-banded .row img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
.services-zigzag-banded > .row-band:nth-child(even) { background: var(--color-bg); }
.services-zigzag-banded > .row-band:nth-child(odd) { background: var(--color-bg-alt); }
@media (min-width: 768px) {
  .services-zigzag-banded .row.image-right > div:first-child { order: 2; }
  .services-zigzag-banded .row.image-right > div:last-child { order: 1; }
}
@media (max-width: 800px) {
  .services-zigzag-banded .row { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
}
.services-zigzag-banded .section-head { padding: 80px 24px 0; max-width: 760px; margin: 0 auto; }
.services-zigzag-banded h3 { margin-bottom: 12px; }
.services-zigzag-banded p { color: var(--color-text-light); margin-bottom: 20px; line-height: 1.7; }

/* === GALLERY (gallery-01) === */
.gallery-01 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-01 .gallery-grid figure {
  margin: 0; overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 4/3; cursor: zoom-in;
  position: relative;
}
.gallery-01 .gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-01 .gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-01 .gallery-grid figure::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.0);
  transition: background var(--transition);
  pointer-events: none;
}
.gallery-01 .gallery-grid figure:hover::after { background: rgba(0,0,0,0.18); }
.gallery-01 .gallery-grid figure:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }
@media (max-width: 768px) {
  .gallery-01 .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Lightbox */
.lb-backdrop {
  position: fixed; inset: 0;
  background: rgba(8, 8, 8, 0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lb-backdrop.is-open { display: flex; opacity: 1; }
body.lb-locked { overflow: hidden; }
.lb-image-wrap { position: relative; max-width: 92vw; max-height: 86vh; display: flex; align-items: center; justify-content: center; }
.lb-image {
  max-width: 92vw; max-height: 86vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  display: block;
  user-select: none;
}
.lb-btn {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
}
.lb-btn:hover { background: rgba(255,255,255,0.22); transform: scale(1.05); }
.lb-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.05); }
.lb-next:hover { transform: translateY(-50%) scale(1.05); }
.lb-counter {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 500;
  background: rgba(0,0,0,0.5);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (max-width: 600px) {
  .lb-btn { width: 42px; height: 42px; }
  .lb-close { top: 14px; right: 14px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-counter { bottom: 14px; font-size: 0.8rem; }
}

/* === REVIEWS (reviews-03) === */
.reviews-03 { background: var(--color-bg-alt); padding: var(--section-padding); }
.reviews-03 .wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.reviews-03 .hd { text-align: center; margin-bottom: 56px; }
.reviews-03 .layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .reviews-03 .layout { grid-template-columns: 1fr; } }

.reviews-03 .stars { display: inline-flex; gap: 2px; color: var(--color-accent); }
.reviews-03 .stars svg { width: 18px; height: 18px; fill: currentColor; }

.reviews-03 .featured {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reviews-03 .featured .stars { color: var(--color-accent); }
.reviews-03 .featured .text {
  font-size: 1.35rem;
  line-height: 1.55;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.005em;
  flex: 1;
  margin: 0;
}
.reviews-03 .featured .meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.reviews-03 .featured .name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
}
.reviews-03 .featured .date {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: 2px;
}
.reviews-03 .featured .source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}
.reviews-03 .featured .source svg { width: 18px; height: 18px; }

.reviews-03 .side-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.reviews-03 .side-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.reviews-03 .side-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
}
.reviews-03 .side-card .stars { margin-bottom: 12px; }
.reviews-03 .side-card .stars svg { width: 14px; height: 14px; }
.reviews-03 .side-card .text {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.reviews-03 .side-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
.reviews-03 .side-card .name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.92rem;
}
.reviews-03 .side-card .date {
  display: block;
  color: var(--color-text-light);
  font-size: 0.76rem;
  margin-top: 2px;
}
.reviews-03 .side-card .source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text-light);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}
.reviews-03 .side-card .source svg { width: 14px; height: 14px; }

/* === FAQ (faq-01) === */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; text-align: left; padding: 22px 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  color: var(--color-secondary);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; background: transparent;
}
.faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"]::after { transform: translateY(2px) rotate(225deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-answer-inner { padding: 0 0 22px; color: var(--color-text-light); }
.faq-item.is-open .faq-answer { max-height: 500px; }

/* === CTA (cta-02), background moved to CSS class per blueprint === */
.cta-02 {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 24px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-02-bg {
  background-image: url('https://images.pexels.com/photos/3807277/pexels-photo-3807277.jpeg?auto=compress&cs=tinysrgb&w=1920&fm=webp');
}
.cta-02::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,10,9,0.82), rgba(28,25,23,0.74));
  z-index: 1;
}
.cta-02 .cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-02 .eyebrow { color: var(--color-accent); margin-bottom: 12px; }
.cta-02 h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.cta-02 p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-02 .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-02 .btn-primary { background: var(--color-primary); }
.cta-02 .btn-primary:hover { background: #fff; color: var(--color-secondary); }
.cta-02 .btn-outline { color: #fff; border-color: #fff; background: transparent; }
.cta-02 .btn-outline:hover { background: #fff; color: var(--color-secondary); }

/* === CONTACT (contact-01) === */
.contact-01 { background: var(--color-secondary); padding: 80px 0; }
.contact-01 .grid {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-01 .info-side { color: #fff; }
.contact-01 .info-side h2 { color: #fff; margin-bottom: 12px; }
.contact-01 .accent-line {
  width: 60px; height: 4px;
  background: var(--color-primary);
  border-radius: 4px;
  margin-bottom: 24px;
}
.contact-01 .info-side .lead { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.contact-01 .info-block {
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-01 .info-block .lbl {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  display: block;
}
.contact-01 .info-block strong {
  color: #fff;
  display: block;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}
.contact-01 .info-block a {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  display: block;
}
.contact-01 .info-block a:hover { text-decoration: underline; }
.contact-01 .form-side {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
}
.contact-01 .form-side h3 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-01 .form-side .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-01 .form-side .form-group { margin-bottom: 14px; }
.contact-01 .form-side label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--color-secondary);
}
.contact-01 .form-side input,
.contact-01 .form-side textarea {
  width: 100%;
  padding: 12px 14px;
  background: #f5f3ee;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--transition);
}
.contact-01 .form-side input:focus,
.contact-01 .form-side textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.contact-01 .form-side textarea { resize: vertical; min-height: 130px; }
.contact-01 .form-consent {
  margin: 18px 0 24px;
  font-size: 0.92rem;
  color: var(--color-text-light);
}
.contact-01 .form-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.contact-01 .form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.contact-01 .form-consent label > span { line-height: 1.5; }
.contact-01 .form-consent a { color: var(--color-primary); text-decoration: underline; }
.contact-01 .form-side button[type="submit"] {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1rem;
  transition: var(--transition);
}
.contact-01 .form-side button[type="submit"]:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}
@media (max-width: 800px) {
  .contact-01 .grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-01 .form-side .row-2 { grid-template-columns: 1fr; }
}

/* === MAP (map-02) === */
.map-02 {
  position: relative;
  width: 100%;
  height: 480px;
  line-height: 0;
  overflow: hidden;
}
.map-02 iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.map-02 .info-card {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 340px;
  max-width: calc(100% - 48px);
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  line-height: 1.55;
  z-index: 2;
}
.map-02 .info-card .eyebrow {
  display: inline-block;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.map-02 .info-card h3 {
  font-size: 1.2rem;
  margin: 0 0 12px;
  color: var(--color-secondary);
}
.map-02 .row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.92rem;
  color: var(--color-text);
}
.map-02 .row:first-of-type { border-top: 0; padding-top: 0; }
.map-02 .row svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--color-primary);
  margin-top: 2px;
}
.map-02 .row .lbl {
  display: block;
  color: var(--color-text-light);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.map-02 .row .val,
.map-02 .row a {
  display: block;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}
.map-02 .row a:hover { color: var(--color-primary); }
.map-02 .directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.map-02 .directions-btn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.map-02 .directions-btn svg { width: 14px; height: 14px; }
@media (max-width: 700px) {
  .map-02 { height: 540px; }
  .map-02 .info-card {
    position: relative;
    top: auto; left: auto;
    width: auto;
    max-width: none;
    margin: -80px 16px 0;
    z-index: 2;
  }
  .map-02 iframe { height: 320px; }
}

/* === FOOTER (footer-02) === */
.site-footer.footer-02 {
  background: var(--color-dark);
  color: var(--color-text-on-dark);
  padding: 64px 0 0;
  text-align: center;
}
.footer-02 .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-02 .brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.footer-02 .footer-logo { height: 48px; width: auto; }
.footer-02 .tagline {
  color: rgba(231, 229, 228, 0.65);
  font-size: 1rem;
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}
.footer-02 .nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 0 0 32px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(231, 229, 228, 0.1);
  list-style: none;
}
.footer-02 .nav-row a {
  color: var(--color-text-on-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-02 .nav-row a:hover { color: var(--color-primary); }
.footer-02 .contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-bottom: 32px;
}
.footer-02 .contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-02 .contact-row a:hover { color: var(--color-primary); }
.footer-02 .contact-row svg { width: 16px; height: 16px; opacity: 0.7; }
.footer-02 .accent-line {
  width: 64px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.footer-02 .bottom-bar {
  border-top: 1px solid rgba(231, 229, 228, 0.1);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 0.82rem;
  color: rgba(231, 229, 228, 0.5);
}
.footer-02 .bottom-bar p { margin: 0; }
.footer-02 .bottom-bar a { color: rgba(231, 229, 228, 0.7); }
.footer-02 .bottom-bar a:hover { color: var(--color-primary); }
.footer-02 .agency-credit a { color: var(--color-primary); font-weight: 600; }
.footer-02 .sep { color: rgba(231, 229, 228, 0.3); }
@media (max-width: 600px) {
  .footer-02 .nav-row { gap: 10px 18px; }
  .footer-02 .contact-row { flex-direction: column; gap: 10px; }
  .footer-02 .bottom-bar .sep { display: none; }
}

/* === WHATSAPP FLOATING BUTTON === */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 99;
  transition: transform var(--transition), background var(--transition);
}
.wa-float:hover {
  background: #1ebe5b;
  color: #fff;
  transform: scale(1.05);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  display: block;
}
@media (max-width: 600px) {
  .wa-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
  .wa-float svg { width: 28px; height: 28px; }
}

/* === LEGAL / 404 PAGES === */
.legal-page {
  padding: 60px 0 80px;
}
.legal-page .breadcrumb {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.legal-page .breadcrumb a { color: var(--color-text-light); }
.legal-page .breadcrumb a:hover { color: var(--color-primary); }
.legal-page h1 { margin-bottom: 12px; }
.legal-page .lede {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 720px;
}
.legal-page h2 {
  font-size: 1.4rem;
  margin: 40px 0 14px;
}
.legal-page p, .legal-page li {
  color: var(--color-text);
  line-height: 1.75;
}
.legal-page ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-page li { margin-bottom: 8px; }
.legal-page .updated {
  margin-top: 48px;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.error-page {
  min-height: calc(100vh - 60px);
  display: grid;
  place-items: center;
  padding: 60px 24px;
  background: var(--color-bg-alt);
}
.error-page .error-inner {
  text-align: center;
  max-width: 560px;
}
.error-page .error-code {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 1;
  color: var(--color-primary);
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}
.error-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}
.error-page p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.error-page .error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float, .lb-btn, .gallery-01 .gallery-grid img,
  .service-card, .reviews-03 .side-card { transition: none; }
}
