:root {
  --ink: #07111e;
  --ink-soft: #102238;
  --ink-deep: #03080e;
  --steel: #2d6295;
  --paper: #f3f5f7;
  --mist: #e7ebef;
  --white: #fff;
  --muted: #526171;
  --line: #cbd2d9;
  --gutter: clamp(22px, 4.5vw, 72px);
  --max: 1450px;
  --header-height: 84px;
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
  --motion-quick: cubic-bezier(.2, .8, .2, 1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); background: var(--ink-deep); }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.55 var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open, body.lightbox-open { overflow: hidden; }
::selection { background: var(--steel); color: var(--white); }
:focus-visible { outline: 2px solid #6a9dcc; outline-offset: 4px; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, .button { border-radius: 0; }
[hidden] { display: none !important; }
.shell { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }
.section-space { padding-block: clamp(96px, 10vw, 160px); }
.display-title { margin: 0; font: 400 clamp(3.35rem, 6.3vw, 6rem)/.99 var(--serif); letter-spacing: -.038em; text-wrap: balance; }
.skip-link { position: fixed; z-index: 200; top: 10px; left: 10px; padding: 12px 16px; color: var(--ink); background: var(--white); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 12px 26px; border: 1px solid currentColor; font-size: .78rem; font-weight: 800; letter-spacing: .105em; text-transform: uppercase; line-height: 1.2; transition: background-color .2s var(--motion-quick), color .2s var(--motion-quick), border-color .2s var(--motion-quick); }
.button-light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button-light:hover { background: var(--mist); border-color: var(--mist); }
.button-outline { background: transparent; border-color: #82909f; color: var(--white); }
.button-outline:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.underlined-link { display: inline-flex; align-items: center; min-height: 44px; border-bottom: 1px solid currentColor; font-size: .84rem; font-weight: 700; letter-spacing: .025em; transition: opacity .2s var(--motion-quick); }
.underlined-link:hover { opacity: .7; }

/* Navigation */
.site-header { position: fixed; z-index: 80; top: 0; left: 0; right: 0; color: var(--white); border-bottom: 1px solid transparent; transition: background-color .22s var(--motion-quick), border-color .22s var(--motion-quick); }
.site-header.is-scrolled, body.menu-open .site-header { background: rgba(7,17,30,.98); border-bottom-color: rgba(255,255,255,.16); }
.header-inner { min-height: var(--header-height); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img { width: 158px; height: 68px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 2.4vw, 40px); }
.desktop-nav a, .site-footer nav a { position: relative; padding-block: 8px; font-size: .77rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav a::after, .site-footer nav a::after { content: ""; position: absolute; bottom: 3px; left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .22s var(--motion-ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .site-footer nav a:hover::after, .site-footer nav a:focus-visible::after { transform: scaleX(1); }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 22px; }
.language-switch { display: flex; align-items: center; gap: 7px; font-size: .73rem; font-weight: 800; letter-spacing: .06em; }
.language-switch span { opacity: .45; }
.language-switch button { padding: 8px 1px; border: 0; border-bottom: 1px solid transparent; background: none; color: var(--white); cursor: pointer; opacity: .54; }
.language-switch button[aria-pressed="true"] { border-color: currentColor; opacity: 1; }
.header-contact { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; padding: 0 17px; background: var(--white); color: var(--ink); font-size: .75rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; transition: background-color .2s var(--motion-quick); }
.header-contact:hover { background: var(--mist); }
.menu-toggle { display: none; position: relative; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; border: 1px solid rgba(255,255,255,.55); background: none; color: var(--white); cursor: pointer; }
.menu-toggle span { width: 20px; height: 1px; background: currentColor; transition: transform .2s var(--motion-quick), opacity .2s var(--motion-quick); }
.menu-open .menu-toggle span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; min-height: min(100svh, 970px); display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; color: var(--white); background: var(--ink-deep); }
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media { z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-media::after { content: ""; background: linear-gradient(180deg, rgba(3,8,14,.08) 15%, rgba(3,8,14,.12) 38%, rgba(3,8,14,.68) 78%, rgba(3,8,14,.96) 100%), linear-gradient(90deg, rgba(3,8,14,.6) 0%, rgba(3,8,14,.18) 55%, rgba(3,8,14,.05) 100%); }
.hero-inner { width: min(100%, var(--max)); display: grid; grid-template-columns: minmax(0, 790px) 1fr; align-items: end; gap: 40px; padding-top: calc(var(--header-height) + 100px); padding-bottom: clamp(64px, 8vh, 110px); }
.hero-copy { max-width: 790px; animation: hero-rise .55s var(--motion-ease) both; }
.hero h1 { max-width: 780px; margin: 0; font: 400 clamp(4.25rem, 8.1vw, 8rem)/.88 var(--serif); letter-spacing: -.04em; text-wrap: balance; }
.hero-copy > p { max-width: 490px; margin: 28px 0 0; color: #e0e7ee; font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 28px; margin-top: 32px; }
.hero-signature { justify-self: end; align-self: end; display: flex; flex-direction: column; min-width: 170px; gap: 6px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.5); color: #d8e3ed; font-size: .8rem; line-height: 1.3; }
.hero-signature span:first-child { color: var(--white); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
@keyframes hero-rise { from { opacity: .65; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Introduction */
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); gap: clamp(60px, 9vw, 150px); align-items: start; }
.intro-heading { max-width: 650px; }
.intro-heading > p { max-width: 460px; margin: 28px 0 0; color: var(--muted); font-size: 1.14rem; line-height: 1.65; }
.brand-panel { padding-top: 15px; }
.brand-panel-intro { max-width: 450px; margin: 0 0 44px; font: 400 clamp(1.75rem, 2.3vw, 2.6rem)/1.2 var(--serif); letter-spacing: -.025em; }
.brand-list { border-top: 1px solid var(--line); }
.brand-list a { min-height: 82px; display: flex; justify-content: space-between; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); font-size: clamp(1.7rem, 2.6vw, 2.7rem); line-height: 1; letter-spacing: -.025em; transition: color .22s var(--motion-quick); }
.brand-list a span:first-child, .brand-arrow { transition: transform .3s var(--motion-ease); }
.brand-list a:hover, .brand-list a:focus-visible { color: var(--steel); }
.brand-arrow { color: var(--steel); font: 400 1.35rem/1 var(--sans); }
@media (hover: hover) and (pointer: fine) {
  .brand-list a:hover span:first-child, .brand-list a:focus-visible span:first-child { transform: translateX(12px); }
  .brand-list a:hover .brand-arrow, .brand-list a:focus-visible .brand-arrow { transform: translateX(8px); }
}

/* Product feature */
.feature { color: var(--white); background: var(--ink); }
.feature-grid { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 700px; padding-block: 0; }
.feature-photo { position: relative; min-height: 700px; margin: 0; background: #151a1e; overflow: hidden; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.feature-photo figcaption { position: absolute; z-index: 2; right: 18px; bottom: 18px; padding: 9px 12px; background: rgba(7,17,30,.88); color: #e4eaf0; font-size: .73rem; letter-spacing: .05em; }
@media (min-width: 801px) {
  html.motion-enabled .feature-photo.motion-armed::after { content: ""; position: absolute; z-index: 1; inset: 0; background: var(--ink); pointer-events: none; transform-origin: right; transform: scaleX(1); }
  html.motion-enabled .feature-photo.motion-revealed::after { transform: scaleX(0); transition: transform 1.05s var(--motion-ease); }
  html.motion-enabled .feature-photo.motion-armed figcaption { opacity: 0; }
  html.motion-enabled .feature-photo.motion-revealed figcaption { opacity: 1; transition: opacity .28s var(--motion-quick) .62s; }
}
.feature-content { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(54px, 6vw, 96px); background: var(--ink-soft); }
.feature-content .display-title { max-width: 560px; font-size: clamp(3.4rem, 5.1vw, 5.7rem); }
.feature-content > p { max-width: 400px; margin: 26px 0 0; color: #cbd7e2; font-size: 1.05rem; line-height: 1.6; }
.process { width: 100%; margin-top: auto; padding-top: 50px; }
.process > div { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding-block: 14px; border-top: 1px solid rgba(255,255,255,.22); font-size: .85rem; font-weight: 700; }
.process > div:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }
.process > div span:first-child { color: #9ebbd5; font-size: .72rem; font-variant-numeric: tabular-nums; }
.feature-link { margin-top: 32px; }

/* Gallery */
.gallery { background: var(--white); }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.gallery-heading .display-title { max-width: 740px; }
.gallery-heading > p { max-width: 315px; margin: 0 0 8px; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.gallery-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-top: 54px; border-bottom: 1px solid var(--line); }
.gallery-filters { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0 26px; }
.gallery-filters button { min-height: 51px; margin-bottom: -1px; padding: 0 0 10px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .05em; cursor: pointer; white-space: nowrap; }
.gallery-filters button[aria-pressed="true"] { color: var(--ink); border-color: var(--ink); }
.gallery-filters button:hover { color: var(--ink); }
.gallery-count { padding-bottom: 14px; color: var(--muted); font-size: .77rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.gallery-status { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 18px; padding: 12px 15px; border: 1px solid var(--line); color: var(--ink); font-size: .85rem; }
.gallery-status p { margin: 0; line-height: 1.45; }
.gallery-status button { min-height: 36px; padding: 0 10px; border: 1px solid var(--ink); background: none; color: var(--ink); font-size: .75rem; font-weight: 800; cursor: pointer; }
.gallery-status button:hover { background: var(--ink); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(260px, 24vw, 370px); gap: 14px; padding-top: 26px; }
.gallery-item { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 0; border: 0; background: var(--paper); color: var(--ink); text-align: left; cursor: zoom-in; overflow: hidden; }
.gallery-item.is-lead { grid-column: span 2; grid-row: span 2; }
.gallery-item.is-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: calc(100% - 48px); object-fit: cover; object-position: center; transition: transform .48s var(--motion-ease); }
.gallery-image-unavailable { display: flex; align-items: center; justify-content: center; width: 100%; height: calc(100% - 48px); padding: 18px; background: var(--paper); color: var(--muted); font-size: .85rem; line-height: 1.45; text-align: center; }
.gallery-image-unavailable[hidden] { display: none; }
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img { transform: scale(1.055); }
}
.gallery-item::after { content: "↗"; position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid rgba(255,255,255,.75); color: var(--white); background: rgba(7,17,30,.72); font-size: 1.05rem; opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .25s var(--motion-quick), transform .25s var(--motion-ease); }
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover::after { opacity: 1; transform: none; }
}
.gallery-item:focus-visible::after { opacity: 1; transform: none; }
.gallery-item.filter-enter { animation: gallery-filter-enter .58s var(--motion-ease) both; animation-delay: calc(var(--motion-index, 0) * 55ms); }
@keyframes gallery-filter-enter { from { opacity: .1; transform: translateY(34px); } to { opacity: 1; transform: none; } }
.gallery-item.is-lead img { height: calc(100% - 54px); }
.gallery-item.is-lead .gallery-image-unavailable { height: calc(100% - 54px); }
.photo-caption { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 15px; border-top: 1px solid var(--line); font-size: .77rem; }
.photo-caption strong { font-weight: 800; }
.photo-caption > span { color: var(--muted); white-space: nowrap; }
.gallery-item.is-lead .photo-caption { min-height: 54px; padding-inline: 20px; font-size: .85rem; }

/* Quote request */
.quote { background: var(--paper); }
.quote-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(64px, 8vw, 130px); align-items: start; }
.quote-intro { position: sticky; top: calc(var(--header-height) + 48px); }
.quote-intro .display-title { max-width: 580px; }
.quote-intro > p { max-width: 500px; margin: 28px 0 0; color: var(--muted); font-size: 1.13rem; line-height: 1.65; }
.quote-intro .quote-photo-tip { max-width: 420px; margin-top: 72px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .9rem; line-height: 1.6; }
.quote-form { min-width: 0; padding-top: 23px; border-top: 2px solid var(--ink); }
.quote-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.quote-form-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.quote-form-heading h3 { margin: 0; font: 400 clamp(1.75rem, 2.5vw, 2.4rem)/1.1 var(--serif); letter-spacing: -.025em; }
.quote-form-heading p { max-width: 205px; margin: 0; color: var(--muted); font-size: .875rem; line-height: 1.5; }
.quote-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px 20px; margin-top: 32px; }
.quote-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.quote-field label, .quote-fieldset legend { color: var(--ink); font-size: .875rem; font-weight: 800; letter-spacing: .015em; }
.quote-optional { margin-left: 8px; color: var(--muted); font-size: .875rem; font-weight: 400; letter-spacing: 0; }
.quote-field input:not([type="file"]), .quote-field textarea { width: 100%; min-height: 54px; padding: 13px 16px; border: 1px solid #aeb9c3; border-radius: 0; background: var(--white); color: var(--ink); font: 400 1rem/1.35 var(--sans); outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.quote-field textarea { min-height: 116px; resize: vertical; }
.quote-field input::placeholder, .quote-field textarea::placeholder { color: #647383; opacity: 1; }
.quote-field input:not([type="file"]):focus-visible, .quote-field textarea:focus-visible { border-color: var(--steel); box-shadow: inset 0 0 0 1px var(--steel); outline: 2px solid #6a9dcc; outline-offset: 2px; }
.quote-fieldset { min-width: 0; margin: 31px 0 0; padding: 0; border: 0; }
.quote-fieldset legend { display: block; width: 100%; margin-bottom: 11px; padding: 0; }
.quote-choice-hint { margin: -4px 0 13px; }
.quote-choices { display: flex; flex-wrap: wrap; gap: 8px; }
.quote-choice { position: relative; display: inline-flex; min-width: 96px; cursor: pointer; }
.quote-choice input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.quote-choice span { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; width: 100%; padding: 10px 18px; border: 1px solid #aeb9c3; background: var(--white); color: var(--ink); font-size: .88rem; font-weight: 700; line-height: 1.25; text-align: center; transition: border-color .18s ease, background-color .18s ease, color .18s ease; }
.quote-choice:hover span { border-color: var(--steel); }
.quote-choice input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--white); }
.quote-choice input:focus-visible + span { outline: 2px solid #6a9dcc; outline-offset: 3px; }
.quote-photo-field { margin-top: 31px; padding-top: 25px; border-top: 1px solid var(--line); }
.quote-upload { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px; min-height: 72px; padding: 12px; border: 1px solid #aeb9c3; background: var(--white); cursor: pointer; }
.quote-upload:focus-within { outline: 2px solid #6a9dcc; outline-offset: 3px; border-color: var(--steel); }
.quote-upload input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.quote-upload-action { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 9px 15px; background: var(--ink); color: var(--white); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.quote-upload-name { flex: 1 1 150px; min-width: 0; overflow: hidden; color: var(--muted); font-size: .875rem; text-overflow: ellipsis; white-space: nowrap; }
.quote-hint { color: var(--muted); font-size: .875rem; line-height: 1.45; }
.quote-photo-field + .quote-field, .quote-photo-field + .quote-field + .quote-field { margin-top: 25px; }
.quote-error { display: none; color: #a62d33; font-size: .875rem; font-weight: 700; line-height: 1.4; }
.quote-error:not(:empty) { display: block; }
.quote-field [aria-invalid="true"], .quote-fieldset[aria-invalid="true"] .quote-choice span, .quote-field:has(#quotePhoto[aria-invalid="true"]) .quote-upload { border-color: #a62d33; }
.quote-submit-row { display: flex; align-items: center; gap: 24px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.quote-submit { flex: none; min-width: 194px; border-color: var(--ink); background: var(--ink); color: var(--white); cursor: pointer; }
.quote-submit:hover { border-color: var(--steel); background: var(--steel); }
.quote-submit:disabled { border-color: #5b6875; background: #5b6875; cursor: wait; }
.quote-privacy { max-width: 330px; margin: 0; color: var(--muted); font-size: .875rem; line-height: 1.5; }
.quote-privacy a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.quote-privacy a:hover { color: var(--steel); }
.quote-status { margin: 22px 0 0; padding: 15px 18px; border: 1px solid var(--steel); background: #e7eff6; color: var(--ink); font-size: .87rem; font-weight: 700; line-height: 1.45; }
.quote-status.is-error { border-color: #a62d33; background: #fff0f0; color: #84242a; }

/* Contact and footer */
.contact { color: var(--white); background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: clamp(70px, 9vw, 150px); align-items: end; }
.contact .display-title { max-width: 720px; }
.contact-grid > div > p { max-width: 490px; margin: 30px 0 0; color: #cbd7e2; font-size: 1.12rem; line-height: 1.6; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.contact-details { margin: 0 0 5px; font-style: normal; border-top: 1px solid rgba(255,255,255,.25); }
.contact-details > div { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 22px; padding-block: 18px; border-bottom: 1px solid rgba(255,255,255,.2); font-size: .95rem; }
.contact-details > div > span:first-child { color: #a8c3dc; font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contact-details a { overflow-wrap: anywhere; }
.contact-details a:hover { text-decoration: underline; text-underline-offset: 4px; }
.site-footer { padding-block: 38px 25px; color: #c4cdd6; background: var(--ink-deep); }
.footer-main { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.site-footer .brand img { width: 135px; height: 65px; }
.site-footer nav { display: flex; gap: clamp(20px, 3vw, 42px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: .78rem; }
.site-footer .footer-legal { display: flex; flex-wrap: wrap; gap: 12px 25px; }
.site-footer .footer-legal a { font-size: .78rem; font-weight: 600; letter-spacing: 0; text-transform: none; }

/* Photo viewer */
.lightbox { position: fixed; z-index: 120; inset: 0; display: none; align-items: center; justify-content: center; gap: 24px; padding: 48px clamp(20px, 4vw, 70px); background: rgba(2,7,13,.98); color: var(--white); }
.lightbox.is-open { display: flex; animation: lightbox-enter .28s var(--motion-quick) both; }
.lightbox.is-open figure { animation: lightbox-photo-enter .38s var(--motion-ease) both; }
@keyframes lightbox-enter { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightbox-photo-enter { from { opacity: .75; transform: scale(.985); } to { opacity: 1; transform: none; } }
.lightbox figure { display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: min(1100px, 75vw); max-height: 100%; margin: 0; }
.lightbox img { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 135px); object-fit: contain; }
.lightbox figcaption { align-self: flex-start; margin-top: 12px; color: #d8e3ed; font-size: .86rem; }
.lightbox-close, .lightbox-arrow { flex: none; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.5); background: transparent; color: var(--white); font-size: 1.5rem; cursor: pointer; transition: background-color .2s var(--motion-quick), color .2s var(--motion-quick); }
.lightbox-close:hover, .lightbox-arrow:hover { background: var(--white); color: var(--ink); }
.lightbox-close { position: absolute; top: 22px; right: 22px; }

@media (min-width: 901px) {
  .site-header { background: var(--ink); border-bottom-color: rgba(255,255,255,.16); }
  .hero { --hero-height: max(720px, 100svh); min-height: var(--hero-height); background: var(--ink); }
  .hero-media { top: var(--header-height); left: 50%; right: 0; bottom: 0; border-left: 1px solid rgba(255,255,255,.18); }
  .hero-media picture { display: block; width: 100%; height: 100%; }
  .hero-media img { object-position: center; }
  .hero-media::after { display: none; }
  .hero-inner { min-height: var(--hero-height); display: flex; align-items: center; padding-top: calc(var(--header-height) + 22px); padding-bottom: 38px; }
  .hero-copy { width: 47%; max-width: 620px; }
  .hero h1 { max-width: 620px; font-size: clamp(4rem, 6.1vw, 6.6rem); line-height: .94; letter-spacing: -.038em; }
  .hero-copy > p { max-width: 450px; font-size: 1.08rem; }
  .hero-signature { display: none; }
}

@media (min-width: 801px) {
  .hero-copy { animation: none; }
  .lightbox.is-open { animation-duration: .3s; }
  .lightbox.is-open figure { animation: lightbox-photo-enter-desktop .66s var(--motion-ease) both; }
  html.motion-enabled .hero.motion-photo-play .hero-media img { animation: hero-photo-arrive 1.45s var(--motion-ease) both; }
  html.motion-enabled .hero.motion-play h1 { animation: hero-element-arrive 1.05s var(--motion-ease) .12s both; }
  html.motion-enabled .hero.motion-play .hero-copy > p { animation: hero-element-arrive .95s var(--motion-ease) .34s both; }
  html.motion-enabled .hero.motion-play .hero-actions { animation: hero-element-arrive .95s var(--motion-ease) .54s both; }
  html.motion-enabled .hero.motion-play .hero-signature { animation: hero-element-arrive .95s var(--motion-ease) .7s both; }
  html.motion-enabled .motion-section-entered { animation: section-content-arrive .95s var(--motion-ease) both; animation-delay: calc(var(--motion-index, 0) * 90ms); }
  html.motion-enabled .gallery-grid.motion-revealed .gallery-item:not([hidden]) { animation: gallery-card-arrive .9s var(--motion-ease) both; animation-delay: calc(var(--motion-index, 0) * 100ms); }
}
@keyframes hero-photo-arrive { from { opacity: .2; transform: scale(1.12); } to { opacity: 1; transform: none; } }
@keyframes hero-element-arrive { from { opacity: .05; transform: translateY(54px); } to { opacity: 1; transform: none; } }
@keyframes section-content-arrive { from { opacity: .1; transform: translate3d(0, 48px, 0) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes gallery-card-arrive { from { opacity: .1; transform: translateY(50px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes lightbox-photo-enter-desktop { from { opacity: .45; transform: scale(.92); } to { opacity: 1; transform: none; } }

@media (max-width: 1120px) {
  :root { --header-height: 76px; }
  .desktop-nav, .header-contact { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-tools { gap: 16px; }
  .menu-toggle { display: flex; }
  .mobile-nav { position: fixed; top: var(--header-height); right: 0; left: 0; display: flex; flex-direction: column; max-height: calc(100dvh - var(--header-height)); overflow-y: auto; padding: 9px var(--gutter) 26px; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.22); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-14px); transition: opacity .22s var(--motion-quick), transform .22s var(--motion-ease), visibility .22s var(--motion-quick); }
  .menu-open .mobile-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .mobile-nav a { display: flex; justify-content: space-between; align-items: center; min-height: 60px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.2); font: 400 clamp(1.8rem, 4vw, 2.6rem)/1.1 var(--serif); }
  .mobile-nav a:hover { color: #a8c3dc; }
  .mobile-nav a.mobile-contact { min-height: 54px; margin-top: 24px; padding: 0 16px; background: var(--white); color: var(--ink); font: 800 .8rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
  .mobile-nav p { margin: 28px 0 0; color: #a8c3dc; font-size: .8rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-signature { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-photo { min-height: 620px; }
  .feature-content { padding: clamp(40px, 4.5vw, 70px); }
  .feature-content .display-title { font-size: clamp(3rem, 5.3vw, 5rem); }
  .contact-grid { gap: 60px; }
}

@media (max-width: 800px) {
  .intro-grid, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 66px; }
  .brand-panel { padding-top: 0; }
  .brand-panel-intro { margin-bottom: 28px; }
  .feature-grid { padding-inline: 0; }
  .feature-photo { min-height: 0; aspect-ratio: 1.18; }
  .feature-content { min-height: 540px; padding: 56px var(--gutter); }
  .feature-content .display-title { max-width: 650px; }
  .gallery-heading { display: block; }
  .gallery-heading > p { max-width: 480px; margin-top: 18px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(270px, 42vw, 350px); }
  .contact-grid { gap: 60px; }
  .quote-layout { grid-template-columns: 1fr; gap: 56px; }
  .quote-intro { position: static; }
  .quote-intro .quote-photo-tip { margin-top: 36px; }
}

@media (max-width: 520px) {
  :root { --gutter: 22px; --header-height: 70px; }
  .section-space { padding-block: 84px; }
  .display-title { font-size: clamp(3.05rem, 12.5vw, 4.2rem); line-height: 1; }
  .header-inner { gap: 12px; }
  .brand img { width: 132px; height: 59px; }
  .header-tools { gap: 6px; }
  .language-switch { gap: 2px; }
  .language-switch button { min-width: 36px; min-height: 44px; padding: 0; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero { min-height: max(690px, 100svh); }
  .hero-media img { object-position: center 28%; }
  .hero-media::after { background: linear-gradient(180deg, rgba(3,8,14,.08) 0%, rgba(3,8,14,.05) 27%, rgba(3,8,14,.48) 52%, rgba(3,8,14,.92) 78%, #03080e 100%); }
  .hero-inner { padding-top: calc(var(--header-height) + 80px); padding-bottom: 38px; }
  .hero h1 { max-width: 420px; font-size: clamp(3.2rem, 13.5vw, 4.55rem); line-height: .93; }
  .hero-copy > p { max-width: 365px; margin-top: 22px; font-size: .96rem; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 11px; margin-top: 27px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .underlined-link { align-self: flex-start; }
  .intro-grid { gap: 56px; }
  .intro-heading > p { font-size: 1rem; }
  .brand-panel-intro { font-size: 1.65rem; }
  .brand-list a { min-height: 68px; font-size: 1.85rem; }
  .feature-photo { aspect-ratio: 1; }
  .feature-content { min-height: 0; padding: 54px var(--gutter) 64px; }
  .feature-content .display-title { font-size: clamp(3.05rem, 12vw, 4.2rem); }
  .feature-content > p { font-size: 1rem; }
  .process { padding-top: 42px; }
  .gallery-heading > p { font-size: 1rem; }
  .gallery-toolbar { display: block; margin-top: 38px; }
  .gallery-filters { overflow-x: auto; flex-wrap: nowrap; gap: 22px; margin-right: calc(var(--gutter) * -1); scrollbar-width: none; }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filters button { min-height: 48px; flex: none; }
  .gallery-count { display: block; padding-block: 10px; }
  .gallery-grid { gap: 9px; padding-top: 20px; grid-auto-rows: clamp(195px, 59vw, 260px); }
  .gallery-item.is-lead { grid-row: span 2; }
  .gallery-item img, .gallery-item.is-lead img { height: calc(100% - 42px); }
  .gallery-image-unavailable, .gallery-item.is-lead .gallery-image-unavailable { height: calc(100% - 42px); }
  .photo-caption, .gallery-item.is-lead .photo-caption { min-height: 42px; padding: 0 9px; font-size: .75rem; }
  .photo-caption > span { display: none; }
  .contact-grid { gap: 56px; }
  .quote-layout { gap: 42px; }
  .quote-intro > p { font-size: 1rem; }
  .quote-form-heading { display: block; padding-bottom: 21px; }
  .quote-form-heading p { max-width: none; margin-top: 8px; }
  .quote-field-grid { grid-template-columns: 1fr; gap: 23px; margin-top: 26px; }
  .quote-choice { flex: 1 1 auto; }
  .quote-choice span { padding-inline: 11px; }
  .quote-submit-row { align-items: stretch; flex-direction: column; gap: 14px; }
  .quote-submit { width: 100%; }
  .quote-upload-name { flex-basis: 100%; }
  .contact-grid > div > p { font-size: 1rem; }
  .contact-actions { display: grid; }
  .contact-actions .button { width: 100%; }
  .contact-details > div { grid-template-columns: 100px minmax(0, 1fr); gap: 14px; font-size: .87rem; }
  .footer-main { align-items: flex-start; flex-direction: column; gap: 25px; }
  .site-footer nav { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .lightbox { padding: 60px 18px 76px; }
  .lightbox figure { max-width: 100%; }
  .lightbox img { max-height: calc(100dvh - 170px); }
  .lightbox figcaption { align-self: center; }
  .lightbox-arrow { position: absolute; bottom: 14px; width: 46px; height: 46px; font-size: 1.25rem; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
  .lightbox-close { right: 11px; top: 11px; }
}

@media (max-width: 355px) {
  :root { --gutter: 18px; }
  .brand img { width: 118px; }
  .hero h1 { font-size: 3rem; }
  .gallery-grid { grid-auto-rows: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-enabled) { scroll-behavior: auto; }
  html:not(.motion-enabled) *, html:not(.motion-enabled) *::before, html:not(.motion-enabled) *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html:not(.motion-enabled) .brand-list a:hover span:first-child, html:not(.motion-enabled) .gallery-item:hover img, html:not(.motion-enabled) .mobile-nav { transform: none; }
  html:not(.motion-enabled) .lightbox.is-open, html:not(.motion-enabled) .lightbox.is-open figure { animation: none; }
}

.not-found-page { min-height: 100svh; color: var(--white); background: var(--ink-deep); }
.not-found-shell { width: min(100%, 1120px); min-height: 100svh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; margin-inline: auto; padding: clamp(30px, 7vw, 96px) var(--gutter); }
.not-found-brand { display: block; width: min(220px, 52vw); margin-bottom: clamp(70px, 11vh, 120px); }
.not-found-brand img { width: 100%; height: auto; }
.not-found-code { margin: 0 0 16px; color: #c2d3e1; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.not-found-code span { padding-inline: 5px; color: #6a9dcc; }
.not-found-shell h1 { max-width: 13ch; margin: 0; font: 400 clamp(3.2rem, 8vw, 6rem)/.98 var(--serif); letter-spacing: -.03em; text-wrap: balance; }
.not-found-shell > p:not(.not-found-code) { max-width: 58ch; margin: 25px 0 0; color: #dce5ee; font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.65; }
.not-found-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }

@media (max-width: 540px) {
  .not-found-brand { margin-bottom: 76px; }
  .not-found-shell h1 { font-size: clamp(3rem, 12vw, 4rem); }
  .not-found-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
}
