:root {
  --ink: #090a0a;
  --paper: #f3f1ec;
  --stone: #b8b5af;
  --coast: #406f87;
  --sunset: #c65f32;
  --line-dark: rgba(243, 241, 236, .2);
  --line-light: rgba(9, 10, 10, .16);
  --header-h: 86px;
  --gutter: clamp(20px, 4.1vw, 80px);
  --section-y: clamp(88px, 10vw, 180px);
  --max: 1880px;
  --ease: cubic-bezier(.22, .75, .25, 1);
  color-scheme: light dark;
}

* { box-sizing: border-box; }
html { width: 100%; max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--sunset);
  outline-offset: 4px;
}
::selection { background: var(--sunset); color: var(--paper); }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

svg { width: 1.35em; height: 1.35em; }
.eyebrow {
  margin: 0 0 22px;
  font-size: .72rem;
  line-height: 1;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-accent { background: var(--sunset); color: var(--ink); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 var(--gutter);
  color: var(--paper);
  transition: transform .38s var(--ease), background .38s ease, color .38s ease, border-color .38s ease;
  border-bottom: 1px solid transparent;
}
.header-menu-cluster { display: flex; align-items: center; min-width: 160px; }
.site-header.is-solid {
  background: rgba(9, 10, 10, .95);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
}
.site-header.is-hidden { transform: translateY(-105%); }
.brand { position: absolute; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 13px; min-height: 44px; font-weight: 850; letter-spacing: .08em; }
.brand-logo { display: block; width: auto; max-width: 190px; max-height: 64px; object-fit: contain; }
.brand-fallback { display: inline-flex; align-items: baseline; gap: .35em; font-weight: 900; letter-spacing: .11em; }
.brand-fallback b { color: var(--sunset); font-size: 1.2em; }
.brand-mark { width: 25px; height: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; transform: skewX(-13deg); }
.brand-mark i { display: block; background: currentColor; }
.brand-mark i:nth-child(2) { transform: translateY(4px); }
.brand-mark i:nth-child(3) { transform: translateY(8px); background: var(--sunset); }
.header-actions { display: flex; align-items: center; min-height: 46px; gap: 9px; }
.header-actions button { border: 0; cursor: pointer; }
.header-link { min-height: 46px; padding: 0 22px; border-radius: 999px; background: rgba(9,10,10,.72); color: var(--paper); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 750; backdrop-filter: blur(12px); }
.header-link-muted { opacity: .96; }
.header-link-accent { background: var(--paper); color: var(--ink); }
.menu-button { width: 48px; min-width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0; border: 0; background: rgba(9,10,10,.74); color: var(--paper); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 800; backdrop-filter: blur(12px); cursor: pointer; }
.menu-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid currentColor;
  padding: 13px 20px;
  cursor: pointer;
  background: transparent;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button-outline-light { color: var(--paper); border-color: rgba(243,241,236,.65); }
.button-outline-light:hover { background: var(--paper); color: var(--ink); }
.button-dark, .button-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.button-primary:hover, .button-dark:hover { background: var(--sunset); color: var(--ink); border-color: var(--sunset); }
.text-link, .text-button { display: inline-flex; align-items: center; gap: 14px; min-height: 44px; border: 0; border-bottom: 1px solid currentColor; background: transparent; padding: 0; font-weight: 750; cursor: pointer; }
.icon-button { width: 48px; height: 48px; display: inline-grid; place-items: center; border: 1px solid currentColor; background: transparent; cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 100svh; background: var(--ink); color: var(--paper); overflow: hidden; }
.hero-poster, .hero-video, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-poster img, .hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-video { z-index: 1; opacity: 0; transition: opacity .5s ease; }
.hero-video.is-ready { opacity: 1; }
.hero-poster { z-index: 0; }
.hero-shade { z-index: 2; background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.02) 42%, rgba(0,0,0,.78) 100%); }
.hero-content { position: relative; z-index: 3; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--header-h) + 50px) var(--gutter) clamp(78px, 8vw, 128px); }
.hero h1 { margin: 0; max-width: 14ch; font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif; font-size: clamp(4.4rem, 12.6vw, 10.2rem); line-height: .75; letter-spacing: -.055em; font-weight: 900; text-transform: uppercase; }
.hero h1 span { display: block; }
.hero h1 span:last-child { margin-left: clamp(20px, 20vw, 360px); color: var(--sunset); }
.hero-bottom { margin-top: clamp(32px, 5vw, 76px); display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; border-top: 1px solid var(--line-dark); padding-top: 28px; }
.hero-bottom > p { margin: 0; font-size: clamp(1.15rem, 2vw, 1.8rem); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-controls { position: absolute; z-index: 4; right: var(--gutter); bottom: 20px; display: flex; gap: 8px; }
.hero-controls button, .video-toolbar button { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.35); background: rgba(9,10,10,.48); color: var(--paper); padding: 8px 12px; cursor: pointer; backdrop-filter: blur(10px); }
.hero-controls span, .video-toolbar span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-scroll { position: absolute; z-index: 4; left: var(--gutter); bottom: 25px; display: flex; align-items: center; gap: 12px; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-scroll i { width: 52px; height: 1px; background: currentColor; position: relative; overflow: hidden; }
.hero-scroll i::after { content: ""; position: absolute; inset: 0; background: var(--sunset); transform: translateX(-100%); animation: scroll-line 2s infinite; }
@keyframes scroll-line { 50%,100% { transform: translateX(100%); } }

/* Immersive menu and dialogs */
.immersive-menu, .dialog-shell, .lightbox { position: fixed; inset: 0; z-index: 1000; pointer-events: none; visibility: hidden; }
.immersive-menu.is-open, .dialog-shell.is-open, .lightbox.is-open { pointer-events: auto; visibility: visible; }
.menu-backdrop, .dialog-backdrop, .lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); opacity: 0; transition: opacity .32s ease; }
.is-open > .menu-backdrop, .is-open > .dialog-backdrop, .lightbox.is-open .lightbox-backdrop { opacity: 1; }
.menu-panel { position: absolute; inset: 0 auto 0 0; width: min(72vw, 1180px); display: flex; flex-direction: column; background: var(--ink); color: var(--paper); padding: 28px clamp(24px,4vw,70px) 34px; transform: translateX(-101%); transition: transform .55s var(--ease); overflow: auto; }
.immersive-menu.is-open .menu-panel { transform: translateX(0); }
.menu-topline, .dialog-header, .lightbox-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.menu-topline .eyebrow, .dialog-header .eyebrow { margin: 0; }
.menu-layout { flex: 1; display: grid; grid-template-columns: minmax(390px, .9fr) minmax(430px, 1.1fr); gap: clamp(32px, 6vw, 120px); align-items: center; min-height: 0; padding: 34px 0; }
.menu-links a { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 18px; min-height: 64px; border-bottom: 1px solid var(--line-dark); transition: color .25s ease, padding .25s var(--ease); }
.menu-links a:hover, .menu-links a:focus-visible { color: var(--sunset); padding-left: 10px; }
.menu-links span { font-size: .72rem; letter-spacing: .12em; }
.menu-links strong { font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2rem, 4vw, 4.7rem); line-height: .94; text-transform: uppercase; }
.menu-preview { position: relative; min-height: min(63vh, 720px); overflow: hidden; }
.menu-preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .22s ease, transform .5s var(--ease); }
.menu-preview.is-changing img { opacity: .35; transform: scale(1.03); }
.menu-preview-caption { position: absolute; inset: auto 20px 18px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.menu-footer { border-top: 1px solid var(--line-dark); padding-top: 20px; display: flex; justify-content: space-between; gap: 24px; font-size: .82rem; }
.menu-footer p { margin: 0; }
.menu-contact { display: flex; flex-wrap: wrap; gap: 20px; }

.side-dialog { position: absolute; top: 0; right: 0; width: min(100%, 520px); height: 100%; background: var(--paper); color: var(--ink); padding: 26px clamp(22px, 4vw, 52px); transform: translateX(102%); transition: transform .48s var(--ease); overflow: auto; }
.side-dialog-wide { width: min(100%, 820px); }
.dialog-shell.is-open .side-dialog { transform: translateX(0); }
.dialog-body { padding: clamp(42px, 6vh, 88px) 0 60px; }
.dialog-body h2 { margin: 0 0 24px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3.6rem, 8vw, 7rem); line-height: .85; text-transform: uppercase; }
.dialog-body > p { max-width: 54ch; }
.info-row { border-top: 1px solid var(--line-light); padding: 18px 0; display: flex; justify-content: space-between; gap: 24px; }
.info-row span { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.dialog-note { margin: 32px 0; color: #565656; }

/* Forms */
.quote-form { margin-top: 34px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px 18px; }
.field { display: grid; gap: 8px; }
.field-wide, .check.field-wide, small.field-wide { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.field label span { font-weight: 500; color: #6f6d68; }
.field input, .field select, .field textarea {
  width: 100%; border: 0; border-bottom: 1px solid var(--line-light); background: transparent; color: var(--ink); padding: 12px 0; border-radius: 0;
}
.field textarea { resize: vertical; min-height: 120px; }
.field small, [data-error-for] { color: #8d2f17; min-height: 1em; }
.check { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; }
.check input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--sunset); }
.check a { text-decoration: underline; }
.form-footer { margin-top: 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-status { margin: 0; max-width: 42ch; }
.form-status.is-error { color: #8d2f17; }
.form-status.is-success { color: #1f6a43; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Intro and section headings */
.editorial-intro { min-height: 82svh; padding: var(--section-y) var(--gutter); display: grid; grid-template-columns: 1fr 10fr 1fr; gap: 24px; align-items: center; }
.section-number { align-self: start; font-size: .72rem; letter-spacing: .12em; }
.editorial-copy { grid-column: 2; }
.editorial-copy h2, .about-intro h2, .service-editorial h2, .course-intro h2 {
  max-width: 18ch; margin: 0 0 40px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.6rem, 6vw, 6.9rem); line-height: .96; letter-spacing: -.035em; text-transform: uppercase;
}
.section-heading { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); gap: 40px; align-items: end; padding: 0 var(--gutter) clamp(54px, 6vw, 96px); }
.section-heading h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3.4rem, 7.6vw, 8.6rem); line-height: .82; text-transform: uppercase; letter-spacing: -.04em; }
.section-heading > p { margin: 0 0 8px; max-width: 42ch; font-size: clamp(1rem, 1.5vw, 1.35rem); }
.section-heading-dark { color: var(--ink); }

/* Current editorial grid */
.current-section, .gallery-preview, .process, .principles, .faq, .course-gallery { padding: var(--section-y) 0; }
.editorial-grid { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(22px, 3vw, 54px) clamp(14px, 2vw, 30px); }
.project-card a { display: block; }
.project-card-media { position: relative; overflow: hidden; background: #1a1c1c; }
.project-card-media picture, .project-card-media img { width: 100%; height: 100%; }
.project-card-media img { object-fit: cover; transition: transform .65s var(--ease); }
.project-card:hover img { transform: scale(1.028); }
.project-card-index { position: absolute; top: 14px; left: 14px; min-width: 40px; height: 40px; display: grid; place-items: center; background: rgba(9,10,10,.72); color: var(--paper); font-size: .68rem; }
.project-card-meta { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; align-items: end; padding-top: 15px; }
.project-card-meta p { grid-column: 1/-1; margin: 0; font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; color: var(--stone); }
.project-card-meta h3 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(1.8rem, 3vw, 3.6rem); line-height: .9; text-transform: uppercase; }
.project-card-1 { grid-column: 1 / span 7; }
.project-card-1 .project-card-media { aspect-ratio: 16/10; }
.project-card-2 { grid-column: 9 / span 4; margin-top: 120px; }
.project-card-2 .project-card-media { aspect-ratio: 4/5; }
.project-card-3 { grid-column: 2 / span 4; margin-top: 40px; }
.project-card-3 .project-card-media { aspect-ratio: 1/1; }
.project-card-4 { grid-column: 7 / span 6; }
.project-card-4 .project-card-media { aspect-ratio: 16/9; }
.project-card-5 { grid-column: 1 / span 5; margin-top: 80px; }
.project-card-5 .project-card-media { aspect-ratio: 4/5; }
.project-card-6 { grid-column: 7 / span 4; margin-top: 20px; }
.project-card-6 .project-card-media { aspect-ratio: 1/1; }
.project-card-7 { grid-column: 3 / span 5; }
.project-card-7 .project-card-media { aspect-ratio: 4/5; }
.project-card-8 { grid-column: 9 / span 4; margin-top: 130px; }
.project-card-8 .project-card-media { aspect-ratio: 4/5; }
.section-end-link { max-width: var(--max); margin: 70px auto 0; padding: 0 var(--gutter); display: flex; justify-content: flex-end; }

/* Carousel */
.glance { padding: var(--section-y) 0; overflow: hidden; }
.glance-header { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; padding: 0 var(--gutter) 60px; }
.glance-header h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3.4rem, 7vw, 8rem); line-height: .84; text-transform: uppercase; }
.carousel-status { display: grid; grid-template-columns: auto 110px 48px 48px; gap: 10px; align-items: center; }
.carousel-status > span { font-size: .78rem; letter-spacing: .12em; }
.progress { width: 110px; height: 2px; background: rgba(9,10,10,.18); overflow: hidden; }
.progress i { display: block; width: 16.66%; height: 100%; background: var(--sunset); transition: width .3s ease; }
.glance-track { display: flex; gap: clamp(18px, 2vw, 32px); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0 var(--gutter) 24px; cursor: grab; }
.glance-track::-webkit-scrollbar { display: none; }
.glance-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.glance-card { flex: 0 0 clamp(300px, 38vw, 680px); scroll-snap-align: start; }
.glance-card a { display: block; }
.glance-card picture { display: block; aspect-ratio: 4/5; overflow: hidden; }
.glance-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.glance-card:hover img { transform: scale(1.025); }
.glance-card-copy { display: grid; grid-template-columns: 45px 1fr; gap: 8px 18px; padding-top: 18px; }
.glance-card-copy span { font-size: .72rem; }
.glance-card-copy h3 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2rem, 3.2vw, 4rem); line-height: .92; text-transform: uppercase; }
.glance-card-copy p { grid-column: 2; max-width: 40ch; margin: 4px 0 0; }

/* Cinema feature */
.cinema-feature { min-height: 90svh; display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.65fr); align-items: stretch; }
.cinema-copy { display: flex; flex-direction: column; justify-content: center; padding: var(--section-y) var(--gutter); }
.cinema-copy h2 { margin: 0 0 28px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(4rem, 8vw, 9rem); line-height: .8; text-transform: uppercase; }
.cinema-copy > p:not(.eyebrow) { max-width: 32ch; font-size: 1.2rem; margin-bottom: 36px; }
.cinema-copy .button { align-self: flex-start; }
.cinema-media { position: relative; min-height: 620px; overflow: hidden; }
.cinema-media video { width: 100%; height: 100%; object-fit: cover; }
.video-toolbar { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; justify-content: flex-end; gap: 8px; }

/* Service stripes */
.services-home { padding: var(--section-y) 0; }
.service-stripes { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.service-stripe { min-height: 70svh; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); border-top: 1px solid var(--line-light); padding: clamp(44px, 7vw, 100px) 0; gap: clamp(36px, 7vw, 120px); align-items: center; }
.service-stripe:nth-child(even) .service-stripe-media { order: 2; }
.service-stripe-media { aspect-ratio: 16/11; overflow: hidden; }
.service-stripe-media picture, .service-stripe-media img { width: 100%; height: 100%; }
.service-stripe-media img { object-fit: cover; }
.service-stripe-copy span { font-size: .72rem; letter-spacing: .12em; }
.service-stripe-copy h3 { margin: 16px 0 24px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.8rem, 5.4vw, 6.3rem); line-height: .86; text-transform: uppercase; }
.service-stripe-copy p { max-width: 38ch; font-size: 1.08rem; margin-bottom: 28px; }

/* Mosaic */
.mosaic { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.mosaic-item { position: relative; border: 0; padding: 0; background: #181a1a; color: var(--paper); cursor: zoom-in; overflow: hidden; text-align: left; }
.mosaic-item picture, .mosaic-item img { width: 100%; height: 100%; }
.mosaic-item img { object-fit: cover; transition: transform .55s var(--ease); }
.mosaic-item:hover img { transform: scale(1.025); }
.mosaic-item span { position: absolute; left: 14px; bottom: 12px; right: 14px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; text-shadow: 0 1px 8px #000; }
.mosaic-item-1 { grid-column: 1 / span 7; grid-row: span 2; aspect-ratio: 16/11; }
.mosaic-item-2 { grid-column: 8 / span 5; aspect-ratio: 4/3; }
.mosaic-item-3 { grid-column: 8 / span 5; aspect-ratio: 4/3; }
.mosaic-item-4 { grid-column: 1 / span 4; aspect-ratio: 1/1; }
.mosaic-item-5 { grid-column: 5 / span 4; aspect-ratio: 1/1; }
.mosaic-item-6 { grid-column: 9 / span 4; aspect-ratio: 1/1; }
.mosaic-light .mosaic-item { color: var(--paper); }

/* CTA and footer */
.closing-cta { padding: clamp(80px, 11vw, 190px) var(--gutter); }
.closing-cta h2 { max-width: 15ch; margin: 0 0 46px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3.2rem, 8vw, 9rem); line-height: .85; letter-spacing: -.045em; text-transform: uppercase; }
.site-footer { background: #060707; color: var(--paper); padding: var(--section-y) var(--gutter) 24px; }
.footer-lead { border-bottom: 1px solid var(--line-dark); padding-bottom: clamp(60px, 8vw, 120px); }
.footer-lead h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3.4rem, 8vw, 9rem); line-height: .82; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr 1fr; gap: 40px; padding: 58px 0 72px; }
.footer-brand { display: block; margin-bottom: 24px; font-size: 1.4rem; font-weight: 900; letter-spacing: .1em; }
.footer-grid p { max-width: 34ch; color: var(--stone); }
.footer-grid nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid a, .footer-grid button { font-size: .88rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom button { border: 0; background: transparent; color: inherit; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }

/* Inner heroes */
.inner-hero, .project-hero, .service-hero, .course-hero { position: relative; min-height: min(88svh, 980px); background: var(--ink); color: var(--paper); overflow: hidden; }
.inner-hero-media, .project-hero-media, .service-hero-media, .course-hero-media, .inner-hero-media picture, .project-hero-media picture, .service-hero-media picture, .course-hero-media picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.inner-hero-media img, .project-hero-media img, .service-hero-media img, .course-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.72)); }
.inner-hero-copy, .project-hero-copy, .service-hero-copy, .course-hero-copy { position: absolute; z-index: 1; left: var(--gutter); right: var(--gutter); bottom: clamp(50px, 8vw, 120px); }
.inner-hero-copy h1, .project-hero-copy h1, .service-hero-copy h1, .course-hero-copy h1 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(4.8rem, 13vw, 13rem); line-height: .73; letter-spacing: -.055em; text-transform: uppercase; }
.inner-hero-copy > p:last-child, .project-hero-copy > p:last-child, .service-hero-copy > p:last-child, .course-hero-copy > p:last-child { max-width: 42ch; margin: 30px 0 0 auto; font-size: clamp(1.05rem, 1.8vw, 1.45rem); }

/* Catalog */
.catalog, .photo-catalog { padding: var(--section-y) var(--gutter); }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 58px; }
.filter-bar button { min-height: 44px; border: 1px solid var(--line-light); background: transparent; padding: 9px 16px; cursor: pointer; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.filter-bar button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(50px, 7vw, 110px) clamp(20px, 4vw, 70px); }
.catalog-card:nth-child(4n+2), .catalog-card:nth-child(4n+3) { margin-top: 120px; }
.catalog-card.is-filtered { display: none; }
.catalog-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.catalog-card:nth-child(3n+1) .catalog-media { aspect-ratio: 16/11; }
.catalog-media picture, .catalog-media img { width: 100%; height: 100%; }
.catalog-media img { object-fit: cover; transition: transform .6s var(--ease); }
.catalog-card:hover img { transform: scale(1.025); }
.catalog-media > span { position: absolute; left: 14px; top: 14px; width: 42px; height: 42px; display: grid; place-items: center; background: rgba(9,10,10,.7); color: var(--paper); font-size: .68rem; }
.catalog-copy { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 5px 20px; padding-top: 16px; }
.catalog-copy p { grid-column: 1/-1; margin: 0; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.catalog-copy h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.3rem, 4vw, 5rem); line-height: .9; text-transform: uppercase; }
.filter-empty { text-align: center; padding: 80px 0; }

/* Project detail */
.project-intro { padding: var(--section-y) var(--gutter); display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(50px, 9vw, 160px); }
.project-intro-text h2 { max-width: 22ch; margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.8rem, 5vw, 6rem); line-height: .95; text-transform: uppercase; }
.project-meta { margin: 0; }
.project-meta div { padding: 16px 0; border-top: 1px solid var(--line-light); display: grid; grid-template-columns: 1fr 1.3fr; gap: 20px; }
.project-meta dt { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.project-meta dd { margin: 0; font-weight: 700; }
.project-film { padding: var(--section-y) var(--gutter); }
.project-film-header { display: flex; justify-content: space-between; gap: 20px; }
.project-film-media { position: relative; margin-top: 28px; aspect-ratio: 16/9; background: #151616; overflow: hidden; }
.project-film-media video { width: 100%; height: 100%; object-fit: cover; }
.project-gallery { padding: var(--section-y) 0; }
.project-pagination { display: grid; grid-template-columns: repeat(2, 1fr); }
.project-pagination a { min-height: 250px; padding: 50px var(--gutter); display: grid; grid-template-columns: 1fr auto; align-content: center; border-right: 1px solid var(--line-dark); }
.project-pagination a:last-child { text-align: right; }
.project-pagination span { grid-column: 1/-1; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--stone); }
.project-pagination strong { font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.2rem, 5vw, 5rem); text-transform: uppercase; }
.related-projects { padding: var(--section-y) 0; }
.related-grid { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-grid picture { display: block; aspect-ratio: 4/5; overflow: hidden; }
.related-grid img { width: 100%; height: 100%; object-fit: cover; }
.related-grid p { margin: 14px 0 4px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.related-grid h3 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: 2.3rem; text-transform: uppercase; }

/* Services pages */
.services-index { padding: var(--section-y) var(--gutter); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 160px); }
.services-index-intro h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3.2rem, 6vw, 7rem); line-height: .88; text-transform: uppercase; }
.services-index-intro > p:last-child { max-width: 38ch; margin-top: 30px; }
.service-list article { border-top: 1px solid var(--line-light); }
.service-list a { min-height: 150px; display: grid; grid-template-columns: 50px 1fr 1fr auto; gap: 20px; align-items: center; padding: 25px 0; }
.service-list h3 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2rem, 3.4vw, 4rem); line-height: .9; text-transform: uppercase; }
.service-list p { margin: 0; }
.process ol { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); }
.process li { min-height: 180px; border: 1px solid var(--line-dark); margin: -1px 0 0 -1px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.process li span { font-size: .7rem; letter-spacing: .12em; }
.process li strong { font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2rem, 4vw, 4rem); text-transform: uppercase; }
.service-editorial { padding: var(--section-y) var(--gutter); display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(60px, 10vw, 180px); }
.service-editorial aside { border-left: 1px solid var(--line-light); padding-left: 30px; }
.service-editorial ol { padding-left: 20px; }
.service-visual { min-height: 80svh; display: grid; grid-template-columns: .8fr 1.2fr; }
.service-visual-copy { padding: var(--section-y) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.service-visual-copy h2 { margin: 0 0 30px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3rem, 5vw, 6rem); line-height: .9; text-transform: uppercase; }
.service-visual-media picture, .service-visual-media img { width: 100%; height: 100%; }
.service-visual-media img { object-fit: cover; }

/* Photography */
.photo-grid { columns: 3 320px; column-gap: 16px; }
.photo-item { width: 100%; margin: 0 0 16px; break-inside: avoid; position: relative; border: 0; padding: 0; cursor: zoom-in; background: #ddd; color: var(--paper); text-align: left; }
.photo-item.is-filtered { display: none; }
.photo-item img { width: 100%; height: auto; }
.photo-item span { position: absolute; left: 14px; right: 14px; bottom: 12px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; text-shadow: 0 1px 8px #000; }
.load-more-wrap { padding-top: 50px; display: flex; justify-content: center; }

/* About and courses */
.about-hero { min-height: 100svh; display: grid; grid-template-columns: .9fr 1.1fr; padding-top: var(--header-h); }
.about-hero-copy { padding: var(--section-y) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.about-hero h1 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(4rem, 8vw, 9rem); line-height: .82; text-transform: uppercase; }
.about-hero-media picture, .about-hero-media img { width: 100%; height: 100%; }
.about-hero-media img { object-fit: cover; }
.about-intro, .course-intro { padding: var(--section-y) var(--gutter); display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 8vw, 130px); align-items: end; }
.about-intro > p:last-child, .course-intro > p:last-child { max-width: 42ch; font-size: 1.15rem; }
.principle-grid { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3, 1fr); }
.principle-grid article { min-height: 360px; border: 1px solid var(--line-dark); margin-left: -1px; padding: 30px; display: flex; flex-direction: column; }
.principle-grid h3 { margin: auto 0 18px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.4rem, 4vw, 4.6rem); text-transform: uppercase; }
.principle-grid p { max-width: 30ch; }
.about-capabilities { padding: var(--section-y) var(--gutter); display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.about-capabilities h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3rem, 5vw, 6rem); line-height: .9; text-transform: uppercase; }
.about-capabilities ul { margin: 0; padding: 0; list-style: none; }
.about-capabilities li { border-top: 1px solid var(--line-light); }
.about-capabilities a { min-height: 76px; display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 15px; }
.course-interest { padding: var(--section-y) var(--gutter); display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 8vw, 120px); }
.course-interest-copy h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3rem, 5.5vw, 6.5rem); line-height: .9; text-transform: uppercase; }

/* Contact and legal */
.contact-hero { min-height: 78svh; padding: calc(var(--header-h) + 80px) var(--gutter) 80px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: end; }
.contact-hero h1, .legal-hero h1, .error-page h1 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(5rem, 13vw, 13rem); line-height: .72; text-transform: uppercase; }
.contact-hero > p { max-width: 38ch; font-size: 1.25rem; }
.contact-main { padding: var(--section-y) var(--gutter); display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(50px, 9vw, 160px); }
.contact-info h2 { margin: 0 0 35px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3rem, 5vw, 6rem); line-height: .9; text-transform: uppercase; }
.contact-info > a { display: block; margin: 10px 0; font-weight: 750; }
.contact-info > p:last-child { margin-top: 30px; max-width: 34ch; color: #666; }
.faq-grid { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
.faq details { border-top: 1px solid var(--line-dark); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 750; }
.faq details p { color: var(--stone); }
.legal-hero { padding: calc(var(--header-h) + 100px) var(--gutter) 100px; }
.legal-hero h1 { max-width: 8ch; }
.legal-hero > p:last-child { max-width: 54ch; font-size: 1.15rem; }
.legal-content { padding: var(--section-y) var(--gutter); max-width: 1000px; margin: 0 auto; }
.legal-content h2 { margin: 60px 0 15px; font-family: "Arial Narrow", Impact, sans-serif; font-size: 2.5rem; text-transform: uppercase; }
.legal-content code { background: #dedbd4; padding: 3px 6px; }
.legal-note { margin-top: 70px; padding: 20px; border-left: 4px solid var(--sunset); background: #e8e4dc; }
.error-page { min-height: 100svh; padding: calc(var(--header-h) + 60px) var(--gutter) 70px; display: flex; flex-direction: column; justify-content: center; }
.error-page p { max-width: 40ch; }
.error-page > div { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* Lightbox */
.lightbox-panel { position: absolute; inset: 0; background: #050606; color: var(--paper); padding: 20px; opacity: 0; transform: scale(.985); transition: opacity .3s ease, transform .35s var(--ease); display: flex; flex-direction: column; }
.lightbox.is-open .lightbox-panel { opacity: 1; transform: scale(1); }
.lightbox-stage { flex: 1; min-height: 0; display: grid; grid-template-columns: 56px 1fr 56px; align-items: center; gap: 14px; }
.lightbox-stage img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-nav { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); background: transparent; color: inherit; cursor: pointer; }
.lightbox-panel > p { margin: 14px auto 0; max-width: 80ch; text-align: center; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --header-h: 74px; }
  .header-link-muted { display: none; }
  .menu-layout { grid-template-columns: 1fr .8fr; gap: 32px; }
  .menu-links strong { font-size: clamp(2rem, 5vw, 4rem); }
  .cinema-feature { grid-template-columns: 1fr; }
  .cinema-media { min-height: 58svh; }
  .service-stripe { min-height: auto; grid-template-columns: 1fr 1fr; }
  .services-index, .service-editorial { grid-template-columns: 1fr; }
  .services-index-intro { max-width: 720px; }
  .project-intro { grid-template-columns: 1fr; }
  .project-meta { max-width: 620px; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-info { max-width: 680px; }
}

@media (max-width: 820px) {
  :root { --gutter: 20px; --section-y: 88px; }
  .site-header { padding: 0 14px 0 20px; }
  .brand { font-size: .9rem; }
  .brand-mark { width: 20px; height: 20px; }
  .header-link { display: none; }
  .menu-button { min-width: 48px; width: 48px; }
  .menu-panel { width: 100%; }
  .brand-logo { max-width: 140px; max-height: 50px; }
  .hero-content { padding-bottom: 105px; }
  .hero h1 { font-size: clamp(4.1rem, 21vw, 7rem); line-height: .78; }
  .hero h1 span:last-child { margin-left: 15vw; }
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .hero-controls { right: 14px; bottom: 14px; }
  .hero-controls span, .video-toolbar span { display: none; }
  .hero-scroll { display: none; }
  .editorial-intro { min-height: 70svh; grid-template-columns: 30px 1fr; }
  .editorial-copy { grid-column: 2; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .section-heading > p { margin: 0; }
  .menu-layout { display: block; padding: 24px 0; }
  .menu-preview { display: none; }
  .menu-links a { min-height: 58px; }
  .menu-links strong { font-size: clamp(2.1rem, 10vw, 4.2rem); }
  .menu-footer { flex-direction: column; }
  .editorial-grid { grid-template-columns: 1fr; gap: 55px; }
  .project-card, .project-card-1, .project-card-2, .project-card-3, .project-card-4, .project-card-5, .project-card-6, .project-card-7, .project-card-8 { grid-column: 1; margin-top: 0; }
  .project-card:nth-child(even) { margin-left: 12vw; }
  .project-card:nth-child(odd) { margin-right: 7vw; }
  .project-card .project-card-media { aspect-ratio: 4/5; }
  .glance-header { align-items: flex-start; flex-direction: column; }
  .carousel-status { grid-template-columns: auto 90px 48px 48px; }
  .glance-card { flex-basis: 82vw; }
  .cinema-copy { padding-bottom: 60px; }
  .service-stripe, .service-stripe:nth-child(even) { grid-template-columns: 1fr; gap: 30px; }
  .service-stripe:nth-child(even) .service-stripe-media { order: 0; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic-item, .mosaic-item-1, .mosaic-item-2, .mosaic-item-3, .mosaic-item-4, .mosaic-item-5, .mosaic-item-6 { grid-column: auto; grid-row: auto; aspect-ratio: 4/5; }
  .mosaic-item-1 { grid-column: 1/-1; aspect-ratio: 16/11; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-wrap: wrap; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card:nth-child(n) { margin-top: 0; }
  .catalog-card:nth-child(even) { margin-left: 8vw; }
  .project-pagination { grid-template-columns: 1fr; }
  .project-pagination a { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .related-grid { grid-template-columns: 1fr; }
  .service-list a { grid-template-columns: 42px 1fr auto; }
  .service-list p { grid-column: 2; }
  .process ol { grid-template-columns: repeat(2, 1fr); }
  .service-visual { grid-template-columns: 1fr; }
  .service-visual-media { min-height: 55svh; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-media { min-height: 55svh; }
  .about-intro, .course-intro, .about-capabilities, .course-interest { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 260px; margin: -1px 0 0; }
  .contact-hero { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .lightbox-stage { grid-template-columns: 44px 1fr 44px; gap: 4px; }
}

@media (max-width: 560px) {
  .menu-button span { display: none; }
  .menu-button { min-width: 46px; width: 46px; padding: 0; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-controls button { width: 44px; padding: 0; justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide, .check.field-wide, small.field-wide { grid-column: auto; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic-item, .mosaic-item-1 { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .process ol { grid-template-columns: 1fr; }
  .project-film { padding-left: 0; padding-right: 0; }
  .project-film-header { padding: 0 var(--gutter); }
  .service-list a { grid-template-columns: 38px 1fr auto; }
  .service-list p { grid-column: 1/-1; }
  .carousel-status { width: 100%; grid-template-columns: auto 1fr 48px 48px; }
  .photo-grid { columns: 1; }
}

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

/* Migas de pan accesibles sobre los encabezados interiores. */
.breadcrumbs {
    position: absolute;
    top: clamp(5.5rem, 7vw, 7.5rem);
    left: var(--gutter);
    right: var(--gutter);
    z-index: 8;
    pointer-events: none;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255,255,255,.74);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: .45rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; opacity: .55; }
.breadcrumbs a { color: inherit; text-decoration: none; pointer-events: auto; }
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible { color: #fff; }
.breadcrumbs [aria-current="page"] { color: #fff; }
@media (max-width: 700px) {
    .breadcrumbs { top: 4.9rem; }
    .breadcrumbs ol { font-size: .62rem; letter-spacing: .09em; }
}

/* --------------------------------------------------------------------------
   Hangar G7 public experience — reference-aligned composition
   -------------------------------------------------------------------------- */
:root {
  --g7-ink: #1e2126;
  --g7-white: #fff;
  --g7-warm: #efede6;
  --g7-soft: #f6f6f4;
  --g7-line: rgba(30, 33, 38, .15);
  --g7-red: #ed0047;
  --g7-shell: clamp(20px, 3.55vw, 56px);
  --g7-radius: 5px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-home { background: var(--g7-white); color: var(--g7-ink); }
.page-home main { overflow: clip; }
.page-home .site-header { height: 100px; padding: 0 var(--g7-shell); }
.site-header.is-hidden { transform: none; }
.site-header.is-solid {
  color: var(--g7-ink);
  background: rgba(255,255,255,.96);
  border-color: var(--g7-line);
  backdrop-filter: blur(18px);
}
.header-menu-cluster { gap: 14px; min-width: 140px; }
.menu-button,
.header-circle-link,
.header-clock,
.g7-circle-button {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(30,33,38,.96);
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
}
.menu-button:hover,
.header-circle-link:hover,
.header-clock:hover,
.g7-circle-button:hover { transform: scale(1.045); }
.site-header.is-solid .menu-button,
.site-header.is-solid .header-circle-link,
.site-header.is-solid .header-clock { color: #fff; background: var(--g7-ink); }
.header-circle-link { backdrop-filter: blur(10px); }
.header-actions { gap: 14px; }
.header-actions button { border: 0; }
.header-quote {
  min-width: 178px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: rgba(30,33,38,.96);
  cursor: pointer;
  font-size: 1rem;
}
.header-quote svg { width: 20px; height: 20px; }
.brand { width: clamp(130px, 12vw, 176px); height: 82px; justify-content: center; }
.brand > span { position: absolute; inset: 0; display: grid; place-items: center; transition: opacity .25s ease; }
.brand .brand-logo { width: 100%; max-width: none; max-height: 76px; object-fit: contain; }
.brand-dark { opacity: 0; }
.site-header.is-solid .brand-light { opacity: 0; }
.site-header.is-solid .brand-dark { opacity: 1; }

.g7-kicker {
  margin: 0;
  font-size: clamp(.83rem, 1.05vw, 1rem);
  font-weight: 650;
  letter-spacing: .035em;
}
.g7-pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 520;
  transition: transform .2s ease, background .2s ease;
}
.g7-pill:hover { transform: translateY(-2px); }
.g7-pill-light { color: var(--g7-ink); background: #fff; }
.g7-pill-dark { color: #fff; background: var(--g7-ink); }

/* Header navigation */
.menu-panel {
  width: min(100%, 1180px);
  color: var(--g7-ink);
  background: #fff;
  padding: 30px clamp(24px, 4vw, 62px) 34px;
}
.menu-topline { min-height: 58px; display: grid; grid-template-columns: 160px 1fr 52px; }
.menu-topline > p { margin: 0; text-align: center; font-size: 1rem; }
.menu-brand { display: block; width: 142px; }
.menu-brand .brand-logo { width: 100%; height: 68px; object-fit: contain; }
.menu-layout { grid-template-columns: minmax(360px,.8fr) minmax(360px,1.2fr); }
.menu-links a { min-height: 64px; border-color: var(--g7-line); }
.menu-links a:hover,
.menu-links a:focus-visible { color: var(--g7-ink); padding-left: 8px; }
.menu-links strong {
  font-family: inherit;
  font-size: clamp(1.55rem, 2.6vw, 2.85rem);
  font-weight: 500;
  line-height: 1.08;
  text-transform: none;
}
.menu-preview { min-height: min(64vh, 690px); border-radius: var(--g7-radius); }
.menu-preview-caption {
  left: 18px;
  right: auto;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--g7-ink);
  background: rgba(255,255,255,.9);
  letter-spacing: 0;
  text-transform: none;
}
.menu-footer { border-color: var(--g7-line); }

/* Hero */
.g7-hero {
  position: relative;
  min-height: max(760px, 100svh);
  color: #fff;
  background: var(--g7-ink);
  overflow: hidden;
}
.g7-hero-poster,
.g7-hero-video,
.g7-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.g7-hero-poster img,
.g7-hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.g7-hero-video { z-index: 1; opacity: 0; transition: opacity .5s ease; }
.g7-hero-video.is-ready { opacity: 1; }
.g7-hero-shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,11,13,.16) 0%, rgba(10,11,13,.02) 38%, rgba(10,11,13,.77) 100%),
    linear-gradient(90deg, rgba(10,11,13,.24), transparent 54%);
}
.g7-hero-copy {
  position: relative;
  z-index: 3;
  min-height: max(760px, 100svh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px var(--g7-shell) clamp(42px, 4.4vw, 68px);
}
.g7-hero-copy h1 {
  margin: 11px 0 0;
  max-width: 12ch;
  font-family: inherit;
  font-size: clamp(4.1rem, 8.35vw, 8rem);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 520;
  text-transform: none;
}
.g7-status {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(28px, 3vw, 46px) 0 0;
  font-size: clamp(.95rem, 1.4vw, 1.25rem);
}
.g7-status > span { width: 10px; height: 10px; border-radius: 50%; background: var(--g7-red); }
.g7-hero-dock {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(780px, 74vw);
  margin-top: 24px;
}
.g7-hero-dock nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.g7-hero-dock a,
.g7-dock-control {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background .2s ease;
}
.g7-hero-dock a:hover,
.g7-hero-dock a:focus-visible { background: rgba(255,255,255,.45); }
.g7-dock-control { width: 52px; min-width: 52px; }
.g7-dock-control > span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Editorial introduction */
.g7-manifesto {
  position: relative;
  min-height: min(920px, 86svh);
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--g7-ink);
  overflow: hidden;
}
.g7-manifesto-bg,
.g7-manifesto-shade { position: absolute; inset: 0; }
.g7-manifesto-bg picture,
.g7-manifesto-bg img { width: 100%; height: 100%; }
.g7-manifesto-bg img { object-fit: cover; filter: saturate(.78); }
.g7-manifesto-shade { background: linear-gradient(90deg, rgba(14,16,18,.77) 0%, rgba(14,16,18,.52) 49%, rgba(14,16,18,.14) 100%); }
.g7-manifesto-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 70vw);
  margin-left: var(--g7-shell);
}
.g7-manifesto-copy > p {
  margin: 0 0 28px;
  font-size: clamp(1.75rem, 3.35vw, 3.2rem);
  line-height: 1.23;
  letter-spacing: -.025em;
}

/* Horizontal project rail */
.g7-current { padding: clamp(90px, 9vw, 148px) 0 clamp(92px, 10vw, 160px); background: #fff; }
.g7-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 var(--g7-shell);
}
.g7-section-head h2,
.g7-glance > h2,
.g7-feature-copy h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.24;
  font-weight: 520;
  letter-spacing: -.025em;
  text-transform: none;
}
.g7-rail-controls { display: flex; align-items: center; gap: 14px; }
.g7-rail-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--g7-line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.g7-rail-controls a { min-height: 48px; display: grid; place-items: center; border: 1px solid var(--g7-line); border-radius: 999px; padding: 0 22px; }
.g7-current-stage {
  display: grid;
  grid-template-columns: clamp(190px, 22vw, 328px) minmax(0, 1fr);
  gap: 0;
  margin-top: 72px;
}
.g7-current-count {
  display: flex;
  align-items: flex-start;
  margin: -36px 0 0;
  padding-left: var(--g7-shell);
  font-size: 1.65rem;
  line-height: 1;
}
.g7-current-count strong {
  font-size: clamp(4.3rem, 8vw, 8rem);
  line-height: .8;
  font-weight: 420;
  letter-spacing: -.07em;
}
.g7-project-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 var(--g7-shell) 22px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.g7-project-rail::-webkit-scrollbar { display: none; }
.g7-project-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.g7-project-card {
  flex: 0 0 clamp(430px, 45vw, 650px);
  scroll-snap-align: start;
}
.g7-project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--g7-radius);
  background: #e8e8e8;
}
.g7-project-media picture,
.g7-project-media img { width: 100%; height: 100%; }
.g7-project-media img { object-fit: cover; transition: transform .5s ease; }
.g7-project-card:hover .g7-project-media img { transform: scale(1.02); }
.g7-project-media > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--g7-ink);
  background: rgba(255,255,255,.92);
}
.g7-project-copy {
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  gap: 14px;
  align-items: center;
  padding: 18px 4px 0;
}
.g7-project-copy h3 { margin: 0; font-size: clamp(1.2rem, 1.8vw, 1.6rem); font-weight: 520; }
.g7-project-copy small { font-size: .8rem; }

/* Interactive flight map */
.g7-glance {
  padding: 0 var(--g7-shell) clamp(96px, 10vw, 158px);
  color: var(--g7-ink);
  background: #fff;
  border-top: 1px solid var(--g7-line);
}
.g7-glance > h2 { padding-top: clamp(92px, 9vw, 145px); }
.g7-flight-map {
  position: relative;
  min-height: clamp(420px, 48vw, 690px);
  margin-top: 36px;
  overflow: hidden;
}
.g7-flight-lines { width: 100%; height: 100%; min-height: inherit; }
.g7-flight-lines path,
.g7-flight-lines circle { fill: none; stroke: rgba(30,33,38,.52); stroke-width: 1.2; vector-effect: non-scaling-stroke; }
.g7-flight-lines .g7-drone-plan { opacity: .46; }
.g7-flight-lines .g7-flight-path { stroke-dasharray: 5 8; opacity: .58; }
.g7-map-mark { position: absolute; top: 8%; right: 7%; width: clamp(115px, 12vw, 180px); opacity: .08; }
.g7-map-mark .brand-logo { width: 100%; }
.g7-hotspot {
  position: absolute;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 7px solid rgba(255,255,255,.8);
  border-radius: 50%;
  color: transparent;
  background: var(--g7-ink);
  box-shadow: 0 0 0 1px rgba(30,33,38,.08);
  cursor: pointer;
}
.g7-hotspot::after { content: ""; position: absolute; inset: -9px; border: 1px solid transparent; border-radius: 50%; transition: border-color .2s, transform .2s; }
.g7-hotspot:hover::after,
.g7-hotspot:focus-visible::after { border-color: var(--g7-ink); transform: scale(1.18); }
.g7-hotspot-1 { left: 13%; top: 62%; }
.g7-hotspot-2 { left: 29%; top: 30%; }
.g7-hotspot-3 { left: 45%; top: 58%; }
.g7-hotspot-4 { left: 61%; top: 28%; }
.g7-hotspot-5 { left: 76%; top: 54%; }
.g7-hotspot-6 { left: 88%; top: 30%; }
.g7-glance-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px,1fr));
  gap: 20px;
}
.g7-glance-thumbs button {
  min-width: 0;
  border: 0;
  padding: 0;
  color: var(--g7-ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.g7-glance-thumbs picture { display: block; aspect-ratio: 16/10; overflow: hidden; border-radius: var(--g7-radius); }
.g7-glance-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.g7-glance-thumbs span { display: block; margin-top: 10px; font-size: .88rem; }

/* Feature panel */
.g7-feature {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 680px;
  padding: clamp(42px, 6vw, 92px) var(--g7-shell);
  background: var(--g7-warm);
}
.g7-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 530px;
  padding: clamp(20px, 4vw, 62px);
}
.g7-feature-copy h2 { margin-top: 20px; max-width: 11ch; }
.g7-feature-copy > p:not(.g7-kicker) { margin: 30px 0; max-width: 43ch; font-size: 1.06rem; line-height: 1.75; }
.g7-feature-media { min-height: 520px; }
.g7-feature-media picture,
.g7-feature-media img { width: 100%; height: 100%; }
.g7-feature-media img { object-fit: cover; border-radius: var(--g7-radius); }

/* Floating media composition */
.g7-focus {
  position: relative;
  min-height: clamp(690px, 74vw, 1050px);
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
}
.g7-focus-backdrop { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.g7-focus-backdrop picture { opacity: .52; filter: blur(7px) saturate(.65); }
.g7-focus-backdrop picture:nth-child(1) { width: 46%; height: 44%; align-self: start; }
.g7-focus-backdrop picture:nth-child(2) { width: 50%; height: 38%; justify-self: end; align-self: center; }
.g7-focus-backdrop picture:nth-child(3) { width: 62%; height: 32%; align-self: end; justify-self: center; }
.g7-focus-backdrop picture:nth-child(4) { width: 50%; height: 40%; align-self: end; justify-self: end; }
.g7-focus-backdrop img { width: 100%; height: 100%; object-fit: cover; }
.g7-focus-brand {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 145px;
  transform: translateX(-50%);
  z-index: 2;
}
.g7-focus-brand .brand-logo { width: 100%; }
.g7-focus-player {
  position: relative;
  z-index: 1;
  width: min(76vw, 960px);
  aspect-ratio: 16/10;
  background: #d7d7d7;
  box-shadow: 0 26px 70px rgba(30,33,38,.13);
}
.g7-focus-player video { width: 100%; height: 100%; object-fit: cover; border-radius: var(--g7-radius); }
.g7-focus-toolbar {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  justify-content: space-between;
}
.g7-focus-toolbar button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(30,33,38,.84);
  cursor: pointer;
  backdrop-filter: blur(9px);
}

/* Visual archive */
.g7-gallery { padding: clamp(90px, 9vw, 145px) 0; background: #fff; border-top: 1px solid var(--g7-line); }
.g7-gallery-strip {
  display: flex;
  gap: 24px;
  margin-top: 62px;
  padding: 0 var(--g7-shell) 22px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.g7-gallery-strip::-webkit-scrollbar { display: none; }
.g7-gallery-strip button {
  flex: 0 0 clamp(330px, 37vw, 560px);
  scroll-snap-align: start;
  border: 0;
  padding: 0;
  color: var(--g7-ink);
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}
.g7-gallery-strip picture { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--g7-radius); }
.g7-gallery-strip img { width: 100%; height: 100%; object-fit: cover; }
.g7-gallery-strip span { display: block; margin-top: 13px; font-size: .84rem; }

/* Reference-style service detail panel */
.g7-detail-dialog {
  left: 0;
  right: auto;
  width: min(100%, 710px);
  display: flex;
  flex-direction: column;
  padding: 34px clamp(28px, 5vw, 58px) 52px;
  border-radius: 0 26px 26px 0;
  transform: translateX(-102%);
}
.g7-detail-shell.is-open .g7-detail-dialog { transform: translateX(0); }
.g7-detail-logo { width: 155px; margin: 0 auto; }
.g7-detail-logo .brand-logo { width: 100%; }
.g7-detail-dialog .dialog-header { margin-top: 18px; }
.g7-detail-dialog .dialog-header .g7-kicker { margin: 0; }
.g7-detail-spacer { flex: 1; min-height: 190px; }
.g7-detail-copy h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.7rem); font-weight: 520; }
.g7-detail-copy p { max-width: 48ch; margin: 22px 0 30px; font-size: 1.05rem; line-height: 1.75; }

/* Footer */
.site-footer {
  padding: clamp(74px, 8vw, 124px) var(--g7-shell) 28px;
  color: var(--g7-ink);
  background: #fff;
  border-top: 1px solid var(--g7-line);
}
.g7-footer-main {
  display: grid;
  grid-template-columns: 1.15fr .9fr .65fr 190px;
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}
.g7-footer-brand > a { display: block; width: min(260px, 80%); }
.g7-footer-brand .brand-logo { width: 100%; }
.g7-footer-brand p { max-width: 46ch; margin: 26px 0 0; color: #55585c; }
.g7-footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.g7-footer-contact > p { margin: 0 0 12px; font-size: 1.25rem; }
.g7-footer-nav { display: grid; gap: 10px; }
.g7-footer-symbol img { width: 100%; height: auto; filter: invert(1); opacity: .08; }
.g7-footer-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(72px, 9vw, 140px);
  padding-top: 22px;
  border-top: 1px solid var(--g7-line);
  font-size: .78rem;
}
.g7-footer-bottom button { margin-left: auto; border: 0; background: transparent; cursor: pointer; }

/* Dialogs */
.side-dialog { background: #fff; color: var(--g7-ink); }
.dialog-body h2 {
  font-family: inherit;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 520;
  line-height: 1;
  text-transform: none;
}

@media (max-width: 980px) {
  .page-home .site-header { height: 84px; }
  .header-circle-link { display: none; }
  .header-menu-cluster { min-width: 48px; }
  .header-quote { min-width: 132px; }
  .g7-hero { min-height: max(680px, 100svh); }
  .g7-hero-copy { min-height: max(680px, 100svh); padding-top: 118px; }
  .g7-hero-dock { width: min(700px, 92vw); }
  .g7-current-stage { grid-template-columns: 150px minmax(0,1fr); }
  .g7-glance-thumbs { grid-template-columns: repeat(3, 1fr); }
  .g7-feature { grid-template-columns: 1fr; }
  .g7-feature-copy { max-width: 690px; padding-left: 0; }
  .g7-feature-media { min-height: 56svh; }
  .g7-footer-main { grid-template-columns: 1fr 1fr; }
  .g7-footer-symbol { display: none; }
  .menu-layout { grid-template-columns: 1fr .85fr; }
}

@media (max-width: 720px) {
  :root { --g7-shell: 20px; }
  .site-header,
  .page-home .site-header { height: 76px; padding: 0 16px; }
  .menu-button,
  .header-clock,
  .g7-circle-button { width: 46px; height: 46px; min-width: 46px; }
  .brand { width: 112px; height: 68px; }
  .brand .brand-logo { max-height: 62px; }
  .header-clock { display: none; }
  .header-quote { min-width: 108px; height: 46px; padding: 0 16px; gap: 10px; }
  .header-quote span { font-size: .9rem; }
  .g7-hero-copy { padding: 110px var(--g7-shell) 30px; }
  .g7-hero-copy h1 { max-width: 9ch; font-size: clamp(3.5rem, 18vw, 5.8rem); }
  .g7-status { margin-top: 24px; font-size: .95rem; }
  .g7-hero-dock { width: 100%; gap: 9px; margin-top: 19px; }
  .g7-hero-dock nav { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .g7-hero-dock a { min-height: 42px; font-size: .86rem; }
  .g7-dock-control { width: 46px; min-width: 46px; }
  .g7-manifesto { min-height: 78svh; }
  .g7-manifesto-shade { background: linear-gradient(90deg, rgba(14,16,18,.8), rgba(14,16,18,.42)); }
  .g7-manifesto-copy { width: calc(100% - 40px); margin: 0 20px; }
  .g7-manifesto-copy > p { font-size: clamp(1.55rem, 7vw, 2.45rem); }
  .g7-section-head { align-items: flex-start; }
  .g7-rail-controls button { display: none; }
  .g7-rail-controls a { min-height: 42px; padding: 0 14px; font-size: .82rem; }
  .g7-current-stage { display: block; margin-top: 44px; }
  .g7-current-count { margin: 0 0 28px; padding: 0 var(--g7-shell); }
  .g7-current-count strong { font-size: 4.4rem; }
  .g7-project-rail { padding-left: var(--g7-shell); }
  .g7-project-card { flex-basis: 84vw; }
  .g7-glance { padding-left: 0; padding-right: 0; }
  .g7-glance > h2 { padding-left: var(--g7-shell); padding-right: var(--g7-shell); }
  .g7-flight-map { min-height: 440px; margin-top: 24px; transform: scale(1.2); transform-origin: center; }
  .g7-map-mark { right: 9%; }
  .g7-hotspot { width: 32px; height: 32px; }
  .g7-glance-thumbs {
    display: flex;
    gap: 14px;
    padding: 0 var(--g7-shell) 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .g7-glance-thumbs button { flex: 0 0 44vw; }
  .g7-feature { padding: 54px var(--g7-shell); }
  .g7-feature-copy { padding: 18px 0 48px; }
  .g7-feature-media { min-height: 52svh; }
  .g7-focus { min-height: 720px; }
  .g7-focus-player { width: 88vw; aspect-ratio: 4/5; }
  .g7-focus-player video { object-fit: cover; }
  .g7-focus-toolbar button span { display: none; }
  .g7-gallery .g7-section-head { flex-direction: column; }
  .g7-gallery-strip { margin-top: 42px; }
  .g7-gallery-strip button { flex-basis: 78vw; }
  .g7-detail-dialog { border-radius: 0; }
  .g7-footer-main { grid-template-columns: 1fr; }
  .g7-footer-bottom { flex-wrap: wrap; gap: 13px 20px; }
  .g7-footer-bottom button { width: 100%; margin: 14px 0 0; text-align: left; }
  .menu-panel { width: 100%; padding: 18px 22px 28px; }
  .menu-topline { grid-template-columns: 110px 1fr 46px; }
  .menu-brand { width: 106px; }
  .menu-layout { display: block; padding: 20px 0; }
  .menu-preview { display: none; }
  .menu-links a { min-height: 54px; }
  .menu-links strong { font-size: clamp(1.65rem, 8vw, 2.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .g7-hero-video,
  .g7-focus-player video { display: none; }
}

/* Hangar G7 V3 — service expansion */
.service-hero-media video,
.course-hero-media video { width: 100%; height: 100%; object-fit: cover; }
.service-hero-v3 .service-hero-copy > p:last-child,
.course-hero-v3 .course-hero-copy > p:last-child { max-width: 56ch; }
.service-editorial-v3 { align-items: start; }
.service-capabilities h3 { margin: 0 0 24px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2rem, 3vw, 3.5rem); line-height: .95; text-transform: uppercase; }
.service-capabilities ul { margin: 0; padding: 0; list-style: none; }
.service-capabilities li { min-height: 54px; display: flex; align-items: center; border-top: 1px solid var(--line-light); padding: 12px 0; }
.service-capabilities li::before { content: "↗"; margin-right: 14px; font-size: .85rem; }
.service-notice { padding: 0 var(--gutter) clamp(70px, 8vw, 120px); }
.service-notice p { max-width: 920px; margin: 0; padding: 24px 28px; border-left: 3px solid var(--sunset); background: rgba(9,10,10,.055); }
.service-visual-v3 .service-visual-media { min-height: 70svh; background: #111; }
.service-visual-v3 .service-visual-media video { width: 100%; height: 100%; min-height: 70svh; object-fit: cover; }
.service-gallery-v3 { padding: var(--section-y) 0; }
.service-crossnav { padding: var(--section-y) var(--gutter); }
.service-crossnav nav { margin-top: 40px; border-top: 1px solid var(--line-dark); }
.service-crossnav a { min-height: 112px; display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 20px; border-bottom: 1px solid var(--line-dark); }
.service-crossnav a span { font-size: .72rem; letter-spacing: .14em; color: var(--stone); }
.service-crossnav a strong { font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2rem, 4vw, 4.6rem); line-height: .9; text-transform: uppercase; }
.course-intro-v3 { align-items: start; }
.course-place { display: grid; grid-template-columns: auto 1fr; gap: 14px 24px; padding: 24px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.course-place span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #686866; }
.course-place strong { font-weight: 750; }
.course-learning { padding: var(--section-y) 0; }
.course-learning ol { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); }
.course-learning li { min-height: 250px; margin: -1px 0 0 -1px; padding: 26px; border: 1px solid var(--line-dark); display: flex; flex-direction: column; justify-content: space-between; }
.course-learning li span { font-size: .72rem; letter-spacing: .14em; color: var(--stone); }
.course-learning li p { margin: 50px 0 0; font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

@media (max-width: 980px) {
  .course-learning ol { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .service-crossnav a { min-height: 92px; grid-template-columns: 36px 1fr auto; }
  .service-crossnav a strong { font-size: clamp(1.7rem, 9vw, 2.8rem); }
  .course-learning ol { grid-template-columns: 1fr; }
  .course-learning li { min-height: 180px; }
  .service-notice { padding-left: var(--g7-shell, 20px); padding-right: var(--g7-shell, 20px); }
}


/* Hangar G7 V4 — playlists multimedia reales y refinamiento editorial */
.service-editorial-v4 > div > h2 {
  max-width: 36ch;
  margin-bottom: 0;
  font-family: inherit;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.28;
  font-weight: 520;
  letter-spacing: -.02em;
  text-transform: none;
}
.service-hero-v4 video,
.course-hero-v4 video { width: 100%; height: 100%; object-fit: cover; }

.service-gallery-v4 .mosaic-item-more,
.course-gallery-v4 .mosaic-item-more {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
}

.course-video-feature { padding: var(--section-y) 0; }
.course-video-frame {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.course-video-frame video {
  display: block;
  width: 100%;
  max-height: 78svh;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

@media (max-width: 760px) {
  .service-editorial-v4 > div > h2 {
    max-width: none;
    font-size: clamp(1.2rem, 5.4vw, 1.65rem);
    line-height: 1.35;
  }
  .service-gallery-v4 .mosaic-item-more,
  .course-gallery-v4 .mosaic-item-more {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }
}
