/* ============================================================
   MM PAINTING & DESIGN — styles.css  v2
   Brand: Navy #0B1F3B | Red #D12B2B | White #FFF | Gray #F5F7FA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CUSTOM PROPERTIES ── */
:root {
  --navy:        #0B1F3B;
  --navy-light:  #122d52;
  --navy-dark:   #071428;
  --red:         #D12B2B;
  --red-dark:    #a81f1f;
  --white:       #FFFFFF;
  --gray-bg:     #F5F7FA;
  --gray-light:  #E8ECF2;
  --gray-mid:    #8A9AB5;
  --gray-text:   #4A5568;
  --text-dark:   #1A2540;

  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-h:    72px;
  --notif-h:     40px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;

  --shadow-sm:   0 2px 8px rgba(11,31,59,.08);
  --shadow-md:   0 6px 24px rgba(11,31,59,.13);
  --shadow-lg:   0 16px 48px rgba(11,31,59,.18);

  --t:           0.22s ease;
  --t-slow:      0.38s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--notif-h));
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── ACCESSIBILITY ── */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ── SECTION BASE ── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: rgba(255,255,255,0.55); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section-title.light { color: var(--white); }
.section-sub { margin-top: 1rem; font-size: clamp(0.93rem, 2vw, 1.05rem); color: var(--gray-text); }
.section-sub.light { color: rgba(255,255,255,0.68); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  box-shadow: 0 6px 20px rgba(209,43,43,.38);
}
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.4);
}
.btn-lg  { padding: 0.95rem 2.25rem; font-size: 0.97rem; min-height: 52px; }
.btn-xl  { padding: 1.05rem 2.5rem;  font-size: 1.02rem; min-height: 56px; }
.btn-full { width: 100%; }

/* ── NOTIFICATION BAR ── */
.notif-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  text-align: center;
  position: relative;
  z-index: 200;
  min-height: var(--notif-h);
}
.notif-bar span { display: flex; align-items: center; gap: 0.5rem; }
.notif-bar strong { color: var(--white); }
.notif-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.45);
  font-size: 1.15rem; line-height: 1; padding: 0.25rem;
  transition: color var(--t);
}
.notif-close:hover { color: var(--white); }

/* ── STICKY HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0,0,0,.22);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.38); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 46px; width: auto; object-fit: contain; }

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 0.75rem;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.8);
  padding: 0.38rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
  height: 34px;
}
.lang-btn:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.3); color: var(--white); }
.lang-btn[aria-expanded="true"] { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.3); }
.lang-current { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; }
.lang-chevron { transition: transform 0.2s ease; opacity: 0.6; }
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 148px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  z-index: 200;
  overflow: hidden;
  animation: dropIn 0.18s ease;
}
.lang-dropdown[hidden] { display: none; }
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-dropdown li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background var(--t);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lang-dropdown li:last-child { border-bottom: none; }
.lang-dropdown li:hover { background: rgba(255,255,255,0.08); }
.lang-dropdown li[aria-selected="true"] { background: rgba(209,43,43,.15); }
.lang-code {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  min-width: 24px;
}
.lang-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.lang-dropdown li[aria-selected="true"] .lang-name { color: var(--white); font-weight: 600; }

/* Mobile lang switcher dropdown direction */
.lang-dropdown-mobile {
  right: 0;
  left: auto;
}

/* ── HEADER RIGHT (mobile container) ── */
.header-right-mobile {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

/* HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--t);
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--navy-dark);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav { padding: 2rem 1.5rem 5rem; }
.mobile-nav-list { margin-bottom: 2rem; }
.mobile-nav-link {
  display: block;
  padding: 0.9rem 0;
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--t), padding-left var(--t);
}
.mobile-nav-link:hover { color: var(--white); padding-left: 0.5rem; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 0.85rem; }

/* ── HERO — TWO-COLUMN LAYOUT ── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: clamp(580px, 88vh, 840px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Geo decorations */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-geo { position: absolute; border-radius: 2px; }
.hero-geo-1 {
  width: clamp(260px, 50vw, 640px);
  height: clamp(260px, 50vw, 640px);
  background: linear-gradient(135deg, rgba(209,43,43,.1), transparent);
  top: -15%;
  right: -6%;
  transform: rotate(12deg);
  border: 1px solid rgba(209,43,43,.1);
}
.hero-geo-2 {
  width: clamp(100px, 16vw, 200px);
  height: clamp(100px, 16vw, 200px);
  background: linear-gradient(225deg, rgba(255,255,255,.04), transparent);
  bottom: 8%;
  left: 4%;
  transform: rotate(-8deg);
  border: 1px solid rgba(255,255,255,.06);
}
.hero-geo-3 {
  width: 3px;
  height: clamp(80px, 14vw, 180px);
  background: linear-gradient(to bottom, var(--red), transparent);
  top: 0;
  left: clamp(48px, 8vw, 120px);
  opacity: 0.35;
}
.hero-accent-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--red) 0%, var(--red) 35%, transparent 100%);
}

/* HERO GRID: left text | right logo */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

/* HERO LEFT */
.hero-content { display: flex; flex-direction: column; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem; }
.eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.28rem 0.85rem;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero-headline-em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  margin-bottom: 0.6rem;
  line-height: 1.72;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.02em;
}

/* HERO RIGHT: Logo column */
.hero-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* Subtle radial glow behind logo */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at center, rgba(209,43,43,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.55));
  animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-img { animation: none; }
}

/* ── SERVICES ── */
.services-section { background: var(--gray-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(209,43,43,.18); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  background: rgba(11,31,59,.06);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--navy);
  transition: background var(--t), color var(--t);
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--navy); margin-bottom: 0.55rem;
}
.service-desc { font-size: 0.88rem; color: var(--gray-text); line-height: 1.72; }

/* ── WHY SECTION ── */
.why-section { background: var(--navy); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.why-cta { margin-top: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1.1rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--t), border-color var(--t);
}
.why-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(209,43,43,.28); }
.why-icon {
  flex-shrink: 0; width: 38px; height: 38px;
  background: rgba(209,43,43,.14);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.why-item strong { display: block; color: var(--white); font-size: 0.92rem; font-weight: 600; margin-bottom: 0.18rem; }
.why-item p { font-size: 0.82rem; color: rgba(255,255,255,0.52); line-height: 1.6; }

/* ── GALLERY ── */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item figcaption { padding: 0.6rem 0.75rem; font-size: 0.78rem; font-weight: 500; color: var(--gray-text); background: var(--gray-bg); }
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform var(--t);
}
.gallery-item:hover .gallery-img { transform: scale(1.03); }
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, rgba(209,43,43,.25) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform var(--t);
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.03); }
.gallery-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 12px);
}
.placeholder-label {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 0.38rem 0.75rem;
  border-radius: var(--radius-sm);
}

/* ── REVIEWS ── */
.reviews-section { background: var(--gray-bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: box-shadow var(--t), transform var(--t);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { display: flex; gap: 3px; }
.review-text { font-size: 0.9rem; line-height: 1.76; color: var(--gray-text); font-style: italic; flex: 1; }
.review-author {
  display: flex; align-items: center; gap: 0.7rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-light);
}
.review-avatar {
  width: 38px; height: 38px;
  background: var(--navy); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.review-author span { font-size: 0.76rem; color: var(--gray-mid); }
.reviews-cta { text-align: center; }
.google-btn {
  display: inline-flex; gap: 0.6rem;
  border-color: var(--gray-light); color: var(--text-dark);
  box-shadow: var(--shadow-sm); background: var(--white);
}
.google-btn:hover { border-color: var(--navy); background: var(--navy); color: var(--white); box-shadow: var(--shadow-md); }

/* ── ABOUT ── */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-img-placeholder {
  aspect-ratio: 1; max-width: 400px;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-logo-mark { width: 80%; height: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.88; }
.about-stat-bar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1rem;
}
.about-stat {
  text-align: center; padding: 0.9rem;
  background: var(--gray-bg); border-radius: var(--radius-md); border: 1px solid var(--gray-light);
}
.about-stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800; color: var(--navy); }
.about-stat span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-mid); }
.about-text .section-eyebrow { margin-bottom: 0.5rem; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { font-size: 0.95rem; line-height: 1.78; color: var(--gray-text); margin-bottom: 1rem; }
.about-text p strong { color: var(--navy); font-weight: 600; }
.service-area-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.5rem; }
.area-tag {
  padding: 0.32rem 0.85rem;
  background: rgba(11,31,59,.05); border: 1px solid rgba(11,31,59,.11);
  border-radius: 100px;
  font-size: 0.76rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em;
}

/* ── FAQ ── */
.faq-section { background: var(--gray-bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item[open] { border-color: rgba(209,43,43,.22); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.4rem;
  font-size: 0.94rem; font-weight: 600; color: var(--navy);
  cursor: pointer; list-style: none; user-select: none; gap: 1rem;
  transition: color var(--t);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.25rem; font-weight: 400; color: var(--red); flex-shrink: 0; transition: transform var(--t); }
.faq-item[open] .faq-question { color: var(--red); }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.15rem; border-top: 1px solid var(--gray-light); }
.faq-answer p { padding-top: 0.9rem; font-size: 0.9rem; line-height: 1.75; color: var(--gray-text); }

/* ── CONTACT ── */
.contact-section { background: var(--navy); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: flex-start;
}
.contact-actions { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-info-block {
  margin-top: 1rem;
  padding: 1.4rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.contact-info-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.86rem; color: rgba(255,255,255,0.68); }
.contact-info-item svg { flex-shrink: 0; opacity: 0.55; color: var(--white); }
.contact-email { color: rgba(255,255,255,0.68); transition: color var(--t); }
.contact-email:hover { color: var(--white); }

.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.38rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; color: var(--text-dark); }
.form-group label span { color: var(--red); }
.form-group input,
.form-group textarea {
  padding: 0.72rem 0.95rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  min-height: 48px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,59,.1);
  outline: none;
}
.form-group input.error,
.form-group textarea.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(209,43,43,.1); }
.form-error { font-size: 0.73rem; color: var(--red); font-weight: 500; min-height: 1rem; }
.form-submit { margin-top: 1.2rem; gap: 0.55rem; }
.form-note { text-align: center; margin-top: 0.7rem; font-size: 0.73rem; color: var(--gray-mid); }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); padding-top: clamp(3rem, 5vw, 4rem); }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 46px; width: auto; object-fit: contain; margin-bottom: 0.7rem; }
.footer-tagline { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.footer-nav-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 0.9rem; }
.footer-nav-list li { margin-bottom: 0.45rem; }
.footer-nav-list a { font-size: 0.86rem; color: rgba(255,255,255,0.6); transition: color var(--t); }
.footer-nav-list a:hover { color: var(--white); }
.footer-contact p { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 0.38rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--t); }
.footer-contact a:hover { color: var(--white); }
.footer-hours { font-size: 0.76rem; color: rgba(255,255,255,0.36) !important; margin-top: 0.2rem; }
.footer-bottom { padding: 1.1rem 0; background: rgba(0,0,0,.2); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(209,43,43,.4);
  z-index: 90;
  transition: background var(--t), transform var(--t), opacity var(--t);
  opacity: 0;
}
.back-to-top:not([hidden]) { opacity: 1; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ── FLOATING MOBILE CALL ── */
.mobile-float-call {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 88;
  background: var(--red);
  color: var(--white);
  padding: 0; /* handled by inner */
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  align-items: center;
  box-shadow: 0 6px 28px rgba(209,43,43,.5);
  transition: box-shadow var(--t), transform var(--t);
  overflow: hidden;
  white-space: nowrap;
  gap: 0;
  min-height: 52px;
}
.mobile-float-call:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 10px 36px rgba(209,43,43,.6);
}
.mobile-float-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: rgba(0,0,0,.15);
  flex-shrink: 0;
}
.mobile-float-call span:not(.mobile-float-icon) {
  padding: 0 1.25rem 0 0.75rem;
  font-size: 0.95rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── ≤ 1024px ── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-logo-wrap { max-width: 380px; }
  .why-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-placeholder { max-width: 100%; aspect-ratio: 16/7; }
  .about-logo-mark { width: 28%; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── ≤ 768px ── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Hide desktop nav, show hamburger zone */
  .main-nav { display: none; }
  .header-right-mobile { display: flex; }

  /* Hero: stack logo above text on mobile */
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    text-align: center;
  }
  .hero-content { order: 2; align-items: center; }
  .hero-logo-col { order: 1; }
  .hero-logo-wrap { max-width: clamp(200px, 55vw, 300px); margin: 0 auto; }
  .hero-logo-img { animation: none; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .trust-badges { justify-content: center; border-top: none; padding-top: 0; }

  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .mobile-float-call { display: flex; }
  .back-to-top { bottom: 5rem; right: 1rem; }
}

/* ── ≤ 480px ── */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
  .contact-form { padding: 1.25rem; }
}

/* ── ≤ 375px ── */
@media (max-width: 375px) {
  .about-stat-bar { grid-template-columns: 1fr 1fr; }
  .about-stat:last-child { grid-column: 1 / -1; }
  .footer-nav { display: none; }
}

/* ── ≥ 1440px ── */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
