:root {
  --navy-950: #061d39;
  --navy-900: #082b55;
  --navy-800: #0d3b6f;
  --navy-700: #16538f;
  --blue-500: #287bb8;
  --gold-600: #b88629;
  --gold-500: #c99a3d;
  --gold-400: #d9b363;
  --cream: #fcf6ed;
  --paper: #ffffff;
  --ink: #172333;
  --muted: #617084;
  --line: #dfe5ec;
  --success: #169c4b;
  --shadow-sm: 0 8px 24px rgba(6, 29, 57, .08);
  --shadow-md: 0 18px 48px rgba(6, 29, 57, .14);
  --shadow-lg: 0 30px 90px rgba(3, 20, 40, .24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1220px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
::selection { color: #fff; background: var(--navy-700); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 9999; padding: 12px 18px; border-radius: 8px; color: #fff; background: var(--navy-950); transition: top .2s; }
.skip-link:focus { top: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 35px; height: 2px; content: ""; background: currentColor; }
.eyebrow--light { color: var(--gold-400); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
}
h1 { margin-bottom: 24px; font-size: clamp(42px, 4.7vw, 70px); }
h2 { margin-bottom: 24px; font-size: clamp(32px, 3.5vw, 48px); }
h3 { color: var(--navy-950); line-height: 1.25; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading p { max-width: 690px; margin: 0 auto; color: var(--muted); font-size: 18px; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn--gold { color: var(--navy-950); background: linear-gradient(135deg, #e3c478, var(--gold-500)); box-shadow: 0 13px 28px rgba(201, 154, 61, .3); }
.btn--gold:hover { box-shadow: 0 17px 34px rgba(201, 154, 61, .4); }
.btn--navy { color: #fff; background: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); backdrop-filter: blur(7px); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.13); }
.btn--small { min-height: 42px; padding: 11px 18px; font-size: 12px; }
.btn--block { width: 100%; border: 0; }

.topbar { color: #e9f1f8; background: var(--navy-950); font-size: 12px; }
.topbar__inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__contact { display: flex; align-items: center; gap: 24px; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 7px; opacity: .91; }
.topbar__contact a:hover { opacity: 1; }
.topbar__contact svg { width: 14px; height: 14px; fill: var(--gold-400); }
.topbar__area { color: var(--gold-400); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  color: var(--navy-950);
  background: #fcf6ed;
  border-bottom: 1px solid rgba(8,43,85,.13);
  box-shadow: 0 8px 28px rgba(3,20,40,.08);
  transition: box-shadow .25s, background-color .25s;
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(3,20,40,.13); }
.header__inner { display: flex; min-height: var(--header-h); align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; width: 270px; flex: 0 0 auto; align-items: center; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 23px; }
.main-nav > a:not(.btn) { position: relative; padding: 34px 0; color: var(--navy-900); font-size: 13px; font-weight: 760; }
.main-nav > a:not(.btn)::after { position: absolute; right: 0; bottom: 24px; left: 0; width: 0; height: 2px; margin: auto; content: ""; background: var(--gold-400); transition: width .2s; }
.main-nav > a:not(.btn):hover, .main-nav > a:not(.btn):focus-visible { color: var(--gold-600); }
.main-nav > a:not(.btn):hover::after, .main-nav > a:not(.btn):focus-visible::after { width: 100%; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid rgba(8,43,85,.18); border-radius: 12px; background: rgba(8,43,85,.04); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy-900); transition: .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 126px);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950) url('/assets/img/hero-poster.webp') center/cover no-repeat;
}
.hero__video, .hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__video { object-fit: cover; }
.hero__overlay { background: linear-gradient(180deg, rgba(3,19,38,.34), rgba(3,19,38,.50)); }
.hero__grid { position: relative; z-index: 2; display: grid; align-items: center; justify-items: center; grid-template-columns: minmax(0, 1fr); padding-top: 72px; padding-bottom: 78px; }
.hero__content { max-width: 980px; padding: 10px 0; text-align: center; }
.hero h1 { max-width: 900px; margin-right: auto; margin-left: auto; color: #fff; font-size: clamp(44px, 5vw, 72px); }
.hero__content > p { max-width: 760px; margin-right: auto; margin-bottom: 32px; margin-left: auto; color: rgba(255,255,255,.9); font-size: clamp(18px, 1.8vw, 21px); line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero__checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 24px; margin: 34px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.92); font-size: 13px; font-weight: 700; }
.hero__checks li { display: flex; align-items: center; gap: 8px; }
.hero__checks svg { width: 18px; height: 18px; padding: 3px; border-radius: 50%; fill: var(--navy-950); background: var(--gold-400); }
.hero__scroll { position: absolute; z-index: 3; bottom: 24px; left: 50%; width: 24px; height: 38px; border: 1px solid rgba(255,255,255,.45); border-radius: 20px; transform: translateX(-50%); }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 7px; border-radius: 5px; background: #fff; transform: translateX(-50%); animation: scrollCue 1.7s infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,12px); } }

.quote-card { overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); background: rgba(255,255,255,.97); box-shadow: var(--shadow-lg); }
.quote-card__head { padding: 25px 28px 20px; color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); }
.quote-card__head span { color: var(--gold-400); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.quote-card__head h2 { margin: 4px 0 6px; color: #fff; font-family: inherit; font-size: 27px; letter-spacing: -.02em; }
.quote-card__head p { margin: 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.5; }
.quote-form { display: grid; gap: 14px; padding: 24px 28px 28px; color: var(--ink); }
.quote-form > small { color: #7b8797; text-align: center; }

form label { display: grid; gap: 7px; color: #405066; font-size: 12px; font-weight: 780; }
form label > span.field-label { display: inline; color: #405066; }
.field-label b { color: #b42318; font-weight: 800; }
input, textarea, select {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #cfdae5;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 125px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(40,123,184,.12); }
input::placeholder, textarea::placeholder { color: #9aa7b6; }
.form-grid { display: grid; gap: 14px; }
.form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.check-field { display: grid !important; align-items: flex-start; grid-template-columns: 18px 1fr; gap: 9px !important; font-weight: 500 !important; line-height: 1.45; }
.check-field input { width: 17px; min-height: 17px; margin-top: 2px; padding: 0; accent-color: var(--navy-700); }
.check-field span { color: #66758a; }
.check-field a { color: var(--navy-700); text-decoration: underline; }
.honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert { margin-bottom: 18px; padding: 13px 15px; color: #8a1c13; border: 1px solid #f4b8b1; border-radius: 10px; background: #fff0ee; font-size: 13px; }
.form-note { margin-bottom: 18px; padding: 13px 15px; color: #6b4d08; border: 1px solid #ead391; border-radius: 10px; background: #fff9df; font-size: 13px; }

.trust-strip { position: relative; z-index: 4; color: #fff; background: var(--navy-900); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: grid; min-height: 104px; align-items: center; padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.13); grid-template-columns: 44px 1fr; gap: 14px; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid p { margin: 0; }
.trust-grid i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(217,179,99,.38); border-radius: 12px; color: var(--gold-400); background: rgba(255,255,255,.05); }
.trust-grid i svg { width: 22px; height: 22px; fill: currentColor; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 3px; color: var(--gold-400); font-size: 15px; }
.trust-grid span { color: rgba(255,255,255,.72); font-size: 12px; }

.about { overflow: hidden; background: linear-gradient(180deg, #fff, #fbfcfe); }
.about__grid { display: grid; align-items: center; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: 94px; }
.about__media { position: relative; min-height: 525px; }
.about__photo { position: absolute; overflow: hidden; margin: 0; border-radius: 20px; box-shadow: var(--shadow-md); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.about__photo:hover img { transform: scale(1.035); }
.about__photo--single { inset: 0; }
.about__caption { position: absolute; right: 26px; bottom: 26px; display: grid; min-width: 250px; padding: 18px 22px; border-left: 3px solid var(--gold-400); border-radius: 12px; color: #fff; background: rgba(6,29,57,.9); box-shadow: var(--shadow-md); backdrop-filter: blur(8px); }
.about__caption strong { font-family: Georgia, serif; font-size: 20px; }
.about__caption span { color: rgba(255,255,255,.74); font-size: 12px; }
.about__content > p { color: var(--muted); font-size: 17px; }
.about__content h2 { max-width: 620px; font-size: clamp(32px, 3vw, 43px); line-height: 1.08; }
.about__highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 30px 0 28px; }
.about__highlights > div { display: grid; align-content: start; min-height: 150px; padding: 20px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; gap: 8px; }
.about__highlights span { color: var(--gold-600); font-family: Georgia, serif; font-size: 24px; font-weight: 700; }
.about__highlights p { margin: 0; color: var(--muted); font-size: 14px; }
.about__highlights strong { display: block; color: var(--navy-950); font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-800); font-size: 14px; font-weight: 800; }
.text-link svg { width: 20px; height: 20px; fill: currentColor; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card { position: relative; overflow: hidden; min-height: 320px; padding: 32px; border: 1px solid rgba(8,43,85,.09); border-radius: var(--radius-md); background: #fff; box-shadow: 0 8px 24px rgba(6,29,57,.04); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card::after { position: absolute; right: -30px; bottom: -60px; width: 140px; height: 140px; content: ""; border: 26px solid rgba(201,154,61,.09); border-radius: 50%; }
.service-card:hover { border-color: rgba(201,154,61,.55); box-shadow: var(--shadow-md); transform: translateY(-7px); }
.service-card__icon { display: grid; width: 62px; height: 62px; margin-bottom: 26px; place-items: center; border-radius: 17px; color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); box-shadow: 0 12px 25px rgba(8,43,85,.2); }
.service-card__icon svg { width: 30px; height: 30px; fill: currentColor; }
.service-card h3 { margin-bottom: 13px; font-size: 22px; }
.service-card p { color: var(--muted); font-size: 15px; }
.service-card a { position: absolute; z-index: 2; bottom: 28px; left: 32px; display: inline-flex; align-items: center; gap: 8px; color: var(--navy-700); font-size: 13px; font-weight: 800; }
.service-card a svg { width: 18px; height: 18px; fill: currentColor; }

.process-section { min-height: 0; color: #fff; background: radial-gradient(circle at 100% 0, rgba(22,83,143,.5), transparent 36%), var(--navy-950); }
.process-section__content { color: #fff; }
.process-inner { max-width: none; text-align: center; }
.process-inner h2 { color: #fff; }
.process-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 42px 0 38px; padding: 0; list-style: none; text-align: left; }
.process-list li { position: relative; display: grid; min-height: 210px; align-content: start; padding: 26px 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.045); gap: 18px; }
.process-list li:not(:last-child)::after { position: absolute; z-index: 2; top: 47px; right: -19px; width: 20px; height: 1px; content: ""; background: rgba(217,179,99,.55); }
.process-list li > span { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(217,179,99,.65); border-radius: 50%; color: var(--gold-400); font-family: Georgia, serif; font-weight: 700; background: rgba(255,255,255,.04); }
.process-list strong { color: #fff; font-size: 17px; }
.process-list p { margin: 4px 0 0; color: rgba(255,255,255,.68); font-size: 14px; }
.process-section__action { display: flex; justify-content: center; }

.coverage { padding-bottom: 0; background: #fff; }
.coverage__head { display: grid; align-items: end; grid-template-columns: 1fr .8fr; gap: 70px; margin-bottom: 48px; }
.coverage__head h2 { margin-bottom: 0; }
.coverage__head > p { color: var(--muted); font-size: 17px; }
.coverage__layout { display: grid; min-height: 670px; grid-template-columns: minmax(360px, .72fr) 1.28fr; }
.coverage__panel { position: relative; z-index: 2; display: grid; align-content: center; padding: 56px max(40px, calc((100vw - var(--container))/2)) 56px max(40px, calc((100vw - var(--container))/2)); color: #fff; background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); }
.coverage__column + .coverage__column { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); }
.coverage__column h3 { margin-bottom: 12px; color: var(--gold-400); font-size: 19px; }
.coverage__column ul { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 20px; list-style: none; }
.coverage__column li { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); font-size: 13px; }
.coverage__column svg { width: 15px; height: 15px; fill: var(--gold-400); }
.coverage__note { margin: 24px 0 0; padding: 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.05); font-size: 12px; }
.coverage__map { overflow: hidden; background: #e9eef3; }
.coverage__map iframe { width: 100%; height: 100%; min-height: 670px; border: 0; }

.gallery-section { background: #f8fafc; }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; min-height: 235px; padding: 0; border: 0; border-radius: 13px; background: #dce3ea; }
.gallery-item:nth-child(1), .gallery-item:nth-child(8), .gallery-item:nth-child(15) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .4s; }
.gallery-item > span { position: absolute; right: 14px; bottom: 14px; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #fff; background: rgba(8,43,85,.85); box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(8px); transition: .25s; }
.gallery-item > span svg { width: 19px; height: 19px; fill: currentColor; transform: rotate(-35deg); }
.gallery-item:hover img { filter: brightness(.78); transform: scale(1.045); }
.gallery-item:hover > span { opacity: 1; transform: none; }

.reviews { background: #fff; }
.reviews__widget { min-height: 240px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.reviews__widget--secondary { margin-top: 28px; }

.faq-section { background: var(--cream); }
.faq__grid { display: grid; align-items: start; grid-template-columns: .72fr 1.28fr; gap: 85px; }
.faq__intro { position: sticky; top: 130px; }
.faq__intro p { margin-bottom: 28px; color: var(--muted); font-size: 17px; }
.accordion { border-top: 1px solid rgba(8,43,85,.18); }
.accordion__item { border-bottom: 1px solid rgba(8,43,85,.18); }
.accordion__item > button { display: grid; width: 100%; align-items: center; padding: 23px 4px; color: var(--navy-950); border: 0; background: transparent; grid-template-columns: 1fr 24px; gap: 18px; text-align: left; font-size: 17px; font-weight: 800; }
.accordion__item i { position: relative; display: block; width: 18px; height: 18px; }
.accordion__item i::before, .accordion__item i::after { position: absolute; top: 8px; left: 0; width: 18px; height: 2px; content: ""; background: var(--gold-600); transition: transform .25s; }
.accordion__item i::after { transform: rotate(90deg); }
.accordion__item.is-open i::after { transform: rotate(0deg); }
.accordion__panel { display: grid; overflow: hidden; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion__panel > p { min-height: 0; margin: 0; color: var(--muted); }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__panel > p { padding: 0 40px 24px 4px; }

.contact-section { position: relative; overflow: hidden; padding: 110px 0; color: #fff; background: var(--navy-950); }
.contact-section__background { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,18,35,.96), rgba(5,28,53,.81)), url('/assets/img/hero-poster.webp') center/cover no-repeat; }
.contact-section__background::after { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 0 100%, rgba(201,154,61,.19), transparent 42%); }
.contact__grid { position: relative; z-index: 2; display: grid; align-items: center; grid-template-columns: .76fr 1.24fr; gap: 80px; }
.contact__info h2 { color: #fff; }
.contact__info > p { margin-bottom: 34px; color: rgba(255,255,255,.72); font-size: 17px; }
.contact__cards { display: grid; gap: 12px; }
.contact__cards a { display: grid; align-items: center; padding: 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.04); grid-template-columns: 44px 1fr; gap: 13px; transition: background-color .2s, transform .2s; }
.contact__cards a:hover { background: rgba(255,255,255,.08); transform: translateX(3px); }
.contact__cards svg { width: 23px; height: 23px; fill: var(--gold-400); }
.contact__cards span { color: rgba(255,255,255,.56); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.contact__cards strong { display: block; color: #fff; font-size: 15px; letter-spacing: 0; text-transform: none; }
.contact__areas { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }
.contact__areas strong { color: var(--gold-400); }
.contact__areas p { margin: 5px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.contact-form-card { overflow: hidden; border-radius: var(--radius-md); background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); }
.contact-form-card__head { padding: 26px 34px 20px; border-bottom: 1px solid var(--line); }
.contact-form-card__head span { color: var(--gold-600); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-form-card__head h3 { margin: 3px 0 0; font-family: Georgia, serif; font-size: 29px; }
.contact-form { display: grid; gap: 16px; padding: 28px 34px 34px; color: var(--ink); }
.contact-form-card .form-alert, .contact-form-card .form-note { margin: 20px 34px 0; }

.site-footer { padding: 72px 0 24px; color: rgba(255,255,255,.68); background: #041529; }
.footer__grid { display: grid; grid-template-columns: 1.6fr .75fr 1fr 1fr; gap: 50px; }
.footer__grid h3 { margin: 7px 0 18px; color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.footer__grid a, .footer__grid span { display: block; margin: 8px 0; font-size: 13px; }
.footer__grid a:hover { color: var(--gold-400); }
.footer__brand img { display: block; width: 285px; max-width: 100%; height: auto; aspect-ratio: 626 / 230; object-fit: contain; border-radius: 10px; }
.footer__brand p { max-width: 380px; margin-top: 18px; font-size: 13px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer__bottom a { display: inline; color: var(--gold-400); font-weight: 750; }
.footer__bottom a:hover { color: #fff; }

.whatsapp-float { position: fixed; z-index: 1100; right: 22px; bottom: 22px; display: grid; width: 62px; height: 62px; place-items: center; padding: 0; border: 3px solid #fff; border-radius: 50%; color: #fff; background: #19a950; box-shadow: 0 14px 35px rgba(0,0,0,.25); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { box-shadow: 0 18px 40px rgba(0,0,0,.32); transform: translateY(-3px); }
.whatsapp-float svg { width: 32px; height: 32px; fill: currentColor; }

.lightbox { position: fixed; z-index: 2000; inset: 0; display: grid; place-items: center; padding: 35px 80px; background: rgba(1,12,24,.94); backdrop-filter: blur(10px); }
.lightbox[hidden] { display: none; }
.lightbox figure { display: grid; max-width: min(1100px, 90vw); max-height: 88vh; margin: 0; place-items: center; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox figcaption { padding-top: 12px; color: rgba(255,255,255,.7); font-size: 12px; }
.lightbox__close, .lightbox__nav { position: absolute; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.08); }
.lightbox__close { top: 22px; right: 22px; width: 46px; height: 46px; font-size: 30px; }
.lightbox__nav { top: 50%; width: 54px; height: 54px; font-size: 38px; transform: translateY(-50%); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --header-h: 78px; }
  .brand { width: 235px; }
  .main-nav { gap: 17px; }
  .main-nav > a:not(.btn) { font-size: 12px; }
  .main-nav .btn { display: none; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 84px; padding-bottom: 88px; }
  .about__grid { gap: 60px; }
  .about__media { min-height: 520px; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list li:not(:last-child)::after { display: none; }
  .coverage__panel { padding-right: 42px; padding-left: 42px; }
}

@media (max-width: 930px) {
  .topbar__email, .topbar__area { display: none; }
  .topbar__inner { justify-content: center; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; z-index: 1001; top: calc(38px + var(--header-h)); right: 0; bottom: 0; display: grid; width: min(390px, 88vw); align-content: start; gap: 0; padding: 22px 28px 40px; color: var(--navy-950); border-left: 1px solid rgba(8,43,85,.13); background: #fcf6ed; box-shadow: -20px 30px 60px rgba(3,20,40,.22); transform: translateX(110%); transition: transform .28s ease; overflow-y: auto; }
  .main-nav.is-open { transform: none; }
  .main-nav > a:not(.btn) { padding: 17px 0; color: var(--navy-900); border-bottom: 1px solid rgba(8,43,85,.12); font-size: 15px; }
  .main-nav > a:not(.btn)::after { display: none; }
  .main-nav .btn { display: inline-flex; margin-top: 22px; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 84px; padding-bottom: 88px; }
  .hero__content { max-width: 700px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { width: min(100%, 650px); margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-section__content { padding-right: 0; padding-left: 0; }
  .process-inner { max-width: 720px; }
  .coverage__head { grid-template-columns: 1fr; gap: 18px; }
  .coverage__layout { grid-template-columns: 1fr; }
  .coverage__panel { padding: 55px max(30px, calc((100vw - var(--container))/2)); }
  .coverage__map iframe { min-height: 540px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(8), .gallery-item:nth-child(15) { grid-column: span 1; grid-row: span 1; }
  .faq__grid { grid-template-columns: 1fr; gap: 45px; }
  .faq__intro { position: static; max-width: 680px; }
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .contact__info { max-width: 680px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  :root { --header-h: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .topbar__contact { width: 100%; justify-content: center; gap: 18px; }
  .topbar__contact a { font-size: 11px; }
  .brand { width: 210px; }
  .header__inner { gap: 12px; }
  .main-nav { top: calc(38px + var(--header-h)); }
  .site-header.is-scrolled .main-nav { top: var(--header-h); }
  .hero__video { display: none; }
  .hero__overlay { background: linear-gradient(135deg, rgba(3,19,38,.55), rgba(8,43,85,.48)); }
  .hero__grid { padding-top: 68px; padding-bottom: 74px; }
  .hero h1 { max-width: 100%; font-size: clamp(38px, 10.5vw, 52px); }
  .hero__content > p { font-size: 17px; }
  .hero__actions { display: grid; }
  .hero__actions .btn { width: 100%; }
  .hero__checks { display: grid; gap: 10px; }
  .hero__scroll { display: none; }
  .form-grid--2, .form-grid--3 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { padding: 18px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .about__media { min-height: 430px; }
  .about__caption { right: 16px; bottom: 16px; left: 16px; min-width: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 295px; }
  .process-list { grid-template-columns: 1fr; gap: 12px; }
  .process-list li { min-height: 0; }
  .coverage__column ul { grid-template-columns: 1fr; }
  .coverage__map iframe { min-height: 440px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .gallery-item { min-height: 170px; border-radius: 9px; }
  .gallery-item > span { display: none; }
  .reviews__widget { padding: 10px; }
  .accordion__item > button { font-size: 15px; }
  .contact-section { padding: 80px 0; }
  .contact-form-card__head, .contact-form { padding-right: 20px; padding-left: 20px; }
  .contact-form-card__head h3 { font-size: 25px; }
  .contact-form-card .form-alert, .contact-form-card .form-note { margin-right: 20px; margin-left: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid > div:last-child { grid-column: auto; }
  .footer__bottom { display: grid; }
  .about__highlights { grid-template-columns: 1fr; }
  .about__highlights > div { min-height: 0; grid-template-columns: 44px 1fr; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 58px; height: 58px; }
  .lightbox { padding: 60px 14px 25px; }
  .lightbox__nav { top: auto; bottom: 18px; width: 46px; height: 46px; }
  .lightbox__nav--prev { left: calc(50% - 58px); }
  .lightbox__nav--next { right: calc(50% - 58px); }
}


/* Refinamientos visuales y responsive v1.1 */
.site-header .btn--gold { box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.site-header .btn--gold:hover { box-shadow: 0 14px 30px rgba(0,0,0,.24); }
.hero::after { position: absolute; inset: auto 0 0; z-index: 1; height: 120px; content: ""; background: linear-gradient(0deg, rgba(3,19,38,.42), transparent); pointer-events: none; }
.hero__content { text-shadow: 0 2px 18px rgba(0,0,0,.16); }
.hero__actions .btn { min-width: 205px; }
.hero__checks li { padding: 7px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(4,25,48,.28); backdrop-filter: blur(5px); }
.contact-form-card { border: 1px solid rgba(217,179,99,.26); }

@media (max-width: 930px) {
  body.menu-open::before { position: fixed; z-index: 999; inset: 0; content: ""; background: rgba(2,13,27,.58); backdrop-filter: blur(2px); }
  .site-header { z-index: 1002; }
  .main-nav { z-index: 1003; }
  .menu-toggle { position: relative; z-index: 1004; }
  .hero__content { max-width: 780px; }
}

@media (max-width: 680px) {
  .site-header { border-bottom-width: 1px; }
  .brand { width: 198px; }
  .menu-toggle { width: 43px; height: 43px; }
  .hero { min-height: 610px; background-position: 62% center; }
  .hero__content { padding: 0; }
  .hero__content > p { max-width: 34rem; line-height: 1.55; }
  .hero__checks li { width: fit-content; padding: 5px 9px; }
  .hero__actions .btn { min-width: 0; }
}

@media (max-width: 480px) {
  :root { --header-h: 66px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .topbar__contact a:nth-child(2) { display: none; }
  .topbar__contact { justify-content: center; }
  .brand { width: 182px; }
  .main-nav { width: min(340px, 91vw); padding-right: 22px; padding-left: 22px; }
  .hero { min-height: 590px; }
  .hero__grid { padding-top: 56px; padding-bottom: 64px; }
  .hero h1 { font-size: clamp(36px, 11vw, 46px); }
  .hero__content > p { margin-bottom: 26px; font-size: 16px; }
  .hero__checks { margin-top: 26px; font-size: 12px; }
  .section { padding: 68px 0; }
  .gallery-item { min-height: 142px; }
  .contact-section { padding: 68px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Páginas locales SEO */
.local-header { position: relative; }
.local-nav { display: flex; align-items: center; gap: 26px; }
.local-nav > a:not(.btn) { color: var(--navy-900); font-size: 13px; font-weight: 760; }
.local-hero { display: grid; min-height: 520px; align-items: center; color: #fff; background: linear-gradient(rgba(3,19,38,.66), rgba(3,19,38,.76)), url('/assets/img/hero-poster.webp') center/cover no-repeat; text-align: center; }
.local-hero__inner { max-width: 900px; padding-top: 75px; padding-bottom: 75px; }
.local-hero h1 { margin-right: auto; margin-left: auto; color: #fff; }
.local-hero p { max-width: 720px; margin-right: auto; margin-bottom: 30px; margin-left: auto; color: rgba(255,255,255,.88); font-size: 19px; }
.local-content__grid { display: grid; align-items: start; grid-template-columns: 1.25fr .75fr; gap: 80px; }
.local-content p { color: var(--muted); font-size: 17px; }
.local-content aside { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); box-shadow: var(--shadow-sm); }
.local-content aside ul { margin: 20px 0 26px; padding-left: 20px; color: var(--muted); }
.local-content aside li { margin: 7px 0; }
.local-steps { background: var(--cream); }
.local-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.local-steps__grid > div { display: grid; padding: 24px; border: 1px solid rgba(8,43,85,.1); border-radius: 16px; background: #fff; }
.local-steps__grid b { color: var(--gold-600); font-family: Georgia, serif; font-size: 25px; }
.local-steps__grid strong { color: var(--navy-950); }
.local-steps__grid span { color: var(--muted); font-size: 13px; }
.zone-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.zone-directory a { display: grid; min-height: 150px; align-content: center; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); transition: .2s; }
.zone-directory a:hover { border-color: var(--gold-400); transform: translateY(-4px); }
.zone-directory small { color: var(--gold-600); font-weight: 800; text-transform: uppercase; }
.zone-directory strong { margin: 5px 0 12px; color: var(--navy-950); font-size: 18px; }
.zone-directory span { color: var(--navy-700); font-size: 13px; font-weight: 750; }
.local-footer { padding-top: 20px; }

@media (max-width: 800px) {
  .local-nav > a:not(.btn) { display: none; }
  .local-content__grid { grid-template-columns: 1fr; gap: 38px; }
  .local-steps__grid, .zone-directory { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .local-nav .btn { padding: 10px 13px; font-size: 11px; }
  .local-hero { min-height: 480px; }
  .local-hero p { font-size: 17px; }
  .local-steps__grid, .zone-directory { grid-template-columns: 1fr; }
}
