:root {
  --red: #e30613;
  --red-dark: #b9050f;
  --ink: #15171a;
  --ink-soft: #565b61;
  --paper: #ffffff;
  --light: #f4f5f6;
  --line: #e2e4e7;
  --dark: #0c0e11;
  --dark-2: #171a1f;
  --success: #138a50;
  --error: #ba1a1a;
  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .12);
  --container: 1180px;
  --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 9999; transform: translateY(-140%);
  background: #fff; color: #000; padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.topbar { background: var(--dark); color: #fff; font-size: .84rem; }
.topbar__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.88); }
.topbar__item:hover a, a.topbar__item:hover { color: #fff; }
.topbar__item svg { width: 16px; height: 16px; fill: var(--red); flex: 0 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000; min-height: var(--header-height);
  background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 215px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); font-size: .94rem; font-weight: 650; }
.main-nav > a:not(.button) { position: relative; padding-block: 12px; color: #30343a; }
.main-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; background: var(--red); transition: right .25s ease;
}
.main-nav > a:not(.button):hover::after, .main-nav > a.is-current::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; border-radius: 10px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--ink); transition: .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 13px 24px;
  color: #fff; background: var(--red); border: 2px solid var(--red); border-radius: 999px; font-weight: 760; line-height: 1.2;
  box-shadow: 0 10px 26px rgba(227, 6, 19, .22); transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 14px 30px rgba(227, 6, 19, .3); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(227,6,19,.28); outline-offset: 3px; }
.button--small { min-height: 42px; padding: 10px 18px; font-size: .9rem; }
.button--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.75); box-shadow: none; }
.button--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.button--outline { color: var(--ink); background: #fff; border-color: var(--line); box-shadow: none; }
.button--outline:hover { color: #fff; }
.button--full { width: 100%; border-radius: 12px; }

.hero { position: relative; min-height: min(850px, calc(100vh - 40px)); color: #fff; overflow: hidden; display: grid; align-items: center; }
.hero__slides, .hero__slide, .hero__overlay { position: absolute; inset: 0; }
.hero__slide { background-size: cover; background-position: center; opacity: 0; transform: scale(1.035); transition: opacity 1s ease, transform 6s ease; }
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay { background: linear-gradient(90deg, rgba(4,5,7,.88) 0%, rgba(4,5,7,.69) 42%, rgba(4,5,7,.18) 75%, rgba(4,5,7,.1) 100%), linear-gradient(0deg, rgba(4,5,7,.52), transparent 45%); }
.hero__content { position: relative; z-index: 2; padding-block: 100px 190px; }
.eyebrow { margin: 0 0 13px; color: #fff; font-size: .79rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; vertical-align: middle; width: 38px; height: 2px; margin-right: 11px; background: var(--red); }
.eyebrow--dark { color: var(--red); }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(2.65rem, 6.4vw, 5.65rem); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.hero__lead { max-width: 720px; margin: 28px 0 0; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 1.9vw, 1.3rem); line-height: 1.55; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero__stats {
  position: absolute; z-index: 3; left: 50%; bottom: 34px; transform: translateX(-50%); display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); overflow: hidden; background: rgba(12,14,17,.68); backdrop-filter: blur(16px);
}
.hero__stats article { padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.16); }
.hero__stats article:last-child { border-right: 0; }
.hero__stats strong { display: block; font-size: 1.35rem; line-height: 1.2; }
.hero__stats span { display: block; margin-top: 5px; color: rgba(255,255,255,.67); font-size: .82rem; }
.hero__dots { position: absolute; z-index: 4; right: 26px; top: 50%; transform: translateY(-50%); display: grid; gap: 10px; }
.hero__dots button { width: 9px; height: 28px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.35); transition: height .2s ease, background .2s ease; }
.hero__dots button.is-active { height: 44px; background: var(--red); }

.section { padding: clamp(78px, 9vw, 128px) 0; }
.section--light { background: var(--light); }
.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .split__content h2, .contact-copy h2 {
  margin: 0; font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.08; letter-spacing: -.045em; text-wrap: balance;
}
.section-heading p:last-child { max-width: 680px; margin: 20px auto 0; color: var(--ink-soft); font-size: 1.05rem; }
.section-heading--light h2 { color: #fff; }
.section-heading--light p:last-child { color: rgba(255,255,255,.7); }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(42px, 7vw, 90px); }
.split__media { position: relative; }
.split__media > img { width: 100%; aspect-ratio: 1.16; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.media-badge { position: absolute; right: -24px; bottom: -28px; max-width: 300px; padding: 20px 22px; color: #fff; background: var(--red); border-radius: 14px; box-shadow: 0 18px 40px rgba(227,6,19,.25); }
.media-badge strong, .media-badge span { display: block; }
.media-badge span { margin-top: 4px; font-size: .84rem; color: rgba(255,255,255,.83); }
.split__content > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.04rem; }
.check-list { display: grid; gap: 11px; list-style: none; padding: 0; margin: 28px 0; }
.check-list li { position: relative; padding-left: 32px; font-weight: 660; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 22px; height: 22px; color: #fff; background: var(--red); border-radius: 50%; font-size: .76rem; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--red); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.service-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(227,6,19,.38); box-shadow: 0 20px 45px rgba(18,20,24,.1); }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; color: #fff; background: var(--red); font-size: 1rem; font-weight: 900; letter-spacing: -.04em; box-shadow: 0 10px 25px rgba(227,6,19,.22); }
.service-card h3 { margin: 23px 0 10px; font-size: 1.17rem; line-height: 1.25; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: .94rem; }

.safety { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.safety::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(227,6,19,.16), transparent 28%), linear-gradient(135deg, transparent 0 70%, rgba(255,255,255,.018) 70% 100%); pointer-events: none; }
.safety .container { position: relative; }
.safety-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.safety-card { overflow: hidden; background: var(--dark-2); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); }
.safety-card__image { height: 240px; background: #fff; overflow: hidden; }
.safety-card__image img { width: 100%; height: 100%; object-fit: cover; }
.safety-card__image--contain img { object-fit: contain; padding: 18px; }
.safety-card__content { padding: 25px 26px 28px; }
.safety-card__content > span { color: var(--red); font-weight: 900; font-size: .82rem; letter-spacing: .14em; }
.safety-card h3 { margin: 8px 0; font-size: 1.25rem; }
.safety-card p { margin: 0; color: rgba(255,255,255,.65); }
.safety-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.safety-features span { padding: 9px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.04); font-size: .86rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 300px; gap: 18px; }
.gallery-item { position: relative; display: block; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; background: #ddd; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.gallery-item::after { content: "+"; position: absolute; right: 20px; bottom: 18px; display: grid; place-items: center; width: 45px; height: 45px; color: #fff; background: var(--red); border-radius: 50%; font-size: 1.45rem; opacity: 0; transform: translateY(8px); transition: .25s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: brightness(.76); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item--wide { grid-column: span 1; }

.contact { color: #fff; background: linear-gradient(135deg, #16191e, #090b0d); }
.contact-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); align-items: center; gap: clamp(42px, 7vw, 90px); }
.contact-copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.68); font-size: 1.04rem; }
.contact-details { display: grid; gap: 16px; margin-top: 30px; }
.contact-details a { display: flex; gap: 15px; align-items: flex-start; color: rgba(255,255,255,.78); }
.contact-details svg { width: 25px; height: 25px; margin-top: 2px; fill: var(--red); flex: 0 0 auto; }
.contact-details strong { display: block; margin-bottom: 2px; color: #fff; }
.form-card { padding: clamp(24px, 4vw, 42px); background: #fff; color: var(--ink); border-radius: var(--radius); box-shadow: 0 26px 70px rgba(0,0,0,.28); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.form-grid__full { grid-column: 1 / -1; }
label { display: grid; gap: 7px; font-size: .88rem; font-weight: 750; }
label > span[aria-hidden="true"] { color: var(--red); }
input, select, textarea { width: 100%; border: 1px solid #d8dadd; border-radius: 10px; background: #fff; color: var(--ink); padding: 12px 13px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input, select { min-height: 48px; }
textarea { resize: vertical; min-height: 132px; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(227,6,19,.09); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--error); }
.privacy-check { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px; margin: 18px 0; color: var(--ink-soft); font-weight: 520; }
.privacy-check input { width: 18px; min-height: 18px; margin-top: 3px; accent-color: var(--red); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 24px; margin: 12px 0 0; text-align: center; font-size: .9rem; font-weight: 700; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }

.map-section { height: 420px; background: #ddd; }
.map-section iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.25); }

.site-footer { padding: 70px 0 20px; background: #090a0c; color: rgba(255,255,255,.67); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 44px; }
.footer-brand img { width: 210px; background: #fff; padding: 8px; border-radius: 8px; }
.footer-brand p { max-width: 320px; }
.footer-grid h2 { margin: 0 0 16px; color: #fff; font-size: 1rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: .83rem; }
.footer-bottom p { margin: 0; }

.whatsapp { position: fixed; z-index: 800; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 54px; padding: 0 17px 0 13px; color: #fff; background: #20b858; border-radius: 999px; box-shadow: 0 15px 36px rgba(0,0,0,.25); font-weight: 800; transition: transform .2s ease; }
.whatsapp:hover { transform: translateY(-3px); }
.whatsapp svg { width: 31px; height: 31px; fill: currentColor; }

.lightbox { position: fixed; inset: 0; z-index: 2500; display: grid; place-items: center; padding: 30px; background: rgba(0,0,0,.91); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 70px rgba(0,0,0,.45); }
.lightbox__close { position: fixed; right: 24px; top: 20px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); font-size: 2rem; line-height: 1; }

.cookie-banner { position: fixed; z-index: 3000; left: 20px; right: 20px; bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; width: min(860px, calc(100% - 40px)); margin-inline: auto; padding: 18px 20px; color: #fff; background: #111318; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.76); }
.cookie-banner > div { display: flex; gap: 9px; flex: 0 0 auto; }
.cookie-banner .button--outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.28); }

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

@media (max-width: 1050px) {
  :root { --header-height: 78px; }
  .brand img { width: 190px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; z-index: 1100; inset: 100% 0 auto 0; display: grid; gap: 0; padding: 18px 20px 26px;
    background: #fff; border-top: 1px solid var(--line); box-shadow: 0 30px 50px rgba(0,0,0,.15); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .28s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 16px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-card { display: grid; grid-template-columns: .8fr 1.2fr; }
  .safety-card__image { height: 100%; min-height: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 720px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 780px) {
  .topbar__inner { justify-content: center; min-height: 38px; }
  .topbar__inner > a { display: none; }
  .hero { min-height: 850px; }
  .hero__content { padding-block: 86px 300px; }
  .hero h1 { max-width: 620px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(4,5,7,.87), rgba(4,5,7,.55)), linear-gradient(0deg, rgba(4,5,7,.55), transparent 50%); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); bottom: 28px; }
  .hero__stats article:nth-child(2) { border-right: 0; }
  .hero__stats article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .hero__dots { display: none; }
  .split { grid-template-columns: 1fr; }
  .split__media { margin-bottom: 18px; }
  .media-badge { right: 16px; bottom: -28px; }
  .gallery-grid { grid-auto-rows: 240px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-banner > div { width: 100%; }
  .cookie-banner .button { flex: 1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar { font-size: .75rem; }
  .topbar__item { gap: 5px; }
  .brand img { width: 170px; }
  .hero { min-height: 820px; }
  .hero__content { padding-top: 70px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__stats { width: calc(100% - 28px); }
  .hero__stats article { padding: 17px 15px; }
  .hero__stats strong { font-size: 1.05rem; }
  .hero__stats span { font-size: .72rem; }
  .section { padding-block: 72px; }
  .section-heading { margin-bottom: 34px; text-align: left; }
  .section-heading p:last-child { margin-left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .safety-card { display: block; }
  .safety-card__image { height: 220px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 235px; }
  .media-badge { position: relative; right: auto; bottom: auto; max-width: none; margin: -34px 16px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp { right: 14px; bottom: 14px; width: 54px; padding: 0; justify-content: center; }
  .whatsapp span { display: none; }
  .lightbox { padding: 15px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: calc(100% - 24px); }
}

@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 interiores */
.page-hero {
  position: relative; min-height: 430px; display: grid; align-items: end; padding: 80px 0 70px; color: #fff;
  background-size: cover; background-position: center; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,8,.9), rgba(5,6,8,.52) 62%, rgba(5,6,8,.25)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 880px; margin: 0; font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1; letter-spacing: -.055em; text-wrap: balance; }
.page-hero p:last-child { max-width: 720px; margin: 20px 0 0; color: rgba(255,255,255,.78); font-size: 1.12rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 20px; color: rgba(255,255,255,.67); font-size: .84rem; }
.breadcrumbs a:hover { color: #fff; }
.page-intro { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.page-intro h2 { margin: 0; font-size: clamp(2rem,4vw,3.3rem); line-height: 1.08; letter-spacing: -.045em; }
.page-intro p { color: var(--ink-soft); font-size: 1.06rem; }
.content-panel { padding: clamp(28px, 5vw, 54px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(18,20,24,.07); }
.content-panel h2 { margin-top: 0; font-size: clamp(1.8rem,3.5vw,2.8rem); letter-spacing: -.035em; }
.content-panel p { color: var(--ink-soft); }
.detail-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.detail-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.detail-card h2, .detail-card h3 { margin-top: 0; }
.detail-card p { margin-bottom: 0; color: var(--ink-soft); }
.cta-band { padding: 52px 0; color: #fff; background: var(--red); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { margin: 0; font-size: clamp(1.8rem,4vw,2.8rem); line-height: 1.1; letter-spacing: -.04em; }
.cta-band p { margin: 8px 0 0; color: rgba(255,255,255,.8); }
.cta-band .button { background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; flex: 0 0 auto; }
.cta-band .button:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.page-gallery { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-auto-rows: 280px; gap: 18px; }
.page-gallery .gallery-item:nth-child(1), .page-gallery .gallery-item:nth-child(5) { grid-column: span 2; }
.contact-page-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); align-items: start; gap: 50px; }
.contact-page-grid .form-card { box-shadow: 0 20px 60px rgba(0,0,0,.1); border: 1px solid var(--line); }
.contact-page-grid .contact-copy { color: var(--ink); }
.contact-page-grid .contact-copy h2 { color: var(--ink); }
.contact-page-grid .contact-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.contact-page-grid .contact-details a { color: var(--ink-soft); }
.contact-page-grid .contact-details strong { color: var(--ink); }

@media (max-width: 900px) {
  .detail-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .page-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .page-gallery .gallery-item:nth-child(1), .page-gallery .gallery-item:nth-child(5) { grid-column: span 1; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .page-hero { min-height: 380px; padding-block: 65px 54px; }
  .page-gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
}
