:root {
  --ink: #15272a;
  --brand: #294146;
  --brand-deep: #1c3034;
  --teal: #496d70;
  --gold: #c3a56a;
  --gold-light: #e5d6b7;
  --paper: #f7f5f0;
  --warm: #eeeae1;
  --white: #fff;
  --muted: #667375;
  --line: rgba(26, 52, 56, .16);
  --shadow: 0 28px 70px rgba(16, 35, 38, .12);
  --radius: 4px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--teal); }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 99999; top: 12px; left: 12px; padding: 10px 16px;
  color: var(--white); background: var(--ink); transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; z-index: 1000; inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 245, 240, .96);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(17, 37, 40, .08);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: flex; align-items: center; width: 215px; min-height: 62px; padding: 10px 13px;
  background: rgba(255, 255, 255, .93); border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 27px; color: rgba(255, 255, 255, .92); }
.main-nav > a:not(.button) { font-size: .85rem; font-weight: 650; letter-spacing: .02em; position: relative; }
.main-nav > a:not(.button)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px;
  background: var(--gold); transition: right .25s ease;
}
.main-nav > a:not(.button):hover::after, .main-nav > a:not(.button):focus-visible::after { right: 0; }
.site-header.is-scrolled .main-nav { color: var(--ink); }
.language-switcher {
  display: flex; align-items: center; gap: 5px; padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, .4); border-radius: 2px;
}
.site-header.is-scrolled .language-switcher { border-color: var(--line); }
.language-switcher svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.language-switcher select {
  max-width: 112px; border: 0; color: inherit; background: transparent; outline: 0;
  font-size: .76rem; font-weight: 700; cursor: pointer;
}
.language-switcher option { color: var(--ink); background: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; padding: 9px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--white); transition: .25s ease; }
.site-header.is-scrolled .menu-toggle span { background: var(--ink); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  min-height: 52px; padding: 13px 24px; border: 1px solid var(--gold);
  border-radius: var(--radius); color: var(--ink); background: var(--gold);
  font-size: .84rem; font-weight: 750; letter-spacing: .045em; line-height: 1.2;
  cursor: pointer; transition: color .25s ease, background .25s ease, transform .25s ease;
}
.button:hover, .button:focus-visible { color: var(--white); background: transparent; transform: translateY(-2px); }
.site-header.is-scrolled .button:hover, .site-header.is-scrolled .button:focus-visible,
.form-submit:hover, .form-submit:focus-visible { color: var(--brand); }
.button-small { min-height: 42px; padding: 9px 18px; }

.hero {
  position: relative; min-height: 820px; height: 100svh; max-height: 980px;
  display: flex; align-items: center; color: var(--white); isolation: isolate;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media { z-index: -3; background: #102b3c url('../img/hotel-hero.webp') center / cover no-repeat; }
.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 24, 30, .9) 0%, rgba(10, 27, 33, .72) 39%, rgba(8, 24, 30, .18) 72%, rgba(8, 24, 30, .28) 100%),
    linear-gradient(0deg, rgba(7, 20, 24, .68) 0%, transparent 38%, rgba(5, 17, 23, .24) 100%);
}
.hero-content { padding-top: 68px; padding-bottom: 126px; }
.hero-content > * { max-width: 755px; }
.eyebrow {
  margin: 0 0 22px; color: var(--gold-light); text-transform: uppercase;
  font-size: .72rem; font-weight: 750; letter-spacing: .2em;
}
.eyebrow.dark { color: var(--teal); }
.hero h1 {
  margin: 0; font-family: var(--serif); font-size: clamp(3.25rem, 6.4vw, 6.1rem);
  font-weight: 400; line-height: .98; letter-spacing: -.045em;
}
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-lead { margin: 30px 0 0; max-width: 680px; color: rgba(255,255,255,.83); font-size: 1.13rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.text-link { font-size: .84rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 4px; }
.text-link span { color: var(--gold-light); margin-left: 7px; }
.hero-proof {
  position: absolute; z-index: 1; left: 50%; bottom: 0; transform: translateX(-50%);
  display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1180px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.hero-proof > div { display: grid; gap: 2px; padding: 26px 34px 28px; border-right: 1px solid rgba(255,255,255,.2); }
.hero-proof > div:first-child { border-left: 1px solid rgba(255,255,255,.2); }
.hero-proof strong { font-family: var(--serif); font-size: 1.28rem; font-weight: 400; color: var(--gold-light); }
.hero-proof span { font-size: .73rem; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .08em; }
.scroll-cue { position: absolute; z-index: 2; right: 34px; bottom: 30px; width: 20px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; }
.scroll-cue span { position: absolute; top: 9px; left: 8px; width: 2px; height: 8px; background: var(--gold-light); animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }

.section-heading h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  line-height: 1.08; letter-spacing: -.035em; font-weight: 400;
}
.section-heading > p:last-child { color: var(--muted); max-width: 680px; margin: 22px auto 0; }
.section-heading-centered { max-width: 800px; margin: 0 auto 58px; text-align: center; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 11%; align-items: start; }
.intro-copy { padding-top: 12px; }
.intro-copy p { color: var(--muted); margin: 0 0 18px; }
.intro-copy .lead { color: var(--brand-deep); font-family: var(--serif); font-size: 1.45rem; line-height: 1.55; }
.arrow-link { display: inline-flex; gap: 18px; align-items: center; margin-top: 17px; color: var(--brand); font-size: .82rem; font-weight: 750; letter-spacing: .045em; border-bottom: 1px solid var(--gold); }

.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative; min-height: 400px; padding: 40px 34px 35px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white); transition: color .3s ease, background .3s ease, transform .3s ease;
}
.service-card:hover { z-index: 1; color: var(--white); background: var(--brand); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-number { position: absolute; top: 26px; right: 27px; color: #aab3b2; font-family: var(--serif); font-size: .9rem; }
.service-icon { width: 48px; height: 48px; margin-bottom: 46px; fill: none; stroke: var(--teal); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { stroke: var(--gold-light); }
.service-card h3 { margin: 0 0 16px; font-family: var(--serif); font-size: 1.62rem; font-weight: 400; line-height: 1.2; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.service-card:hover p { color: rgba(255,255,255,.72); }
.service-card a { position: absolute; left: 34px; bottom: 31px; display: inline-flex; gap: 12px; align-items: center; color: var(--teal); font-size: .76rem; font-weight: 750; letter-spacing: .045em; }
.service-card:hover a { color: var(--gold-light); }

.approach { display: grid; grid-template-columns: 1fr 1fr; padding: 0; color: var(--white); background: var(--brand-deep); }
.approach-visual {
  position: relative; min-height: 840px; display: grid; place-items: center; padding: 70px;
  background:
    linear-gradient(rgba(27,48,52,.23), rgba(27,48,52,.23)),
    radial-gradient(circle at 25% 25%, rgba(195,165,106,.22), transparent 32%),
    linear-gradient(135deg, #577174, #223b40 60%, #14282c);
  overflow: hidden;
}
.approach-visual::before {
  content: ''; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(229,214,183,.2); border-radius: 50%;
}
.visual-frame { position: relative; width: min(420px, 100%); padding: 62px; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(3px); }
.visual-frame::before, .visual-frame::after { content: ''; position: absolute; background: var(--gold); }
.visual-frame::before { width: 75px; height: 1px; top: 38px; left: -38px; }
.visual-frame::after { width: 1px; height: 75px; right: 38px; bottom: -38px; }
.visual-kicker { color: var(--gold-light); text-transform: uppercase; letter-spacing: .2em; font-size: .68rem; }
.visual-frame strong { display: block; margin: 45px 0 22px; font-family: var(--serif); font-weight: 400; font-size: 4.8rem; letter-spacing: -.05em; }
.visual-frame p { margin: 0; color: rgba(255,255,255,.7); }
.approach-content { padding: 100px clamp(40px, 7vw, 105px); }
.approach-content .section-heading > p:last-child { margin-left: 0; color: rgba(255,255,255,.68); }
.process-list { list-style: none; padding: 0; margin: 54px 0 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list li > span { color: var(--gold-light); font-family: var(--serif); font-size: .88rem; }
.process-list h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.process-list p { margin: 0; color: rgba(255,255,255,.62); font-size: .88rem; }

.audiences { background: var(--warm); }
.audiences .section-heading { max-width: 760px; margin-bottom: 55px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.audience-card { min-height: 330px; padding: 40px 34px; border: 1px solid var(--line); background: rgba(255,255,255,.48); }
.audience-card.featured { color: var(--white); background: var(--brand); border-color: var(--brand); transform: translateY(-18px); box-shadow: var(--shadow); }
.audience-card > span { display: inline-block; padding-bottom: 9px; color: var(--teal); border-bottom: 1px solid var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .66rem; font-weight: 750; }
.audience-card.featured > span { color: var(--gold-light); }
.audience-card h3 { margin: 70px 0 18px; font-family: var(--serif); font-size: 2.1rem; font-weight: 400; }
.audience-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.audience-card.featured p { color: rgba(255,255,255,.7); }

.principles { color: var(--white); background: var(--ink); }
.principles-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 10%; }
.principle-list { border-top: 1px solid rgba(255,255,255,.16); }
.principle-list article { display: grid; grid-template-columns: 42px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.principle-list article > span { color: var(--gold-light); font-family: var(--serif); font-size: .85rem; }
.principle-list h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 1.38rem; font-weight: 400; }
.principle-list p { margin: 0; color: rgba(255,255,255,.61); font-size: .9rem; }

.contact { color: var(--white); background: var(--brand); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9%; align-items: start; }
.contact-copy { position: sticky; top: 135px; }
.contact-copy h2 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 4.6rem); line-height: 1.03; letter-spacing: -.04em; font-weight: 400; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.email-link { display: inline-flex; gap: 12px; margin-top: 22px; color: var(--gold-light); border-bottom: 1px solid var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.contact-note { display: flex; align-items: center; gap: 12px; margin-top: 48px; color: rgba(255,255,255,.58); font-size: .8rem; }
.contact-note svg { width: 23px; height: 23px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.form-panel { padding: 50px; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { color: #435355; font-size: .73rem; font-weight: 750; letter-spacing: .025em; }
.field label span, .consent b { color: #936e2d; }
.field input, .field select, .field textarea {
  width: 100%; border: 0; border-bottom: 1px solid #a9b1af; border-radius: 0;
  padding: 10px 2px 11px; color: var(--ink); background: transparent; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 1px 0 var(--brand); }
.field textarea { min-height: 118px; resize: vertical; }
.field [aria-invalid="true"] { border-color: #a33d32; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: .76rem; cursor: pointer; }
.consent input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--brand); }
.consent a { color: var(--brand); text-decoration: underline; }
.form-submit { justify-self: start; min-width: 190px; margin-top: 4px; }
.required-note { margin: -12px 0 0; color: #7b8584; font-size: .7rem; }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-bottom: 22px; padding: 15px 18px; border: 1px solid; font-size: .88rem; }
.form-status.success { color: #215c3a; background: #e7f3eb; border-color: #9bc9aa; }
.form-status.error { color: #7f3028; background: #f8e8e5; border-color: #d8a39d; }

.site-footer { color: rgba(255,255,255,.68); background: #102124; }
.footer-main { display: grid; grid-template-columns: 1.8fr .65fr .8fr; gap: 9%; padding: 75px 0 58px; }
.footer-brand > a { display: block; width: 230px; padding: 10px 14px; background: var(--paper); }
.footer-brand p { max-width: 390px; margin: 24px 0 0; }
.footer-nav, .footer-contact { display: grid; align-content: start; gap: 9px; }
.footer-nav h2, .footer-contact h2 { margin: 0 0 13px; color: var(--white); text-transform: uppercase; letter-spacing: .17em; font-size: .68rem; }
.footer-nav a, .footer-contact a { font-size: .86rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { margin: 7px 0 0; font-size: .82rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0 28px; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--white); }

.google-translate-element, .goog-te-banner-frame, .skiptranslate iframe { display: none !important; }
body { top: 0 !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }

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

/* Páginas legales y de sistema */
.subpage .site-header { background: rgba(247,245,240,.97); border-color: var(--line); }
.subpage .site-header .main-nav { color: var(--ink); }
.subpage .site-header .language-switcher { border-color: var(--line); }
.subpage .site-header .menu-toggle span { background: var(--ink); }
.page-hero { padding: 175px 0 78px; color: var(--white); background: var(--brand); }
.page-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; line-height: 1; }
.page-hero p { max-width: 690px; margin: 23px 0 0; color: rgba(255,255,255,.67); }
.legal-content { max-width: 850px; padding-top: 85px; padding-bottom: 100px; }
.legal-content h2 { margin: 45px 0 12px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 28px 0 8px; font-size: 1rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--brand); text-decoration: underline; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 25px 0; }
.legal-content th, .legal-content td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-content th { background: var(--warm); }
.back-home { display: inline-flex; gap: 12px; margin-top: 35px; color: var(--brand); font-weight: 700; }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; text-align: center; background: var(--brand); color: var(--white); }
.error-page img { width: 250px; margin: 0 auto 40px; padding: 12px; background: var(--paper); }
.error-page strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 7rem; font-weight: 400; line-height: 1; }
.error-page h1 { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.error-page p { color: rgba(255,255,255,.7); }
.error-page .button { margin-top: 20px; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.button) { font-size: .78rem; }
  .brand { width: 190px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-content { padding-inline: 55px; }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .header-inner { min-height: 76px; }
  .brand { width: 176px; min-height: 54px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .main-nav {
    position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center;
    gap: 24px; padding: 100px 30px 50px; color: var(--white) !important; background: var(--brand-deep);
    opacity: 0; visibility: hidden; transform: translateY(-14px); transition: .25s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a:not(.button) { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
  .main-nav .language-switcher { margin-top: 10px; border-color: rgba(255,255,255,.3) !important; }
  .main-nav .language-switcher select { max-width: 160px; }
  .menu-toggle[aria-expanded="true"] span { background: var(--white); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { min-height: 760px; max-height: none; }
  .hero-content { padding-bottom: 190px; }
  .hero-proof { width: calc(100% - 48px); }
  .hero-proof > div { padding-inline: 20px; }
  .scroll-cue { display: none; }
  .intro-grid, .principles-grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .approach { grid-template-columns: 1fr; }
  .approach-visual { min-height: 560px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 260px; }
  .audience-card.featured { transform: none; }
  .audience-card h3 { margin-top: 42px; }
  .contact-copy { position: static; }
  .footer-main { grid-template-columns: 1.4fr .7fr .8fr; gap: 5%; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, 1180px); }
  .section { padding: 74px 0; }
  .hero { min-height: 790px; height: 100svh; }
  .hero-media { background-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,24,30,.94), rgba(8,24,30,.46)), linear-gradient(0deg, rgba(7,20,24,.82), transparent 48%); }
  .hero-content { padding-top: 55px; padding-bottom: 205px; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 4.1rem); }
  .hero-lead { font-size: .98rem; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 30px; }
  .hero-proof { grid-template-columns: 1fr 1fr; width: calc(100% - 30px); }
  .hero-proof > div { padding: 15px 12px 17px; }
  .hero-proof > div:nth-child(3) { grid-column: 1 / -1; border-left: 1px solid rgba(255,255,255,.2); border-top: 1px solid rgba(255,255,255,.2); }
  .hero-proof strong { font-size: 1.05rem; }
  .hero-proof span { font-size: .62rem; }
  .intro-grid { gap: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 365px; padding: 34px 27px; }
  .service-card a { left: 27px; }
  .approach-visual { min-height: 440px; padding: 44px 30px; }
  .approach-visual::before { width: 320px; height: 320px; }
  .visual-frame { padding: 45px 36px; }
  .visual-frame strong { font-size: 3.8rem; }
  .approach-content { padding: 75px 24px; }
  .process-list li { grid-template-columns: 40px 1fr; gap: 13px; }
  .form-panel { padding: 34px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px 20px; }
  .page-hero { padding-top: 145px; }
  .legal-content { padding-top: 65px; }
  .legal-content table { display: block; overflow-x: auto; }
}

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