:root {
  --primary: #034a80;
  --primary-dark: #022f52;
  --primary-light: #0b6fb8;
  --primary-soft: #e8f3fb;
  --silver: #d8dde3;
  --metal: #f3f5f7;
  --dark: #010101;
  --ink: #0f172a;
  --text: #243041;
  --muted: #647084;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --heading-font:
    'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  --body-font:
    'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(11, 111, 184, 0.08),
      transparent 30rem
    ),
    var(--bg-light);
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 0.75rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgb(0 0 0);
  border-bottom: 1px solid rgba(216, 221, 227, 0.16);
  box-shadow: 0 16px 34px rgba(2, 47, 82, 0.2);
  backdrop-filter: blur(14px);
  padding: 0.55rem 0;
}
.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.brand img {
  width: 172px;
  height: auto;
}
.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  border-radius: 999px;
  padding: 0.65rem 0.8rem;
  color: #e5e7eb;
  font-size: 0.92rem;
  font-family: var(--heading-font);
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.icon-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #16a34a, #22c55e);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.container-wide,
.container-narrow {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.container-narrow {
  width: min(940px, calc(100% - 32px));
}
.section {
  padding: 88px 0;
}
.section-tight {
  padding: 56px 0;
}
.section-white {
  background: white;
}
.section-metal {
  background:
    radial-gradient(
      circle at top left,
      rgba(11, 111, 184, 0.08),
      transparent 34rem
    ),
    linear-gradient(180deg, #fff, var(--metal));
}
.dark-band {
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  color: white;
}
.dark-band.rounded-3xl {
  border-radius: 8px;
}
.section-title {
  max-width: 780px;
  margin-bottom: 2.35rem;
}
.section-title.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  color: var(--primary-light);
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1.08;
  margin-top: 0;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(2.65rem, 6vw, 5.1rem);
}
h2 {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
}
h3 {
  font-size: 1.08rem;
}
p {
  color: var(--muted);
  line-height: 1.72;
}
.service-card h3,
.premium-card h3,
.review-card h3,
.gallery-card h3 {
  font-size: 1.08rem;
  line-height: 1.24;
  margin-bottom: 0.5rem;
}
.premium-card h2,
.form-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}
.premium-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.6rem);
}
.dark-band h2,
.dark-band h3,
.dark-band p,
.dark-band .eyebrow,
.hero h1,
.hero p,
.section-hero-sm h1,
.section-hero-sm p {
  color: white;
}
.dark-band .premium-card h3 {
  color: #101827;
}
.dark-band .premium-card p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  font-family: var(--heading-font);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-sm {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 16px 32px rgba(3, 74, 128, 0.28);
}
.btn-dark {
  color: white;
  background: var(--dark);
  box-shadow: 0 16px 32px rgba(11, 16, 23, 0.24);
}
.btn-light {
  color: var(--primary-dark);
  background: white;
  border-color: rgba(216, 221, 227, 0.7);
}
.btn-outline {
  color: var(--primary);
  background: white;
  border-color: var(--silver);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark) url('/assets/images/hero-workshop.png') center/cover
    no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 10, 18, 0.94) 0%,
      rgba(5, 10, 18, 0.82) 38%,
      rgba(3, 74, 128, 0.36) 70%,
      rgba(5, 10, 18, 0.2) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 10, 18, 0.88) 0%,
      rgba(5, 10, 18, 0.05) 45%,
      rgba(5, 10, 18, 0.45) 100%
    );
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    #f8fafc,
    var(--primary)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 96px;
}
.hero-copy {
  max-width: 760px;
  border-left: 5px solid var(--primary-light);
  padding-left: clamp(1.25rem, 3vw, 2rem);
}
.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 1rem;
}
.hero-copy p {
  max-width: 700px;
  font-size: 1.12rem;
}
.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 3rem;
  max-width: 980px;
}
.trust-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 1rem;
  color: white;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.07)
  );
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.trust-card i {
  color: #93c5fd;
  margin-bottom: 0.65rem;
}
.trust-card strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 0.95rem;
  line-height: 1.25;
}

.quick-booking {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}
.booking-strip,
.form-card,
.premium-card,
.service-card,
.review-card,
.gallery-card {
  border: 1px solid rgba(216, 221, 227, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.075);
}
.booking-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 1rem;
  padding: 1.1rem;
  align-items: end;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.service-card,
.premium-card,
.review-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.service-card::before,
.premium-card::before,
.review-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.service-card:hover,
.premium-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 111, 184, 0.32);
  box-shadow: 0 26px 54px rgba(3, 74, 128, 0.13);
}
.section-image,
.premium-card img {
  width: 100%;
  min-height: 300px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}
.icon-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.chip {
  border: 1px solid var(--silver);
  border-radius: 999px;
  background: white;
  padding: 0.75rem 1rem;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--primary-dark);
}

.booking-process-section .section-title {
  margin-bottom: 3rem;
}
.booking-process-section .eyebrow {
  color: var(--primary-light);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  letter-spacing: 0.12em;
}
.booking-process-section .section-title h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.45rem;
}
.step-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 8px;
  padding: 1.45rem 1.25rem 1.25rem;
  background: white;
  border: 1px solid rgba(216, 221, 227, 0.55);
  color: var(--ink);
  font-family: var(--heading-font);
  text-align: center;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.step-card::after {
  content: attr(data-step);
  position: absolute;
  top: 0.48rem;
  right: 1.05rem;
  z-index: 0;
  color: rgba(15, 23, 42, 0.08);
  font-family: var(--heading-font);
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 111, 184, 0.22);
  box-shadow: 0 26px 58px rgba(3, 74, 128, 0.12);
}
.step-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0.05rem auto 1rem;
  color: var(--primary-dark);
  font-size: 1.9rem;
}
.step-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary-dark);
  border-radius: 8px;
  opacity: 0.14;
}
.step-icon::after {
  content: '';
  position: absolute;
  right: 0.1rem;
  bottom: 0.1rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #045a98;
  box-shadow: 0 0 0 4px white;
}
.step-icon i {
  position: relative;
  z-index: 1;
}
.step-card h3 {
  position: relative;
  z-index: 1;
  max-width: 13rem;
  margin: 0 auto;
  color: var(--primary-dark);
  font-size: 1.02rem;
  line-height: 1.25;
}

.section-hero-sm {
  position: relative;
  overflow: hidden;
  padding: 116px 0 94px;
  background:
    linear-gradient(
      90deg,
      rgba(5, 10, 18, 0.94) 0%,
      rgba(5, 10, 18, 0.78) 42%,
      rgba(3, 74, 128, 0.24) 72%,
      rgba(5, 10, 18, 0.18) 100%
    ),
    var(--page-hero-image, url('/assets/images/hero-workshop.png')) center/cover
      no-repeat;
  text-align: left;
}
.section-hero-sm::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    #f8fafc,
    var(--primary)
  );
}
.section-hero-sm .container-narrow {
  width: min(1180px, calc(100% - 32px));
}
.section-hero-sm h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}
.section-hero-sm p {
  max-width: 760px;
  margin: 1rem 0 0;
}

.form-card {
  padding: clamp(1.25rem, 4vw, 2rem);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field-full {
  grid-column: 1 / -1;
}
label {
  display: block;
  margin-bottom: 0.45rem;
  color: #111827;
  font-family: var(--heading-font);
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 13px;
  background: white;
  color: #111827;
  min-height: 48px;
  padding: 0.8rem 0.95rem !important;
  outline: none;
  font-family: var(--body-font);
}
textarea {
  min-height: 132px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(11, 111, 184, 0.12);
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-card {
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--metal);
}
.gallery-card div {
  padding: 1rem;
}
.gallery-card strong {
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 800;
}

.map-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px dashed #94a3b8;
  background: linear-gradient(135deg, #fff, var(--metal));
  text-align: center;
  padding: 2rem;
}

.site-footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 64px 0 24px;
}
.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2rem;
}
.footer-logo {
  width: 190px;
}
.site-footer h2 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.site-footer a {
  display: block;
  margin: 0.45rem 0;
  color: #e5e7eb;
}
.footer-chip {
  display: inline-block;
  margin: 0 0.35rem 0.45rem 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.42rem 0.7rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}
.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #94a3b8;
  font-size: 0.9rem;
}

.floating-whatsapp,
.floating-call,
.back-to-top {
  position: fixed;
  right: 1rem;
  z-index: 70;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.24);
}
.floating-whatsapp {
  bottom: 1rem;
  background: #16a34a;
}
.floating-call {
  display: none;
  bottom: 4.8rem;
  background: var(--primary);
}
.back-to-top {
  bottom: 8.6rem;
  background: var(--dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(11, 16, 23, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    padding: 0.9rem 1rem;
  }
  .nav-actions {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 10, 18, 0.94), rgba(5, 10, 18, 0.82)),
      linear-gradient(0deg, rgba(5, 10, 18, 0.78), rgba(5, 10, 18, 0.24));
  }
  .hero-content {
    padding: 64px 0 104px;
  }
  .hero-copy {
    border-left-width: 4px;
    padding-left: 1rem;
  }
  .trust-grid,
  .booking-strip,
  .form-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-strip {
    padding: 1rem;
  }
  .section {
    padding: 64px 0;
  }
  .section-hero-sm {
    padding: 84px 0 72px;
  }
  .nav-actions .btn {
    display: none;
  }
  .floating-call {
    display: grid;
  }
  .footer-bottom {
    display: block;
  }
}

@media (max-width: 520px) {
  .nav-wrap {
    width: min(100% - 20px, 1180px);
  }
  .brand img {
    width: 145px;
  }
  .icon-link {
    width: 40px;
    height: 40px;
  }
  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-card {
    min-height: 164px;
  }
}
