/*
Theme Name: Alpinus Invest
Theme URI: https://alpinus.es/
Author: Alpinus Invest, S.L.
Description: Bilingual corporate website for Alpinus Invest, S.L.
Version: 1.0.0
Text Domain: alpinus-invest
*/
:root {
      --ink: #160f18;
      --ink-soft: #504653;
      --aubergine: #2b0d32;
      --aubergine-2: #4b1256;
      --purple: #780981;
      --magenta: #d60fe3;
      --magenta-soft: #f6d8f8;
      --paper: #fbf9fb;
      --paper-2: #f4eff5;
      --line: rgba(43, 13, 50, .14);
      --white: #fff;
      --shadow: 0 28px 80px rgba(34, 10, 41, .14);
      --radius: 2px;
      --container: min(1240px, calc(100% - 48px));
      --header-height: 84px;
    }

    *, *::before, *::after { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--header-height) + 28px);
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.nav-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, select, textarea { font: inherit; }

    ::selection {
      color: var(--white);
      background: var(--purple);
    }

    .skip-link {
      position: fixed;
      z-index: 1000;
      top: 10px;
      left: 10px;
      padding: 10px 16px;
      color: var(--white);
      background: var(--aubergine);
      transform: translateY(-160%);
      transition: transform .2s ease;
    }

    .skip-link:focus { transform: translateY(0); }
    .container { width: var(--container); margin-inline: auto; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 20px;
      color: var(--purple);
      font-size: .74rem;
      font-weight: 760;
      letter-spacing: .18em;
      line-height: 1.25;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 36px;
      height: 1px;
      content: "";
      background: currentColor;
    }

    h1, h2, h3, p { margin-top: 0; }

    h1, h2, h3 {
      font-family: Manrope, Inter, Avenir, "Segoe UI", sans-serif;
      font-weight: 520;
      letter-spacing: -.045em;
      line-height: 1.05;
    }

    h1 {
      max-width: 780px;
      margin-bottom: 28px;
      font-size: clamp(3.2rem, 6.5vw, 6.9rem);
    }

    h1 span { color: var(--purple); }
    h1 .hero-title-main { color: inherit; }

    h2 {
      margin-bottom: 28px;
      font-size: clamp(2.35rem, 4.4vw, 4.7rem);
    }

    h3 {
      margin-bottom: 16px;
      font-size: clamp(1.55rem, 2.2vw, 2rem);
      letter-spacing: -.035em;
      line-height: 1.15;
    }

    .lead {
      max-width: 670px;
      color: var(--ink-soft);
      font-size: clamp(1.08rem, 1.5vw, 1.28rem);
      line-height: 1.75;
    }

    .button {
      position: relative;
      display: inline-flex;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 22px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      color: var(--white);
      background: var(--aubergine);
      font-size: .84rem;
      font-weight: 720;
      letter-spacing: .055em;
      line-height: 1;
      text-decoration: none;
      text-transform: uppercase;
      cursor: pointer;
      transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
    }

    .button::after {
      content: "→";
      font-size: 1.15rem;
      font-weight: 400;
      transition: transform .25s ease;
    }

    .button:hover { background: var(--purple); transform: translateY(-2px); }
    .button:hover::after { transform: translateX(4px); }

    .button--ghost {
      color: var(--aubergine);
      border-color: var(--line);
      background: transparent;
    }

    .button--ghost:hover {
      color: var(--white);
      border-color: var(--aubergine);
      background: var(--aubergine);
    }

    .button--light {
      color: var(--aubergine);
      background: var(--white);
    }

    .button--light:hover { color: var(--white); background: var(--magenta); }

    .site-header {
      position: fixed;
      z-index: 100;
      top: 0;
      right: 0;
      left: 0;
      height: var(--header-height);
      border-bottom: 1px solid transparent;
      background: rgba(251, 249, 251, .88);
      backdrop-filter: blur(18px);
      transition: border-color .25s ease, box-shadow .25s ease;
    }

    .site-header.is-scrolled {
      border-color: var(--line);
      box-shadow: 0 8px 32px rgba(43, 13, 50, .05);
    }

    .header-inner {
      display: flex;
      height: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .header-tools {
      display: flex;
      flex: 0 0 auto;
      align-items: center;
      gap: 10px;
    }

    .brand {
      display: inline-flex;
      width: 178px;
      align-items: center;
    }

    .brand img { width: 100%; height: auto; }

    .main-nav {
      display: flex;
      align-items: center;
      gap: clamp(18px, 2.2vw, 36px);
    }

    .main-nav > a:not(.button) {
      position: relative;
      padding-block: 12px;
      color: #392f3c;
      font-size: .84rem;
      font-weight: 680;
      letter-spacing: .02em;
      text-decoration: none;
    }

    .main-nav > a:not(.button)::after {
      position: absolute;
      right: 0;
      bottom: 6px;
      left: 0;
      height: 1px;
      content: "";
      background: var(--magenta);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .25s ease;
    }

    .main-nav > a:not(.button):hover::after,
    .main-nav > a:not(.button).is-active::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .main-nav .button { min-height: 44px; padding: 12px 18px; font-size: .72rem; }

    .language-switch {
      display: inline-flex;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
    }

    .language-option {
      display: inline-flex;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      border: 0;
      color: var(--aubergine);
      background: transparent;
      font-size: .68rem;
      font-weight: 780;
      letter-spacing: .08em;
      cursor: pointer;
      transition: color .2s ease, background .2s ease;
    }

    .language-option + .language-option { border-left: 1px solid var(--line); }
    .language-option:hover { background: var(--paper-2); }

    .language-option.is-active {
      color: var(--white);
      background: var(--aubergine);
    }

    .language-option svg {
      width: 21px;
      height: 14px;
      border: 1px solid rgba(43, 13, 50, .14);
      box-shadow: 0 1px 2px rgba(43, 13, 50, .08);
    }

    .language-option.is-active svg { border-color: rgba(255, 255, 255, .5); }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      color: var(--aubergine);
      background: transparent;
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 20px;
      height: 1.5px;
      content: "";
      background: currentColor;
      transition: transform .25s ease, opacity .25s ease;
    }

    .menu-toggle span { position: relative; }
    .menu-toggle span::before { position: absolute; top: -6px; }
    .menu-toggle span::after { position: absolute; top: 6px; }
    .nav-open .menu-toggle span { background: transparent; }
    .nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
    .nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

    .hero {
      position: relative;
      display: grid;
      min-height: 830px;
      align-items: center;
      overflow: hidden;
      padding: calc(var(--header-height) + 70px) 0 80px;
    }

    .hero::before {
      position: absolute;
      z-index: -1;
      top: 8%;
      left: -12%;
      width: 48vw;
      height: 48vw;
      border-radius: 50%;
      content: "";
      background: radial-gradient(circle, rgba(214, 15, 227, .08), transparent 66%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      align-items: center;
      gap: clamp(44px, 6vw, 92px);
      grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
    }

    .hero-copy { position: relative; z-index: 2; }

    .hero-copy .lead { margin-bottom: 34px; }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .disclosure-note {
      display: flex;
      max-width: 650px;
      align-items: flex-start;
      gap: 12px;
      margin: 0;
      color: #6e6470;
      font-size: .84rem;
      line-height: 1.6;
    }

    .disclosure-note::before {
      flex: 0 0 auto;
      width: 6px;
      height: 6px;
      margin-top: .55em;
      border-radius: 50%;
      content: "";
      background: var(--magenta);
      box-shadow: 0 0 0 5px rgba(214, 15, 227, .1);
    }

    .hero-visual {
      position: relative;
      min-height: 590px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .12);
      background:
        linear-gradient(145deg, rgba(214, 15, 227, .18), transparent 44%),
        linear-gradient(155deg, #54115d 0%, #2b0d32 48%, #170a1b 100%);
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .hero-visual::before {
      position: absolute;
      z-index: -1;
      inset: 0;
      content: "";
      background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, black, transparent 82%);
    }

    .visual-kicker,
    .visual-code {
      position: absolute;
      z-index: 3;
      color: rgba(255, 255, 255, .66);
      font-size: .65rem;
      font-weight: 680;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .visual-kicker { top: 28px; left: 30px; }
    .visual-code { right: 28px; bottom: 26px; writing-mode: vertical-rl; }

    .visual-mark {
      position: absolute;
      z-index: 3;
      top: 50%;
      left: 50%;
      width: min(47%, 255px);
      filter: drop-shadow(0 26px 42px rgba(0, 0, 0, .22));
      transform: translate(-50%, -52%);
    }

    .visual-orbit,
    .visual-orbit::before,
    .visual-orbit::after {
      position: absolute;
      top: 50%;
      left: 50%;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 50%;
      content: "";
      transform: translate(-50%, -50%);
    }

    .visual-orbit { width: 72%; aspect-ratio: 1; }
    .visual-orbit::before { width: 76%; aspect-ratio: 1; }
    .visual-orbit::after { width: 132%; aspect-ratio: 1; }

    .visual-ray {
      position: absolute;
      z-index: 2;
      right: -8%;
      bottom: -20%;
      width: 72%;
      height: 74%;
      background: linear-gradient(135deg, transparent 7%, rgba(214, 15, 227, .2) 46%, rgba(255, 255, 255, .02) 47%);
      clip-path: polygon(48% 0, 100% 100%, 0 100%);
      transform: rotate(-9deg);
    }

    .visual-axis {
      position: absolute;
      z-index: 2;
      bottom: 48px;
      left: 30px;
      display: grid;
      gap: 8px;
      color: var(--white);
      font-size: .72rem;
      font-weight: 650;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .visual-axis span { display: flex; align-items: center; gap: 9px; }
    .visual-axis span::before { width: 14px; height: 1px; content: ""; background: var(--magenta); }

    .facts-strip {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--white);
    }

    .facts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .fact {
      min-height: 145px;
      padding: 30px clamp(18px, 2.4vw, 34px);
      border-left: 1px solid var(--line);
    }

    .fact:last-child { border-right: 1px solid var(--line); }

    .fact-label {
      display: block;
      margin-bottom: 10px;
      color: var(--purple);
      font-size: .66rem;
      font-weight: 770;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .fact-value {
      display: block;
      color: var(--aubergine);
      font-size: clamp(1.08rem, 1.8vw, 1.38rem);
      font-weight: 630;
      letter-spacing: -.025em;
      line-height: 1.3;
    }

    .section { padding: clamp(96px, 11vw, 160px) 0; }

    .section-heading {
      display: grid;
      align-items: end;
      gap: clamp(32px, 7vw, 110px);
      grid-template-columns: 1.08fr .72fr;
      margin-bottom: clamp(54px, 7vw, 92px);
    }

    .section-heading h2 { margin-bottom: 0; }
    .section-heading .lead { margin-bottom: 8px; }

    .company-grid {
      display: grid;
      align-items: stretch;
      gap: clamp(36px, 6vw, 90px);
      grid-template-columns: 1.1fr .9fr;
    }

    .company-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .company-copy .lead { margin-bottom: 22px; }

    .company-copy p:not(.eyebrow):not(.lead) {
      max-width: 680px;
      color: var(--ink-soft);
    }

    .company-quote {
      position: relative;
      display: flex;
      min-height: 440px;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      padding: clamp(38px, 5vw, 66px);
      color: var(--white);
      background: var(--aubergine);
    }

    .company-quote::before {
      position: absolute;
      top: -40%;
      right: -35%;
      width: 480px;
      aspect-ratio: 1;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 50%;
      content: "";
      box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .018);
    }

    .quote-mark {
      color: var(--magenta);
      font-family: Georgia, serif;
      font-size: 5.6rem;
      line-height: .6;
    }

    .company-quote blockquote {
      position: relative;
      z-index: 2;
      margin: 0;
      font-family: Manrope, Inter, sans-serif;
      font-size: clamp(2rem, 3.6vw, 3.7rem);
      font-weight: 450;
      letter-spacing: -.045em;
      line-height: 1.08;
    }

    .company-quote footer {
      position: relative;
      z-index: 2;
      color: rgba(255, 255, 255, .65);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .areas { background: var(--paper-2); }

    .areas-grid {
      display: grid;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      grid-template-columns: repeat(2, 1fr);
    }

    .area-card {
      position: relative;
      min-height: 350px;
      overflow: hidden;
      padding: clamp(34px, 5vw, 64px);
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, .43);
      transition: color .35s ease, background .35s ease, transform .35s ease;
    }

    .area-card::before {
      position: absolute;
      right: -42px;
      bottom: -60px;
      width: 180px;
      height: 210px;
      content: "";
      background: linear-gradient(150deg, var(--magenta), var(--purple));
      clip-path: polygon(48% 0, 100% 100%, 0 100%);
      opacity: 0;
      transform: translateY(30px) rotate(8deg);
      transition: opacity .35s ease, transform .35s ease;
    }

    .area-card:hover {
      color: var(--white);
      background: var(--aubergine);
      transform: translateY(-4px);
    }

    .area-card:hover::before { opacity: .8; transform: translateY(0) rotate(8deg); }

    .area-number {
      display: block;
      margin-bottom: 72px;
      color: var(--purple);
      font-size: .7rem;
      font-weight: 770;
      letter-spacing: .18em;
    }

    .area-card:hover .area-number { color: var(--magenta); }
    .area-card h3 { max-width: 410px; }

    .area-card p {
      position: relative;
      z-index: 2;
      max-width: 480px;
      margin-bottom: 28px;
      color: var(--ink-soft);
    }

    .area-card:hover p { color: rgba(255, 255, 255, .72); }

    .text-link {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--purple);
      font-size: .73rem;
      font-weight: 760;
      letter-spacing: .11em;
      text-decoration: none;
      text-transform: uppercase;
    }

    .text-link::after { content: "↗"; font-size: 1rem; }
    .area-card:hover .text-link { color: var(--white); }

    .access-section {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: #170a1b;
    }

    .access-section::before {
      position: absolute;
      top: -40%;
      left: -15%;
      width: 720px;
      aspect-ratio: 1;
      border-radius: 50%;
      content: "";
      background: radial-gradient(circle, rgba(214, 15, 227, .2), transparent 66%);
    }

    .access-grid {
      position: relative;
      z-index: 2;
      display: grid;
      gap: clamp(54px, 9vw, 140px);
      grid-template-columns: 1fr .84fr;
    }

    .access-copy .eyebrow { color: var(--magenta); }
    .access-copy h2 { max-width: 780px; }

    .access-copy .lead {
      color: rgba(255, 255, 255, .68);
    }

    .access-steps {
      align-self: end;
      margin: 0;
      padding: 0;
      border-top: 1px solid rgba(255, 255, 255, .16);
      list-style: none;
    }

    .access-step {
      display: grid;
      min-height: 112px;
      align-items: center;
      gap: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, .16);
      grid-template-columns: 52px 1fr;
    }

    .access-step span {
      color: var(--magenta);
      font-size: .68rem;
      font-weight: 760;
      letter-spacing: .15em;
    }

    .access-step strong {
      display: block;
      margin-bottom: 4px;
      font-size: 1.04rem;
      font-weight: 620;
    }

    .access-step p {
      margin: 0;
      color: rgba(255, 255, 255, .58);
      font-size: .86rem;
    }

    .principles-grid {
      display: grid;
      gap: 34px;
      grid-template-columns: repeat(4, 1fr);
    }

    .principle {
      padding-top: 24px;
      border-top: 2px solid var(--aubergine);
    }

    .principle:nth-child(2) { border-color: var(--purple); }
    .principle:nth-child(3) { border-color: var(--magenta); }
    .principle:nth-child(4) { border-color: #a96db0; }

    .principle h3 { font-size: 1.28rem; }

    .principle p {
      margin-bottom: 0;
      color: var(--ink-soft);
      font-size: .92rem;
    }

    .contact { padding-top: 0; }

    .contact-panel {
      display: grid;
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--shadow);
      grid-template-columns: .88fr 1.12fr;
    }

    .contact-intro {
      position: relative;
      display: flex;
      min-height: 600px;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      padding: clamp(38px, 5vw, 70px);
      color: var(--white);
      background: linear-gradient(145deg, var(--purple), var(--aubergine) 72%);
    }

    .contact-intro::after {
      position: absolute;
      right: -80px;
      bottom: -90px;
      width: 310px;
      height: 380px;
      content: "";
      background: linear-gradient(155deg, var(--magenta), rgba(255, 255, 255, .08));
      clip-path: polygon(48% 0, 100% 100%, 0 100%);
      transform: rotate(8deg);
    }

    .contact-intro .eyebrow { color: var(--magenta-soft); }
    .contact-intro h2 { position: relative; z-index: 2; font-size: clamp(2.7rem, 4.7vw, 5rem); }

    .contact-email {
      position: relative;
      z-index: 2;
      display: inline-block;
      width: fit-content;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, .45);
      font-size: clamp(1rem, 1.7vw, 1.25rem);
      text-decoration: none;
    }

    .contact-form {
      display: grid;
      align-content: center;
      padding: clamp(38px, 6vw, 78px);
    }

    .form-heading {
      margin-bottom: 34px;
      color: var(--ink-soft);
    }

    .field-grid {
      display: grid;
      gap: 24px 20px;
      grid-template-columns: repeat(2, 1fr);
    }

    .field { display: grid; gap: 8px; }
    .field--wide { grid-column: 1 / -1; }

    .field label {
      color: var(--aubergine);
      font-size: .69rem;
      font-weight: 760;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 0;
      border-bottom: 1px solid rgba(43, 13, 50, .26);
      border-radius: 0;
      outline: 0;
      color: var(--ink);
      background: transparent;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .field input,
    .field select { height: 48px; }
    .field textarea { min-height: 112px; padding: 12px 0; resize: vertical; }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--magenta);
      box-shadow: 0 1px 0 var(--magenta);
    }

    .form-note {
      margin: 22px 0;
      color: #776d79;
      font-size: .75rem;
      line-height: 1.55;
    }

    .form-status {
      min-height: 22px;
      margin: 12px 0 0;
      color: var(--purple);
      font-size: .82rem;
      font-weight: 620;
    }

    .site-footer {
      padding: 66px 0 30px;
      color: rgba(255, 255, 255, .68);
      background: #100713;
    }

    .footer-top {
      display: grid;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, .13);
      grid-template-columns: 1fr 1.35fr;
    }

    .footer-brand {
      color: var(--white);
      font-size: 1.2rem;
      font-weight: 650;
      letter-spacing: .02em;
    }

    .footer-legal {
      display: grid;
      gap: 12px;
      font-size: .78rem;
      line-height: 1.7;
    }

    .footer-legal p { margin: 0; }

    .footer-bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 28px;
      padding-top: 28px;
      font-size: .7rem;
    }

    .footer-disclaimer { max-width: 820px; margin: 0; }
    .footer-copy { flex: 0 0 auto; margin: 0; }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1040px) {
      :root { --header-height: 76px; }
      .main-nav { gap: 18px; }
      .main-nav > a:not(.button) { display: none; }
      .hero { min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-copy { max-width: 820px; }
      .hero-visual { min-height: 520px; }
      .facts-grid { grid-template-columns: repeat(2, 1fr); }
      .fact:nth-child(3) { border-top: 1px solid var(--line); }
      .fact:nth-child(4) { border-top: 1px solid var(--line); }
      .company-grid, .access-grid, .contact-panel { grid-template-columns: 1fr; }
      .company-quote { min-height: 380px; }
      .principles-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-intro { min-height: 420px; }
    }

    @media (max-width: 760px) {
      :root { --container: min(100% - 32px, 1240px); }
      .brand { width: 150px; }
      .main-nav .button { display: none; }
      .menu-toggle { display: inline-flex; }

      .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        padding: 0 24px;
        border-bottom: 1px solid var(--line);
        background: var(--paper);
        opacity: 0;
        transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
      }

      .nav-open .main-nav {
        max-height: calc(100vh - var(--header-height));
        padding-top: 24px;
        padding-bottom: 28px;
        opacity: 1;
      }

      .main-nav > a:not(.button) {
        display: block;
        padding: 17px 0;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
      }

      .main-nav > a:not(.button)::after { display: none; }
      .hero { padding-top: calc(var(--header-height) + 54px); }
      h1 { font-size: clamp(3rem, 15vw, 4.9rem); }
      .hero-visual { min-height: 440px; }
      .visual-kicker { top: 20px; left: 20px; }
      .visual-axis { bottom: 24px; left: 20px; }
      .facts-grid, .areas-grid, .principles-grid { grid-template-columns: 1fr; }
      .fact { min-height: 120px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
      .fact:nth-child(2) { border-top: 1px solid var(--line); }
      .section-heading { grid-template-columns: 1fr; }
      .area-card { min-height: 310px; }
      .area-number { margin-bottom: 50px; }
      .field-grid { grid-template-columns: 1fr; }
      .field--wide { grid-column: auto; }
      .contact-form { padding-inline: 26px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
    }

    @media (max-width: 480px) {
      .brand { width: 126px; }
      .header-inner { gap: 10px; }
      .header-tools { gap: 7px; }
      .language-option { width: 34px; height: 36px; }
      .menu-toggle { width: 44px; height: 44px; }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .hero-actions .button { width: 100%; }
      .hero-visual { min-height: 390px; }
      .visual-code { display: none; }
      .company-quote { min-height: 360px; padding: 34px; }
      .access-step { grid-template-columns: 40px 1fr; }
      .contact-intro { min-height: 440px; }
    }

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