:root {
  --black: #070707;
  --black-soft: #0d0d0d;
  --panel: #11110f;
  --ivory: #eee9df;
  --muted: #aaa69f;
  --gold: #b9904d;
  --gold-light: #d2b06f;
  --line: rgba(210, 176, 111, .25);
  --max: 1440px;
  --header: 82px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; background: var(--black); color: var(--ivory); font-family: "Source Sans 3", Arial, sans-serif; font-weight: 300; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }
::selection { background: var(--gold); color: #080808; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 1000; background: var(--gold); color: #000; padding: 10px 16px; transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto 0; height: var(--header); z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(20px, 4vw, 70px); border-bottom: 1px solid transparent; transition: background .35s, border-color .35s, height .35s; }
.site-header.scrolled { height: 68px; background: rgba(5,5,5,.94); border-color: rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.brand { width: clamp(160px, 15vw, 232px); }
.brand img { height: 62px; width: auto; object-fit: contain; }
.site-header.scrolled .brand img { height: 52px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(15px, 1.65vw, 28px); }
.desktop-nav a { position: relative; color: rgba(255,255,255,.82); font-family: "Oswald", sans-serif; font-size: 12px; font-weight: 400; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold); transition: right .25s; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.menu-button { display: none; width: 46px; height: 46px; border: 0; background: transparent; color: white; padding: 10px; }
.menu-button span { display: block; height: 1px; background: currentColor; margin: 6px 0; transition: transform .25s, opacity .25s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; display: none; align-content: center; gap: 16px; padding: 110px 10vw 60px; background: rgba(5,5,5,.98); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: "Cormorant Garamond", serif; font-size: clamp(30px, 7vw, 52px); border-bottom: 1px solid rgba(255,255,255,.1); padding: 7px 0; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; background: url('assets/images/hero.webp') 58% center / cover no-repeat; transform: scale(1.02); }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.8) 28%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.08) 75%), linear-gradient(0deg, rgba(0,0,0,.72), transparent 40%); }
.hero-grain, .film-overlay::after { pointer-events: none; position: absolute; inset: 0; content: ""; opacity: .16; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 3; width: min(720px, 52vw); padding: calc(var(--header) + 60px) 0 110px clamp(24px, 7vw, 125px); }
.eyebrow { margin: 0 0 18px; color: var(--gold-light); font-family: "Oswald", sans-serif; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: "Oswald", sans-serif; font-size: clamp(44px, 5vw, 82px); line-height: .98; font-weight: 500; letter-spacing: -.025em; text-transform: uppercase; }
.hero h1 span, .hero h1 em { display: block; font-style: normal; }
.hero h1 em { color: var(--gold-light); }
.hero-intro { max-width: 550px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: clamp(17px, 1.3vw, 21px); line-height: 1.6; }
.hero-actions, .development-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 27px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border: 1px solid var(--gold); background: rgba(185,144,77,.12); color: white; font-family: "Oswald", sans-serif; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; transition: background .25s, color .25s, transform .25s; }
.button:hover { background: var(--gold); color: #080808; transform: translateY(-2px); }
.text-link { color: var(--ivory); font-family: "Oswald", sans-serif; font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.text-link span { color: var(--gold-light); margin-left: 8px; transition: margin .2s; }
.text-link:hover span { margin-left: 14px; }
.scroll-cue { position: absolute; z-index: 4; bottom: 34px; left: 50%; width: 40px; height: 45px; transform: translateX(-50%); }
.scroll-cue span, .scroll-cue::after { position: absolute; content: ""; left: 50%; width: 1px; background: var(--gold); }
.scroll-cue span { top: 0; height: 30px; animation: scrollPulse 1.8s infinite; }
.scroll-cue::after { bottom: 4px; height: 10px; transform: rotate(40deg); transform-origin: bottom; }
@keyframes scrollPulse { 0%,100% { opacity:.25; transform:scaleY(.55); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }

.principles { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin: 0 auto; border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
.principles article { min-height: 245px; padding: 42px 34px; border-right: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg, #10100f, #090909); }
.principles article:last-child { border-right: 0; }
.principle-number, .section-label span, .services-grid article > span { display: block; color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 32px; }
.principles h2 { margin: 14px 0 12px; font-family: "Oswald", sans-serif; font-size: 17px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }
.principles p { margin: 0; color: var(--muted); line-height: 1.65; }

.section { position: relative; max-width: var(--max); margin: 0 auto; padding: clamp(90px, 9vw, 150px) clamp(24px, 6vw, 100px); }
.section-label { position: absolute; left: clamp(22px, 2.4vw, 40px); top: clamp(88px, 9vw, 145px); writing-mode: vertical-rl; transform: rotate(180deg); display: flex; align-items: center; gap: 13px; }
.section-label span { font-size: 18px; }
.section-label p { margin: 0; color: var(--muted); font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.about { border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 8vw, 120px); }
.about-heading h2, .section-header h2, .services-head h2, .development h2, .journal h2, .contact h2 { margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(47px, 5.4vw, 84px); line-height: .98; font-weight: 500; letter-spacing: -.025em; }
.about-heading em, .section-header em, .services-head em, .development em, .journal em, .contact em { color: var(--gold-light); font-weight: 500; }
.about-copy { padding-top: 24px; color: #bcb8b0; font-size: 18px; line-height: 1.75; }
.about-copy p { margin: 0 0 22px; }
.about-copy .lead { color: var(--ivory); font-family: "Cormorant Garamond", serif; font-size: 29px; line-height: 1.35; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 76px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts div { padding: 28px 24px; border-right: 1px solid var(--line); }
.facts div:last-child { border-right: 0; }
.facts strong { display: block; color: var(--gold-light); font-family: "Cormorant Garamond", serif; font-size: 50px; font-weight: 500; }
.facts span { color: var(--muted); font-size: 14px; }

.projects { max-width: none; background: #0b0b0a; padding-left: max(24px, calc((100vw - var(--max))/2 + 50px)); padding-right: max(24px, calc((100vw - var(--max))/2 + 50px)); }
.section-header { max-width: 760px; margin-bottom: 54px; }
.section-header > p:last-child { max-width: 620px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.project-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; max-width: var(--max); margin: 0 auto; }
.project-card { position: relative; min-height: 560px; border: 1px solid rgba(255,255,255,.12); overflow: hidden; background: #111; }
.project-card a { position: absolute; inset: 0; display: block; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .6s; }
.project-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.project-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.23) 50%, rgba(0,0,0,.05) 76%); }
.project-copy { position: absolute; inset: auto 0 0; padding: 28px 24px; }
.project-copy p { margin: 0 0 7px; color: var(--gold-light); font-family: "Oswald", sans-serif; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.project-copy h3 { margin: 0 0 17px; font-family: "Cormorant Garamond", serif; font-size: 37px; line-height: 1; font-weight: 600; }
.project-copy span { font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.project-nagasaki img { object-position: 50% center; }
.project-nagasaki img, .project-kami img { object-position: center center; }

.film-feature { position: relative; min-height: 900px; display: flex; align-items: center; overflow: hidden; }
.film-backdrop { position: absolute; inset: 0; background-size: cover; background-position: center; }
.film-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,2,2,.96) 0%, rgba(5,5,5,.7) 48%, rgba(0,0,0,.3)), linear-gradient(0deg, rgba(0,0,0,.92), transparent 60%); }
.film-feature-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(260px, 430px) minmax(0, 680px); gap: clamp(55px, 8vw, 120px); align-items: center; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 130px 50px; }
.film-poster img { box-shadow: 0 35px 80px rgba(0,0,0,.55); }
.film-copy h2, .fleur-copy h2 { margin: 0 0 30px; font-family: "Cormorant Garamond", serif; font-size: clamp(60px, 7vw, 108px); line-height: .82; font-weight: 600; }
.film-copy h2 em, .fleur-copy h2 em { color: var(--gold-light); font-weight: 500; }
.film-copy > p, .fleur-copy > p { max-width: 670px; color: #c2beb5; font-size: 18px; line-height: 1.7; }
.film-logline { color: var(--ivory) !important; font-family: "Cormorant Garamond", serif; font-size: 28px !important; line-height: 1.35 !important; }
.film-meta { display: flex; flex-direction: column; gap: 7px; margin: 29px 0; color: var(--muted); font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.film-media { background: #0b0b0a; border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
.video-panel { max-width: 1140px; margin: 0 auto 75px; border: 1px solid rgba(255,255,255,.13); background: #030303; }
.video-label { height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; color: var(--gold-light); font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.1); }
.video-label small { color: var(--muted); font-size: 10px; }
.video-frame { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.film-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 10px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; cursor: zoom-in; background: #111; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .5s; }
.gallery-item:hover img { transform: scale(1.035); filter: brightness(1.08); }

.fleur-feature { background: linear-gradient(135deg, #151115, #080808 58%); border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
.fleur-grid { display: grid; grid-template-columns: minmax(250px, .72fr) 1.28fr; gap: 60px 80px; align-items: start; }
.fleur-poster { grid-row: span 2; }
.fleur-poster img { box-shadow: 0 35px 70px rgba(0,0,0,.55); }
.fleur-video { align-self: end; }

.team { max-width: none; background: #0b0b0a; padding-left: max(24px, calc((100vw - var(--max))/2 + 50px)); padding-right: max(24px, calc((100vw - var(--max))/2 + 50px)); }
.team-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 16px; max-width: var(--max); margin: 0 auto; }
.team-feature, .team-card { position: relative; min-height: 650px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: #111; }
.team-feature img, .team-card img { width: 100%; height: 100%; object-fit: cover; }
.team-feature img { object-position: 50% center; }
.team-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.95), transparent 67%); }
.team-copy { position: absolute; inset: auto 0 0; padding: 35px; }
.team-copy > p:first-child, .team-card div > p:first-child { margin: 0 0 7px; color: var(--gold-light); font-family: "Oswald", sans-serif; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.team-copy h3, .team-card h3 { margin: 0 0 15px; font-family: "Cormorant Garamond", serif; font-size: 37px; line-height: 1; }
.team-copy p:last-child, .team-card div p:last-child { margin: 0; color: #b5b1aa; line-height: 1.6; }
.team-card { display: grid; grid-template-rows: 48% 52%; }
.team-card img { height: 100%; }
.team-card div { padding: 26px; background: #11110f; }

.services { border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
.services-head { max-width: 900px; margin-bottom: 70px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.1); border-left: 1px solid rgba(255,255,255,.1); }
.services-grid article { min-height: 260px; padding: 36px 30px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); background: linear-gradient(145deg, #10100f, #090909); }
.services-grid h3 { margin: 16px 0 15px; font-family: "Cormorant Garamond", serif; font-size: 27px; line-height: 1.05; }
.services-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.development { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; }
.development-bg { position: absolute; inset: 0; background: radial-gradient(circle at 74% 35%, rgba(185,144,77,.22), transparent 22%), linear-gradient(130deg, #080808, #19130c 60%, #080808); }
.development-bg::before, .development-bg::after { content: ""; position: absolute; border: 1px solid rgba(210,176,111,.16); transform: rotate(45deg); }
.development-bg::before { width: 560px; height: 560px; right: 5%; top: -160px; }
.development-bg::after { width: 340px; height: 340px; left: 9%; bottom: -200px; }
.development-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.25), rgba(0,0,0,.65)); }
.development-inner { position: relative; z-index: 2; width: min(800px, calc(100% - 48px)); text-align: center; }
.development-inner > p:not(.eyebrow) { max-width: 690px; margin: 28px auto 0; color: #bbb7ae; font-size: 18px; line-height: 1.72; }
.development-actions { justify-content: center; }

.journal { border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
.journal-panel { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; padding: 65px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(185,144,77,.08), transparent 48%), #0d0d0c; }
.journal-panel > div > p:not(.eyebrow) { max-width: 550px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.journal-panel blockquote { margin: 0; padding: 50px 0 50px 50px; border-left: 1px solid var(--gold); color: var(--ivory); font-family: "Cormorant Garamond", serif; font-size: clamp(31px, 3.4vw, 52px); line-height: 1.15; font-style: italic; }

.contact { padding-top: 120px; padding-bottom: 120px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.contact-details { padding-bottom: 5px; }
.contact-details > p { color: var(--muted); font-size: 18px; }
.email-link { display: inline-block; color: var(--gold-light); font-family: "Cormorant Garamond", serif; font-size: clamp(25px, 3vw, 42px); border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
.socials { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 32px; }
.socials a { color: #c7c2b8; font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.socials a:hover { color: var(--gold-light); }

.site-footer { display: grid; grid-template-columns: 220px 1fr auto; gap: 40px; align-items: center; max-width: var(--max); margin: 0 auto; padding: 35px 50px; border: 1px solid rgba(255,255,255,.08); border-bottom: 0; color: var(--muted); font-size: 13px; }
.site-footer img { width: 180px; }
.site-footer div { display: flex; gap: 30px; flex-wrap: wrap; }
.site-footer a { font-family: "Oswald", sans-serif; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(0,0,0,.94); color: white; }
.lightbox[open] { display: grid; place-items: center; }
.lightbox::backdrop { background: rgba(0,0,0,.92); }
.lightbox img { max-width: 88vw; max-height: 86vh; width: auto; height: auto; object-fit: contain; }
.lightbox-close, .lightbox-nav { position: fixed; z-index: 2; border: 0; background: rgba(0,0,0,.4); color: white; cursor: pointer; }
.lightbox-close { right: 24px; top: 18px; width: 54px; height: 54px; font-size: 36px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 60px; height: 90px; font-size: 52px; }
.lightbox-nav.prev { left: 10px; }
.lightbox-nav.next { right: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-menu { display: grid; }
  .hero-content { width: min(700px, 72vw); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card { min-height: 610px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-feature { grid-column: 1 / -1; min-height: 700px; }
  .team-feature img { object-position: center 35%; }
  .team-card { min-height: 680px; }
}
@media (max-width: 900px) {
  :root { --header: 70px; }
  .site-header { padding: 0 20px; }
  .brand img { height: 53px; }
  .hero { min-height: 920px; align-items: end; }
  .hero-image { background-position: 62% center; }
  .hero-vignette { background: linear-gradient(0deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.8) 40%, rgba(0,0,0,.2) 75%), linear-gradient(90deg, rgba(0,0,0,.52), transparent); }
  .hero-content { width: 100%; padding: 0 24px 125px; }
  .principles { grid-template-columns: 1fr 1fr; }
  .principles article:nth-child(2) { border-right: 0; }
  .principles article { border-bottom: 1px solid rgba(255,255,255,.08); }
  .section-label { display: none; }
  .about-grid, .contact-grid, .journal-panel { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .facts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .facts div:last-child { border-bottom: 0; }
  .film-feature-inner { grid-template-columns: minmax(220px, 340px) 1fr; gap: 40px; padding-left: 10px; padding-right: 10px; }
  .fleur-grid { grid-template-columns: .7fr 1.3fr; gap: 45px; }
  .fleur-video { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .journal-panel blockquote { padding: 40px 0 0; border-left: 0; border-top: 1px solid var(--gold); }
}
@media (max-width: 680px) {
  .section { padding: 85px 22px; }
  .site-header.scrolled { height: 62px; }
  .brand { width: 165px; }
  .hero { min-height: 820px; }
  .hero h1 { font-size: clamp(40px, 12.2vw, 60px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .principles { grid-template-columns: 1fr; border: 0; }
  .principles article { min-height: 0; border-right: 0; padding: 34px 24px; }
  .projects, .team { padding-left: 22px; padding-right: 22px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 550px; }
  .film-feature { min-height: auto; }
  .film-feature-inner { grid-template-columns: 1fr; padding: 95px 22px; }
  .film-poster { max-width: 320px; margin: 0 auto; }
  .film-copy h2, .fleur-copy h2 { font-size: 66px; }
  .film-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 2; }
  .fleur-grid { grid-template-columns: 1fr; }
  .fleur-poster { max-width: 320px; margin: 0 auto; grid-row: auto; }
  .fleur-video { grid-column: auto; }
  .team-grid { grid-template-columns: 1fr; }
  .team-feature, .team-card { min-height: 620px; grid-column: auto; }
  .team-card { grid-template-rows: 52% 48%; }
  .services-grid { grid-template-columns: 1fr; }
  .development { min-height: 650px; padding: 90px 0; }
  .development-inner { text-align: left; }
  .development-actions { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
  .journal-panel { padding: 36px 25px; gap: 45px; }
  .site-footer { grid-template-columns: 1fr; padding: 32px 22px; gap: 22px; }
  .site-footer div { flex-direction: column; gap: 6px; }
  .lightbox-nav { width: 42px; height: 70px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
