/* ARIA — okná a dvere
   Theme: Slate Glass (cool blue + warm wood accent)
   Layout: single-page (index + privacy + 404)
*/

:root {
  /* Colors */
  --color-primary: #2c5d8a;
  --color-secondary: #1f2937;
  --color-accent: #c89366;
  --color-dark: #0f172a;
  --color-light: #f8fafc;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-on-dark: #e2e8f0;
  --color-bg: #ffffff;
  --color-bg-alt: #f1f5f9;
  --color-border: #e2e8f0;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.14);
}

/* === 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.015em;
}
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); }

:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 2px; border-radius: 3px; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -48px; left: 8px;
  background: var(--color-secondary);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  z-index: 1000;
  transition: top var(--transition);
}
.skip-link:focus { top: 8px; 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-secondary); 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; }

/* === EYEBROW === */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  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; }
.section-head p { color: var(--color-text-light); font-size: 1.05rem; }

/* === NAVIGATION === */
.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: 64px; width: auto; display: block; }
@media (max-width: 600px) {
  .nav-inner .logo img { height: 52px; }
}
.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: calc(100% + 4px);
  left: -16px;
  background: #fff;
  border: 1px solid var(--color-border);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 260px;
  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;
}
.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-secondary); 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: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .has-dropdown > a::after {
    margin-left: 12px;
    width: 9px;
    height: 9px;
    border-width: 2px;
    transform: translateY(-2px) rotate(45deg);
  }
  /* Disable hover/focus-within rotation on mobile — only .open controls it */
  .has-dropdown:hover > a::after,
  .has-dropdown:focus-within > a::after {
    transform: translateY(-2px) rotate(45deg);
  }
  .has-dropdown.open > 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 {
  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(15,23,42,0.78), rgba(31,41,55,0.62));
  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); max-width: 880px; margin-bottom: 20px; }
.hero .lede { font-size: 1.2rem; max-width: 720px; color: var(--color-text-on-dark); margin-bottom: 32px; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-primary { background: var(--color-primary); }
.hero .btn-primary:hover { background: #fff; color: var(--color-secondary); }

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

/* === ABOUT-03 === */
.about-03 .split { grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about-03 .split img { aspect-ratio: 4/5; }
@media (min-width: 800px) {
  .about-03 .split > .split-text { order: 1; }
  .about-03 .split > img { order: 2; }
}
@media (max-width: 800px) {
  .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; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { width: 100%; border-radius: var(--border-radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.split h2 { margin-bottom: 20px; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* === SERVICES (services-02, zigzag banded) === */
/* The section-head + first row share one white band so the header feels attached
   to row 1. From row 2 onward, bands alternate alt-grey / white. We use an explicit
   .is-alt class on every other row-band so the math doesn't depend on sibling
   counting (which breaks once you add or remove rows). */
.services-zigzag-banded { padding: 0; background: var(--color-bg); }
.services-zigzag-banded .section-head {
  padding: 80px 24px 24px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-bg);
}
.services-zigzag-banded .row-band { background: var(--color-bg); }
.services-zigzag-banded .row-band.is-alt { background: var(--color-bg-alt); }
.services-zigzag-banded .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 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 h3 {
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  margin-bottom: 14px;
}
.services-zigzag-banded .row p {
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
@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;
  }
}

/* === 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-01 — 3-card grid) === */
.reviews-01 .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.reviews-01 .review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.reviews-01 .review-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.reviews-01 .stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b400;
  margin-bottom: 14px;
}
.reviews-01 .stars svg { width: 16px; height: 16px; fill: currentColor; }
.reviews-01 .review-text {
  color: var(--color-text);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0 0 22px;
  flex: 1;
}
.reviews-01 .meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.reviews-01 .author-block .name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.95rem;
}
.reviews-01 .author-block .date {
  display: block;
  color: var(--color-text-light);
  font-size: 0.78rem;
  margin-top: 2px;
}
.reviews-01 .source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-light);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.reviews-01 .source svg { width: 16px; height: 16px; flex-shrink: 0; }

/* === FAQ (faq-01) === */
#faq { background: var(--color-bg); }
.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-02 === */
.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::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.82), rgba(31,41,55,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; }
.cta-02 .btn-outline:hover { background: #fff; color: var(--color-secondary); }

/* === CONTACT (contact-01 — dark info column + white form) === */
.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.9rem;
  margin-bottom: 6px;
  color: var(--color-secondary);
}
.contact-01 .form-side input:not([type="checkbox"]), .contact-01 .form-side textarea {
  width: 100%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition);
}
.contact-01 .form-side input:not([type="checkbox"]):focus, .contact-01 .form-side textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(44, 93, 138, 0.15);
}
.contact-01 .form-side textarea { resize: vertical; min-height: 130px; }
.contact-01 .form-consent {
  margin: 18px 0 22px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.contact-01 .form-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.55;
}
.contact-01 .form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.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;
  border: none;
  transition: var(--transition);
}
.contact-01 .form-side button[type="submit"]:hover {
  background: var(--color-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 — overlay info card) === */
.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 { font-size: 0.95rem; }
.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: 84px;
  width: auto;
  background: #f8f4ec;
  padding: 8px 16px;
  border-radius: var(--border-radius);
}
.footer-02 .tagline {
  color: rgba(226,232,240,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(226,232,240,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-accent); }
.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: 1.05rem;
  transition: color var(--transition);
}
.footer-02 .contact-row a:hover { color: var(--color-accent); }
.footer-02 .contact-row svg { width: 16px; height: 16px; opacity: 0.7; }
.footer-02 .accent-line {
  width: 64px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.footer-02 .bottom-bar {
  border-top: 1px solid rgba(226,232,240,0.1);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 0.82rem;
  color: rgba(226,232,240,0.5);
}
.footer-02 .bottom-bar p { margin: 0; }
.footer-02 .bottom-bar a { color: rgba(226,232,240,0.7); }
.footer-02 .bottom-bar a:hover { color: var(--color-accent); }
.footer-02 .agency-credit a { color: var(--color-accent); font-weight: 600; }
.footer-02 .sep { color: rgba(226,232,240,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 FLOAT === */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 99;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* === LEGAL PAGE === */
.legal-page { padding: 64px 0 96px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .legal-meta { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.35rem; margin-top: 36px; margin-bottom: 12px; color: var(--color-secondary); }
.legal-page ul { padding-left: 22px; margin-bottom: 16px; }
.legal-page ul li { margin-bottom: 6px; color: var(--color-text); }
.legal-page p { color: var(--color-text); }
.legal-page .btn { margin-top: 32px; }

/* === ERROR PAGE === */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--color-bg-alt);
}
.error-page .error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 8px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.error-page h1 { margin-bottom: 16px; }
.error-page .error-text { color: var(--color-text-light); font-size: 1.05rem; max-width: 520px; margin: 0 auto 32px; }
.error-page .error-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* === 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) {
  html { scroll-behavior: auto; }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .lb-backdrop, .lb-btn, .gallery-01 .gallery-grid img,
  .service-card, .reviews-02 .quote, .nav-cta, .btn {
    transition: none;
  }
}
