:root {
  --blue: #15599a;
  --blue-deep: #0d2f59;
  --blue-soft: #dbe8f2;
  --gold: #bd9b4d;
  --gold-soft: #ddca95;
  --cream: #f4f0e8;
  --paper: #fbf8f1;
  --white: #ffffff;
  --ink: #18304b;
  --muted: #667588;
  --line: rgba(17, 51, 87, .16);
  --shadow: 0 26px 70px rgba(13, 47, 89, .13);
  --title: "Poppins", Arial, sans-serif;
  --sans: "Source Sans Pro", Arial, sans-serif;
  --title-size: clamp(2.2rem, 3.25vw, 3.55rem);
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(189,155,77,.10), transparent 27rem),
    radial-gradient(circle at 92% 30%, rgba(21,89,154,.06), transparent 31rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 1.075rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
body.menu-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; }
p, h1, h2, h3, blockquote { margin-top: 0; }

.shell { width: min(1180px, calc(100% - 48px)); max-width: 100%; margin-inline: auto; }
.section { padding: 130px 0; }
.skip-link { position: fixed; z-index: 3000; top: 12px; left: 12px; padding: 10px 14px; color: #fff; background: var(--blue-deep); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.top-note { border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.84); background: var(--blue-deep); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
.top-note .shell { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }

.site-header { position: sticky; z-index: 1000; top: 0; border-bottom: 1px solid transparent; background: rgba(251,248,241,.94); -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px); transition: box-shadow .25s ease, border-color .25s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(13,47,89,.06); }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand {
  width: 150px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}
.brand img {
  display: block;
  width: auto;
  height: 86px;
  max-width: 100%;
  object-fit: contain;
  transform: none;
}
.main-nav { display: flex; align-items: center; gap: 31px; }
.main-nav a { position: relative; font-size: .75rem; font-weight: 700; letter-spacing: .07em; }
.main-nav a:not(.nav-contact)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-contact { padding: 12px 19px; border: 1px solid var(--blue-deep); border-radius: 999px; transition: .25s ease; }
.nav-contact:hover { color: #fff; background: var(--blue-deep); }
.menu-button { display: none; width: 45px; height: 45px; padding: 0; border: 0; background: transparent; }
.menu-button span { display: block; width: 25px; height: 1.5px; margin: 7px auto; background: var(--blue-deep); transition: .25s ease; }

.hero { position: relative; padding: 76px 0 0; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -1; width: 460px; height: 460px; left: -230px; bottom: 20px; border: 1px solid rgba(21,89,154,.14); border-radius: 50%; }
.hero-layout { min-height: 620px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.hero-copy { max-width: 560px; }
.kicker { margin-bottom: 22px; color: var(--gold-soft); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.kicker.dark { color: var(--blue); }
.kicker.light { color: var(--gold-soft); }
h1, h2, h3 { font-family: var(--title); font-weight: 300; line-height: 1.12; letter-spacing: .015em; text-transform: uppercase; }
blockquote { font-family: var(--sans); font-weight: 300; line-height: 1.08; letter-spacing: -.012em; }
h1 { max-width: 760px; margin-bottom: 28px; color: var(--blue-deep); font-size: var(--title-size); }
.hero-lead { max-width: 600px; margin-bottom: 38px; color: #506176; font-size: 1.18rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 0; border-radius: 999px; font-size: .73rem; font-weight: 700; letter-spacing: .08em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 13px 28px rgba(21,89,154,.23); }
.button-primary:hover { background: var(--blue-deep); }
.button-gold { width: 100%; color: var(--blue-deep); background: var(--gold-soft); }
.button-gold:hover { box-shadow: 0 12px 28px rgba(189,155,77,.23); }
.text-link { padding-bottom: 4px; border-bottom: 1px solid rgba(13,47,89,.35); color: var(--blue-deep); font-size: .9rem; font-weight: 600; }
.text-link span { margin-left: 7px; }
.hero-media { position: relative; padding: 0 0 44px 32px; }
.hero-image-wrap { position: relative; height: 570px; overflow: hidden; border-radius: 40px 40px 190px 40px; box-shadow: var(--shadow); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,47,89,.25)); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-stamp { position: absolute; left: -6px; bottom: 0; width: 170px; aspect-ratio: 1; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; color: #fff; background: var(--blue); box-shadow: 0 18px 40px rgba(13,47,89,.2); }
.hero-stamp::before { content: ""; position: absolute; inset: 9px; border: 1px dashed rgba(255,255,255,.45); border-radius: inherit; }
.hero-stamp span { position: relative; font-family: var(--title); font-size: 2.05rem; font-weight: 300; line-height: 1; }
.hero-stamp small { position: relative; margin-top: 5px; font-size: .64rem; letter-spacing: .08em; }
.hero-foot { min-height: 100px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; margin-top: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--blue-deep); font-family: var(--sans); font-size: 1.16rem; }
.hero-foot span { padding: 0 25px; text-align: center; }
.hero-foot span + span { border-left: 1px solid var(--line); }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 220px 1fr; gap: 75px; align-items: start; }
.section-label { display: flex; align-items: center; gap: 15px; padding-top: 8px; color: var(--blue); }
.section-label span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .72rem; font-weight: 700; }
.section-label p { margin: 0; font-size: .72rem; font-weight: 700; letter-spacing: .13em; }
.intro-content h2 { max-width: 850px; margin-bottom: 62px; color: var(--blue-deep); font-size: var(--title-size); }
.intro-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; }
.intro-columns p { margin-bottom: 0; color: var(--muted); }
.intro-columns .intro-lead { color: var(--ink); font-family: var(--sans); font-size: 1.52rem; font-weight: 400; line-height: 1.4; }

.services { position: relative; }
.services-heading { max-width: 760px; margin-bottom: 90px; }
.services-heading h2 { margin-bottom: 0; color: var(--blue-deep); font-size: var(--title-size); }
.service-story { display: grid; grid-template-columns: 1.06fr .94fr; gap: 86px; align-items: center; margin-bottom: 150px; }
.service-story:last-child { margin-bottom: 0; }
.service-story--export { grid-template-columns: .94fr 1.06fr; }
.service-photo { position: relative; min-height: 560px; overflow: hidden; border-radius: 36px 140px 36px 36px; box-shadow: var(--shadow); }
.service-story--export .service-photo { border-radius: 140px 36px 36px 36px; }
.service-photo::before { content: ""; position: absolute; z-index: 2; inset: 18px; border: 1px solid rgba(255,255,255,.55); border-radius: inherit; pointer-events: none; }
.service-photo img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.service-copy { position: relative; padding: 35px 0; }
.service-number { position: absolute; right: 0; top: -35px; color: rgba(21,89,154,.09); font-family: var(--title); font-size: 9rem; font-weight: 300; line-height: 1; }
.service-type { margin-bottom: 22px; color: var(--blue); font-size: .77rem; font-weight: 700; letter-spacing: .16em; }
.service-copy h3 { position: relative; margin-bottom: 28px; color: var(--blue-deep); font-size: var(--title-size); }
.service-copy > p:not(.service-type) { color: var(--muted); }
.service-copy ul { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.service-copy li { position: relative; padding-left: 30px; color: var(--ink); font-size: 1.03rem; }
.service-copy li::before { content: ""; position: absolute; left: 0; top: .69em; width: 16px; height: 1px; background: var(--gold); }

.process { position: relative; overflow: hidden; color: #fff; background: var(--blue-deep); }
.process::after { content: ""; position: absolute; width: 570px; height: 570px; right: -220px; bottom: -330px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.013); }
.process-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.section-label--light { color: var(--gold-soft); }
.process-heading h2 { margin: 52px 0 28px; color: #fff; font-size: var(--title-size); }
.process-heading > p { max-width: 520px; color: #b9c8d7; font-size: 1.06rem; }
.process-steps { border-top: 1px solid rgba(255,255,255,.18); }
.process-step { display: grid; grid-template-columns: 70px 1fr; gap: 28px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.process-step > span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; color: var(--gold-soft); font-size: .78rem; font-weight: 700; }
.process-step h3 { margin-bottom: 10px; color: #fff; font-family: var(--title); font-size: 1.02rem; font-weight: 300; line-height: 1.25; letter-spacing: .035em; text-transform: uppercase; }
.process-step p { margin-bottom: 0; color: #b9c8d7; font-size: 1rem; }

.quote-section { padding: 150px 0; background: var(--cream); }
.quote-inner { max-width: 1000px; text-align: center; }
.quote-inner blockquote { margin: 0 auto 42px; color: var(--blue-deep); font-size: clamp(3.2rem, 5.9vw, 6rem); line-height: 1.03; }
.quote-signature { display: flex; justify-content: center; align-items: center; gap: 14px; color: var(--blue); }
.quote-signature span { width: 48px; height: 1px; background: var(--gold); }
.quote-signature p { margin: 0; font-size: .68rem; font-weight: 700; letter-spacing: .13em; }

.contact { color: #fff; background: #082747; }
.contact-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 95px; align-items: start; }
.contact-copy h2 { margin-bottom: 26px; color: #fff; font-size: var(--title-size); }
.contact-copy > p:not(.kicker) { color: #b9c8d7; font-size: 1.08rem; }
.contact-data { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; margin-top: 55px; }
.contact-data { font-style: normal; }
.contact-data article { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.19); }
.contact-data span { display: block; margin-bottom: 7px; color: var(--gold-soft); font-size: .63rem; font-weight: 700; letter-spacing: .13em; }
.contact-data strong { display: block; color: #fff; font-size: 1rem; font-weight: 500; overflow-wrap: anywhere; }
.contact-data a { text-decoration: underline; text-decoration-color: rgba(221,202,149,.42); text-underline-offset: 4px; transition: color .2s ease, text-decoration-color .2s ease; }
.contact-data a:hover, .contact-data a:focus-visible { color: var(--gold-soft); text-decoration-color: currentColor; }
.contact-form { padding: 42px; border: 1px solid rgba(255,255,255,.15); border-radius: 34px; background: rgba(255,255,255,.07); -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 18px; }
.contact-form label > span { color: rgba(255,255,255,.84); font-size: .84rem; font-weight: 600; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.25); border-radius: 0; outline: 0; color: #fff; background: transparent; padding: 12px 0; }
.contact-form select {
  color: #fff;
  color-scheme: normal;
}
.contact-form select option {
  color: var(--blue-deep);
  background: #fff;
}
.contact-form select option[value=""] {
  color: #65778a;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.42); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold-soft); }
.contact-form textarea { min-height: 115px; resize: vertical; }
.form-note { margin: 13px 0 0; color: rgba(255,255,255,.58); font-size: .78rem; text-align: center; }
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.toast.error {
  color: #fff;
  background: #8f2f2f;
}
.toast.success {
  color: var(--blue-deep);
  background: var(--gold-soft);
}

.footer { color: #9eb0c2; background: #061c34; }
.footer-main { min-height: 165px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 50px; }
.footer-brand { width: 126px; height: 100px; display: grid; place-items: center; overflow: hidden; }
.footer-brand img { width: 110px; filter: brightness(0) invert(1); opacity: .9; }
.footer-main p { margin: 0; font-family: var(--sans); font-size: 1.25rem; }
.footer-main > a:last-child { color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .08em; }
.footer-bottom { min-height: 64px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.toast { position: fixed; z-index: 2500; left: 50%; bottom: 24px; max-width: calc(100% - 32px); padding: 13px 18px; border-radius: 999px; color: var(--blue-deep); background: var(--gold-soft); box-shadow: var(--shadow); transform: translate(-50%, 120px); opacity: 0; transition: .35s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

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

main,
section,
header,
footer,
.top-note {
  max-width: 100%;
}

.hero-layout > *,
.intro-grid > *,
.intro-columns > *,
.service-story > *,
.process-layout > *,
.process-step > *,
.contact-layout > *,
.field-row > *,
.footer-main > * {
  min-width: 0;
}

h1, h2, h3, p, li, strong, a, blockquote {
  overflow-wrap: break-word;
}

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
  main { overflow-x: clip; }
}

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

@media (max-width: 1020px) {
  .section { padding: 105px 0; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-image-wrap { height: 510px; }
  .hero-stamp { width: 145px; }
  .main-nav { gap: 18px; }
  .service-story, .service-story--export { gap: 50px; }
  .process-layout { gap: 65px; }
  .contact-layout { gap: 55px; }
}

@media (max-width: 820px) {
  .top-note__services { display: none; }
  .top-note .shell { justify-content: center; text-align: center; }

  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .header-inner { min-height: 80px; gap: 16px; }

  .brand {
    width: 120px;
    height: 72px;
  }

  .brand img {
    width: auto;
    height: 68px;
    max-width: 100%;
  }

  .menu-button {
    position: relative;
    z-index: 1200;
    display: block;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 22px rgba(13,47,89,.08);
  }

  .menu-button.active { background: var(--cream); }
  .menu-button.active span:first-child { transform: translateY(4.25px) rotate(45deg); }
  .menu-button.active span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

  body.menu-open::before {
    content: "";
    position: fixed;
    z-index: 900;
    inset: var(--mobile-menu-top, 114px) 0 0;
    background: rgba(6, 28, 52, .48);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .main-nav {
    position: fixed;
    z-index: 1150;
    top: var(--mobile-menu-top, 114px);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(88vw, 390px);
    height: calc(100vh - var(--mobile-menu-top, 114px));
    height: calc(100dvh - var(--mobile-menu-top, 114px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--blue-deep);
    background: #fbf8f1;
    border-left: 1px solid var(--line);
    box-shadow: -22px 0 55px rgba(6, 28, 52, .2);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform .3s ease, visibility .3s ease;
  }

  .main-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav a {
    padding: 18px 8px;
    border-bottom: 1px solid var(--line);
    font-size: .88rem;
  }

  .main-nav a::after { display: none; }

  .nav-contact {
    margin-top: 20px;
    padding: 15px 18px !important;
    border-radius: 999px;
    color: #fff;
    background: var(--blue-deep);
    text-align: center;
  }

  .hero { padding-top: 45px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr); gap: 52px; }
  .hero-copy { max-width: 690px; }
  .hero-media { width: 100%; max-width: 100%; }
  .hero-image-wrap { width: 100%; height: 540px; }

  .hero-foot { grid-template-columns: minmax(0, 1fr); padding: 18px 0; }
  .hero-foot span { padding: 14px; }
  .hero-foot span + span { border-left: 0; border-top: 1px solid var(--line); }

  .intro-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .intro-content h2 { margin-bottom: 45px; }

  .service-story,
  .service-story--export {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
    margin-bottom: 110px;
  }

  .service-story--export .service-copy { order: 2; }
  .service-story--export .service-photo { order: 1; }
  .service-photo, .service-photo img { min-height: 480px; }

  .process-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 70px;
  }

  .contact-data { max-width: 650px; }
  .contact-form { width: 100%; }

  .footer-main { grid-template-columns: auto minmax(0, 1fr); }
  .footer-main > a:last-child { grid-column: 2; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 32px); }
  .section { padding: 72px 0; }
  .top-note { font-size: .67rem; letter-spacing: .06em; }
  .header-inner { min-height: 76px; }

  .brand { width: 112px; height: 68px; }
  .brand img { height: 64px; }

  .main-nav {
    width: min(91vw, 360px);
    padding: 24px 20px 36px;
  }

  .hero { padding-top: 32px; }

  h1,
  .intro-content h2,
  .services-heading h2,
  .service-copy h3,
  .process-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 7.7vw, 2.45rem);
    line-height: 1.16;
  }

  .hero-lead { font-size: 1.08rem; }
  .hero-actions { width: 100%; align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-actions .button-primary { width: 100%; }
  .hero-media { padding: 0 0 30px; }
  .hero-image-wrap { height: 420px; border-radius: 26px 26px 105px 26px; }
  .hero-stamp { left: 8px; bottom: 0; width: 118px; }
  .hero-stamp span { font-size: 1.48rem; }
  .hero-stamp small { max-width: 82px; text-align: center; line-height: 1.25; }
  .hero-foot { margin-top: 10px; font-size: 1.02rem; }

  .intro-columns { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .intro-columns .intro-lead { font-size: 1.28rem; }

  .services-heading { margin-bottom: 58px; }
  .service-story, .service-story--export { gap: 34px; margin-bottom: 88px; }
  .service-photo, .service-photo img { min-height: 360px; }
  .service-photo { border-radius: 24px 72px 24px 24px; }
  .service-story--export .service-photo { border-radius: 72px 24px 24px 24px; }
  .service-photo::before { inset: 12px; }
  .service-copy { padding: 20px 0 0; }
  .service-number { top: -18px; right: -2px; font-size: 5.8rem; }
  .service-copy li { font-size: 1rem; }

  .process-layout, .contact-layout { gap: 52px; }
  .process-heading h2 { margin-top: 38px; }
  .process-step { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; padding: 25px 0; }
  .process-step > span { width: 40px; height: 40px; }
  .process-step p { font-size: .98rem; }

  .quote-section { padding: 82px 0; }
  .quote-inner blockquote { font-size: clamp(2.2rem, 10.5vw, 3.35rem); line-height: 1.08; }
  .quote-signature { align-items: flex-start; }
  .quote-signature p { max-width: 230px; line-height: 1.5; }

  .contact-data, .field-row { grid-template-columns: minmax(0, 1fr); }
  .contact-data { gap: 24px; margin-top: 42px; }
  .contact-form { padding: 28px 18px; border-radius: 22px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-width: 0;
    font-size: 1rem;
  }

  .footer-main { grid-template-columns: minmax(0, 1fr); gap: 18px; padding: 36px 0; }
  .footer-main > a:last-child { grid-column: auto; }
  .footer-brand { justify-items: start; width: 120px; overflow: visible; }
  .footer-main p { font-size: 1.12rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px 0; line-height: 1.5; }

  .toast { width: calc(100% - 32px); border-radius: 18px; text-align: center; }
}

@media (max-width: 360px) {
  .shell { width: calc(100% - 24px); }
  .top-note { font-size: .61rem; }
  h1,
  .intro-content h2,
  .services-heading h2,
  .service-copy h3,
  .process-heading h2,
  .contact-copy h2 { font-size: 1.78rem; }
  .hero-image-wrap { height: 365px; }
  .hero-stamp { width: 104px; }
  .contact-form { padding-inline: 15px; }
}


/* Acceso directo a WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 850;
  right: 22px;
  bottom: 22px;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 7px 7px 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  background: #1f9d55;
  box-shadow: 0 16px 36px rgba(5,38,25,.26);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  background: #168c49;
  box-shadow: 0 20px 42px rgba(5,38,25,.34);
  transform: translateY(-3px);
}
.whatsapp-float:focus-visible { outline: 3px solid rgba(221,202,149,.8); outline-offset: 3px; }
.whatsapp-float__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
}
.whatsapp-float__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 560px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 7px;
  }
  .whatsapp-float__label { display: none; }
  .whatsapp-float__icon { width: 44px; height: 44px; }
}

@media print {
  .site-header, .top-note, .whatsapp-float, .contact-form, .toast { display: none !important; }
}


/* =========================================================
   CUMPLIMIENTO, PRIVACIDAD Y PÁGINAS LEGALES — 2026-08-20
========================================================= */
.services-coverage {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.privacy-consent {
  grid-template-columns: 22px minmax(0, 1fr) !important;
  align-items: start;
  gap: 12px !important;
  margin: 8px 0 24px !important;
  padding: 16px 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.privacy-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--gold-soft);
}
.contact-form .privacy-consent > span {
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.55;
}
.privacy-consent a,
.form-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-main--legal {
  min-height: 190px;
  grid-template-columns: auto minmax(240px, .85fr) minmax(300px, 1.15fr);
}
.footer-identity p {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.03rem;
  font-weight: 600;
}
.footer-identity span {
  display: block;
  max-width: 420px;
  color: #9eb0c2;
  font-size: .8rem;
  line-height: 1.55;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
}
.footer-links a,
.footer-bottom a {
  color: #d3dce6;
  font-size: .76rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(221,202,149,.28);
  text-underline-offset: 4px;
}
.footer-links a:hover,
.footer-bottom a:hover { color: var(--gold-soft); }
.cookie-notice {
  position: fixed;
  z-index: 2400;
  right: 22px;
  bottom: 95px;
  width: min(470px, calc(100% - 44px));
  display: none;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(13,47,89,.12);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(251,248,241,.98);
  box-shadow: 0 22px 65px rgba(6,28,52,.2);
}
.cookie-notice.show { display: grid; }
.cookie-notice strong { display: block; margin-bottom: 3px; color: var(--blue-deep); font-size: .88rem; }
.cookie-notice p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.cookie-notice a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie-notice button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
}

/* Páginas legales */
.legal-body { background: var(--paper); }
.legal-header .header-inner { min-height: 82px; }
.legal-main { padding-bottom: 90px; }
.legal-hero {
  padding: 88px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(221,202,149,.16), transparent 22rem),
    var(--blue-deep);
}
.legal-hero .kicker { margin-bottom: 17px; }
.legal-hero h1 { max-width: 900px; margin-bottom: 20px; color: #fff; }
.legal-hero p:last-child { max-width: 780px; margin-bottom: 0; color: #c1d0de; font-size: 1.08rem; }
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 70px;
  padding-top: 80px;
}
.legal-toc {
  position: sticky;
  top: 122px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.legal-toc strong { display: block; margin-bottom: 14px; color: var(--blue-deep); font-size: .78rem; letter-spacing: .08em; }
.legal-toc a { display: block; padding: 8px 0; color: var(--muted); font-size: .9rem; border-bottom: 1px solid rgba(13,47,89,.08); }
.legal-toc a:last-child { border-bottom: 0; }
.legal-content { min-width: 0; }
.legal-section { scroll-margin-top: 125px; padding: 0 0 44px; margin: 0 0 44px; border-bottom: 1px solid var(--line); }
.legal-section:last-child { margin-bottom: 0; border-bottom: 0; }
.legal-section h2 { margin-bottom: 20px; color: var(--blue-deep); font-size: clamp(1.55rem, 2.6vw, 2.4rem); }
.legal-section h3 { margin: 26px 0 12px; color: var(--blue-deep); font-size: 1.08rem; }
.legal-section p, .legal-section li { color: #536579; }
.legal-section ul, .legal-section ol { padding-left: 22px; }
.legal-section li + li { margin-top: 8px; }
.legal-card-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.legal-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.legal-card span { display:block; margin-bottom: 8px; color: var(--blue); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.legal-card strong { display:block; color: var(--blue-deep); font-size: 1rem; line-height: 1.45; }
.legal-card p { margin: 8px 0 0; font-size: .88rem; }
.legal-callout {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: #f5f0e4;
}
.legal-callout p { margin: 0; color: var(--ink); }

.profile-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 26px; }
.profile-card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.profile-card__head span { display:block; margin-bottom: 8px; color: var(--blue); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.profile-card__head h3 { margin: 0 0 16px; font-size: 1.2rem; }
.profile-card > p { margin-bottom: 20px; }
.profile-facts { margin: 0; }
.profile-facts div { padding: 14px 0; border-top: 1px solid rgba(13,47,89,.09); }
.profile-facts dt { color: var(--blue-deep); font-weight: 700; font-size: .82rem; }
.profile-facts dd { margin: 5px 0 0; color: #536579; font-size: .9rem; line-height: 1.55; }
.ethics-values { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.ethics-values span { padding:9px 12px; border:1px solid var(--line); border-radius:999px; background:#fff; color:var(--blue-deep); font-size:.86rem; font-weight:600; }

.legal-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
.legal-actions .button { min-height: 46px; }
.legal-link { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-meta { margin-top: 18px; color: #98a8b7 !important; font-size: .8rem !important; }

@media (max-width: 900px) {
  .footer-main--legal { grid-template-columns: auto minmax(0,1fr); gap: 25px 34px; padding: 32px 0; }
  .footer-links { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: minmax(0,1fr); gap: 36px; }
  .legal-toc { position: static; }
}
@media (max-width: 560px) {
  .footer-main--legal { grid-template-columns: minmax(0,1fr); }
  .footer-links { grid-column: auto; grid-template-columns: minmax(0,1fr); }
  .cookie-notice { right: 16px; bottom: 86px; width: calc(100% - 32px); grid-template-columns: minmax(0,1fr); }
  .cookie-notice button { width: 100%; }
  .legal-hero { padding: 62px 0 54px; }
  .legal-layout { padding-top: 52px; }
  .legal-card-grid, .profile-grid { grid-template-columns: minmax(0,1fr); }
}
@media print {
  .cookie-notice { display:none!important; }
  .legal-toc { display:none; }
  .legal-layout { display:block; }
}
