:root {
  --navy: #07111d;
  --navy-deep: #030a12;
  --navy-soft: #102131;
  --ink: #101924;
  --muted: #596573;
  --paper: #f5f3ee;
  --surface: #e9eceb;
  --metal: #aeb6bd;
  --line: #d7dad8;
  --white: #ffffff;
  --pink: #d91b5c;
  --pink-dark: #ad1045;
  --pink-soft: #ff6f9f;
  --whatsapp: #20bd67;
  --whatsapp-dark: #13984d;
  --shell: 1280px;
  --header-height: 88px;
  --shadow-image: 0 28px 80px rgba(3, 10, 18, .16);
  --shadow-card: 0 22px 60px rgba(11, 24, 36, .09);
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: auto; scroll-padding-top: calc(var(--header-height) + 22px); }
body { margin: 0; min-width: 280px; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: 17px; line-height: 1.62; letter-spacing: -.008em; -webkit-font-smoothing: antialiased; }
body.menu-open, body.lightbox-open, body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .22em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[id] { scroll-margin-top: calc(var(--header-height) + 22px); }
:focus-visible { outline: 3px solid #ffbf3f; outline-offset: 4px; }
.shell { width: min(calc(100% - 56px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 500; padding: 11px 15px; color: var(--navy); background: var(--white); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 100; color: var(--white); background: rgba(7, 17, 29, .98); border-bottom: 1px solid rgba(255,255,255,.13); backdrop-filter: none; }
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; text-decoration: none; }
.brand::before { content: ""; width: 10px; height: 34px; flex: 0 0 auto; border-radius: 2px; background: var(--pink); box-shadow: none; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 1.08rem; letter-spacing: .005em; }
.brand-copy small { margin-top: 5px; color: #b6c2cd; font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.desktop-nav { margin-left: auto; display: flex; flex: 0 0 auto; align-items: center; gap: clamp(22px, 2.2vw, 36px); }
.desktop-nav a { min-height: 42px; padding: 0 14px; display: inline-flex; align-items: center; color: #d7e0e8; border-radius: 0; text-decoration: none; font-size: .92rem; font-weight: 720; white-space: nowrap; transition: color .18s ease, background-color .18s ease; }
.desktop-nav a:hover, .desktop-nav a.active, .desktop-nav a:focus-visible { color: var(--white); background: rgba(255,255,255,.08); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.header-phone { display: grid; color: var(--white); text-decoration: none; white-space: nowrap; font-size: .9rem; font-weight: 800; line-height: 1.2; }
.header-phone span { margin-bottom: 3px; color: #8fa0af; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-button { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.28); background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 22px; height: 2px; margin: 6px auto; background: var(--white); transition: transform .2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-height) 0 auto; max-height: 0; overflow: hidden; color: var(--white); background: var(--navy); visibility: hidden; opacity: 0; border-top: 1px solid rgba(255,255,255,.1); transition: max-height .28s ease, opacity .2s ease, visibility .2s; }
.mobile-menu.open { max-height: calc(100dvh - var(--header-height)); padding: 20px 0 30px; overflow-y: auto; visibility: visible; opacity: 1; }
.mobile-menu a { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 1.08rem; font-weight: 800; text-decoration: none; }

.button { min-height: 52px; padding: 14px 23px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 7px; text-decoration: none; font-size: .92rem; font-weight: 820; line-height: 1.15; cursor: pointer; box-shadow: none; transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease; }
.button:hover { transform: translateY(-1px); box-shadow: none; }
.button-small { min-height: 44px; padding: 11px 15px; font-size: .84rem; }
.button-primary { color: var(--white); background: var(--pink); border-color: var(--pink); }
.button-primary:hover { background: var(--pink-dark); border-color: var(--pink-dark); }
.button-whatsapp { color: #03170c; background: var(--whatsapp); border-color: var(--whatsapp); }
.button-whatsapp:hover { background: #2dcf76; border-color: #2dcf76; }
.button-outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.52); }
.button-outline:hover { border-color: var(--white); }
.button-dark { color: var(--white); background: var(--navy); border-color: var(--navy); }
.button-light { color: var(--navy); background: var(--white); border-color: var(--white); }
.button-form-secondary { color: var(--navy); background: transparent; border-color: #9ca7b0; }
.wa-dot { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: currentColor; box-shadow: none; }
.eyebrow { margin: 0 0 18px; color: #d9e2ea; font-size: .76rem; font-weight: 850; letter-spacing: .125em; text-transform: uppercase; }
.eyebrow.dark { color: var(--pink-dark); }
.section { padding: clamp(92px, 9vw, 144px) 0; }
.section-title { margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem, 4.6vw, 4.9rem); font-weight: 760; line-height: .98; letter-spacing: -.048em; text-wrap: balance; }
.editorial-heading { margin-bottom: clamp(46px, 6vw, 82px); display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr); align-items: end; gap: clamp(42px, 7vw, 100px); }
.editorial-heading > p, .process-heading > p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.text-link { width: max-content; padding: 9px 14px; display: inline-flex; align-items: center; gap: 12px; color: var(--navy); background: rgba(7,17,29,.055); border-radius: 0; font-weight: 820; text-decoration: none; }
.text-link.light { color: var(--white); background: rgba(255,255,255,.1); }
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateY(3px); }
.ramp-mask { border-radius: 28px; }

.home-hero, .page-hero { color: var(--white); background: var(--navy); }
.home-hero { padding-bottom: 42px; position: relative; isolation: isolate; background: var(--navy); }
.hero-grid { min-height: min(780px, calc(100dvh - var(--header-height))); padding: clamp(60px, 7vw, 105px) 0 clamp(80px, 8vw, 120px); display: grid; grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr); align-items: center; gap: clamp(48px, 6vw, 92px); }
.hero-copy, .hero-stage, .page-hero-copy, .page-hero-photo { min-width: 0; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; margin: 0; font-family: var(--font-display); font-size: clamp(3.65rem, 5vw, 4.4rem); font-weight: 780; line-height: .92; letter-spacing: -.058em; }
.hero-copy h1 span, .hero-copy h1 em { display: block; min-width: 0; overflow-wrap: normal; }
.hero-copy h1 em { color: var(--pink-soft); font-style: normal; }
.lead { max-width: 700px; margin: 30px 0 0; color: #c3ced8; font-size: clamp(1.08rem, 1.45vw, 1.32rem); line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-stage { min-height: 590px; position: relative; align-self: stretch; }
.hero-photo { position: absolute; inset: 0 0 42px; margin: 0; overflow: hidden; background: var(--navy-soft); border-radius: 34px; box-shadow: var(--shadow-image); }
.hero-photo::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); border-radius: inherit; pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.hero-info { position: absolute; right: -18px; bottom: 0; width: min(385px, 88%); padding: 22px 24px; color: var(--ink); background: rgba(255,255,255,.96); border-radius: 22px; box-shadow: 0 20px 55px rgba(3,10,18,.22); backdrop-filter: none; }
.hero-info span { display: block; margin-bottom: 7px; color: var(--pink-dark); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero-info strong { display: block; font-size: .95rem; line-height: 1.45; }
.trust-panel { margin-top: -12px; position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; color: var(--ink); }
.trust-panel p { min-width: 0; margin: 0; padding: 22px 24px; display: grid; background: rgba(255,255,255,.94); border-radius: 18px; box-shadow: 0 14px 38px rgba(3,10,18,.08); }
.trust-panel span { color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.trust-panel strong { margin-top: 5px; font-size: .95rem; line-height: 1.3; }

.transport-cases { background: var(--paper); }
.cases-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.cases-layout > * { min-width: 0; }
.case-feature { grid-column: 1 / 8; grid-row: 1 / 3; display: grid; align-content: start; overflow: hidden; background: var(--white); border-radius: 30px; box-shadow: var(--shadow-card); }
.case-feature figure { height: 600px; margin: 0; overflow: hidden; }
.case-feature figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.case-feature:hover figure img { transform: scale(1.018); }
.case-feature > div { width: 90%; margin: -78px 0 0 auto; padding: clamp(30px, 4vw, 54px); position: relative; background: var(--white); border-radius: 30px 0 0 0; }
.case-feature h3, .case-brief h3, .case-image h3, .case-route h3 { margin: 0; font-family: var(--font-display); font-weight: 760; line-height: 1; letter-spacing: -.04em; }
.case-feature h3 { font-size: clamp(2.2rem, 3.7vw, 4rem); }
.case-feature p:not(.case-state), .case-brief p:not(.case-state), .case-route p:not(.case-state) { color: var(--muted); }
.case-state { margin: 0 0 13px; color: var(--pink-dark); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.case-brief { padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; align-items: flex-start; overflow: hidden; border: 0; border-radius: 28px; background: var(--surface); }
.case-brief h3 { font-size: clamp(1.85rem, 3vw, 3.15rem); }
.case-brief .text-link { margin-top: auto; }
.case-dark { grid-column: 8 / 13; grid-row: 1; min-height: 300px; color: var(--white); background: var(--navy); box-shadow: var(--shadow-card); }
.case-dark .case-state { color: var(--pink-soft); }
.case-dark p:not(.case-state) { color: #b8c4ce; }
.case-image { grid-column: 8 / 13; grid-row: 2; min-height: 380px; position: relative; overflow: hidden; color: var(--white); background: var(--navy); border-radius: 28px; box-shadow: var(--shadow-card); }
.case-image figure { position: absolute; inset: 0; margin: 0; }
.case-image figure::after { content: ""; position: absolute; inset: 45% 0 0; background: rgba(3,10,18,.76); }
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.case-image:hover img { transform: scale(1.025); }
.case-image > div { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 32px; }
.case-image h3 { font-size: clamp(1.8rem, 2.8vw, 2.8rem); }
.case-image p:last-child { margin-bottom: 0; color: #d2dbe2; }
.case-brief:not(.case-dark) { grid-column: 1 / 5; min-height: 330px; background: var(--white); box-shadow: var(--shadow-card); }
.case-route { min-height: 330px; padding: clamp(28px, 3.5vw, 44px); display: flex; flex-direction: column; overflow: hidden; position: relative; border-radius: 28px; background: #e1e5e3; box-shadow: var(--shadow-card); }
.case-route:nth-last-child(2) { grid-column: 5 / 9; }
.case-route:last-child { grid-column: 9 / 13; }
.case-route h3 { font-size: clamp(1.65rem, 2.6vw, 2.55rem); }
.case-route-accent { color: var(--white); background: var(--pink); }
.case-route-accent .case-state, .case-route-accent p:not(.case-state) { color: #ffe4ed; }
.case-symbol { width: 54px; height: 54px; margin-bottom: auto; display: grid; place-items: center; color: var(--pink-dark); background: rgba(255,255,255,.65); border-radius: 18px; font-size: .78rem; font-weight: 850; letter-spacing: .08em; box-shadow: inset 0 0 0 1px rgba(7,17,29,.06); }
.case-route-accent .case-symbol { color: var(--white); background: rgba(255,255,255,.14); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }

.process { position: relative; color: var(--white); background: var(--navy); }
.process-heading { margin-bottom: clamp(44px, 6vw, 72px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); align-items: end; gap: 70px; }
.process-heading > p { color: #b4c0ca; }
.route-scroll { margin: 0 0 18px; padding: clamp(22px, 3vw, 34px); overflow: hidden; position: relative; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); border-radius: 28px; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.route-scroll-copy { margin-bottom: 20px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; color: #aebbc7; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.route-scroll-copy span:last-child { text-align: right; }
.route-scroll-copy strong { color: var(--white); font-size: .72rem; font-weight: 720; letter-spacing: .05em; text-align: center; }
.route-scroll-field { height: 66px; position: relative; border-radius: 0; background: transparent; box-shadow: none; }
.route-scroll-field::before { content: ""; position: absolute; inset: 16px 9%; border-radius: 0; background: rgba(255,255,255,.42); filter: none; }
.route-place { width: 12px; height: 12px; position: absolute; top: 50%; z-index: 1; border-radius: 50%; background: var(--white); box-shadow: none; transform: translate(-50%, -50%); }
.route-place-start { left: 9%; background: var(--pink-soft); }
.route-place-finish { left: 91%; }
.route-traveller { width: 27px; height: 27px; position: absolute; top: 50%; left: 9%; z-index: 2; border: 5px solid var(--white); border-radius: 50%; background: var(--pink); box-shadow: none; transform: translate(-50%, -50%); will-change: left; }
.process-route { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; list-style: none; }
.process-route li { min-width: 0; min-height: 158px; padding: 22px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; border-radius: 22px; background: rgba(255,255,255,.055); box-shadow: inset 0 0 0 1px rgba(255,255,255,.07); text-align: left; }
.process-number { margin-bottom: auto; color: var(--pink-soft); font-size: .73rem; font-weight: 850; letter-spacing: .09em; }
.process-route strong { margin-top: 25px; font-family: var(--font-display); font-size: clamp(1.1rem, 1.55vw, 1.35rem); font-weight: 750; }
.process-route small { margin-top: 3px; color: #9eacb9; font-size: .82rem; }
.process-action { margin-top: 18px; padding: 23px 25px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: rgba(255,255,255,.045); border-radius: 22px; }
.process-action p { margin: 0; color: #b4c0ca; }

.work { background: var(--white); }
.work-editorial { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: repeat(2, 290px); gap: 12px; }
.work-shot { margin: 0; position: relative; overflow: hidden; background: var(--surface); }
.work-shot-main { grid-column: 1 / 7; grid-row: 1 / 3; }
.work-shot-wide { grid-column: 7 / 13; grid-row: 1; }
.work-shot-small:nth-last-child(2) { grid-column: 7 / 10; grid-row: 2; }
.work-shot-small:last-child { grid-column: 10 / 13; grid-row: 2; }
.work-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.work-shot-main img { object-position: center 64%; }
.work-shot:hover img { transform: scale(1.022); }
.work-shot figcaption, .gallery-item > span { position: absolute; left: 0; bottom: 0; padding: 9px 13px; color: var(--white); background: rgba(7,17,29,.9); font-size: .77rem; font-weight: 850; letter-spacing: .05em; }
.work-action { margin-top: 34px; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); }
.work-action p { margin: 0; color: var(--muted); }

.personal { color: var(--ink); background: var(--paper); }
.personal-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(60px, 10vw, 150px); }
.personal-photo { aspect-ratio: 4 / 5; margin: 0; overflow: hidden; background: var(--surface); border-radius: 30px; box-shadow: var(--shadow-image); }
.personal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.personal-copy > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 1.1rem; }
.trust-list { margin: 28px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.trust-list li { padding-left: 28px; position: relative; color: #33404c; font-weight: 720; }
.trust-list li::before { content: ""; width: 9px; height: 9px; position: absolute; top: .58em; left: 2px; border-radius: 50%; background: var(--pink); box-shadow: none; }
.personal-links { max-width: 670px; margin: 32px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.personal-links a { min-height: 78px; padding: 16px 18px; display: grid; background: var(--white); border-radius: 18px; box-shadow: 0 12px 30px rgba(3,10,18,.06); text-decoration: none; }
.personal-links span { color: var(--pink-dark); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.personal-links strong { margin-top: 3px; font-size: 1.15rem; }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: clamp(60px, 9vw, 130px); }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-image { height: 310px; margin: 44px 0 0; overflow: hidden; }
.faq-image img { width: 100%; height: 100%; object-fit: cover; }
.faq-list { border-top: 2px solid var(--navy); }
.faq-list details { border-bottom: 1px solid #9fa8ac; }
.faq-list summary { min-height: 78px; padding: 23px 56px 23px 0; display: flex; align-items: center; position: relative; cursor: pointer; list-style: none; font-size: 1.08rem; font-weight: 850; line-height: 1.35; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; width: 34px; height: 34px; position: absolute; right: 2px; top: 50%; display: grid; place-items: center; color: var(--white); background: var(--navy); transform: translateY(-50%); transition: transform .2s ease, background-color .2s ease; }
.faq-list details[open] summary::after { content: "−"; background: var(--pink); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.faq-answer > div { overflow: hidden; }
.faq-list details[open] .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { margin: 0 54px 26px 0; color: var(--muted); }

.faq-teaser { background: var(--surface); }
.faq-teaser-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.faq-teaser-card { min-width: 0; padding: clamp(28px, 3.5vw, 46px); display: flex; flex-direction: column; color: var(--ink); background: var(--white); border-radius: 24px; box-shadow: 0 14px 38px rgba(3,10,18,.065); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.faq-teaser-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.faq-teaser-card > span { color: var(--pink-dark); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.faq-teaser-card h3 { margin: 18px 0 12px; font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.08; letter-spacing: -.035em; }
.faq-teaser-card p { margin: 0 0 24px; color: var(--muted); }
.faq-teaser-card strong { margin-top: auto; font-size: .86rem; }
.section-action { margin-top: 32px; }

.inquiry { position: relative; color: var(--white); background: var(--navy-soft); }
.inquiry-grid { display: grid; grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr); gap: clamp(56px, 8vw, 115px); }
.inquiry-copy { position: relative; }
.inquiry-copy > p:not(.eyebrow) { color: #b8c5cf; }
.inquiry-route { height: 290px; right: auto; bottom: -60px; left: 22px; }
.quote-form { padding: clamp(28px, 4vw, 50px); color: var(--ink); background: var(--white); border-radius: 30px; box-shadow: var(--shadow-image); }
.form-heading { margin-bottom: 30px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.form-heading p { margin: 0; font-family: var(--font-display); font-size: 2rem; font-weight: 900; letter-spacing: -.04em; }
.form-heading span, .form-note { color: var(--muted); font-size: .83rem; }
.quote-form fieldset { margin: 0; padding: 28px 0; border: 0; border-top: 1px solid var(--line); }
.quote-form legend { padding: 0 16px 0 0; color: var(--pink-dark); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; align-content: start; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: #f7f8f7; border: 1px solid #c7cdca; border-radius: 14px; }
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); outline: 3px solid rgba(217,27,92,.14); }
.field [aria-invalid="true"] { border-color: #b42318; }
.field-error { min-height: 20px; margin: 0; color: #a31810; font-size: .8rem; font-weight: 750; }
.form-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 11px; }
.form-note { margin-bottom: 0; }
.form-status { min-height: 26px; color: var(--pink-dark); font-size: .86rem; font-weight: 800; }
.wa-fallback { margin-top: 12px; display: inline-flex; color: var(--pink-dark); font-size: .88rem; font-weight: 850; }
.wa-fallback[hidden] { display: none; }
.form-explainer { margin-top: 32px; padding: 22px; color: var(--ink); background: var(--white); border-radius: 18px; box-shadow: 0 12px 30px rgba(3,10,18,.06); }
.form-explainer strong { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.form-explainer ol { margin: 12px 0 0; padding-left: 22px; }

.contact-hero { color: var(--white); background: var(--navy); }
.contact-hero-grid { min-height: 690px; padding: clamp(72px, 8vw, 120px) 0; display: grid; grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr); align-items: center; gap: clamp(48px, 7vw, 100px); }
.contact-hero-copy h1 { max-width: 760px; margin: 0; font-family: var(--font-display); font-size: clamp(3.5rem, 5.7vw, 6rem); font-weight: 900; line-height: .9; letter-spacing: -.067em; text-wrap: balance; }
.contact-hero-photo { aspect-ratio: 4 / 5; max-height: 620px; margin: 0; overflow: hidden; background: var(--navy-soft); border-radius: 30px; box-shadow: var(--shadow-image); }
.contact-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-direct { padding: clamp(78px, 8vw, 120px) 0; background: var(--paper); }
.contact-direct-heading { max-width: 860px; }
.contact-direct-heading h2, .whatsapp-alternative h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 4.7rem); font-weight: 900; line-height: .96; letter-spacing: -.055em; }
.contact-cards { margin-top: 48px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.contact-card { min-width: 0; padding: 27px clamp(20px, 3vw, 34px); display: grid; background: var(--white); border-radius: 20px; box-shadow: 0 12px 32px rgba(3,10,18,.06); text-decoration: none; }
.contact-card > span { color: var(--pink-dark); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { margin-top: 8px; font-size: clamp(1.15rem, 1.8vw, 1.45rem); overflow-wrap: anywhere; }
.contact-card small { margin-top: 5px; color: var(--muted); }
.whatsapp-alternative { padding: clamp(72px, 8vw, 112px) 0; color: var(--white); background: var(--navy); }
.whatsapp-alternative-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 60px; }
.whatsapp-alternative p:not(.eyebrow) { max-width: 760px; color: #bac6cf; }

.faq-list .faq-item { border-bottom: 1px solid #9fa8ac; }
.faq-list .faq-item h3 { margin: 0; }
.faq-button { width: 100%; min-height: 78px; padding: 23px 56px 23px 0; display: flex; align-items: center; position: relative; color: var(--ink); background: transparent; border: 0; text-align: left; cursor: pointer; font-size: 1.08rem; font-weight: 850; line-height: 1.35; }
.faq-button::after { content: "+"; width: 34px; height: 34px; position: absolute; right: 2px; top: 50%; display: grid; place-items: center; color: var(--white); background: var(--navy); transform: translateY(-50%); }
.faq-button[aria-expanded="true"]::after { content: "−"; background: var(--pink); }
.faq-panel[hidden] { display: none; }
.faq-panel p { margin: 0 54px 26px 0; color: var(--muted); }

.closing-banner { padding: clamp(90px, 9vw, 135px) 0 clamp(74px, 8vw, 110px); color: var(--white); background: var(--pink); }
.closing-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px, 9vw, 140px); }
.closing-grid h2 { margin: 0; font-family: var(--font-display); font-size: clamp(3rem, 5.6vw, 5.8rem); font-weight: 900; line-height: .9; letter-spacing: -.065em; }
.closing-grid p:not(.eyebrow) { margin-bottom: 0; color: #ffe5ee; }
.contact-stack { display: grid; }
.contact-stack { gap: 8px; }
.contact-stack > a:not(.button) { min-height: 68px; padding: 13px 16px; display: grid; background: rgba(255,255,255,.1); border-radius: 16px; text-decoration: none; }
.contact-stack span { font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-stack strong { margin-top: 3px; font-size: 1.12rem; }
.contact-stack .button { margin-top: 22px; justify-self: start; }

.site-footer { padding: 58px 0 24px; color: #d6dfe6; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, .7fr); gap: clamp(32px, 5vw, 72px); }
.footer-brand p { max-width: 390px; color: #94a1ad; font-size: .95rem; }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col h3 { margin: 0 0 8px; color: var(--white); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { min-height: 28px; color: #c0cad2; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-col p { margin: 0; color: #94a1ad; }
.footer-bottom { margin-top: 42px; padding-top: 19px; display: flex; justify-content: space-between; gap: 20px; color: #7f8c98; border-top: 1px solid rgba(255,255,255,.14); font-size: .8rem; }
.whatsapp-float { width: 54px; height: 54px; position: fixed; right: 22px; bottom: 22px; z-index: 80; display: grid; place-items: center; color: #03170c; background: var(--whatsapp); border-radius: 50%; box-shadow: 0 12px 32px rgba(0,0,0,.22); text-decoration: none; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; }
.whatsapp-float > span:last-child { position: absolute; right: calc(100% + 10px); padding: 7px 10px; color: var(--white); background: var(--navy); font-size: .75rem; font-weight: 800; white-space: nowrap; opacity: 0; transition: opacity .18s ease; }
.whatsapp-float:hover > span:last-child, .whatsapp-float:focus-visible > span:last-child { opacity: 1; }
body.has-scrolled .whatsapp-float { opacity: 1; pointer-events: auto; transform: none; }
.mobile-action-bar { display: none; }

.page-hero-grid { min-height: 680px; padding: clamp(70px, 8vw, 118px) 0; display: grid; grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr); align-items: center; gap: clamp(48px, 7vw, 100px); }
.page-hero-copy h1 { max-width: 800px; margin: 0; font-family: var(--font-display); font-size: clamp(3.5rem, 6vw, 6.6rem); font-weight: 900; line-height: .9; letter-spacing: -.067em; text-wrap: balance; }
.page-hero-photo { min-height: 520px; margin: 0; position: relative; align-self: stretch; overflow: hidden; background: var(--navy-soft); border-radius: 30px; }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-photo figcaption { position: absolute; right: 0; bottom: 0; width: min(410px, 90%); padding: 18px 21px; color: var(--white); background: rgba(7,17,29,.92); font-size: .86rem; }
.page-hero-photo figcaption span { display: block; color: var(--pink-soft); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.gallery-section { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 175px; grid-auto-flow: dense; gap: 10px; }
.gallery-item { grid-column: span 3; grid-row: span 2; min-width: 0; padding: 0; position: relative; overflow: hidden; border: 0; border-radius: 18px; background: var(--surface); cursor: zoom-in; }
.gallery-item-feature { grid-column: span 8; grid-row: span 3; }
.gallery-item-wide { grid-column: span 6; grid-row: span 2; }
.gallery-item-portrait { grid-column: span 4; grid-row: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .25s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.022); filter: brightness(.93); }
.gallery-item::after { content: "Vergrößern"; position: absolute; top: 14px; right: 14px; padding: 6px 9px; color: var(--white); background: rgba(7,17,29,.85); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(-5px); transition: opacity .2s ease, transform .2s ease; }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: none; }
.gallery-contact { padding: clamp(92px, 10vw, 150px) 0; background: var(--surface); }
.gallery-contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(55px, 9vw, 135px); }
.gallery-contact figure { height: 520px; margin: 0; overflow: hidden; border-radius: 28px; }
.gallery-contact figure img { width: 100%; height: 100%; object-fit: cover; }
.gallery-contact h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.7rem, 4.8vw, 5rem); font-weight: 900; line-height: .95; letter-spacing: -.055em; }
.gallery-contact p:not(.eyebrow) { color: var(--muted); }
.gallery-contact-links { margin: 28px 0; display: grid; border-top: 1px solid var(--metal); }
.gallery-contact-links a { min-height: 55px; padding: 12px 0; display: flex; align-items: center; border-bottom: 1px solid var(--metal); font-weight: 850; text-decoration: none; }

.lightbox { position: fixed; inset: 0; z-index: 300; padding: 32px 26px; display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; align-items: center; color: var(--white); background: rgba(2, 7, 12, .97); visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s; }
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox figure { width: 100%; height: min(82dvh, 900px); margin: 0; display: grid; grid-template-rows: 1fr auto; place-items: center; min-width: 0; }
.lightbox figure img { max-width: 100%; max-height: calc(82dvh - 60px); object-fit: contain; }
.lightbox-caption { margin-top: 13px; color: #ced8e0; font-size: .9rem; }
.lightbox button { width: 48px; height: 48px; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.4); cursor: pointer; }
.lightbox-close { position: absolute; top: 22px; right: 22px; font-size: 1.6rem; }
.lightbox-prev, .lightbox-next { justify-self: center; }
.lightbox-count { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); font-size: .78rem; letter-spacing: .08em; }

.request-dialog { width: min(680px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; overflow: hidden; color: var(--ink); background: var(--white); border: 0; border-radius: 26px; box-shadow: 0 30px 100px rgba(3,10,18,.4); }
.request-dialog::backdrop { background: rgba(3,10,18,.82); }
.dialog-shell { padding: clamp(28px, 5vw, 52px); position: relative; }
.dialog-shell h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); line-height: .98; letter-spacing: -.045em; }
.dialog-shell > p:not(.eyebrow) { color: var(--muted); }
.dialog-close { width: 44px; height: 44px; position: absolute; top: 16px; right: 16px; color: var(--navy); background: transparent; border: 1px solid var(--line); font-size: 1.45rem; cursor: pointer; }
.request-dialog dl { margin: 28px 0; display: grid; grid-template-columns: minmax(130px, .45fr) 1fr; border-top: 1px solid var(--line); }
.request-dialog dt, .request-dialog dd { margin: 0; padding: 10px 0; border-bottom: 1px solid var(--line); }
.request-dialog dt { color: var(--muted); font-size: .8rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.request-dialog dd { font-weight: 750; overflow-wrap: anywhere; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.legal-main { background: var(--white); }
.legal-hero { padding: clamp(84px, 10vw, 140px) 0; color: var(--white); background: var(--navy); }
.legal-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(3.4rem, 7vw, 7rem); font-weight: 900; line-height: .9; letter-spacing: -.065em; }
.legal-hero p:last-child { color: #b8c4ce; }
.legal-content { padding: clamp(76px, 9vw, 125px) 0; background: var(--white); }
.legal-grid { display: grid; grid-template-columns: 280px minmax(0, 760px); justify-content: space-between; gap: 76px; }
.legal-grid aside { align-self: start; padding: 26px; display: grid; gap: 9px; background: var(--paper); border-radius: 20px; }
.legal-grid aside p { margin: 0 0 8px; color: var(--muted); font-size: .78rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.legal-grid aside a { word-break: break-word; }
.legal-grid article h2 { margin: 48px 0 10px; font-size: 1.65rem; letter-spacing: -.03em; }
.legal-grid article h2:first-child { margin-top: 0; }
.legal-grid article p { color: #3f4b57; }
.legal-grid article a { color: var(--pink-dark); }
.legal-date { margin-top: 58px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .84rem; }

.reveal { opacity: 1; transform: none; transition: opacity .58s ease, transform .58s ease; }
.reveal.reveal-pending { opacity: 0; transform: translateY(20px); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }

@media (max-width: 1550px) {
  .header-phone { display: none; }
}

@media (max-width: 1180px) {
  :root { --header-height: 80px; }
  .desktop-nav { gap: 22px; }
  .header-phone { display: none; }
  .hero-grid, .page-hero-grid { grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr); gap: 42px; }
  .hero-copy h1 { font-size: clamp(3.45rem, 5.7vw, 4.4rem); }
  .case-feature figure { height: 540px; }
  .header-actions .button-primary { display: none; }
  .gallery-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .gallery-item { grid-column: span 2; }
  .gallery-item-feature { grid-column: span 5; }
  .gallery-item-wide { grid-column: span 4; }
  .gallery-item-portrait { grid-column: span 3; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-actions .button { display: none; }
  .header-actions { margin-left: auto; }
  .menu-button { display: block; }
  .hero-grid, .page-hero-grid, .contact-hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-grid { padding-top: 74px; }
  .hero-copy h1 { max-width: 780px; font-size: clamp(4rem, 10.5vw, 6rem); }
  .hero-stage { min-height: 600px; }
  .trust-panel { grid-template-columns: repeat(2, 1fr); }
  .editorial-heading, .process-heading, .personal-grid, .faq-grid, .inquiry-grid, .closing-grid, .gallery-contact-grid, .legal-grid { grid-template-columns: 1fr; }
  .editorial-heading, .process-heading { gap: 26px; }
  .cases-layout { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .case-feature { grid-column: 1 / 7; grid-row: auto; }
  .case-dark { grid-column: 1 / 4; grid-row: auto; }
  .case-image { grid-column: 4 / 7; grid-row: auto; }
  .case-brief:not(.case-dark) { grid-column: 1 / 4; }
  .case-route:nth-last-child(2) { grid-column: 4 / 7; }
  .case-route:last-child { grid-column: 1 / 7; }
  .work-editorial { grid-template-rows: repeat(2, 240px); }
  .personal-photo { max-width: 680px; aspect-ratio: 5 / 4; }
  .faq-teaser-grid { grid-template-columns: 1fr; }
  .contact-hero-photo { max-width: 720px; aspect-ratio: 5 / 4; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card, .contact-card:first-child { padding: 24px; }
  .whatsapp-alternative-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-image { max-width: 650px; }
  .inquiry-route { display: none; }
  .page-hero-photo { min-height: 600px; }
  .gallery-contact figure { height: 500px; }
  .legal-grid aside { max-width: 460px; }
}

@media (max-width: 760px) {
  :root { --header-height: 72px; }
  body { padding-bottom: 72px; font-size: 16px; }
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .nav-wrap { min-height: var(--header-height); }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { max-width: 175px; font-size: .63rem; line-height: 1.2; }
  .section { padding: 82px 0; }
  .section-title { font-size: clamp(2.35rem, 10.7vw, 3.7rem); }
  .hero-grid, .page-hero-grid { padding: 58px 0 78px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 13.2vw, 5rem); line-height: .9; }
  .lead { margin-top: 24px; font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-stage { min-height: 490px; }
  .hero-photo { inset: 0 0 34px; }
  .hero-info { right: 0; width: 94%; padding: 18px 20px; }
  .trust-panel { margin-top: -18px; }
  .trust-panel p { padding: 20px; }
  .cases-layout { grid-template-columns: minmax(0, 1fr); }
  .case-feature, .case-dark, .case-image, .case-brief:not(.case-dark), .case-route:nth-last-child(2), .case-route:last-child { grid-column: 1; grid-row: auto; }
  .case-feature figure { height: 480px; }
  .case-feature > div { width: 94%; margin-top: -54px; }
  .case-dark, .case-brief:not(.case-dark), .case-route { min-height: 0; }
  .case-image { min-height: 430px; }
  .route-scroll-copy { grid-template-columns: 1fr 1fr; }
  .route-scroll-copy strong { display: none; }
  .process-route { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-route li { min-height: 138px; padding: 20px; }
  .process-action, .work-action { align-items: stretch; flex-direction: column; }
  .work-editorial { grid-template-columns: repeat(2, 1fr); grid-template-rows: 430px 240px 240px; gap: 8px; }
  .work-shot-main { grid-column: 1 / 3; grid-row: 1; }
  .work-shot-wide { grid-column: 1 / 3; grid-row: 2; }
  .work-shot-small:nth-last-child(2) { grid-column: 1; grid-row: 3; }
  .work-shot-small:last-child { grid-column: 2; grid-row: 3; }
  .personal-photo { width: 100%; aspect-ratio: 4 / 5; }
  .faq-grid { gap: 54px; }
  .faq-image { height: 280px; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .contact-stack .button { justify-self: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { display: none; }
  .mobile-action-bar { min-height: 72px; padding: 9px max(9px, env(safe-area-inset-left)) calc(9px + env(safe-area-inset-bottom)); position: fixed; right: 0; bottom: 0; left: 0; z-index: 90; display: grid; grid-template-columns: .85fr 1fr 1fr; gap: 6px; background: rgba(7,17,29,.98); border-top: 1px solid rgba(255,255,255,.15); }
  .mobile-action-bar a { min-width: 0; min-height: 50px; padding: 9px 6px; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.3); border-radius: 14px; text-decoration: none; font-size: .78rem; font-weight: 850; line-height: 1.1; text-align: center; }
  .mobile-action-bar .mobile-wa { color: #03170c; background: var(--whatsapp); border-color: var(--whatsapp); }
  .mobile-action-bar .mobile-primary { background: var(--pink); border-color: var(--pink); }
  .contact-hero-grid { padding: 58px 0 78px; }
  .contact-hero-copy h1 { font-size: clamp(3rem, 12vw, 4.9rem); }
  .page-hero-copy h1 { font-size: clamp(3rem, 12vw, 4.9rem); }
  .page-hero-photo { min-height: 470px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 230px; gap: 7px; }
  .gallery-item, .gallery-item-feature, .gallery-item-wide, .gallery-item-portrait { grid-column: span 1; grid-row: span 1; }
  .gallery-item-feature, .gallery-item-wide { grid-column: span 2; }
  .gallery-item-feature { grid-row: span 2; }
  .gallery-item-portrait { grid-row: span 2; }
  .gallery-contact figure { height: 430px; }
  .lightbox { padding: 20px 8px; grid-template-columns: 46px minmax(0, 1fr) 46px; }
  .lightbox button { width: 40px; height: 40px; }
  .request-dialog dl { grid-template-columns: 1fr; }
  .request-dialog dt { padding-bottom: 0; border-bottom: 0; }
  .request-dialog dd { padding-top: 2px; }
}

@media (max-width: 430px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .brand-copy small { max-width: 150px; font-size: .57rem; }
  .hero-copy h1 { font-size: clamp(2.85rem, 13vw, 3.5rem); letter-spacing: -.062em; }
  .hero-stage { min-height: 430px; }
  .hero-info { font-size: .9rem; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-panel p { min-height: 72px; }
  .case-feature figure { height: 390px; }
  .case-image { min-height: 360px; }
  .route-scroll { padding: 19px; border-radius: 22px; }
  .route-scroll-copy { margin-bottom: 15px; }
  .route-scroll-field { height: 58px; }
  .process-route { grid-template-columns: 1fr; }
  .process-route li { min-height: 126px; }
  .personal-links { grid-template-columns: 1fr; }
  .work-editorial { grid-template-rows: 370px 210px 210px; }
  .faq-button { min-height: 72px; font-size: 1rem; }
  .closing-grid h2 { font-size: 3.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 275px; }
  .gallery-item, .gallery-item-feature, .gallery-item-wide, .gallery-item-portrait { grid-column: 1; grid-row: span 1; }
  .gallery-contact figure { height: 370px; }
  .dialog-actions { align-items: stretch; flex-direction: column; }
}

@media (max-width: 360px) {
  .brand-copy small { display: none; }
  .hero-copy h1 { font-size: 2.78rem; }
  .hero-stage { min-height: 400px; }
  .hero-info { width: 97%; padding: 16px; }
  .work-editorial { grid-template-columns: 1fr; grid-template-rows: 330px 190px 220px 220px; }
  .work-shot-main, .work-shot-wide, .work-shot-small:nth-last-child(2), .work-shot-small:last-child { grid-column: 1; }
  .work-shot-main { grid-row: 1; }
  .work-shot-wide { grid-row: 2; }
  .work-shot-small:nth-last-child(2) { grid-row: 3; }
  .work-shot-small:last-child { grid-row: 4; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .gallery-item, .gallery-item-feature, .gallery-item-wide, .gallery-item-portrait { grid-column: 1; grid-row: span 1; }
  .page-hero-copy h1 { font-size: 2.8rem; }
  .contact-hero-copy h1 { font-size: 2.8rem; }
  .mobile-action-bar a { font-size: .72rem; }
}

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

/* Ruhige, hochwertige Überarbeitung: klare Geometrie, reale Bilder, sparsame Akzente. */
:root {
  --shell: 1220px;
  --header-height: 80px;
  --shadow-image: 0 14px 38px rgba(15, 23, 42, .10);
  --shadow-card: 0 10px 28px rgba(15, 23, 42, .07);
  --font-display: "Segoe UI", Arial, Helvetica, sans-serif;
  --font-body: "Segoe UI", Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

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

.nav-wrap { gap: clamp(22px, 2.6vw, 38px); }
.brand { gap: 11px; }
.brand::before {
  width: 5px;
  height: 30px;
  border-radius: 2px;
  background: var(--pink);
  box-shadow: none;
}
.brand-copy strong { font-weight: 800; }
.brand-copy small { margin-top: 4px; letter-spacing: .08em; }
.desktop-nav { gap: clamp(12px, 1.5vw, 24px); }
.desktop-nav a {
  min-height: var(--header-height);
  padding: 2px 8px 0;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  font-weight: 700;
}
.desktop-nav a:hover,
.desktop-nav a.active,
.desktop-nav a:focus-visible {
  background: transparent;
  border-bottom-color: var(--pink);
}
.header-actions { gap: 14px; }
.header-phone { display: grid; font-weight: 800; }
.menu-button { border-radius: 6px; }
.mobile-menu a { justify-content: flex-start; font-weight: 700; }

.button {
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 7px;
  box-shadow: none;
  font-weight: 800;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: none; }
.button-small { min-height: 42px; padding: 10px 14px; }
.wa-dot { width: 9px; height: 9px; box-shadow: none; }

.eyebrow { margin-bottom: 16px; letter-spacing: .1em; }
.section { padding: clamp(72px, 7vw, 104px) 0; }
.section-title {
  max-width: 820px;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: pretty;
}
.editorial-heading {
  margin-bottom: clamp(36px, 4.5vw, 58px);
  grid-template-columns: minmax(0, 1fr) minmax(290px, .58fr);
  gap: clamp(36px, 6vw, 78px);
}
.editorial-heading > p,
.process-heading > p { font-size: 1.03rem; }
.text-link,
.text-link.light {
  padding: 0 0 3px;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
}
.text-link:hover span { transform: none; }
.ramp-mask { border-radius: 12px; }

.home-hero,
.page-hero,
.contact-hero,
.process,
.inquiry { background: var(--navy); background-image: none; }
.home-hero { padding-bottom: 0; }
.hero-grid {
  min-height: 690px;
  padding: clamp(58px, 6vw, 88px) 0;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .94fr);
  gap: clamp(42px, 5vw, 72px);
}
.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.038em;
  text-wrap: pretty;
}
.lead { margin-top: 25px; font-size: clamp(1.05rem, 1.25vw, 1.2rem); }
.hero-trust {
  max-width: 720px;
  margin: 22px 0 0;
  padding-top: 18px;
  color: #d7e0e7;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: .93rem;
  font-weight: 600;
}
.hero-actions { margin-top: 28px; gap: 10px; }
.hero-stage { min-height: 550px; }
.hero-photo {
  inset: 0 0 36px;
  border-radius: 12px;
  box-shadow: var(--shadow-image);
}
.hero-info {
  right: -10px;
  width: min(370px, 90%);
  padding: 19px 21px;
  background: var(--white);
  border: 1px solid rgba(20, 28, 38, .12);
  border-left: 4px solid var(--pink);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  backdrop-filter: none;
}

.case-feature,
.case-brief,
.case-image,
.case-route {
  border: 1px solid rgba(20, 28, 38, .12);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}
.case-feature { border-radius: 10px; }
.case-feature > div { border-radius: 10px 0 0 0; }
.case-feature h3,
.case-brief h3,
.case-image h3,
.case-route h3 { font-weight: 800; line-height: 1.05; letter-spacing: -.03em; }
.case-feature h3 { font-size: clamp(2.05rem, 3.2vw, 3.4rem); }
.case-brief { border: 1px solid rgba(20, 28, 38, .12); border-radius: 10px; }
.case-dark { background: var(--navy); background-image: none; border-color: rgba(255,255,255,.14); }
.case-image { border-radius: 10px; }
.case-image figure::after { inset: 42% 0 0; background: rgba(3,10,18,.64); }
.case-feature:hover figure img,
.case-image:hover img,
.work-shot:hover img,
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.018); }
.case-route { background: #e1e5e3; }
.case-route-accent { background: var(--pink); background-image: none; }
.case-symbol {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  box-shadow: none;
}

.process-heading {
  margin-bottom: clamp(36px, 4.5vw, 56px);
  gap: clamp(36px, 6vw, 72px);
}
.route-scroll {
  margin-bottom: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: none;
}
.route-scroll-copy { margin-bottom: 15px; letter-spacing: .06em; }
.route-scroll-copy strong { font-weight: 600; letter-spacing: .02em; text-transform: none; }
.route-scroll-field {
  height: 36px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.route-scroll-field::before {
  inset: 17px 9% auto;
  height: 2px;
  border-radius: 0;
  background: rgba(255,255,255,.42);
  filter: none;
}
.route-place {
  width: 9px;
  height: 9px;
  box-shadow: none;
}
.route-traveller {
  width: 15px;
  height: 15px;
  border: 2px solid var(--white);
  background: var(--pink);
  box-shadow: none;
}
.process-route { gap: 8px; }
.process-route li {
  min-height: 145px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  box-shadow: none;
}
.process-number { color: #f08aae; }
.process-route strong { font-weight: 700; }
.process-action {
  margin-top: 22px;
  padding: 22px 0 0;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
}

.work-shot { border-radius: 10px; }
.work-shot figcaption,
.gallery-item > span { border-radius: 0 6px 0 0; }
.personal-photo {
  border-radius: 12px;
  box-shadow: var(--shadow-image);
}
.trust-list li { font-weight: 600; }
.trust-list li::before { width: 8px; height: 8px; box-shadow: none; }
.personal-links { gap: 0; border-top: 1px solid var(--line); }
.personal-links a {
  min-height: 74px;
  padding: 15px 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.personal-links a:first-child { padding-right: 22px; }
.personal-links a:last-child { padding-left: 22px; border-left: 1px solid var(--line); }

.faq-teaser-card,
.contact-card {
  border: 1px solid rgba(20, 28, 38, .12);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}
.faq-teaser-card { padding: clamp(26px, 3vw, 38px); }
.faq-teaser-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.faq-teaser-card h3 { font-weight: 800; }
.faq-button { font-weight: 700; }
.faq-button::after { border-radius: 5px; }

.closing-banner {
  padding: clamp(72px, 7vw, 104px) 0;
  background: var(--pink);
  background-image: none;
}
.closing-grid h2 {
  max-width: 650px;
  font-size: clamp(2.4rem, 4.2vw, 3.9rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.contact-stack { gap: 0; border-top: 1px solid rgba(255,255,255,.3); }
.contact-stack > a:not(.button) {
  min-height: 64px;
  padding: 12px 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
}

.page-hero-grid { min-height: 620px; padding: clamp(62px, 7vw, 92px) 0; }
.page-hero-copy h1,
.contact-hero-copy h1 {
  max-width: 740px;
  font-size: clamp(3rem, 4.7vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.038em;
  text-wrap: pretty;
}
.contact-hero-copy h1 { font-size: clamp(3rem, 4vw, 3.5rem); }
.page-hero-photo,
.contact-hero-photo,
.gallery-contact figure {
  border-radius: 12px;
  box-shadow: var(--shadow-image);
}
.page-hero-photo figcaption { border-radius: 8px 0 0 0; }
.gallery-item { border-radius: 8px; }
.gallery-item::after { border-radius: 5px; }
.gallery-contact { padding: clamp(72px, 7vw, 104px) 0; }
.gallery-contact h2,
.contact-direct-heading h2,
.whatsapp-alternative h2 {
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.contact-hero-grid { min-height: 620px; padding: clamp(62px, 7vw, 92px) 0; }
.contact-direct { padding: clamp(72px, 7vw, 104px) 0; }
.contact-card {
  padding: 25px clamp(20px, 2.5vw, 30px);
  box-shadow: var(--shadow-card);
}
.quote-form {
  border: 1px solid rgba(20, 28, 38, .12);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}
.form-heading p { font-weight: 800; }
.field input,
.field select,
.field textarea { border-radius: 6px; background: #fafafa; }
.form-explainer {
  padding: 4px 0 4px 20px;
  background: transparent;
  border-left: 3px solid var(--pink);
  border-radius: 0;
  box-shadow: none;
}
.inquiry .form-explainer { color: var(--white); }
.inquiry .form-explainer ol { color: #b8c5cf; }
.request-dialog {
  border: 1px solid rgba(20, 28, 38, .12);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(3,10,18,.32);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.dialog-shell h2 { font-weight: 800; }
.whatsapp-alternative { background: var(--navy); }

.legal-hero h1 {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.legal-grid aside {
  border: 1px solid rgba(20, 28, 38, .12);
  border-radius: 10px;
}

.reveal { transition-duration: .62s; }
.reveal.reveal-pending { transform: translateY(16px); }

@media (max-width: 1180px) {
  .header-phone { display: grid; }
  .header-actions .button-primary { display: inline-flex; }
  .hero-grid,
  .page-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr); }
}

@media (max-width: 1080px) {
  .header-phone { display: none; }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .button,
  .header-phone { display: none; }
  .hero-copy h1,
  .page-hero-copy h1,
  .contact-hero-copy h1 { font-size: 3rem; }
  .hero-grid,
  .page-hero-grid,
  .contact-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 64px; }
  .hero-stage { min-height: 560px; }
}

@media (max-width: 760px) {
  :root { --header-height: 72px; }
  .section { padding: 64px 0; }
  .section-title { font-size: clamp(2.15rem, 9.5vw, 2.65rem); }
  .hero-grid,
  .page-hero-grid,
  .contact-hero-grid { padding: 52px 0 68px; }
  .hero-copy h1,
  .page-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 2.5rem);
    line-height: 1.06;
    letter-spacing: -.035em;
  }
  .legal-hero h1 { font-size: clamp(2.25rem, 10vw, 2.5rem); }
  .hero-stage { min-height: 480px; }
  .hero-info { border-radius: 7px; }
  .case-feature > div { border-radius: 8px 0 0 0; }
  .process-route li { border-radius: 7px; }
  .personal-links { grid-template-columns: 1fr; }
  .personal-links a:first-child,
  .personal-links a:last-child { padding-inline: 0; border-left: 0; }
  .mobile-action-bar a { border-radius: 6px; }
  .gallery-item,
  .gallery-item-feature,
  .gallery-item-wide,
  .gallery-item-portrait { border-radius: 7px; }
}

@media (max-width: 430px) {
  .hero-copy h1,
  .page-hero-copy h1,
  .contact-hero-copy h1 { font-size: clamp(2.2rem, 10.5vw, 2.45rem); }
  .hero-stage { min-height: 420px; }
  .route-scroll { padding: 18px; border-radius: 7px; }
}

@media (max-width: 360px) {
  .hero-copy h1,
  .page-hero-copy h1,
  .contact-hero-copy h1 { font-size: 2.2rem; }
}
