:root {
  --ink: #0b1c2c;
  --ink-soft: #173249;
  --paper: #f3f0e8;
  --paper-deep: #e8e2d5;
  --white: #fff;
  --copper: #b66d3b;
  --copper-dark: #8e4f29;
  --text: #152432;
  --muted: #61707d;
  --line: rgba(11, 28, 44, .16);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --image-radius: 18px;
  --container: min(1240px, calc(100% - 48px));
}

.logo-wall span img { max-width: 100%; max-height: 56px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter 200ms ease, opacity 200ms ease; }
.logo-wall span:hover img { filter: grayscale(0); opacity: 1; }

@media (max-width: 960px) {
  .primary-nav .language-switch { align-self: flex-start; padding: 5px 10px; font-size: 11px; }
}

/* Shared rounding for editorial images inside page content. */
.field-photo,
.detail-hero-media {
  border-radius: var(--image-radius);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--paper); font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand-name { font-family: 'Manrope', sans-serif; }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--ink); transform: translateY(-150%); transition: transform 180ms var(--ease-out); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #4ba8c4; outline-offset: 4px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.14); transition: background-color 220ms ease, box-shadow 220ms ease; }
.site-header.is-scrolled { background: rgba(11,28,44,.94); box-shadow: 0 12px 32px rgba(4,12,20,.16); backdrop-filter: blur(14px); }
.site-header.header-solid { background: var(--ink); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand-logo { display: block; width: clamp(205px, 18vw, 242px); height: auto; }
.footer-grid .brand { display: inline-flex; margin-bottom: 0; }
.primary-nav { display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 600; }
.primary-nav > a:not(.button) { position: relative; padding-block: 10px; }
.primary-nav > a:not(.button)::after { content: ''; position: absolute; inset: auto 0 5px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 200ms var(--ease-out); }
.primary-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item .nav-parent-link { padding-block: 10px; }
.nav-dropdown-toggle { display: none; width: 22px; height: 22px; padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.nav-dropdown-toggle span { display: block; font-size: 11px; transition: transform 180ms var(--ease-out); }
.nav-dropdown { position: absolute; z-index: 20; top: 100%; left: 0; padding-top: 10px; display: none; }
.nav-dropdown-inner { min-width: 250px; padding: 8px; display: flex; flex-direction: column; gap: 2px; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; box-shadow: 0 16px 40px rgba(4,12,20,.35); }
.nav-dropdown a { padding: 10px 12px; border-radius: 6px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.nav-dropdown a:hover { background: rgba(255,255,255,.1); }
.nav-dropdown-inner-wide { min-width: 280px; }
.nav-dropdown-product { display: flex; flex-direction: column; gap: 3px; white-space: normal; }
.nav-dropdown-product-name { font-size: 13px; font-weight: 700; }
.nav-dropdown-product-tag { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.55); }
@media (min-width: 1081px) and (hover: hover) and (pointer: fine) {
  .nav-item.has-dropdown:hover .nav-dropdown, .nav-item.has-dropdown:focus-within .nav-dropdown { display: flex; }
}
.primary-nav .language-switch { display: inline-flex; align-items: center; gap: 5px; border: 1px solid currentColor; border-radius: 999px; padding: 5px 10px; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.primary-nav .language-switch .flag-icon { font-size: 12px; line-height: 1; }
.primary-nav .language-switch::after { display: none; }
.nav-catalog { color: #efc7a8; font-size: 12px; }
.primary-nav .button-small { min-height: 38px; padding-inline: 16px; font-size: 12px; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; background: transparent; color: inherit; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 6px auto; background: currentColor; transition: transform 200ms var(--ease-out); }

.button { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--ink); border-radius: 10px; color: var(--white); background: var(--ink); font: 700 16px/1 'DM Sans', sans-serif; cursor: pointer; appearance: none; transition: transform 180ms var(--ease-out), background-color 180ms ease, color 180ms ease; }
.button-small { min-height: 44px; padding-inline: 18px; color: var(--ink); border-color: var(--white); background: var(--white); }
.button-light { color: var(--ink); border-color: var(--white); background: var(--white); }
.button:active { transform: scale(.97); }
.text-link, .card-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.text-link-light { color: var(--white); }

.hero { position: relative; min-height: 820px; display: flex; align-items: end; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background: url('../img/arsivist-hero-v2.webp') center / cover no-repeat; transform: scale(1.01); }
.hero-shade { background: linear-gradient(90deg, rgba(5,18,30,.9) 0%, rgba(5,18,30,.72) 36%, rgba(5,18,30,.18) 64%, rgba(5,18,30,.05) 100%), linear-gradient(0deg, rgba(5,18,30,.62), transparent 46%); }
.hero-content { position: relative; z-index: 2; padding: 190px 0 64px; }
.hero-copy { max-width: 780px; }
.eyebrow { display: inline-block; margin-bottom: 24px; color: var(--copper-dark); font-size: 12px; line-height: 1; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #efc7a8; }
.hero h1 { max-width: 850px; margin-bottom: 28px; font-size: clamp(48px, 6.2vw, 92px); line-height: .98; letter-spacing: -.055em; }
.hero h1 em { color: #efc7a8; font-family: Georgia, serif; font-weight: 400; }
.hero-copy > p { max-width: 590px; margin-bottom: 36px; color: rgba(255,255,255,.78); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-index { margin-top: 92px; padding-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 720px; border-top: 1px solid rgba(255,255,255,.24); }
.hero-index div { display: flex; gap: 12px; align-items: baseline; }
.hero-index strong { color: #efc7a8; font: 700 28px/1 'Manrope', sans-serif; }.hero-index span { color: rgba(255,255,255,.7); font-size: 13px; }

.hero-slider { position: relative; min-height: 820px; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-slide { position: absolute; inset: 0; visibility: hidden; transform: translate3d(100%,0,0); will-change: transform; }
.hero-slide.is-active, .hero-slide.is-neighbor { visibility: visible; }
.hero-slide.is-active { transform: translate3d(0,0,0); }
.hero-slide.is-animating { transition: transform 460ms var(--ease-in-out); }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide .hero-content { min-height: 820px; display: flex; align-items: center; padding: 150px 0 120px; }
.hero-slider h1, .hero-slider h2 { max-width: 900px; margin-bottom: 28px; font-size: clamp(48px, 6.2vw, 92px); line-height: .98; letter-spacing: -.055em; }
.hero-slider h1 em, .hero-slider h2 em { color: #efc7a8; font-family: Georgia, serif; font-weight: 400; }
.hero-slider .hero-copy { opacity: 0; transform: translateY(12px); transition: opacity 380ms var(--ease-out) 120ms, transform 380ms var(--ease-out) 120ms; }
.hero-copy .check-list { margin-bottom: 30px; border-top-color: rgba(255,255,255,.22); }
.hero-copy .check-list li { border-bottom-color: rgba(255,255,255,.22); }
.hero-copy .check-list li::before { border-color: #efc7a8; }
.hero-slide.is-active .hero-copy, .hero-slide.is-neighbor .hero-copy { opacity: 1; transform: translateY(0); }
.slider-ui { position: absolute; z-index: 5; inset: 0; width: 100%; margin: 0; pointer-events: none; }
.slider-progress { position: absolute; bottom: 34px; left: 50%; display: flex; gap: 12px; transform: translateX(-50%); pointer-events: auto; }
.slider-progress button { width: 44px; height: 44px; padding: 0; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.slider-progress button span { width: 9px; height: 9px; display: block; border: 1px solid rgba(255,255,255,.82); border-radius: 50%; background: transparent; transition: transform 180ms var(--ease-out), background-color 180ms ease; }
.slider-progress button.is-active span, .slider-progress button[aria-current="true"] span { background: #efc7a8; border-color: #efc7a8; transform: scale(1.25); }
.slider-progress button span::after { content: none; }
.slider-arrows { position: absolute; top: 50%; right: 24px; left: 24px; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; }
.slider-arrows button { width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--white); background: rgba(11,28,44,.42); backdrop-filter: blur(8px); font-size: 22px; cursor: pointer; pointer-events: auto; transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out); }
.slider-arrows button:hover { color: var(--ink); background: var(--white); transform: scale(1.04); }
.slider-arrows button:active { transform: scale(.96); }
.hero-slider { touch-action: pan-y; cursor: grab; user-select: none; }
.hero-slider.is-dragging { cursor: grabbing; }
.hero-slider.is-dragging .hero-slide { transition: none; }
.hero-references { position: absolute; z-index: 3; right: 24px; bottom: 90px; left: 24px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; max-width: 480px; margin-left: auto; pointer-events: none; }
.hero-references span { padding: 6px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(11,28,44,.45); backdrop-filter: blur(6px); color: rgba(255,255,255,.85); font-size: 11px; font-weight: 600; white-space: nowrap; }
@media (max-width: 960px) { .hero-references { display: none; } }
.home-facts { color: var(--white); background: var(--ink-soft); border-top: 1px solid rgba(255,255,255,.12); padding: 40px 0; }
.home-facts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.home-facts-grid > div { padding: 18px 22px; display: flex; flex-direction: row; align-items: center; gap: 16px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--image-radius); background: rgba(255,255,255,.04); transition: transform 240ms var(--ease-out), background-color 240ms ease, border-color 240ms ease; }
.home-facts-grid > div:hover { transform: translateY(-5px); background: rgba(255,255,255,.075); border-color: rgba(239,199,168,.45); }
.home-facts-icon { flex: none; width: 26px; height: 26px; color: #efc7a8; }
.home-facts-icon svg { display: block; width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.home-facts-text { display: flex; flex-direction: column; gap: 2px; }
.home-facts strong { color: #efc7a8; font: 700 26px/1 'Manrope',sans-serif; letter-spacing: -.02em; }
.home-facts span { color: rgba(255,255,255,.62); font-size: 13.5px; line-height: 1.35; }
.field-story { background: #faf9f5; border-block: 1px solid var(--line); }.field-story-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 7vw; align-items: center; }.field-photo { min-height: 620px; margin: 0; overflow: hidden; }.field-photo img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }.field-copy h2 { margin-bottom: 24px; font-size: clamp(38px,4.3vw,62px); line-height: 1.08; letter-spacing: -.045em; }.field-copy .lead { color: var(--ink); font: 600 23px/1.45 'Manrope',sans-serif; }.field-copy > p:not(.lead) { color: var(--muted); font-size: 17px; }.check-list { margin: 28px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }.check-list li { position: relative; padding: 13px 0 13px 28px; border-bottom: 1px solid var(--line); font-weight: 600; }.check-list li::before { content: ''; position: absolute; top: 21px; left: 2px; width: 9px; height: 5px; border-bottom: 2px solid var(--copper-dark); border-left: 2px solid var(--copper-dark); transform: rotate(-45deg); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 40px; border-top-color: rgba(255,255,255,.18); }
.feature-list li { border-bottom-color: rgba(255,255,255,.18); color: rgba(255,255,255,.85); }
.feature-list li::before { border-color: #efc7a8; }
@media (max-width: 760px) { .feature-list { grid-template-columns: 1fr; } }
.glimpse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.glimpse-grid figure { position: relative; margin: 0; min-height: 420px; border-radius: var(--image-radius); overflow: hidden; }
.glimpse-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease-out); }
.glimpse-grid figcaption { position: absolute; inset: auto 0 0; padding: 20px 22px; color: var(--white); font: 700 16px/1.3 'Manrope', sans-serif; background: linear-gradient(0deg, rgba(11,28,44,.78), rgba(11,28,44,0) 70%); }
@media (hover: hover) and (pointer: fine) { .glimpse-grid figure:hover img { transform: scale(1.035); } }
@media (max-width: 760px) { .glimpse-grid { grid-template-columns: 1fr; } .glimpse-grid figure { min-height: 320px; } }

.sector-detail { background: var(--paper-deep); }.sector-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.sector-grid a { position: relative; min-height: 240px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color 200ms ease, background-color 200ms ease; }.sector-grid a:hover { color: var(--white); background: var(--ink); }.sector-grid span { font: 700 25px/1.2 'Manrope',sans-serif; }.sector-grid p { max-width: 470px; margin: auto 0 0; color: var(--muted); }.sector-grid a:hover p { color: rgba(255,255,255,.65); }.sector-grid strong { position: absolute; top: 34px; right: 34px; color: var(--copper-dark); font-size: 12px; }

.section { padding-block: 120px; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.intro h2, .section-heading h2, .process h2, .footer-lead h2 { margin-bottom: 0; font-size: clamp(38px, 4.5vw, 66px); line-height: 1.08; letter-spacing: -.045em; }
.intro-copy { max-width: 620px; }.intro-copy .lead { color: var(--ink); font: 600 clamp(22px, 2.2vw, 30px)/1.35 'Manrope', sans-serif; }.intro-copy p:not(.lead) { color: var(--muted); font-size: 18px; }

.solutions { background: #faf9f5; border-block: 1px solid var(--line); }
.section-heading { margin-bottom: 64px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: end; }
.section-heading p { max-width: 390px; margin-bottom: 8px; color: var(--muted); font-size: 18px; }
.solution-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.solution-card { position: relative; min-height: 390px; padding: 42px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #faf9f5; transition: background-color 220ms ease, color 220ms ease; }
.solution-card:hover { color: var(--white); background: var(--ink-soft); }
.solution-featured { color: var(--white); background: var(--ink); }
.card-number { position: absolute; right: 36px; top: 36px; font-size: 12px; letter-spacing: .14em; opacity: .55; }
.card-icon { width: 56px; margin-bottom: auto; color: var(--copper); }
.card-icon svg { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.solution-card h3 { margin-bottom: 14px; font-size: 29px; letter-spacing: -.035em; }.solution-card p { max-width: 500px; margin-bottom: 28px; color: var(--muted); }.solution-card:hover p, .solution-featured p { color: rgba(255,255,255,.7); }.card-link { width: fit-content; font-size: 14px; }

.archive-journey { background: #faf9f5; border-block: 1px solid var(--line); }
.journey-gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.journey-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--image-radius); background: var(--paper); }
.journey-card-large { grid-row: span 2; grid-template-columns: 1fr; }
.journey-card figure { min-height: 260px; margin: 0; overflow: hidden; }
.journey-card-large figure { min-height: 470px; }
.journey-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.journey-card > div { padding: clamp(26px, 3.2vw, 46px); }
.journey-index { display: block; margin-bottom: 18px; color: var(--copper-dark); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.journey-card h3 { margin-bottom: 14px; font-size: clamp(25px, 2.4vw, 36px); line-height: 1.15; letter-spacing: -.035em; }
.journey-card p { margin: 0; color: var(--muted); }
.journey-card ul { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.journey-card li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
@media (hover: hover) and (pointer: fine) { .journey-card:hover img { transform: scale(1.025); } }
.assurance { color: var(--white); background: var(--ink); }
.assurance-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(64px, 10vw, 150px); align-items: start; }
.assurance-intro { position: sticky; top: 130px; }
.assurance-intro h2 { margin-bottom: 24px; font-size: clamp(44px, 5vw, 72px); line-height: 1.02; letter-spacing: -.05em; }
.assurance-intro p { max-width: 540px; margin-bottom: 34px; color: rgba(255,255,255,.64); font-size: 18px; }
.assurance-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.assurance-list li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 38px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.assurance-list li > span { color: #efc7a8; font-size: 13px; font-weight: 700; letter-spacing: .1em; }
.assurance-list h3 { margin-bottom: 9px; font-size: 28px; }
.assurance-list p { max-width: 620px; margin: 0; color: rgba(255,255,255,.62); }

.process { color: var(--white); background: var(--ink); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.process-title { position: sticky; top: 140px; align-self: start; }.process-title p { max-width: 430px; margin-top: 28px; color: rgba(255,255,255,.65); font-size: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.process-list li { padding: 34px 0; display: grid; grid-template-columns: 64px 1fr; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.18); }.process-list li > span { color: #efc7a8; font-weight: 700; }.process-list h3 { margin-bottom: 8px; font-size: 24px; }.process-list p { max-width: 570px; margin-bottom: 0; color: rgba(255,255,255,.62); }

.reference-facts { color: var(--white); background: var(--ink-soft); border-top: 1px solid rgba(255,255,255,.12); }
.reference-facts-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.reference-facts-grid div { min-height: 130px; padding: 26px 24px; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid rgba(255,255,255,.13); }
.reference-facts-grid div:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.reference-facts strong { color: #efc7a8; font: 700 30px/1 'Manrope',sans-serif; }
.reference-facts span { color: rgba(255,255,255,.6); font-size: 14px; }
@media (max-width: 760px) { .reference-facts-grid { grid-template-columns: repeat(2,1fr); } }

.reference-logos .logo-group { margin-bottom: 56px; }
.reference-logos .logo-group:last-child { margin-bottom: 0; }
.reference-logos h2 { margin-bottom: 22px; font-size: 22px; letter-spacing: -.02em; }
.logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.logo-card { min-height: 130px; padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: var(--white); border: 1px solid var(--line); }
.logo-card img { max-width: 100%; max-height: 48px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter 200ms ease, opacity 200ms ease; }
.logo-card:hover img { filter: grayscale(0); opacity: 1; }
.logo-card-name { color: var(--muted); font-size: 12.5px; line-height: 1.35; text-align: center; }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--image-radius); background: #faf9f5; }
.partner-logo { min-height: 64px; margin-bottom: 22px; display: flex; align-items: center; }
.partner-logo img { max-width: 220px; max-height: 64px; object-fit: contain; }
.partner-card h3 { margin: 6px 0 12px; font-size: 24px; }
.partner-card p { margin: 0; color: var(--muted); }
@media (max-width: 960px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .partner-grid { grid-template-columns: 1fr; } }

.trust { background: var(--paper); }
.trust-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }.trust-top p { max-width: 570px; font: 600 clamp(22px, 2.4vw, 32px)/1.35 'Manrope', sans-serif; }
.logo-wall { margin-top: 68px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.logo-wall span { min-height: 120px; padding: 24px; display: grid; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #51606c; font: 700 16px/1.3 'Manrope', sans-serif; text-align: center; }
.trust-link { margin-top: 38px; }

.site-footer { padding-top: 100px; color: var(--white); background: #071522; }
.footer-lead { padding-bottom: 80px; display: flex; justify-content: space-between; gap: 48px; align-items: end; border-bottom: 1px solid rgba(255,255,255,.16); }.footer-lead h2 { max-width: 800px; }.footer-grid { padding-block: 70px; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 64px; }.brand-light { color: var(--white); }.footer-brand p { max-width: 340px; margin-top: 20px; color: rgba(255,255,255,.55); }.footer-grid h3 { margin-bottom: 20px; color: #efc7a8; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }.footer-grid a, .footer-grid address p { display: block; margin-bottom: 10px; color: rgba(255,255,255,.68); font-style: normal; transition: color 160ms ease; }.footer-grid a:hover { color: var(--white); }.footer-bottom { padding-block: 24px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.45); font-size: 13px; }

/* Inner pages */
.page-hero { padding: 180px 0 110px; color: var(--white); background: var(--ink); }
.breadcrumbs { margin-bottom: 72px; display: flex; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.48); font-size: 13px; }
.breadcrumbs a:hover { color: var(--white); }
.page-hero h1, .contact-intro h1 { max-width: 1040px; margin-bottom: 30px; font-size: clamp(50px, 6.8vw, 96px); line-height: .98; letter-spacing: -.055em; }
.page-hero h1 em, .contact-intro h1 em { color: #efc7a8; font-family: Georgia, serif; font-weight: 400; }
.page-hero > .container > p, .page-hero-grid > div > p { max-width: 690px; margin-bottom: 36px; color: rgba(255,255,255,.7); font-size: 21px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 500px); gap: clamp(48px, 7vw, 112px); align-items: end; }
.detail-hero-media { position: relative; min-height: 430px; margin: 0; overflow: hidden; background: var(--ink-soft); }
.detail-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(5,18,29,.9) 100%); pointer-events: none; }
.detail-hero-media img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.detail-hero-media .hero-metric { position: absolute; z-index: 1; right: 28px; bottom: 24px; left: 28px; margin: 0; }
.hero-metric { padding: 30px 0 8px; border-top: 1px solid rgba(255,255,255,.25); }
.hero-metric strong { display: block; color: #efc7a8; font: 700 clamp(48px,6vw,78px)/1 'Manrope',sans-serif; letter-spacing: -.05em; }
.hero-metric span { color: rgba(255,255,255,.58); }
.detail-two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; align-items: start; }
.detail-two-col h2 { margin: 0; font-size: clamp(36px,4vw,58px); line-height: 1.12; letter-spacing: -.045em; }
.detail-two-col .lead, .story-copy .lead { color: var(--ink); font: 500 clamp(21px,2.1vw,29px)/1.5 'Manrope',sans-serif; }
.detail-two-col p:not(.lead) { margin-top: 18px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.deliverables { background: #faf9f5; border-block: 1px solid var(--line); }
.section-heading.compact { margin-bottom: 46px; }
.deliverable-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.deliverable-grid li { min-height: 150px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font: 600 18px/1.4 'Manrope',sans-serif; }
.deliverable-grid li span { color: var(--copper-dark); font: 700 11px/1 'DM Sans',sans-serif; letter-spacing: .14em; }
.other-projects-grid { grid-template-columns: repeat(2, 1fr); }
.other-projects-grid li { min-height: 190px; gap: 6px; }
.other-projects-grid li strong { display: block; font-size: 18px; }
.other-projects-grid li p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 400; line-height: 1.55; }
.case-study .field-story-grid.reverse .field-photo { order: 2; }
.case-study .field-story-grid.reverse .field-copy { order: 1; }
@media (max-width: 760px) { .other-projects-grid { grid-template-columns: 1fr; } }
.detail-process { color: var(--white); background: var(--ink-soft); }
.detail-process .section-heading p { color: rgba(255,255,255,.6); }
.detail-steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); list-style: none; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.detail-steps li { min-height: 300px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.detail-steps li > span { color: #efc7a8; font-weight: 700; }.detail-steps h3 { font-size: 23px; }.detail-steps p { margin: 0; color: rgba(255,255,255,.6); }
.audience-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.audience-list li { padding: 17px 0; border-bottom: 1px solid var(--line); font: 600 18px/1.4 'Manrope',sans-serif; }

.detail-benefits { background: var(--ink); color: var(--white); }
.detail-benefits .eyebrow-light { color: #efc7a8; }
.detail-benefits .section-heading h2 { color: var(--white); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-grid article { padding: 26px 22px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--image-radius); background: rgba(255,255,255,.04); }
.benefit-grid h3 { margin-bottom: 10px; font-size: 19px; }
.benefit-grid p { margin: 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.55; }
@media (max-width: 960px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .benefit-grid { grid-template-columns: 1fr; } }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--image-radius); background: #faf9f5; transition: background-color 200ms ease, color 200ms ease; }
.related-card:hover { color: var(--white); background: var(--ink-soft); }
.related-card h3 { margin: 10px 0 10px; font-size: 22px; }
.related-card p { flex: 1; margin: 0 0 18px; color: var(--muted); font-size: 15px; }
.related-card:hover p { color: rgba(255,255,255,.7); }
.related-card .text-link { font-size: 14px; }
@media (max-width: 960px) { .related-grid { grid-template-columns: 1fr; } }

.detail-faq { background: #faf9f5; border-block: 1px solid var(--line); }
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary { position: relative; padding-right: 32px; cursor: pointer; list-style: none; font: 700 18px/1.4 'Manrope',sans-serif; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: -2px; font-size: 22px; font-weight: 400; color: var(--copper-dark); transition: transform 200ms var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.page-cta { padding: 110px 0; color: var(--white); background: var(--copper-dark); }
.page-cta h2 { max-width: 900px; margin-bottom: 38px; font-size: clamp(38px,4.5vw,66px); line-height: 1.08; letter-spacing: -.045em; }
.directory-row { padding: 55px 0; display: grid; grid-template-columns: 70px 1fr 70px; gap: 36px; align-items: start; border-top: 1px solid var(--line); }
.directory-row:last-child { border-bottom: 1px solid var(--line); }.directory-number { color: var(--copper-dark); font-weight: 700; }
.directory-row h2 { margin-bottom: 14px; font-size: clamp(34px,4vw,55px); letter-spacing: -.045em; }.directory-row p { max-width: 680px; margin: 0; color: var(--muted); font-size: 18px; }
.circle-link { width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 24px; transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out); }.circle-link:hover { color: var(--white); background: var(--ink); transform: translate(3px,-3px); }
.phase-row { padding: 52px 0; display: grid; grid-template-columns: 70px 1.2fr .8fr; gap: 48px; border-top: 1px solid var(--line); }.phase-row:last-child { border-bottom: 1px solid var(--line); }.phase-row > span { color: var(--copper-dark); font-weight: 700; }.phase-row h2 { margin-bottom: 10px; font-size: 36px; letter-spacing: -.035em; }.phase-row p { max-width: 590px; color: var(--muted); }.phase-row ul { margin: 0; padding: 0; list-style: none; }.phase-row li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.standards { background: #faf9f5; }.standards-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.standards-grid div { padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.standards-grid strong { color: var(--copper-dark); font-size: 12px; }.standards-grid h3 { margin: 20px 0 8px; }.standards-grid p { margin: 0; color: var(--muted); }
.reference-group { padding: 60px 0; display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; border-top: 1px solid var(--line); }.reference-group:last-child { border-bottom: 1px solid var(--line); }.reference-group h2 { font-size: clamp(32px,3.6vw,50px); line-height: 1.12; letter-spacing: -.04em; }.reference-list { display: grid; grid-template-columns: 1fr 1fr; }.reference-list span { min-height: 94px; padding: 22px; display: grid; align-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-weight: 600; }.reference-list span:nth-child(-n+2) { border-top: 1px solid var(--line); }.reference-list span:nth-child(odd) { border-left: 1px solid var(--line); }.case-note { background: #faf9f5; }
.story-copy p:not(.lead) { color: var(--muted); font-size: 18px; }.timeline { padding-block: 70px; color: var(--white); background: var(--ink-soft); }.timeline-track { display: grid; grid-template-columns: repeat(4,1fr); }.timeline-track div { min-height: 140px; padding: 24px; border-left: 1px solid rgba(255,255,255,.2); }.timeline-track div:last-child { border-right: 1px solid rgba(255,255,255,.2); }.timeline-track strong { display: block; margin-bottom: 28px; color: #efc7a8; font: 700 28px/1 'Manrope',sans-serif; }.timeline-track span { color: rgba(255,255,255,.65); }
.timeline-track-3 { grid-template-columns: repeat(3,1fr); }
.timeline-track-3 span { display: block; font-size: 14px; line-height: 1.5; }
.timeline-track-3 span:first-of-type { margin-bottom: 8px; color: var(--white); font-weight: 600; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.value-grid article { min-height: 220px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.value-grid p { color: var(--muted); }.policies { color: var(--white); background: var(--ink-soft); }.policies article { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.18); }.policies article p { color: rgba(255,255,255,.62); }
.contact-page { min-height: 100vh; padding: 170px 0 100px; color: var(--white); background: var(--ink); }.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; }.contact-intro { position: sticky; top: 130px; align-self: start; }.contact-intro > p { max-width: 550px; color: rgba(255,255,255,.65); font-size: 18px; }.contact-details { margin-top: 54px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }.contact-details a { display: flex; align-items: center; gap: 14px; color: #efc7a8; font: 600 20px/1.4 'Manrope',sans-serif; }.contact-details address { display: flex; align-items: flex-start; gap: 14px; margin-top: 10px; color: rgba(255,255,255,.55); font-style: normal; }
.contact-icon { flex: none; width: 22px; height: 22px; color: #efc7a8; }
.contact-icon svg { display: block; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-details address .contact-icon { margin-top: 3px; }
.contact-logo { height: 24px; width: auto; margin-bottom: 32px; }
.contact-map { margin-top: 72px; overflow: hidden; border-radius: var(--image-radius); border: 1px solid rgba(255,255,255,.14); }
.contact-map iframe { display: block; filter: grayscale(.15) contrast(1.05); }
.contact-form { padding: 48px; color: var(--text); background: var(--paper); border-radius: var(--image-radius); }.form-heading h2 { font-size: 38px; }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.field { margin-bottom: 22px; }.field label { display: block; margin-bottom: 7px; font-weight: 700; }.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; color: var(--text); background: #fff; font: inherit; }.field textarea { resize: vertical; }.field small { display: block; margin-top: 6px; color: var(--muted); }.form-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }

body.modal-open { overflow: hidden; }
.modal-overlay { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(11,28,44,.6); backdrop-filter: blur(0px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 460ms cubic-bezier(.33,1,.68,1), backdrop-filter 460ms cubic-bezier(.33,1,.68,1), visibility 0s linear 460ms; }
.modal-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; backdrop-filter: blur(3px); transition: opacity 460ms cubic-bezier(.33,1,.68,1), backdrop-filter 460ms cubic-bezier(.33,1,.68,1); }
.modal-dialog { position: relative; display: flex; flex-direction: column; width: min(600px, 100%); max-height: min(720px, calc(100vh - 48px)); overflow: hidden; border-radius: 22px; color: var(--text); background: var(--paper); box-shadow: 0 40px 90px rgba(5,18,29,.4); transform: scale(.88) translateY(32px); opacity: 0; transition: transform 540ms cubic-bezier(.22,.61,.36,1), opacity 460ms cubic-bezier(.33,1,.68,1); }
.modal-overlay.is-open .modal-dialog { transform: scale(1) translateY(0); opacity: 1; }
.modal-header { flex: none; padding: 32px 64px 20px 34px; }
.modal-header .form-heading h2 { font-size: 26px; line-height: 1.3; }
.modal-header .eyebrow { font-size: 13px; }
.modal-form { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; }
.modal-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 4px 34px 4px; }
.modal-body .field-row { gap: 18px; }
.modal-body .field { margin-bottom: 18px; }
.modal-body .field input, .modal-body .field select, .modal-body .field textarea { min-height: 48px; padding: 11px 14px; font-size: 16px; }
.modal-footer { flex: none; padding: 20px 34px 30px; border-top: 1px solid var(--line); background: var(--paper); }
.modal-footer .button { width: 100%; }
.modal-footer .form-note { margin-top: 12px; }
.modal-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--white); font-size: 15px; line-height: 1; cursor: pointer; transition: background-color 180ms ease, transform 180ms var(--ease-out); }
.modal-close:hover { background: var(--paper-deep); }
.modal-close:active { transform: scale(.92); }
@media (max-width: 600px) { .modal-header { padding: 24px 56px 16px 22px; } .modal-body { padding: 4px 22px; } .modal-footer { padding: 16px 22px 22px; } }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }.button-light:hover, .button-small:hover { color: var(--white); background: var(--copper); border-color: var(--copper); }
  .card-link span, .text-link span { transition: transform 180ms var(--ease-out); }.card-link:hover span, .text-link:hover span { transform: translate(3px,-3px); }
}

@media (max-width: 1080px) {
  .nav-toggle { display: block; position: relative; z-index: 3; cursor: pointer; }
  .nav-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; padding: 116px 24px 32px; display: flex; flex-direction: column; align-items: stretch; gap: 6px; color: var(--white); background: var(--ink); transform: translateX(100%); transition: transform 260ms var(--ease-out); overflow-y: auto; }.primary-nav.is-open { transform: translateX(0); }.primary-nav a { padding: 14px 8px; font-size: 20px; }.primary-nav .button { margin-top: 20px; color: var(--ink); }
  .nav-item { flex-direction: column; align-items: stretch; }
  .nav-item .nav-parent-link { flex: 1; }
  .nav-dropdown-toggle { display: flex; align-items: center; justify-content: center; position: absolute; top: 2px; right: 0; width: 44px; height: 44px; }
  .nav-dropdown-toggle span { font-size: 18px; }
  .nav-item.is-open .nav-dropdown-toggle span { transform: rotate(180deg); }
  .nav-dropdown { position: static; display: none; padding: 0; }
  .nav-item.is-open .nav-dropdown { display: flex; }
  .nav-dropdown-inner { min-width: 0; margin: 4px 0 8px 8px; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .nav-dropdown a { padding: 10px 8px; font-size: 16px; color: rgba(255,255,255,.75); }
  .hero { min-height: 760px; }.hero-index { grid-template-columns: 1fr; gap: 10px; max-width: 320px; }
  .hero-slider, .hero-slide .hero-content { min-height: 760px; }.hero-slider .hero-copy { max-width: 720px; }.home-facts-grid { grid-template-columns: 1fr 1fr; }
  .journey-gallery { grid-template-columns: 1fr; }.journey-card-large { grid-row: auto; grid-template-columns: .9fr 1.1fr; }.journey-card-large figure { min-height: 330px; }.assurance-grid { grid-template-columns: 1fr; gap: 54px; }.assurance-intro { position: static; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 32px, 1240px); }
  .header-inner { min-height: 72px; }.brand-logo { width: 190px; }
  .hero { min-height: 780px; }.hero-media { background-position: 62% center; }.hero-shade { background: linear-gradient(90deg, rgba(5,18,30,.97), rgba(5,18,30,.72)), linear-gradient(0deg, rgba(5,18,30,.85), transparent); }.hero-content { padding: 144px 0 42px; }.hero h1 { font-size: clamp(43px, 13vw, 66px); }.hero-copy > p { font-size: 18px; }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }.hero-actions .text-link { width: fit-content; }.hero-index { margin-top: 56px; padding-top: 20px; }
  .hero-slider, .hero-slide .hero-content { min-height: 790px; }.hero-slide > img { object-position: 68% center; }.hero-slide .hero-shade { background: linear-gradient(90deg, rgba(5,18,30,.96), rgba(5,18,30,.58)), linear-gradient(0deg, rgba(5,18,30,.8), transparent); }.hero-slide .hero-content { align-items: flex-start; padding: 138px 0 120px; }.hero-slider h1, .hero-slider h2 { font-size: clamp(42px,12.2vw,58px); }.hero-slider .hero-copy > p { font-size: 17px; }.slider-progress { bottom: 22px; }.slider-progress button { width: 40px; height: 40px; }.slider-arrows { right: 8px; left: 8px; }.slider-arrows button { width: 44px; height: 44px; }.home-facts-grid { grid-template-columns: 1fr 1fr; }.home-facts-grid > div { padding: 16px 18px; }.field-story-grid { grid-template-columns: 1fr; gap: 42px; }.field-photo, .field-photo img { min-height: 360px; }.field-copy h2 { font-size: 40px; }.sector-grid { grid-template-columns: 1fr; }.sector-grid a { min-height: 210px; padding: 28px; }
  .section { padding-block: 82px; }.intro-grid, .section-heading, .process-grid, .trust-top { grid-template-columns: 1fr; gap: 36px; }.intro h2, .section-heading h2, .process h2, .footer-lead h2 { font-size: 40px; }.section-heading { margin-bottom: 42px; }.solution-list { grid-template-columns: 1fr; }.solution-card { min-height: 340px; padding: 30px; }.process-title { position: static; }.logo-wall { grid-template-columns: 1fr 1fr; }.logo-wall span { min-height: 96px; padding: 16px; }
  .journey-card, .journey-card-large { grid-template-columns: 1fr; }.journey-card figure, .journey-card-large figure { min-height: 280px; }.journey-card > div { padding: 28px 24px 32px; }.assurance-intro h2 { font-size: 42px; }.assurance-list li { grid-template-columns: 38px 1fr; gap: 14px; padding: 30px 0; }
  .site-footer { padding-top: 76px; }.footer-lead { align-items: stretch; flex-direction: column; padding-bottom: 60px; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 28px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
  .page-hero { padding: 132px 0 76px; }.breadcrumbs { margin-bottom: 50px; }.page-hero h1, .contact-intro h1 { font-size: 46px; }.page-hero > .container > p, .page-hero-grid > div > p { font-size: 18px; }.page-hero-grid, .detail-two-col, .contact-grid { grid-template-columns: 1fr; gap: 44px; }.detail-hero-media, .detail-hero-media img { min-height: 360px; }.hero-metric { max-width: 280px; }.deliverable-grid { grid-template-columns: 1fr 1fr; }.detail-steps { grid-template-columns: 1fr; }.detail-steps li { min-height: 230px; }.directory-row { grid-template-columns: 42px 1fr; gap: 20px; }.directory-row .circle-link { grid-column: 2; }.phase-row { grid-template-columns: 42px 1fr; gap: 20px; }.phase-row ul { grid-column: 2; }.standards-grid, .reference-list { grid-template-columns: 1fr; }.reference-group { grid-template-columns: 1fr; gap: 24px; }.reference-list span:nth-child(2) { border-top: 0; }.reference-list span { border-left: 1px solid var(--line); }.timeline-track, .value-grid { grid-template-columns: 1fr 1fr; }.timeline-track div:nth-child(3), .timeline-track div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); }.contact-page { padding: 126px 0 76px; }.contact-intro { position: static; }.contact-form { padding: 28px 20px; }.field-row { grid-template-columns: 1fr; gap: 0; }
}

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

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; font-size: 14.5px; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status[data-state="success"] { color: #1d6b45; }
.form-status[data-state="error"] { color: #a12626; }
.form-status[data-state="pending"] { color: var(--muted); }

.captcha-field { margin: 4px 0 18px; min-height: 78px; }

/* Mobil menü düzenlemesi */
@media (max-width: 1080px) {
  .brand { position: relative; z-index: 3; }
  .primary-nav { gap: 0; padding: 104px 24px 40px; }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav > a:not(.button):not(.language-switch):not(.nav-catalog), .nav-item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .primary-nav a { padding: 16px 4px; }
  .nav-dropdown-toggle { top: 4px; width: 48px; height: 48px; }
  .nav-dropdown-toggle span { display: none; }
  .nav-dropdown-toggle::before { content: ''; width: 9px; height: 9px; border: solid currentColor; border-width: 0 2px 2px 0; transform: translateY(-3px) rotate(45deg); transition: transform 180ms var(--ease-out); }
  .nav-item.is-open .nav-dropdown-toggle::before { transform: translateY(-1px) rotate(225deg); }
  .nav-dropdown-inner { margin: 0 0 12px 4px; padding: 0 0 0 14px; border-left: 2px solid rgba(255,255,255,.16); }
  .nav-dropdown a { padding: 11px 6px; font-size: 16px; }
  .nav-dropdown-product-name { font-size: 16px; }
  .nav-dropdown-product-tag { font-size: 12.5px; }
  .primary-nav .language-switch { margin: 22px 0 6px; padding: 8px 14px; font-size: 12px; }
  .primary-nav .nav-catalog { padding-block: 14px; }
  .primary-nav .button { margin-top: 14px; width: 100%; justify-content: center; }
}

/* Ürünlerimiz menüsü: iki sütun */
@media (min-width: 1081px) {
  .nav-dropdown-inner-wide { display: grid; grid-template-columns: repeat(2, minmax(280px, 1fr)); gap: 2px 8px; min-width: 600px; }
}
@media (min-width: 640px) and (max-width: 1080px) {
  .nav-dropdown-inner-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
}

/* Ürünlerimiz sayfası */
.product-directory + .product-directory { padding-top: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--image-radius); background: #faf9f5; transition: transform 200ms var(--ease-out), border-color 200ms ease; }
.product-card figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: #ece9df; }
.product-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--ease-out); }
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 24px 26px 26px; }
.product-card-tag { margin-bottom: 8px; color: var(--muted); font-size: 12.5px; font-weight: 600; letter-spacing: .02em; }
.product-card h3 { margin-bottom: 10px; font-size: 25px; letter-spacing: -.03em; }
.product-card p { margin-bottom: 22px; color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.product-card-link { margin-top: auto; font-size: 14px; font-weight: 700; }
@media (hover: hover) and (pointer: fine) {
  .product-card:hover { transform: translateY(-3px); border-color: var(--ink); }
  .product-card:hover figure img { transform: scale(1.04); }
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .product-grid { grid-template-columns: 1fr; } .product-card-body { padding: 22px; } }

/* Menüde yazılım ürünü rozeti */
.nav-dropdown-product-name { display: flex; align-items: center; gap: 8px; }
.nav-dropdown-badge { padding: 2px 7px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: rgba(255,255,255,.8); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; line-height: 1.4; }

.product-directory { scroll-margin-top: 90px; }

.products-hero { padding: 150px 0 72px; }
.products-hero h1 { font-size: clamp(38px, 4.6vw, 60px); margin-bottom: 20px; }
.products-hero .page-hero-grid > div > p { margin-bottom: 28px; font-size: 19px; }
.products-hero .detail-hero-media, .products-hero .detail-hero-media img { min-height: 320px; }
@media (max-width: 1080px) { .products-hero { padding: 120px 0 56px; } .products-hero h1 { font-size: 38px; } }
