:root {
  color-scheme: light;
  --navy: #071c2f;
  --navy-soft: #0c2941;
  --ink: #142638;
  --green: #147e6c;
  --green-dark: #0d6255;
  --gold: #cfa55b;
  --cream: #f3f1ea;
  --paper: #fbfaf6;
  --white: #fff;
  --muted: #586670;
  --line: rgba(20, 38, 56, .14);
  --line-light: rgba(255,255,255,.15);
  --on-dark-body: rgba(255,255,255,.74);
  --on-dark-muted: rgba(255,255,255,.64);
  --on-dark-meta: rgba(255,255,255,.58);
  --gold-on-dark: #e5cc96;
  --gold-text-light: #8b6425;
  --serif: 'Prata', Georgia, serif;
  --sans: 'Manrope', Arial, sans-serif;
  --fs-meta: clamp(.75rem, .73rem + .08vw, .8125rem);
  --fs-small: clamp(.875rem, .84rem + .16vw, 1rem);
  --fs-body: clamp(1rem, .96rem + .18vw, 1.125rem);
  --fs-lead: clamp(1.0625rem, .99rem + .36vw, 1.25rem);
  --fs-h3: clamp(1.5rem, 1.32rem + .9vw, 2.25rem);
  --fs-h2: clamp(2.125rem, 1.5rem + 3vw, 5rem);
  --fs-display: clamp(2.5rem, 1.55rem + 4.75vw, 7rem);
  --fs-contact: clamp(1.75rem, 1.25rem + 2.2vw, 3.5rem);
  --container: 1500px;
  --pad: max(clamp(22px, 5vw, 84px), calc((100vw - var(--container)) / 2));
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(90px + var(--safe-top)); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; overflow-x: hidden; overflow-x: clip; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: var(--fs-body); line-height: 1.65; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
svg { display: block; }
::selection { background: var(--gold); color: var(--navy); }
:where(a, button, input, select, textarea):focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; transform: translateY(-150%); padding: 10px 16px; background: var(--white); color: var(--navy); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: calc(88px + var(--safe-top)); padding: var(--safe-top) max(var(--pad), var(--safe-right)) 0 max(var(--pad), var(--safe-left)); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.14); transition: background .35s, min-height .35s, box-shadow .35s; }
.site-header.is-scrolled { min-height: calc(72px + var(--safe-top)); background: rgba(7,28,47,.94); box-shadow: 0 16px 40px rgba(0,0,0,.15); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; width: max-content; gap: 10px; color: inherit; text-decoration: none; }
.brand-mark { width: 39px; height: 39px; color: var(--gold); }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark svg path:first-child { fill: currentColor; stroke-width: 0; opacity: .96; }
.brand-type { font-size: 16px; font-weight: 500; letter-spacing: .16em; white-space: nowrap; }
.brand-type b { color: var(--gold); font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.nav-mobile-contact { display: none; }
.site-nav a { position: relative; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 600; text-decoration: none; transition: color .25s; }
.site-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ''; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-contact { justify-self: end; display: inline-flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 700; text-decoration: none; }
.header-contact-copy { display: grid; gap: 2px; text-align: right; }
.header-contact-copy small { color: var(--on-dark-meta); font-size: var(--fs-meta); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.header-contact-copy strong { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.header-contact svg, .button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .3s var(--ease); }
.header-contact:hover svg, .button:hover svg { transform: translateX(4px); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; color: inherit; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; margin: 5px 0; background: currentColor; transition: transform .25s, opacity .25s; }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(230px, .28fr); align-items: end; min-height: min(950px, 100vh); min-height: min(950px, 100svh); padding: clamp(150px, 19vh, 220px) var(--pad) clamp(88px, 11vh, 125px); overflow: hidden; isolation: isolate; color: var(--white); background: var(--navy); }
.hero-media { position: absolute; z-index: -4; inset: -3%; background: url('../images/lotus-cargo-hero.jpg') center / cover no-repeat; transform: scale(1.035); transition: transform .15s linear; }
.hero::before { position: absolute; z-index: -3; inset: 0; content: ''; background: linear-gradient(90deg, rgba(3,17,30,.98) 0%, rgba(4,22,38,.87) 35%, rgba(5,25,43,.33) 70%, rgba(5,20,34,.2)), linear-gradient(0deg, rgba(4,20,34,.8), transparent 48%); }
.hero-grid { position: absolute; z-index: -2; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.hero-glow { position: absolute; z-index: -1; top: 30%; left: 46%; width: 400px; height: 400px; border-radius: 50%; background: rgba(19,126,108,.22); filter: blur(100px); }
.hero-content { width: min(1120px, 100%); min-width: 0; align-self: center; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--green-dark); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 29px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-on-dark); }
.hero h1, .section h2, .success-page h1 { margin: 0; overflow-wrap: normal; font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; hyphens: none; text-wrap: balance; }
.hero h1 { max-width: 1050px; font-size: var(--fs-display); line-height: 1.02; }
.hero h1 em { color: var(--gold-on-dark); font-weight: 400; }
.section h2 em { color: var(--gold-text-light); font-weight: 400; }
.services-section h2 em, .process-section h2 em, .contact-section h2 em { color: var(--gold-on-dark); }
.hero-text { max-width: 58ch; margin: 30px 0 0; color: var(--on-dark-body); font-size: var(--fs-lead); line-height: 1.62; text-wrap: pretty; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 34px; margin-top: 40px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 30px; min-height: 58px; padding: 0 26px; border: 1px solid transparent; border-radius: 0; font-size: clamp(.875rem, .84rem + .12vw, .9375rem); font-weight: 700; text-decoration: none; cursor: pointer; transition: background .25s, color .25s, transform .25s, box-shadow .25s; }
.button-primary { background: var(--green); color: var(--white); box-shadow: 0 14px 38px rgba(20,126,108,.22); }
.button-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 18px 44px rgba(20,126,108,.3); }
.button-whatsapp { background: #198f78; }
.button-whatsapp:hover { background: #0e755f; }
.button-whatsapp .button-whatsapp-icon { width: 21px; height: 21px; fill: currentColor; stroke: none; }
.text-link { display: inline-flex; align-items: center; gap: 12px; width: max-content; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--navy); font-size: 13px; font-weight: 700; text-decoration: none; transition: gap .3s var(--ease), color .25s; }
.text-link:hover { gap: 18px; color: var(--green); }
.light-link { color: rgba(255,255,255,.82); }
.hero-contact-note { display: flex; align-items: center; gap: 10px; margin: 19px 0 0; color: var(--on-dark-muted); font-size: var(--fs-meta); font-weight: 600; }
.hero-contact-note > span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(207,165,91,.13); }
.hero-proof { align-self: end; justify-self: end; width: 230px; padding: 25px 0 0 28px; border-top: 1px solid rgba(255,255,255,.35); border-left: 1px solid rgba(255,255,255,.2); }
.hero-proof p { margin: 0 0 12px; color: var(--gold-on-dark); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .12em; line-height: 1.6; text-transform: uppercase; }
.hero-proof strong { display: block; font-family: var(--serif); font-size: clamp(74px, 7vw, 112px); font-weight: 400; line-height: .92; }
.hero-proof strong sup { color: var(--gold); font-size: .35em; }
.hero-proof > span { display: block; margin-top: 12px; color: var(--on-dark-muted); font-size: var(--fs-meta); }
.hero-route { position: absolute; right: var(--pad); bottom: 34px; left: var(--pad); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-route i { width: 42px; height: 1px; background: rgba(255,255,255,.25); }
.route-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(207,165,91,.14); }

.trust-strip { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; min-height: 108px; overflow: hidden; background: var(--gold); color: var(--navy); }
.trust-strip > p:not(.sr-only) { z-index: 1; display: grid; place-items: center; align-self: stretch; min-width: 170px; margin: 0; padding: 0 28px; border-right: 1px solid rgba(7,28,47,.16); background: var(--gold); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.marquee { overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 38px; width: max-content; animation: marquee 24s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: clamp(27px, 2.8vw, 44px); white-space: nowrap; }
.marquee-track b { font-size: 14px; font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(82px, 10vw, 155px) var(--pad); }
.section-kicker { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.section-kicker span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green-dark); letter-spacing: 0; }
.section-kicker p { margin: 0; }
.section-kicker.inverse { color: var(--on-dark-meta); }
.section-kicker.inverse span { border-color: rgba(255,255,255,.16); color: var(--gold); }
.section h2 { font-size: var(--fs-h2); line-height: 1.1; }

.about-section { display: grid; grid-template-columns: .24fr 1fr; gap: 80px; background: var(--paper); }
.about-copy { max-width: 1120px; }
.about-copy h2 { max-width: 1040px; }
.about-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(30px, 6vw, 90px); max-width: 900px; margin-top: 56px; color: var(--muted); }
.about-columns p { max-width: 60ch; margin: 0; font-size: var(--fs-body); line-height: 1.72; text-wrap: pretty; }
.about-quote { grid-column: 2; display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 30px; margin: 80px 0 0; padding: 38px 44px; border: 1px solid var(--line); background: var(--cream); }
.about-quote svg { align-self: start; width: 44px; fill: var(--gold); }
.about-quote p { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3vw, 45px); line-height: 1.2; }
.about-quote cite { max-width: 200px; color: var(--muted); font-size: var(--fs-small); font-style: normal; line-height: 1.6; }

.services-section { position: relative; color: var(--white); background: var(--navy); }
.services-section::before { position: absolute; top: 0; right: 9%; width: 1px; height: 100%; content: ''; background: rgba(255,255,255,.05); }
.services-heading { display: grid; grid-template-columns: .3fr 1fr; gap: 50px; margin-top: 45px; }
.services-heading .eyebrow { margin-top: 16px; }
.services-heading h2 { max-width: 900px; }
.services-list { max-width: 1180px; margin: 85px 0 0 auto; border-top: 1px solid var(--line-light); }
.service-row { position: relative; display: grid; grid-template-columns: 42px 72px 1fr auto; align-items: center; gap: 32px; min-height: 170px; border-bottom: 1px solid var(--line-light); transition: padding .35s var(--ease), background .35s; }
.service-row::before { position: absolute; inset: 0 -28px; z-index: 0; content: ''; background: rgba(255,255,255,.035); opacity: 0; transition: opacity .3s; }
.service-row:hover { padding-left: 14px; }
.service-row:hover::before { opacity: 1; }
.service-row > * { position: relative; }
.service-number { color: var(--on-dark-meta); font-size: var(--fs-meta); }
.service-icon { display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--gold); }
.service-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.service-row h3 { margin: 0 0 10px; font-family: var(--serif); font-size: var(--fs-h3); font-weight: 400; line-height: 1.2; }
.service-row p { max-width: 48ch; margin: 0; color: var(--on-dark-muted); font-size: var(--fs-small); line-height: 1.65; text-wrap: pretty; }
.service-row > a { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--gold); text-decoration: none; transition: background .3s, transform .3s; }
.service-row > a:hover { background: var(--green); color: var(--white); transform: rotate(45deg); }

.turkey-section { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(410px, .94fr); min-height: 760px; padding: 0; background: var(--cream); }
.turkey-visual { position: relative; min-height: 760px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 65% 30%, rgba(19,126,108,.8), transparent 30%), linear-gradient(145deg, #133851, #071c2f 65%); }
.turkey-visual::before { position: absolute; inset: 0; content: ''; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(135deg, black, transparent 75%); }
.turkey-visual::after { position: absolute; right: -80px; bottom: -90px; width: 75%; height: 75%; content: ''; border: 1px solid rgba(207,165,91,.32); border-radius: 50% 50% 0 0; transform: rotate(-12deg); box-shadow: 0 0 0 70px rgba(207,165,91,.04), 0 0 0 140px rgba(207,165,91,.025); }
.visual-label { position: absolute; top: 46px; left: 48px; color: var(--on-dark-meta); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.istanbul-lines { position: absolute; inset: 0; opacity: .5; }
.istanbul-lines svg { width: 100%; height: 100%; }
.istanbul-lines path { fill: none; stroke: var(--gold); stroke-width: 1; stroke-dasharray: 4 8; }
.turkey-visual strong { position: absolute; z-index: 2; right: 12%; bottom: 14%; font-family: var(--serif); font-size: clamp(150px, 18vw, 290px); font-weight: 400; line-height: .75; letter-spacing: -.07em; }
.turkey-visual strong sup { color: var(--gold); font-size: .26em; }
.turkey-visual > p { position: absolute; z-index: 2; right: 12%; bottom: 7%; margin: 0; color: var(--on-dark-muted); font-size: var(--fs-meta); letter-spacing: .12em; text-align: right; text-transform: uppercase; }
.turkey-copy { align-self: center; padding: clamp(70px, 8vw, 130px); }
.turkey-copy .section-kicker { margin-bottom: 68px; }
.turkey-copy h2 { font-size: clamp(39px, 4.5vw, 68px); }
.turkey-copy > p:not(.eyebrow) { max-width: 60ch; margin: 34px 0; color: var(--muted); font-size: var(--fs-body); line-height: 1.72; text-wrap: pretty; }
.check-list { display: grid; gap: 0; margin: 34px 0 42px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 16px 0 16px 28px; border-bottom: 1px solid var(--line); font-size: var(--fs-small); font-weight: 600; }
.check-list li::before { position: absolute; left: 0; content: '✓'; color: var(--green); }

.cases-section { background: var(--paper); }
.cases-heading { margin: 50px 0 70px; }
.cases-intro { max-width: 58ch; margin: 28px 0 0; color: var(--muted); font-size: var(--fs-lead); line-height: 1.7; text-wrap: pretty; }
.cases-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.case-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 330px; overflow: hidden; padding: 32px; border: 1px solid var(--line); background: var(--cream); transition: transform .4s var(--ease), box-shadow .4s; }
.case-card { color: var(--white); text-decoration: none; isolation: isolate; }
.case-card > img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.case-card-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(3,17,30,.94), rgba(3,17,30,.12) 70%); transition: background .35s; }
.case-card:hover { transform: translateY(-7px); box-shadow: 0 24px 70px rgba(7,28,47,.12); }
.case-card:hover > img { transform: scale(1.05); }
.case-card:hover .case-card-shade { background: linear-gradient(0deg, rgba(3,17,30,.98), rgba(3,17,30,.28) 75%); }
.case-featured { grid-column: 1 / -1; min-height: 520px; background: linear-gradient(120deg, var(--green-dark), var(--navy)); }
.case-index { position: absolute; z-index: 2; top: 32px; right: 32px; color: var(--gold-text-light); font-family: var(--serif); font-size: 20px; }
.case-featured .case-index, .case-dark .case-index { color: var(--gold-on-dark); }
.case-copy { position: relative; z-index: 2; max-width: 700px; margin-top: auto; }
.case-copy p { margin: 0 0 12px; color: var(--gold-on-dark); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.case-copy h3 { margin: 0; max-width: 720px; font-family: var(--serif); font-size: clamp(25px, 3vw, 45px); font-weight: 400; line-height: 1.2; }
.case-card:not(.case-featured) .case-copy h3 { max-width: 500px; font-size: clamp(24px, 2.2vw, 34px); }
.case-art { position: absolute; inset: 10% 2% 12% 25%; color: rgba(255,255,255,.14); }
.case-art svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.2; }
.case-dark { color: var(--white); background: var(--navy); }
.case-more { display: inline-flex; align-items: center; gap: 11px; margin-top: 23px; color: var(--gold-on-dark); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.case-more b { font-size: 18px; font-weight: 400; transition: transform .3s var(--ease); }
.case-card:hover .case-more b { transform: translate(3px, -3px); }
.cases-all-link { margin-top: 42px; }

.cases-page-hero { min-height: min(680px, 84svh); padding: clamp(160px, 20vh, 230px) var(--pad) clamp(80px, 10vw, 140px); color: var(--white); background: radial-gradient(circle at 75% 50%, rgba(20,126,108,.58), transparent 30%), linear-gradient(125deg, #061827, #0d3446); }
.cases-page-hero { position: relative; display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.cases-page-hero::before { position: absolute; z-index: 1; inset: 0; content: ''; background: linear-gradient(90deg, #061827 2%, rgba(6,24,39,.94) 38%, rgba(6,24,39,.24) 100%), linear-gradient(0deg, rgba(3,15,25,.58), transparent 62%); }
.cases-page-hero-content { position: relative; z-index: 2; max-width: 780px; }
.cases-page-hero-art { position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; width: min(56vw, 900px); display: grid; grid-template-columns: 1.05fr .95fr; grid-template-rows: 1fr 1fr; gap: 7px; padding: 7px; opacity: .94; transform: skewX(-5deg) translateX(42px); transform-origin: bottom; }
.cases-page-hero-art::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, #061827, transparent 38%), linear-gradient(0deg, rgba(3,15,25,.35), transparent); }
.cases-page-hero-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.cases-page-hero-art img:nth-child(1) { grid-row: span 2; object-position: center; }
.cases-page-hero-art img:nth-child(2) { object-position: center; }
.cases-page-hero-art img:nth-child(3) { object-position: center; }
.cases-page-hero-art img:nth-child(4) { display: none; }
.cases-page-hero-note { position: absolute; z-index: 3; right: var(--pad); bottom: clamp(48px, 8vw, 115px); margin: 0; padding-left: 19px; border-left: 1px solid rgba(229,204,150,.55); color: var(--on-dark-muted); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .1em; line-height: 1.6; text-transform: uppercase; }
.cases-page-hero-note span { display: block; margin-bottom: 5px; color: var(--gold-on-dark); font-family: var(--serif); font-size: 40px; font-weight: 400; letter-spacing: 0; line-height: 1; }
.cases-page-hero h1, .case-hero h1, .case-story h2, .case-gallery h2, .case-cta h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; text-wrap: balance; }
.cases-page-hero h1 { max-width: 13ch; font-size: var(--fs-display); line-height: 1.06; }
.cases-page-hero h1 em, .case-cta h2 em { color: var(--gold-on-dark); font-style: normal; }
.cases-page-hero-content > p:not(.eyebrow) { max-width: 60ch; margin: 30px 0 0; color: var(--on-dark-body); font-size: var(--fs-lead); }
.cases-page-list { display: grid; gap: 0; padding: 0 var(--pad) clamp(80px, 10vw, 150px); background: var(--paper); }
.case-list-card { position: relative; display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.3fr) minmax(180px, .42fr); gap: clamp(28px, 5vw, 80px); align-items: center; min-height: 390px; padding: 36px 24px 36px 0; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: padding .45s var(--ease), background .35s, transform .4s var(--ease), box-shadow .4s var(--ease); }
.case-list-card:first-child { border-top: 1px solid var(--line); }
.case-list-card::before { position: absolute; z-index: -1; inset: 18px 0 18px 18px; content: ''; border-radius: 24px; background: linear-gradient(135deg, rgba(20,126,108,.04), rgba(207,165,91,.03)); opacity: 0; transition: opacity .35s; }
.case-list-card:hover { padding-right: 32px; padding-left: 16px; background: rgba(243,241,234,.4); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(7,28,47,.05); }
.case-list-card:hover::before { opacity: 1; }
.case-list-image { position: relative; height: 310px; overflow: hidden; background: var(--navy); border-radius: 18px; box-shadow: 0 26px 60px rgba(7,28,47,.08); }
.case-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.case-list-image::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(5,20,32,.64), transparent 58%); }
.case-list-number { position: absolute; z-index: 2; top: 18px; left: 19px; display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--white); font-family: var(--serif); font-size: 17px; backdrop-filter: blur(4px); }
.case-list-card:hover .case-list-image img { transform: scale(1.06); }
.case-list-copy > span, .case-list-stat span { color: var(--green-dark); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.case-list-copy h2 { max-width: 19ch; margin: 15px 0; font-family: var(--serif); font-size: clamp(1.7rem, 1.35rem + 1.6vw, 3rem); font-weight: 400; line-height: 1.14; }
.case-list-copy p { max-width: 58ch; margin: 0; color: var(--muted); font-size: var(--fs-small); line-height: 1.7; }
.case-list-copy strong { display: inline-flex; gap: 12px; margin-top: 25px; padding-bottom: 4px; border-bottom: 1px solid var(--green-dark); color: var(--green-dark); font-size: var(--fs-meta); }
.case-list-copy strong b { font-size: 17px; font-weight: 400; }
.case-list-stat { display: grid; gap: 10px; align-self: stretch; align-content: end; padding: 0 0 15px 24px; border-left: 1px solid var(--line); }
.case-list-stat b { font-family: var(--serif); font-size: clamp(2.1rem, 2rem + 2vw, 4.2rem); font-weight: 400; line-height: 1; }
.case-list-stat span { max-width: 18ch; color: var(--muted); line-height: 1.5; }
.case-list-card-02 .case-list-copy > span { color: #a44938; }
.case-list-card-03 .case-list-copy > span { color: #386879; }
.case-list-card-04 .case-list-copy > span { color: #8b6425; }
.case-list-card-02 .case-list-image { box-shadow: 0 26px 60px rgba(164,73,56,.18); }
.case-list-card-03 .case-list-image { box-shadow: 0 26px 60px rgba(46,100,122,.18); }
.case-list-card-04 .case-list-image { box-shadow: 0 26px 60px rgba(139,100,37,.16); }

.case-page { background: linear-gradient(180deg, #f7f4ee 0%, #f4efe8 100%); }
.case-hero { position: relative; display: grid; min-height: min(900px, 100svh); align-items: end; overflow: hidden; color: var(--white); isolation: isolate; background: var(--navy); }
.case-hero > img, .case-hero-overlay { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-hero > img { transform: scale(1.04); }
.case-hero-overlay { z-index: 1; background: linear-gradient(90deg, rgba(3,17,30,.96), rgba(3,17,30,.52) 52%, rgba(3,17,30,.20)), linear-gradient(0deg, rgba(3,17,30,.8), transparent 60%); }
.case-hero::before { position: absolute; z-index: 2; top: 0; right: var(--pad); bottom: 0; width: 1px; content: ''; background: rgba(255,255,255,.2); }
.case-hero::after { position: absolute; z-index: 2; top: 0; right: calc(var(--pad) + 22vw); width: 1px; height: 38%; content: ''; background: var(--gold); opacity: .65; }
.case-hero-copy { position: relative; z-index: 3; max-width: 1100px; padding: clamp(140px, 18vh, 210px) var(--pad) clamp(80px, 11vh, 135px); }
.case-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: clamp(55px, 9vh, 115px); color: var(--on-dark-body); font-size: var(--fs-meta); font-weight: 700; text-decoration: none; transition: color .25s, transform .25s; }
.case-back:hover { color: var(--gold-on-dark); transform: translateX(-3px); }
.case-hero h1 { max-width: 15ch; font-size: clamp(2.5rem, 1.55rem + 4.75vw, 6.2rem); line-height: 1.04; }
.case-hero-copy > p:not(.eyebrow) { max-width: 55ch; margin: 28px 0 0; color: var(--on-dark-body); font-size: var(--fs-lead); line-height: 1.65; }
.case-hero-stat { position: absolute; z-index: 3; right: var(--pad); bottom: clamp(80px, 11vh, 135px); display: grid; gap: 10px; width: min(280px, 24vw); padding: 24px 0 0 27px; border-top: 1px solid rgba(255,255,255,.42); border-left: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(3px); }
.case-hero-stat strong { font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4.7rem); font-weight: 400; line-height: 1; color: var(--gold-on-dark); overflow-wrap: anywhere; }
.case-hero-stat span { color: var(--on-dark-muted); font-size: var(--fs-meta); line-height: 1.55; }
.case-story { position: relative; display: block; padding: clamp(90px, 12vw, 170px) var(--pad); background: var(--paper); }
.case-story::before { position: absolute; top: 0; left: var(--pad); width: 76px; height: 4px; content: ''; background: var(--gold); }
.case-story-intro-wide { width: min(100%, 1500px); max-width: 100%; margin: 0; }
.case-story-intro { width: 100%; }
.case-story-intro h2 { max-width: 100%; font-size: clamp(2.2rem, 1.7rem + 2vw, 5.2rem); line-height: 1.08; letter-spacing: -.03em; }
.case-story-body { width: min(100%, 78ch); max-width: 100%; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.02rem, .96rem + .52vw, 1.5rem); line-height: 1.78; text-wrap: pretty; }
.case-points { display: none; }
.case-gallery { position: relative; padding: clamp(80px, 10vw, 150px) var(--pad); background: linear-gradient(180deg, #f4efe8 0%, #efe7db 100%); }
.case-gallery::before { position: absolute; top: 0; right: 0; width: min(38vw, 560px); height: 100%; content: ''; background: linear-gradient(140deg, rgba(207,165,91,.09), transparent 55%); pointer-events: none; }
.case-gallery-title { display: flex; justify-content: space-between; align-items: end; margin-bottom: 55px; }
.case-gallery h2 { font-size: clamp(2.4rem, 1.7rem + 3vw, 5rem); line-height: 1.05; }
.case-gallery h2 em { color: var(--gold-text-light); font-style: normal; }
.gallery-grid { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; gap: 14px; }
.gallery-item { position: relative; grid-column: span 4; height: clamp(240px, 28vw, 480px); overflow: hidden; background: var(--navy); border-radius: 18px; box-shadow: 0 24px 60px rgba(7,28,47,.08); }
.gallery-item:nth-child(5n + 1) { grid-column: span 8; }
.gallery-item:nth-child(5n + 4) { grid-column: span 5; }
.gallery-item:nth-child(5n + 5) { grid-column: span 7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .35s; }
.gallery-item::after { position: absolute; right: 14px; bottom: 11px; color: rgba(255,255,255,.82); content: '↗'; font-size: 18px; opacity: 0; transform: translate(-5px, 5px); transition: opacity .3s, transform .3s; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1.08); }
.gallery-item:hover::after { opacity: 1; transform: none; }
.gallery-lightbox { width: min(1160px, calc(100vw - 40px)); max-width: none; max-height: min(860px, calc(100svh - 40px)); margin: auto; padding: 0; overflow: visible; border: 0; background: #061827; color: var(--white); box-shadow: 0 32px 100px rgba(0,0,0,.58); }
.gallery-lightbox::backdrop { background: rgba(2,12,21,.91); backdrop-filter: blur(8px); }
.gallery-lightbox figure { display: grid; width: 100%; height: min(820px, calc(100svh - 40px)); margin: 0; place-items: center; }
.gallery-lightbox img { display: block; max-width: 100%; max-height: calc(100% - 48px); object-fit: contain; }
.gallery-lightbox figcaption { position: absolute; bottom: 13px; left: 20px; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.gallery-lightbox-close, .gallery-lightbox-nav { position: absolute; z-index: 2; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.33); border-radius: 50%; background: rgba(6,24,39,.64); color: var(--white); font-size: 22px; cursor: pointer; transition: background .25s, transform .25s; }
.gallery-lightbox-close { top: 16px; right: 16px; font-size: 30px; font-weight: 300; line-height: 1; }
.gallery-lightbox-nav { top: 50%; transform: translateY(-50%); }
.gallery-lightbox-prev { left: 18px; }
.gallery-lightbox-next { right: 18px; }
.gallery-lightbox-close:hover, .gallery-lightbox-nav:hover { background: var(--green); }
.gallery-lightbox-prev:hover { transform: translate(-3px, -50%); }
.gallery-lightbox-next:hover { transform: translate(3px, -50%); }
.case-cta { padding: clamp(85px, 11vw, 155px) var(--pad); color: var(--white); background: radial-gradient(circle at 75% 50%, rgba(20,126,108,.48), transparent 27%), var(--navy); }
.case-cta h2 { max-width: 19ch; font-size: clamp(2.25rem, 1.55rem + 3.2vw, 5rem); line-height: 1.12; }
.case-cta .button { margin-top: 38px; box-shadow: 0 20px 40px rgba(20,126,108,.18); }

.process-section { color: var(--white); background: #092338; }
.process-heading { display: grid; grid-template-columns: .3fr 1fr; gap: 50px; margin: 50px 0 75px; }
.process-heading .eyebrow { margin-top: 17px; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.steps article { min-height: 280px; padding: 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .3s, transform .3s; }
.steps article:hover { background: rgba(255,255,255,.035); transform: translateY(-5px); }
.steps span { display: block; margin-bottom: 80px; color: var(--gold); font-family: var(--serif); font-size: 26px; }
.steps h3 { margin: 0 0 15px; font-family: var(--serif); font-size: clamp(1.4rem, 1.25rem + .55vw, 1.8rem); font-weight: 400; line-height: 1.2; }
.steps p { max-width: 34ch; margin: 0; color: var(--on-dark-muted); font-size: var(--fs-small); line-height: 1.65; text-wrap: pretty; }

.contact-section { position: relative; overflow: hidden; isolation: isolate; color: var(--white); background: #061a2c; }
.contact-grid { position: absolute; z-index: -2; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(130deg, black, transparent 72%); }
.contact-orbit { position: absolute; z-index: -1; top: 4%; right: -14%; width: min(58vw, 880px); aspect-ratio: 1; border: 1px solid rgba(229,204,150,.16); border-radius: 50%; }
.contact-orbit::before, .contact-orbit::after, .contact-orbit span { position: absolute; border: 1px solid rgba(229,204,150,.1); border-radius: 50%; content: ''; }
.contact-orbit::before { inset: 11%; }
.contact-orbit::after { inset: 24%; }
.contact-orbit span:first-child { inset: 37%; }
.contact-orbit span:last-child { top: 20%; left: 9%; width: 10px; height: 10px; border: 0; background: var(--gold); box-shadow: 0 0 0 8px rgba(207,165,91,.1); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(520px, 1.25fr); gap: clamp(55px, 9vw, 150px); align-items: end; margin-top: 64px; }
.contact-copy h2 { max-width: 13ch; }
.contact-copy > p:not(.eyebrow) { max-width: 52ch; margin: 30px 0 0; color: var(--on-dark-body); font-size: var(--fs-lead); line-height: 1.65; text-wrap: pretty; }
.contact-stage { padding: 34px 0 38px; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-stage-label { color: var(--gold-on-dark); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-big-number { display: block; width: max-content; max-width: 100%; margin: 17px 0 28px; color: var(--white); font-family: var(--serif); font-size: var(--fs-contact); line-height: 1.12; letter-spacing: -.025em; text-decoration: none; white-space: nowrap; transition: color .25s; }
.contact-big-number:hover { color: var(--gold-on-dark); }
.contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.contact-whatsapp { min-width: 240px; }
.contact-call { display: inline-flex; align-items: center; gap: 14px; min-height: 48px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: var(--fs-small); font-weight: 700; text-decoration: none; }
.contact-call span { color: var(--gold-on-dark); }
.contact-hint { display: flex; align-items: center; gap: 10px; margin: 24px 0 0; color: var(--on-dark-muted); font-size: var(--fs-meta); }
.contact-hint i { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: #30cf91; box-shadow: 0 0 0 5px rgba(48,207,145,.1); }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 74px; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.contact-card { position: relative; display: flex; min-height: 175px; flex-direction: column; justify-content: space-between; padding: 28px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); color: var(--white); text-decoration: none; transition: background .3s, transform .3s; }
a.contact-card:hover { z-index: 1; background: rgba(255,255,255,.055); transform: translateY(-5px); }
.contact-card > span { color: var(--on-dark-meta); font-size: var(--fs-meta); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { max-width: 88%; overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(1.15rem, 1rem + .7vw, 1.65rem); font-weight: 400; line-height: 1.35; }
.contact-card > i { position: absolute; top: 25px; right: 26px; color: var(--gold-on-dark); font-style: normal; }
.contact-office > i { top: auto; right: 24px; bottom: 18px; font-family: var(--serif); font-size: 42px; opacity: .55; }

.site-footer { padding: 70px var(--pad) 28px; color: var(--white); background: #041522; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; padding-bottom: 64px; }
.brand-footer { font-size: 18px; }
.footer-top > p { margin: 0; color: var(--on-dark-muted); font-size: var(--fs-meta); letter-spacing: .06em; text-transform: uppercase; }
.footer-phone { display: inline-flex; align-items: center; color: var(--gold); font-family: var(--serif); font-size: clamp(27px, 3.2vw, 48px); text-decoration: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: var(--on-dark-muted); font-size: var(--fs-meta); letter-spacing: .05em; text-transform: uppercase; }
.footer-bottom a { display: inline-flex; align-items: center; overflow-wrap: anywhere; text-decoration: none; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; width: auto; height: 52px; align-items: center; justify-content: center; gap: 11px; padding: 0 17px; border-radius: 28px; background: #25d366; color: var(--white); box-shadow: 0 15px 35px rgba(0,0,0,.22); text-decoration: none; visibility: visible; opacity: 1; transition: transform .25s, box-shadow .25s, opacity .25s, visibility .25s; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.04); }
.floating-whatsapp.is-context-hidden, body.menu-open .floating-whatsapp { visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(12px); }
.floating-whatsapp span { font-size: 12px; font-weight: 700; }
.floating-whatsapp svg { width: 24px; fill: currentColor; }
.messages { position: fixed; z-index: 120; top: 90px; right: 20px; max-width: 430px; }
.message { margin: 0; padding: 16px 20px; color: var(--white); background: var(--green); box-shadow: 0 16px 45px rgba(0,0,0,.2); }
.success-page { display: grid; min-height: 100vh; min-height: 100svh; place-content: center; justify-items: start; padding: 140px var(--pad); color: var(--white); background: radial-gradient(circle at 70% 30%, rgba(20,126,108,.4), transparent 30%), var(--navy); }
.success-page h1 { font-size: clamp(54px, 8vw, 110px); }
.success-page p:not(.eyebrow) { max-width: 580px; margin: 25px 0 40px; color: rgba(255,255,255,.62); }
.success-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 30px; }

.js.animations-ready [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.service-row:nth-child(2), .steps article:nth-child(2) { transition-delay: .08s; }
.service-row:nth-child(3), .steps article:nth-child(3) { transition-delay: .16s; }
.service-row:nth-child(4), .steps article:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1100px) {
  html { scroll-padding-top: calc(76px + var(--safe-top)); }
  .site-header, .site-header.is-scrolled { grid-template-columns: minmax(0, 1fr) auto auto; gap: 18px; min-height: calc(76px + var(--safe-top)); }
  .site-header.is-scrolled { backdrop-filter: none; }
  .menu-toggle { display: block; position: relative; z-index: 2; justify-self: end; cursor: pointer; }
  .site-nav { position: fixed; inset: calc(76px + var(--safe-top)) 0 0; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 0; height: calc(100dvh - 76px - var(--safe-top)); overflow-y: auto; padding: clamp(38px, 7vh, 76px) max(var(--pad), var(--safe-right)) max(36px, var(--safe-bottom)) max(var(--pad), var(--safe-left)); background: rgba(7,28,47,.985); visibility: hidden; opacity: 0; pointer-events: none; clip-path: inset(0 0 0 100%); transition: clip-path .4s var(--ease), opacity .25s, visibility 0s linear .4s; overscroll-behavior: contain; }
  .site-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; clip-path: inset(0); transition-delay: 0s; }
  .site-nav a { width: 100%; max-width: 720px; min-height: 64px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9); font-family: var(--serif); font-size: clamp(26px, 5vw, 42px); font-weight: 400; }
  .site-nav .nav-mobile-contact { display: flex; align-items: center; margin-top: 18px; border-bottom: 0; color: var(--gold); font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: .04em; }
  .site-nav .nav-mobile-phone { margin-top: 0; color: var(--white); }
  .site-nav a::after { display: none; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { grid-template-columns: minmax(0, 1fr) 230px; }
  .hero-content { max-width: 720px; }
  .about-section { grid-template-columns: 1fr; gap: 42px; }
  .about-quote { grid-column: 1; }
  .services-heading, .process-heading { grid-template-columns: 1fr; }
  .services-heading .eyebrow, .process-heading .eyebrow { margin: 0; }
  .turkey-section { grid-template-columns: 1fr; }
  .turkey-visual { min-height: 560px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; align-items: start; }
  .contact-copy { max-width: 850px; }
  .contact-copy h2 { max-width: 15ch; }
  .contact-stage { max-width: 850px; }
  .brief-layout { grid-template-columns: 1fr; }
  .brief-copy { max-width: 760px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { display: none; }
  html:not(.js) .site-header { grid-template-columns: minmax(0, 1fr) auto; min-height: auto; padding-top: max(12px, var(--safe-top)); padding-bottom: 12px; background: var(--navy); }
  html:not(.js) .brand { grid-column: 1; grid-row: 1; }
  html:not(.js) .header-contact { grid-column: 2; grid-row: 1; }
  html:not(.js) .menu-toggle { display: none; }
  html:not(.js) .site-nav { position: static; grid-column: 1 / -1; grid-row: 2; flex-direction: row; gap: 24px; overflow-x: auto; width: 100%; height: auto; padding: 8px 0 0; background: transparent; visibility: visible; opacity: 1; pointer-events: auto; clip-path: none; }
  html:not(.js) .site-nav a { width: auto; min-height: 44px; flex: 0 0 auto; padding: 10px 0; border: 0; font-family: var(--sans); font-size: 13px; font-weight: 600; white-space: nowrap; }
}

@media (max-width: 900px) {
  .hero { display: flex; flex-direction: column; justify-content: flex-end; align-items: stretch; min-height: 760px; min-height: max(760px, 100svh); }
  .hero-content { width: 100%; max-width: 760px; }
  .hero-proof { display: none; }
  .hero-media { background-position: 64% center; }
  .cases-intro { max-width: 620px; }
  .case-list-card { grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr); gap: 34px; }
  .case-list-stat { grid-column: 2; align-self: auto; padding: 0; border: 0; }
  .case-story { grid-template-columns: 1fr; gap: 65px; }
  .case-story-intro h2 { max-width: 26ch; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  html { scroll-padding-top: calc(70px + var(--safe-top)); }
  .site-header, .site-header.is-scrolled { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; min-height: calc(70px + var(--safe-top)); padding-left: max(var(--pad), var(--safe-left)); padding-right: max(var(--pad), var(--safe-right)); }
  .brand-mark { width: 34px; height: 34px; }
  .brand-type { font-size: 13px; }
  .header-contact { display: none; }
  .site-nav { inset: calc(70px + var(--safe-top)) 0 0; height: calc(100dvh - 70px - var(--safe-top)); padding-left: max(var(--pad), var(--safe-left)); padding-right: max(var(--pad), var(--safe-right)); }
  .site-nav a { min-height: 60px; font-size: clamp(25px, 8vw, 34px); }
  .hero { min-height: 720px; min-height: max(720px, 100svh); padding-top: calc(112px + var(--safe-top)); padding-right: max(var(--pad), var(--safe-right)); padding-bottom: calc(74px + var(--safe-bottom)); padding-left: max(var(--pad), var(--safe-left)); }
  .hero-media { background-position: 66% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3,17,30,.95), rgba(3,17,30,.48)), linear-gradient(0deg, rgba(3,17,30,.95) 0%, transparent 65%); }
  .hero-content { width: 100%; }
  .eyebrow { gap: 9px; margin-bottom: 16px; font-size: var(--fs-meta); letter-spacing: .12em; }
  .eyebrow > span { width: 22px; }
  .hero h1 { font-size: var(--fs-display); line-height: 1.04; }
  .hero-text { margin-top: 22px; font-size: var(--fs-lead); line-height: 1.58; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 30px; }
  .button { width: 100%; min-height: 56px; }
  .text-link { min-height: 44px; align-items: center; }
  .hero-route { bottom: 24px; gap: 7px; }
  .hero-route i { width: 18px; }
  .trust-strip { min-height: 85px; grid-template-columns: 1fr; }
  .trust-strip > p:not(.sr-only) { display: none; }
  .marquee-track { gap: 24px; }
  .section { padding-top: 76px; padding-right: max(var(--pad), env(safe-area-inset-right)); padding-bottom: 76px; padding-left: max(var(--pad), env(safe-area-inset-left)); }
  .section h2 { font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -.015em; }
  .section h2 br { display: none; }
  .about-columns { grid-template-columns: 1fr; margin-top: 38px; }
  .about-quote { grid-template-columns: 1fr; gap: 20px; margin-top: 45px; padding: 28px; }
  .about-quote cite { max-width: none; }
  .services-list { margin-top: 55px; }
  .service-row { grid-template-columns: minmax(0, 1fr) auto; gap: 10px 14px; min-height: 0; padding: 28px 0; }
  .service-icon { display: none; }
  .service-number { grid-column: 1 / -1; }
  .service-row h3 { font-size: var(--fs-h3); line-height: 1.23; }
  .service-row p { font-size: var(--fs-small); line-height: 1.65; }
  .service-row > a { width: 44px; height: 44px; }
  .turkey-visual { min-height: 430px; }
  .visual-label { top: 28px; left: var(--pad); }
  .turkey-visual strong { right: 8%; bottom: 17%; font-size: clamp(125px, 42vw, 170px); }
  .turkey-visual > p { right: 8%; bottom: 8%; }
  .turkey-copy { padding: 75px 20px; }
  .turkey-copy .section-kicker { margin-bottom: 50px; }
  .cases-heading { margin: 42px 0 50px; }
  .cases-intro { max-width: 500px; margin-top: 20px; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-featured { grid-column: 1; min-height: 410px; }
  .case-card { min-height: 275px; padding: 25px; }
  .case-index { top: 25px; right: 25px; }
  .case-art { inset: 14% -18% 22% 12%; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: auto; padding: 26px; }
  .steps span { margin-bottom: 32px; }
  .request-form { grid-template-columns: 1fr; gap: 20px; padding: 28px 20px; }
  .field-comment, .form-submit, .form-legal, .form-header { grid-column: 1; }
  .form-header { align-items: flex-start; flex-direction: column; gap: 5px; }
  .contact-layout { gap: 50px; margin-top: 50px; }
  .contact-copy > p:not(.eyebrow) { font-size: var(--fs-body); }
  .contact-big-number { font-size: clamp(1.75rem, 8vw, 2.8rem); }
  .contact-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .contact-whatsapp { width: 100%; }
  .contact-call { justify-content: space-between; padding: 10px 0; }
  .contact-hint { align-items: flex-start; line-height: 1.55; }
  .contact-cards { grid-template-columns: 1fr; margin-top: 55px; }
  .contact-card { min-height: 145px; padding: 24px; }
  .contact-card > i { top: 22px; right: 22px; }
  .contact-orbit { top: 18%; right: -55%; width: 125vw; }
  .brief-section { padding-right: max(var(--pad), var(--safe-right)); padding-left: max(var(--pad), var(--safe-left)); }
  .brief-details summary { grid-template-columns: 1fr 42px; gap: 16px; min-height: 116px; }
  .brief-details summary > strong { display: none; }
  .brief-layout { gap: 48px; padding-top: 60px; }
  .brief-copy h2 { font-size: var(--fs-h2); }
  .site-footer { padding-right: max(var(--pad), var(--safe-right)); padding-bottom: calc(28px + var(--safe-bottom)); padding-left: max(var(--pad), var(--safe-left)); }
  .footer-top { grid-template-columns: 1fr; padding-bottom: 45px; }
  .footer-phone { font-size: 27px; }
  .footer-bottom { flex-direction: column; }
  .messages { top: calc(82px + var(--safe-top)); right: var(--pad); left: var(--pad); max-width: none; }
  .success-page { padding-right: max(var(--pad), var(--safe-right)); padding-left: max(var(--pad), var(--safe-left)); }
  .success-page h1 { font-size: var(--fs-display); line-height: 1.04; }
  .success-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .success-actions .text-link { width: max-content; }
  .floating-whatsapp { right: max(16px, var(--safe-right)); bottom: max(16px, var(--safe-bottom)); width: 52px; padding: 0; border-radius: 50%; }
  .floating-whatsapp span { display: none; }
}

@media (max-width: 600px) {
  .hero-media { background-image: url('../images/lotus-cargo-hero-mobile.jpg'); }
}

@media (max-width: 600px) and (max-height: 700px) {
  .floating-whatsapp { display: none; }
}

@media (max-width: 420px) {
  :root { --pad: 18px; }
  .brand { gap: 8px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-type { font-size: 12px; letter-spacing: .13em; }
  .hero { min-height: 700px; min-height: max(700px, 100svh); padding-top: calc(102px + var(--safe-top)); }
  .hero h1 { font-size: var(--fs-display); }
  .hero-text { font-size: var(--fs-lead); }
  .hero-route { font-size: 8px; letter-spacing: .1em; }
  .hero-route i { width: 12px; }
  .section { padding-top: 68px; padding-bottom: 68px; }
  .section h2 { font-size: var(--fs-h2); }
  .about-quote { padding: 23px; }
  .about-quote p { font-size: 26px; }
  .case-card { min-height: 260px; padding: 22px; }
  .case-featured { min-height: 390px; }
  .case-index { top: 22px; right: 22px; }
  .case-card:not(.case-featured) .case-copy h3 { font-size: 24px; }
  .cases-page-hero { min-height: 580px; padding-top: 145px; }
  .cases-page-list { padding-bottom: 76px; }
  .case-list-card { grid-template-columns: 1fr; gap: 25px; min-height: 0; padding: 30px 0; }
  .case-list-image { height: min(105vw, 460px); }
  .case-list-copy h2 { max-width: 20ch; }
  .case-list-stat { grid-column: auto; grid-template-columns: auto 1fr; align-items: end; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
  .case-list-stat span { max-width: 28ch; }
  .case-hero { min-height: 720px; }
  .case-hero-copy { padding-top: 120px; padding-bottom: 115px; }
  .case-back { margin-bottom: 50px; }
  .case-hero h1 { max-width: 18ch; }
  .case-hero-stat { right: 20px; bottom: 28px; width: min(240px, 60vw); padding: 14px 0 0 17px; }
  .case-story { gap: 50px; padding-top: 76px; padding-bottom: 76px; }
  .case-points article { grid-template-columns: 34px 1fr; gap: 5px 14px; }
  .case-points h3 { font-size: 21px; }
  .case-points p { grid-column: 2; }
  .case-gallery { padding-top: 76px; padding-bottom: 76px; }
  .case-gallery-title { display: block; margin-bottom: 37px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item, .gallery-item:nth-child(5n + 1), .gallery-item:nth-child(5n + 4), .gallery-item:nth-child(5n + 5) { grid-column: span 1; height: 55vw; }
  .gallery-item:nth-child(5n + 1) { grid-column: span 2; height: 75vw; }
  .case-cta { padding-top: 76px; padding-bottom: 76px; }
  .request-form { padding: 26px 18px; }
  .form-header > span { font-size: 23px; }
  .footer-phone { font-size: 24px; }
}

@media (max-width: 350px) {
  :root { --pad: 16px; }
  .brand-type { font-size: 12px; letter-spacing: .1em; }
  .hero h1 { font-size: var(--fs-display); }
  .section h2 { font-size: var(--fs-h2); }
  .site-nav a { font-size: 24px; }
}

@media (max-width: 900px) and (max-height: 600px) and (orientation: landscape) {
  .site-header, .site-header.is-scrolled { min-height: calc(66px + var(--safe-top)); }
  .site-nav { inset: calc(66px + var(--safe-top)) 0 0; height: calc(100dvh - 66px - var(--safe-top)); padding-top: 22px; }
  .site-nav a { min-height: 50px; padding: 8px 0; font-size: 24px; }
  .hero { min-height: 390px; min-height: 100svh; padding-top: calc(82px + var(--safe-top)); padding-bottom: 24px; }
  .hero h1 { max-width: 650px; font-size: clamp(38px, 6vw, 48px); line-height: 1; }
  .hero-text { max-width: 620px; margin-top: 12px; font-size: var(--fs-small); line-height: 1.45; }
  .hero-actions { flex-direction: row; gap: 20px; margin-top: 16px; }
  .hero-actions .button { min-height: 48px; }
  .hero-actions .button { width: auto; }
  .hero-route { display: none; }
}

@media (pointer: coarse) {
  .brand, .header-contact, .text-link, .footer-phone, .footer-bottom a { min-height: 44px; }
  .site-nav a, .service-row > a, .floating-whatsapp { touch-action: manipulation; }
  .service-row:hover { padding-left: 0; }
  .case-card:hover, .steps article:hover { transform: none; }
}

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

/* Кейсы: отдельная мобильная композиция, чтобы фотографии и цифры не терялись. */
@media (max-width: 760px) {
  .cases-page-hero { min-height: 650px; padding-top: calc(128px + var(--safe-top)); padding-bottom: 128px; }
  .cases-page-hero-art { top: auto; width: 78vw; height: 57%; padding: 4px; gap: 4px; transform: skewX(-4deg) translateX(30px); opacity: .72; }
  .cases-page-hero-art::after { background: linear-gradient(90deg, #061827, transparent 48%), linear-gradient(0deg, rgba(3,15,25,.68), transparent); }
  .cases-page-hero-note { right: auto; bottom: 30px; left: var(--pad); padding-left: 13px; font-size: 10px; }
  .cases-page-hero-note span { font-size: 31px; }
  .cases-page-hero h1 { max-width: 11ch; font-size: clamp(2.75rem, 10vw, 4.5rem); }
  .cases-page-hero-content > p:not(.eyebrow) { max-width: 36ch; margin-top: 22px; font-size: 16px; line-height: 1.6; }

  .case-list-card { grid-template-columns: 1fr; gap: 23px; min-height: 0; padding: 27px 0; }
  .case-list-card:hover { padding-right: 0; padding-left: 0; background: transparent; }
  .case-list-image { height: min(102vw, 470px); }
  .case-list-copy h2 { max-width: 17ch; margin: 12px 0; font-size: clamp(1.7rem, 7vw, 2.45rem); }
  .case-list-copy p { font-size: 14px; }
  .case-list-stat { grid-column: auto; grid-template-columns: auto minmax(0, 1fr); align-items: end; gap: 17px; padding: 18px 0 0; border-top: 1px solid var(--line); }
  .case-list-stat b { font-size: 42px; }
  .case-list-stat span { max-width: 25ch; font-size: 10px; }

  .case-hero { min-height: max(700px, 100svh); }
  .case-hero > img { object-position: center; }
  .case-hero-overlay { background: linear-gradient(90deg, rgba(3,17,30,.93), rgba(3,17,30,.32)), linear-gradient(0deg, rgba(3,17,30,.96), transparent 70%); }
  .case-hero::before { right: 20px; opacity: .55; }
  .case-hero::after { right: 20px; height: 19%; }
  .case-hero-copy { padding-top: calc(115px + var(--safe-top)); padding-bottom: 148px; }
  .case-back { margin-bottom: 42px; }
  .case-hero h1 { max-width: 13ch; font-size: clamp(2.45rem, 9.5vw, 4.2rem); line-height: 1.1; }
  .case-hero-copy > p:not(.eyebrow) { max-width: 35ch; margin-top: 20px; font-size: 16px; }
  .case-hero-stat { right: var(--pad); bottom: 31px; width: min(260px, 72vw); padding: 15px 0 0 16px; }
  .case-hero-stat strong { font-size: clamp(2.1rem, 9vw, 3rem); }

  .case-story { padding-top: 76px; padding-bottom: 76px; }
  .case-story::before { left: var(--pad); width: 48px; }
  .case-story-intro h2 { max-width: 100%; font-size: clamp(2.1rem, 8vw, 3.4rem); }
  .case-story-body { width: 100%; max-width: 100%; margin-top: 20px; font-size: clamp(1rem, 3.4vw, 1.15rem); line-height: 1.75; }

  .case-gallery { padding-top: 76px; padding-bottom: 76px; }
  .case-gallery-title { display: block; margin-bottom: 37px; }
  .case-gallery h2 { font-size: clamp(2.45rem, 10vw, 4rem); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item, .gallery-item:nth-child(5n + 1), .gallery-item:nth-child(5n + 4), .gallery-item:nth-child(5n + 5) { grid-column: span 1; height: 55vw; }
  .gallery-item:nth-child(5n + 1) { grid-column: span 2; height: 75vw; }
  .case-cta { padding-top: 77px; padding-bottom: 77px; }
  .case-cta h2 { font-size: clamp(2.25rem, 9vw, 3.75rem); }
}
