/* Gio's Epoxy Flooring — premium orange brand (HTML/CSS only) */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap");

:root {
  --orange: #f97316;
  --orange-bright: #fb923c;
  --orange-deep: #ea580c;
  --orange-glow: rgba(249, 115, 22, 0.4);
  --orange-panel: linear-gradient(145deg, #4a3020 0%, #2a1a10 100%);
  --black: #0a0a0a;
  --charcoal: #141414;
  --card: #1c1c1c;
  --card-hover: #252525;
  --white: #ffffff;
  --grey: #a3a3a3;
  --border: rgba(255, 255, 255, 0.08);
  --font: "Montserrat", "Segoe UI", sans-serif;
  --max: 1140px;
  --nav-h: 76px;
  --section-y: clamp(2.75rem, 5vw, 4rem);
  --radius: 6px;
  --radius-btn: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-bright); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
}
.logo:hover { color: var(--white); }
.logo-main {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--orange);
}
.logo-sub {
  margin-top: 0.15rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
}
.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--white);
  border-bottom-color: var(--orange);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.lang-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.lang-toggle button {
  border: none;
  background: transparent;
  color: var(--grey);
  padding: 0.28rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font);
}
.lang-toggle button.active {
  background: var(--orange);
  color: var(--black);
}
.btn-phone-header {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--orange);
  color: var(--black) !important;
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-phone-header:hover {
  background: var(--orange-bright);
  color: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--orange-glow);
}
.nav-toggle {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.4rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .btn-phone-header { display: inline-flex; }
}
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: var(--charcoal);
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 0.5rem 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange {
  background: var(--orange);
  color: var(--black) !important;
  box-shadow: 0 4px 14px var(--orange-glow);
}
.btn-orange:hover {
  background: var(--orange-bright);
  color: var(--black) !important;
  box-shadow: 0 6px 22px var(--orange-glow);
}
.btn-outline {
  background: rgba(0, 0, 0, 0.55);
  color: var(--white) !important;
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: rgba(249, 115, 22, 0.12);
  color: var(--white) !important;
}
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.75rem; font-size: 0.82rem; }
.btn-ico { font-size: 0.95rem; line-height: 1; }

/* Hero — cinematic, one photo only */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.25) 100%),
    url("../images/hero-garage.jpg") center / cover no-repeat;
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  width: 100%;
}
.hero h1 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}
.hero-line1 {
  display: block;
  font-size: clamp(1.85rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--white);
}
.hero-line2 {
  display: block;
  font-size: clamp(2.5rem, 7.5vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--orange);
  margin: 0.1rem 0 1rem;
}
.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 600;
  color: var(--grey);
  max-width: 30rem;
  margin: 0 0 1.5rem;
}
.hero-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin: 0 0 1.75rem;
  max-width: 36rem;
}
@media (min-width: 900px) {
  .hero-icons { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 42rem; }
}
.hero-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}
.hi-ico {
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: var(--orange);
  border-radius: 6px;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hi-text { line-height: 1.1; }
.hi-top {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.hi-sub {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero mini strip (like Example #2) */
.hero-strip {
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1.15rem 0;
}
@media (min-width: 700px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .strip-grid { grid-template-columns: repeat(4, 1fr); }
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
}
.si-ico {
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.32);
  border-radius: 6px;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.si-top {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.si-sub {
  margin-top: 0.15rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey);
}

/* Sections */
.section {
  padding: var(--section-y) 1.25rem;
}
.section-dark { background: var(--charcoal); }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.wrap-narrow { max-width: 680px; }
.section-head {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  margin: 0 0 0.75rem;
}
.section-lead {
  text-align: center;
  color: var(--grey);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  font-size: 0.92rem;
}
.section-cta { text-align: center; margin-top: 0.5rem; }

/* Reviews */
.reviews-card {
  margin: 1rem auto 0;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.reviews-text {
  margin: 0.6rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
}

/* Services */
.services-five {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 700px) {
  .services-five { grid-template-columns: repeat(5, 1fr); }
}
.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.35;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.svc-card:hover {
  background: var(--card-hover);
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-3px);
  color: inherit;
}
.svc-card .ico {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
}

.benefits-four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .benefits-four { grid-template-columns: repeat(4, 1fr); }
}
.ben-card {
  text-align: center;
  padding: 1.5rem 0.75rem;
  background: var(--orange-panel);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: var(--radius);
}
.ben-card .ico {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}
.ben-card strong {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Before / after slider */
.ba-slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  user-select: none;
  touch-action: none;
}
.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
}
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--orange);
}
.ba-concrete {
  width: 100vw;
  max-width: 920px;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0,0,0,0.04) 8px, rgba(0,0,0,0.04) 16px),
    linear-gradient(160deg, #8a8580 0%, #6b6762 35%, #7a7570 60%, #5c5854 100%);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}
.ba-arrow {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.15em;
}
.ba-label {
  position: absolute;
  bottom: 0.75rem;
  z-index: 4;
  padding: 0.3rem 0.65rem;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.ba-label-before { left: 0.75rem; }
.ba-label-after { right: 0.75rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gal-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gal-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.45rem 0.6rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gal-soon .gal-ph {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  background: linear-gradient(145deg, #222 0%, #181818 100%);
}

/* Flake swatches — CSS only */
.flake-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .flake-row { grid-template-columns: repeat(6, 1fr); max-width: none; }
}
.flake-pick {
  text-align: center;
  padding: 0.65rem 0.35rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.flake-pick:hover,
.flake-pick.on {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.06);
}
.flake-swatch {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  border: 2px solid #444;
}
.flake-pick.on .flake-swatch {
  border-color: var(--orange);
  box-shadow: 0 0 14px var(--orange-glow);
}
.f-midnight { background: radial-gradient(circle at 30% 30%, #888 0%, #222 40%, #111 100%); }
.f-storm { background: radial-gradient(circle at 40% 40%, #bbb 0%, #777 50%, #444 100%); }
.f-granite { background: radial-gradient(circle at 35% 35%, #ddd 0%, #999 45%, #555 100%); }
.f-tuxedo { background: radial-gradient(circle at 30% 30%, #fff 0%, #666 35%, #111 100%); }
.f-saddle { background: radial-gradient(circle at 35% 35%, #d4a574 0%, #8b5a2b 50%, #4a3020 100%); }
.f-desert { background: radial-gradient(circle at 35% 35%, #e8d5b0 0%, #c4a574 50%, #8b7355 100%); }
.flake-pick small {
  font-weight: 800;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Process */
.process-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .process-three { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  padding: 1.75rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}
.step-num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--black);
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 50%;
}
.step-ico {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.step-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Why Gio's */
.value-four {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 600px) {
  .value-four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .value-four { grid-template-columns: repeat(4, 1fr); }
}
.value-card {
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.value-card .v-ico {
  font-size: 1.75rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: block;
}
.value-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.value-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.55;
}

/* Service area */
.area-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .area-row { grid-template-columns: 1.15fr 0.85fr; }
}
.area-map-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.map-illust {
  flex-shrink: 0;
  width: 100px;
  height: 130px;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px var(--orange-glow);
}
.area-text h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.area-note {
  color: var(--grey);
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
}
.area-note strong { color: var(--white); }
.city-list {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  line-height: 1.85;
}
.social-block {
  text-align: center;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-block h3 {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.social-block .stars {
  color: var(--orange);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}
.social-block p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--grey);
}

/* FAQ */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  padding: 0 1rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  padding: 0.9rem 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  color: var(--grey);
  padding: 0 0 0.9rem;
  margin: 0;
  font-size: 0.88rem;
}

/* Quote */
.convert-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .convert-two { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.panel-left,
.quote-box {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.panel-left h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
}
.panel-left p {
  margin: 0 0 1.25rem;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
}
.panel-left .ico-big {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.panel-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.quote-box h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-box .sub {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--grey);
}
.field { margin-bottom: 0.9rem; }
.field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.field input,
.field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid #333;
  border-radius: var(--radius);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-note {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
}
.form-ok {
  display: none;
  margin-top: 0.65rem;
  padding: 0.65rem;
  text-align: center;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  font-size: 0.82rem;
}
.form-ok.show { display: block; }

/* Contact strip — pure CSS */
.contact-strip {
  display: block;
  background: var(--orange);
  text-decoration: none;
  transition: background 0.2s;
}
.contact-strip:hover {
  background: var(--orange-bright);
}
.contact-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  color: var(--black);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-phone {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  letter-spacing: 0.03em;
}
.contact-tag {
  font-size: clamp(0.72rem, 2vw, 0.85rem);
  opacity: 0.85;
}

/* Trust bar */
.trust-bar {
  padding: 1.25rem 1.25rem;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.trust-four {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .trust-four { grid-template-columns: repeat(4, 1fr); }
}
.trust-four div { text-align: center; }
.trust-four .ti {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--orange);
}
.trust-four strong {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Footer */
.footer {
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--grey);
}
.footer a { color: var(--white); }
.footer strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.footer-copy { margin-top: 0.75rem; font-size: 0.75rem; }

/* Mobile bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 190;
  padding: 0.5rem;
  gap: 0.4rem;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--border);
}
.mobile-bar .btn {
  flex: 1;
  font-size: 0.68rem;
  padding: 0.65rem 0.4rem;
}
@media (max-width: 991px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 56px; }
}

/* i18n */
.i18n-es { display: none; }
body.lang-es .i18n-en { display: none !important; }
body.lang-es .i18n-es { display: revert; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .svc-card:hover, .gal-item:hover { transform: none; }
}
