:root {
  --ink: #101820;
  --muted: #607078;
  --line: #dbe2e4;
  --paper: #f4f7f7;
  --white: #fff;
  --teal: #02aeb3;
  --teal-dark: #007f85;
  --navy: #071a2f;
  --shell: min(1280px, calc(100% - 72px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px;
  background: var(--ink); color: white; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; z-index: 50; inset: 0 0 auto; height: 88px;
  background: rgba(255, 255, 255, .96); border-bottom: 1px solid rgba(16, 24, 32, .08);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { height: 72px; box-shadow: 0 8px 30px rgba(7, 26, 47, .07); }
.nav-wrap {
  width: var(--shell); height: 100%; margin-inline: auto; display: grid;
  grid-template-columns: 230px 1fr auto; align-items: center; gap: 24px;
}
.brand img { width: 218px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(16px, 2vw, 30px); }
.desktop-nav a, .desktop-nav button, .header-contact { font-size: .84rem; font-weight: 600; letter-spacing: .01em; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px;
  background: var(--teal); transition: right .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.desktop-nav a[aria-current="page"]::after { right: 0; }
.nav-item { position: relative; }
.nav-toggle { display: flex; align-items: center; gap: 7px; padding: 12px 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.nav-toggle span { color: var(--teal-dark); font-size: .7rem; transition: transform .2s; }
.nav-toggle:focus-visible { outline: none; box-shadow: 0 2px var(--teal); }
.submenu {
  position: absolute; top: calc(100% + 15px); left: -24px; min-width: 235px; padding: 13px 0;
  background: white; border-top: 2px solid var(--teal); box-shadow: 0 18px 45px rgba(7,26,47,.14);
  opacity: 0; visibility: hidden; transform: translateY(9px); transition: opacity .2s, transform .2s, visibility .2s;
}
.submenu::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 17px; }
.submenu a { display: block; padding: 12px 24px; color: #34454d; font-size: .8rem; white-space: nowrap; transition: color .2s, background .2s; }
.submenu a::after { display: none; }
.submenu a:hover, .submenu a:focus-visible { color: var(--teal-dark); background: var(--paper); }
.nav-item:hover .submenu, .nav-item:focus-within .submenu { opacity: 1; visibility: visible; transform: none; }
.nav-item:hover .nav-toggle span, .nav-item:focus-within .nav-toggle span { transform: rotate(180deg); }
.header-contact { border-left: 1px solid var(--line); padding: 12px 0 12px 30px; }
.header-contact span { margin-left: 12px; color: var(--teal-dark); }
.menu-button, .mobile-nav { display: none; }

.hero { position: relative; min-height: 100svh; padding-top: 88px; display: flex; align-items: center; color: white; overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 88px 0 0; }
.hero-media { overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.04);
  background-position: center; background-size: cover;
  transition: opacity .9s ease, transform 6.5s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide--drone { background-image: url("../img/hero-dji.jpg"); background-position: center 50%; }
.hero-slide--power { background-image: url("../img/hero-power.jpg"); background-position: center; }
.hero-slide--industry { background-image: url("../img/network-city.jpg"); background-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(3, 18, 31, .9) 0%, rgba(3, 18, 31, .62) 42%, rgba(3, 18, 31, .06) 78%); }
.hero-content { position: relative; z-index: 2; padding-top: 44px; }
.hero-panel { display: none; max-width: 980px; }
.hero-panel.is-active { display: block; animation: panel-in .65s ease both; }
.eyebrow {
  margin: 0 0 24px; color: var(--teal-dark); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow--light { color: #65e2e4; }
.hero h1, .hero h2 {
  max-width: 920px; margin: 0; font-size: clamp(3.1rem, 6.8vw, 7.2rem);
  line-height: .94; letter-spacing: -.055em; font-weight: 600;
}
.hero-copy { max-width: 650px; margin: 32px 0 0; font-size: clamp(1rem, 1.45vw, 1.25rem); line-height: 1.75; color: rgba(255,255,255,.86); }
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 34px;
  min-width: 220px; padding: 17px 20px; border: 1px solid transparent;
  font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}
.button--solid { background: var(--teal); color: #03191a; }
.button--solid:hover { background: #66e0e1; }
.button--light { background: white; color: var(--navy); }
.button--light:hover { background: transparent; color: white; border-color: white; }
.text-link { display: inline-flex; gap: 14px; align-items: center; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.text-link span { color: var(--teal); transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.text-link--light { color: white; }
.scroll-cue {
  position: absolute; z-index: 2; right: 36px; bottom: 38px; display: flex; align-items: center;
  gap: 18px; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl;
}
.scroll-cue i { display: block; width: 1px; height: 64px; background: rgba(255,255,255,.6); }
.slider-controls {
  position: absolute; z-index: 3; left: max(36px, calc((100% - 1280px) / 2)); bottom: 34px;
  display: flex; align-items: center; gap: 18px;
}
.slider-arrow {
  width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.55);
  background: transparent; color: white; cursor: pointer; transition: background .2s, color .2s;
}
.slider-arrow:hover, .slider-arrow:focus-visible { background: white; color: var(--navy); }
.slider-dots { display: flex; gap: 9px; }
.slider-dots button {
  width: 26px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.42);
  cursor: pointer; transition: width .25s, background .25s;
}
.slider-dots button.is-active { width: 48px; background: #64e5e7; }
@keyframes panel-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.metric-band { background: var(--white); border-bottom: 1px solid var(--line); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { min-height: 168px; display: flex; flex-direction: column; justify-content: center; padding: 32px 40px; border-left: 1px solid var(--line); }
.metric:last-child { border-right: 1px solid var(--line); }
.metric strong { font-size: clamp(2rem, 3.4vw, 3.4rem); line-height: 1; font-weight: 500; letter-spacing: -.05em; }
.metric span { margin-top: 12px; color: var(--muted); font-size: .82rem; letter-spacing: .04em; }

.section { padding: clamp(96px, 10vw, 160px) 0; }
.intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 11vw; align-items: start; }
.intro h2, .section-heading h2, .contact h2, .brand-heading h2 {
  margin: 0; font-weight: 500; letter-spacing: -.045em; line-height: 1.06;
  font-size: clamp(2.55rem, 5vw, 5.3rem);
}
.intro-copy { padding-top: 38px; }
.intro-copy p { margin: 0 0 22px; color: #405159; font-size: clamp(1.05rem, 1.45vw, 1.25rem); line-height: 1.8; }
.intro-copy .text-link { margin-top: 20px; }

.editorial-image { position: relative; height: min(72vw, 760px); overflow: hidden; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }
.editorial-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,15,26,.45), transparent 38%); }
.editorial-image p { position: absolute; z-index: 2; left: max(36px, calc((100% - 1280px) / 2)); bottom: 38px; color: white; margin: 0; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; }

.solutions { background: var(--paper); }
.section-heading { max-width: 830px; margin-bottom: 74px; }
.section-heading h2 { font-size: clamp(2.45rem, 4.6vw, 4.8rem); }
.solution-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #bdc9cc; }
.solution { padding: 35px clamp(28px, 3.5vw, 56px) 20px 0; min-height: 360px; border-right: 1px solid #bdc9cc; }
.solution + .solution { padding-left: clamp(28px, 3.5vw, 56px); }
.solution:last-child { border-right: 0; }
.solution-index { color: var(--teal-dark); font-size: .75rem; font-weight: 700; letter-spacing: .14em; }
.solution h3 { max-width: 330px; margin: 54px 0 20px; font-size: clamp(1.55rem, 2vw, 2.1rem); line-height: 1.2; font-weight: 500; letter-spacing: -.025em; }
.solution p { max-width: 340px; min-height: 92px; margin: 0 0 38px; color: var(--muted); line-height: 1.75; }
.solution a { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.solution a span { color: var(--teal-dark); margin-left: 10px; }

.brand-section { position: relative; min-height: 850px; display: flex; align-items: flex-end; color: white; overflow: hidden; }
.brand-photo { position: absolute; inset: 0; background: url("../img/hero-power.jpg") center / cover no-repeat; }
.brand-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,19,32,.88), rgba(3,19,32,.34) 58%, rgba(3,19,32,.16)); }
.brand-content { position: relative; z-index: 2; padding: 130px 0 0; }
.brand-heading { max-width: 700px; margin-bottom: 120px; }
.brand-heading p:last-child { max-width: 590px; margin: 30px 0 0; line-height: 1.7; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.brand-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.97); color: var(--ink); }
.brand-logo { min-height: 180px; padding: 32px; display: grid; place-items: center; border-right: 1px solid var(--line); }
.brand-logo:last-child { border-right: 0; }
.brand-logo img { width: 150px; height: 95px; object-fit: contain; filter: grayscale(1); transition: filter .25s, transform .25s; }
.brand-logo:hover img { filter: none; transform: scale(1.05); }
.brand-logo--word span { font-size: clamp(1.45rem, 2.2vw, 2.2rem); font-weight: 800; letter-spacing: .04em; color: #0b75b9; }
.brand-logo--word small { display: block; margin-top: -36px; color: #596971; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }

.project-section { background: white; }
.section-heading--row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.section-heading--row > p { max-width: 430px; margin: 0 0 8px; color: var(--muted); line-height: 1.7; }
.projects { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.project { position: relative; min-height: 480px; overflow: hidden; background: var(--navy); color: white; }
.project--wide { grid-column: 1 / -1; min-height: 610px; }
.project img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,18,31,.83), rgba(3,18,31,0) 62%); }
.project:hover img { transform: scale(1.035); }
.project-copy { position: absolute; z-index: 2; left: clamp(28px, 4vw, 58px); right: 28px; bottom: clamp(28px, 4vw, 50px); }
.project-copy span { color: #6ee6e7; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.project-copy h3 { max-width: 680px; margin: 14px 0 0; font-weight: 500; letter-spacing: -.025em; font-size: clamp(1.5rem, 2.6vw, 2.7rem); }

.clients { background: var(--paper); }
.client-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.client-grid img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 28%; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); filter: grayscale(1); mix-blend-mode: multiply; transition: filter .25s, background .25s; }
.client-grid img:hover { filter: none; background: white; }
.partner-showcase { background: white; }
.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.partner-mark { min-height: 190px; display: grid; place-items: center; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s; }
.partner-mark img { width: 100%; height: 105px; object-fit: contain; filter: grayscale(1); opacity: .78; transition: filter .25s, opacity .25s, transform .25s; }
.partner-mark:hover { background: var(--paper); }
.partner-mark:hover img { filter: none; opacity: 1; transform: scale(1.04); }

.contact { padding: clamp(90px, 10vw, 150px) 0; background: var(--teal-dark); color: white; }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 9vw; align-items: end; }
.contact-details p { max-width: 460px; margin: 0 0 34px; color: rgba(255,255,255,.82); line-height: 1.75; font-size: 1.05rem; }
.contact-phone { display: block; margin-top: 26px; font-size: 1.12rem; letter-spacing: .03em; }

.footer { position: relative; overflow: hidden; padding: 74px 0 28px; background: var(--navy); color: white; }
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 0 55%;
  background: repeating-linear-gradient(135deg, transparent 0 24px, rgba(92,189,190,.035) 24px 25px);
  pointer-events: none;
}
.footer::after {
  content: "";
  position: absolute;
  right: -230px;
  bottom: -250px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(92,189,190,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(92,189,190,.025);
  pointer-events: none;
}
.footer > .shell { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.2fr .9fr .55fr; gap: 70px; padding-bottom: 68px; }
.footer-top > img { width: 230px; height: auto; object-fit: contain; object-position: left top; }
.footer-address p { margin: 0; color: rgba(255,255,255,.67); line-height: 1.8; }
.footer nav { display: flex; flex-direction: column; gap: 15px; font-size: .86rem; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .04em; }
.footer-bottom a { color: white; }
.footer-bottom > a[href^="#"] { grid-column: 3; justify-self: end; }
.footer-credit { grid-column: 2; grid-row: 1; justify-self: center; color: rgba(255,255,255,.62); }
.footer-love { color: #6ee6e7; font-size: 1.08em; }
.footer-credit a { color: var(--teal); font-weight: 700; letter-spacing: .08em; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: #6ee6e7; }

/* Interior pages */
.page-main { padding-top: 88px; }
.page-hero {
  position: relative; min-height: 630px; display: flex; align-items: end; color: white;
  background: var(--navy); overflow: hidden;
}
.page-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,18,31,.9), rgba(3,18,31,.36) 70%); }
.page-hero__content { position: relative; z-index: 2; padding-bottom: 74px; }
.page-hero h1 { max-width: 950px; margin: 0; font-size: clamp(3rem, 6.5vw, 6.7rem); line-height: .95; letter-spacing: -.055em; font-weight: 550; }
.page-hero__lead { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.83); font-size: 1.08rem; line-height: 1.75; }
.breadcrumb { margin-bottom: 36px; color: rgba(255,255,255,.65); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumb a { color: white; }
.content-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; align-items: start; }
.content-grid h2, .split-feature h2, .brand-detail h2 { margin: 0; font-size: clamp(2.3rem, 4.5vw, 4.5rem); font-weight: 500; line-height: 1.07; letter-spacing: -.04em; }
.rich-copy p { margin: 0 0 23px; color: #405159; font-size: 1.08rem; line-height: 1.8; }
.statement { padding: 92px 0; background: var(--teal-dark); color: white; text-align: center; }
.statement p { max-width: 1000px; margin: 0 auto; font-size: clamp(2rem, 4.5vw, 4.3rem); line-height: 1.2; letter-spacing: -.04em; }
.value-list { margin-top: 70px; border-top: 1px solid var(--line); }
.value-row { display: grid; grid-template-columns: 70px .8fr 1.2fr; gap: 40px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.value-row > span { color: var(--teal-dark); font-size: .72rem; font-weight: 700; }
.value-row h3 { margin: 0; font-size: 1.5rem; font-weight: 500; }
.value-row p { margin: 0; color: var(--muted); line-height: 1.7; }
.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 660px; }
.split-feature__image img { width: 100%; height: 100%; object-fit: cover; }
.split-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px, 8vw, 120px); background: var(--paper); }
.split-feature__copy p { margin: 26px 0 0; color: var(--muted); line-height: 1.8; }
.split-feature__copy .text-link { margin-top: 35px; align-self: flex-start; }
.service-stack { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 80px .8fr 1.25fr auto; gap: 38px; align-items: start; padding: 45px 0; border-bottom: 1px solid var(--line); }
.service-row__number { color: var(--teal-dark); font-size: .72rem; font-weight: 700; }
.service-row h2 { margin: 0; font-size: clamp(1.45rem, 2.3vw, 2.35rem); font-weight: 500; letter-spacing: -.025em; }
.service-row p { margin: 0; color: var(--muted); line-height: 1.75; }
.service-row a { font-size: 1.2rem; color: var(--teal-dark); }
.brand-detail { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 620px; border-bottom: 1px solid var(--line); }
.brand-detail:nth-child(even) { grid-template-columns: 1.25fr .75fr; }
.brand-detail:nth-child(even) .brand-detail__visual { order: 2; }
.brand-detail__visual { min-height: 520px; display: grid; place-items: center; padding: 12%; background: var(--paper); }
.brand-detail__visual img { max-width: 330px; max-height: 230px; object-fit: contain; }
.brand-detail__word { color: #0b75b9; font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; letter-spacing: .03em; }
.brand-detail__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 7vw, 110px); }
.brand-detail__copy p { max-width: 620px; margin: 26px 0 0; color: var(--muted); line-height: 1.8; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.brand-tags span { padding: 9px 12px; border: 1px solid var(--line); color: #4b5c64; font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; }
.project-list { display: grid; gap: 70px; }
.project-case { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; align-items: center; }
.project-case:nth-child(even) { grid-template-columns: .9fr 1.1fr; }
.project-case:nth-child(even) .project-case__image { order: 2; }
.project-case__image { height: 520px; overflow: hidden; }
.project-case__image img { width: 100%; height: 100%; object-fit: cover; }
.project-case__copy h2 { margin: 16px 0 22px; font-size: clamp(2rem, 3.3vw, 3.4rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.1; }
.project-case__copy p { margin: 0; color: var(--muted); line-height: 1.8; }
.contact-page-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.contact-card { border-top: 1px solid var(--line); padding: 28px 0; }
.contact-card span { color: var(--teal-dark); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-card p, .contact-card a { display: block; margin: 12px 0 0; color: #405159; line-height: 1.75; font-size: 1.04rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 16px 2px; border: 0; border-bottom: 1px solid #aebbc0; border-radius: 0; background: transparent; color: var(--ink); font: inherit; }
.form-field textarea { min-height: 115px; resize: vertical; }
.contact-form .button { margin-top: 12px; border: 0; cursor: pointer; }
.form-status { min-height: 1.4em; margin: 14px 0 0; color: var(--teal-dark); font-size: .84rem; line-height: 1.5; }
.client-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.client-page-grid figure { margin: 0; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.client-page-grid img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 22%; filter: grayscale(1); }
.client-page-grid figcaption { padding-top: 8px; color: var(--muted); text-align: center; font-size: .69rem; text-transform: uppercase; letter-spacing: .08em; }
.listing-feature { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 560px; background: var(--navy); color: white; }
.listing-feature__image { min-height: 520px; overflow: hidden; }
.listing-feature__image img { width: 100%; height: 100%; object-fit: cover; }
.listing-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 6vw, 90px); }
.content-meta { color: var(--teal-dark); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.listing-feature .content-meta { color: #64e5e7; }
.listing-feature h2 { margin: 20px 0; font-size: clamp(2rem, 3.4vw, 3.6rem); line-height: 1.12; letter-spacing: -.04em; font-weight: 500; }
.listing-feature p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.75; }
.listing-feature .text-link { margin-top: 34px; }
.content-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px; align-items: stretch; }
.content-card { display: flex; flex-direction: column; min-width: 0; padding: 30px 0 40px; border-top: 1px solid var(--line); }
.content-card__image { display: block; flex: 0 0 260px; height: 260px; margin-bottom: 27px; overflow: hidden; }
.content-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.content-card:hover img { transform: scale(1.035); }
.content-card h2 { margin: 15px 0; font-size: 1.45rem; line-height: 1.3; letter-spacing: -.025em; font-weight: 500; }
.content-card p { flex: 1; margin: 0; color: var(--muted); line-height: 1.7; }
.content-card .text-link { align-self: flex-start; margin-top: 24px; }
.listing-page .page-hero { min-height: 520px; }
.listing-page .page-hero__content { padding-bottom: 58px; }
.listing-page .page-hero h1 { max-width: 940px; font-size: clamp(3rem, 5.6vw, 5.8rem); }
.listing-page .page-main > .section { padding: 100px 0; }
.listing-page .listing-feature { min-height: 500px; }
.listing-page .listing-feature__image { min-height: 500px; }
.listing-page .listing-feature__copy { padding: clamp(42px, 5vw, 72px); }
.listing-page .listing-feature h2 { font-size: clamp(2rem, 3vw, 3.15rem); }
.listing-page .section-heading { margin-bottom: 52px; }
.listing-page .reveal { opacity: 1; transform: none; }
.article-header { padding: 150px 0 70px; background: var(--paper); }
.article-header__inner { max-width: 1000px; }
.article-header .breadcrumb { color: var(--muted); }
.article-header .breadcrumb a { color: var(--ink); }
.article-header h1 { margin: 22px 0 28px; font-size: clamp(2.8rem, 5.5vw, 5.7rem); line-height: 1.02; letter-spacing: -.055em; font-weight: 520; }
.article-header__lead { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.14rem; line-height: 1.75; }
.article-cover { width: 100%; max-height: 760px; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: 8vw; }
.article-aside { color: var(--muted); font-size: .78rem; line-height: 1.7; }
.article-aside strong { display: block; margin-bottom: 7px; color: var(--ink); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.article-aside div + div { margin-top: 26px; }
.article-body { color: #35474f; font-size: 1.08rem; line-height: 1.9; }
.article-body h2 { margin: 52px 0 18px; color: var(--ink); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.2; letter-spacing: -.035em; font-weight: 500; }
.article-body p { margin: 0 0 24px; }
.article-body blockquote { margin: 45px 0; padding: 8px 0 8px 30px; border-left: 3px solid var(--teal); color: var(--ink); font-size: 1.45rem; line-height: 1.5; }
.gallery-tabs { display: flex; gap: 8px; margin-bottom: 55px; }
.gallery-tabs a { padding: 12px 18px; border: 1px solid var(--line); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.gallery-tabs a[aria-current="page"], .gallery-tabs a:hover { border-color: var(--teal-dark); background: var(--teal-dark); color: white; }
.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.album-card { position: relative; min-height: 430px; overflow: hidden; color: white; }
.album-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.album-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,18,31,.88), rgba(3,18,31,.02) 68%); }
.album-card:hover img { transform: scale(1.04); }
.album-card__copy { position: absolute; z-index: 2; inset: auto 30px 28px; }
.album-card__copy span { color: #6ee6e7; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.album-card__copy h2 { margin: 12px 0 0; font-size: 1.55rem; font-weight: 500; line-height: 1.25; }
.photo-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; gap: 18px; }
.photo-grid figure { grid-column: span 4; margin: 0; overflow: hidden; }
.photo-grid figure:nth-child(1), .photo-grid figure:nth-child(6) { grid-column: span 8; }
.photo-grid figure:nth-child(2), .photo-grid figure:nth-child(6) { grid-row: span 2; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.photo-grid figure:hover img { transform: scale(1.035); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.video-card { padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.video-card__media { position: relative; height: 270px; overflow: hidden; }
.video-card__media img { width: 100%; height: 100%; object-fit: cover; }
.video-play { position: absolute; left: 24px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: var(--navy); font-size: 1.1rem; }
.video-card h2 { margin: 20px 0 0; font-size: 1.3rem; font-weight: 500; line-height: 1.35; }
.video-card .content-meta { display: block; margin-top: 12px; }
.video-dialog { width: min(1000px, calc(100% - 40px)); padding: 0; border: 0; background: #020b14; color: white; }
.video-dialog::backdrop { background: rgba(0,0,0,.82); }
.video-dialog__top { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; }
.video-dialog__top h2 { margin: 0; font-size: 1rem; font-weight: 500; }
.video-dialog__top button { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: white; cursor: pointer; }
.video-mount { aspect-ratio: 16/9; }
.video-mount iframe { width: 100%; height: 100%; border: 0; }

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

@media (max-width: 980px) {
  :root { --shell: min(100% - 44px, 760px); }
  .site-header, .site-header.is-scrolled { height: 72px; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .brand img { width: 192px; }
  .desktop-nav, .header-contact { display: none; }
  .menu-button { display: grid; gap: 5px; width: 42px; height: 42px; padding: 11px 8px; border: 0; background: transparent; }
  .menu-button span:not(.sr-only) { height: 1px; background: var(--ink); transition: transform .25s, opacity .25s; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 72px 0 0; padding: 36px 22px; background: white; flex-direction: column; }
  .mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.35rem; }
  .mobile-nav details { border-bottom: 1px solid var(--line); }
  .mobile-nav summary { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 1.35rem; cursor: pointer; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary::after { content: "+"; color: var(--teal-dark); font-size: 1.1rem; font-weight: 400; }
  .mobile-nav details[open] summary::after { content: "−"; }
  .mobile-nav details div { padding: 0 0 14px 18px; }
  .mobile-nav details a { display: block; padding: 11px 0; border: 0; color: var(--muted); font-size: 1rem; }
  .hero { padding-top: 72px; }
  .hero-media, .hero-shade { inset-block-start: 72px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 1px solid var(--line); }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .intro-copy { padding-top: 0; }
  .solution-list { grid-template-columns: 1fr; }
  .solution, .solution + .solution { min-height: auto; padding: 30px 0 44px; border-right: 0; border-bottom: 1px solid #bdc9cc; }
  .solution h3 { margin-top: 28px; }
  .solution p { min-height: auto; }
  .brand-section { min-height: 760px; }
  .brand-strip { grid-template-columns: 1fr 1fr; }
  .brand-logo:nth-child(2) { border-right: 0; }
  .brand-logo:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading--row { align-items: start; flex-direction: column; gap: 24px; }
  .projects { grid-template-columns: 1fr; }
  .project--wide { grid-column: auto; }
  .project, .project--wide { min-height: 490px; }
  .client-grid { grid-template-columns: repeat(4, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer nav { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 18px 30px; }
  .page-main { padding-top: 72px; }
  .page-hero { min-height: 560px; }
  .content-grid, .contact-page-grid { grid-template-columns: 1fr; gap: 45px; }
  .value-row { grid-template-columns: 55px 1fr; }
  .value-row p { grid-column: 2; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature__image { min-height: 470px; }
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row p { grid-column: 2; }
  .service-row a { grid-column: 2; }
  .brand-detail, .brand-detail:nth-child(even) { grid-template-columns: 1fr; }
  .brand-detail:nth-child(even) .brand-detail__visual { order: initial; }
  .project-case, .project-case:nth-child(even) { grid-template-columns: 1fr; }
  .project-case:nth-child(even) .project-case__image { order: initial; }
  .client-page-grid { grid-template-columns: repeat(3, 1fr); }
  .listing-feature { grid-template-columns: 1fr; }
  .listing-feature__image { min-height: 430px; }
  .listing-page .page-hero { min-height: 500px; }
  .listing-page .listing-feature, .listing-page .listing-feature__image { min-height: 400px; }
  .listing-page .page-main > .section { padding: 80px 0; }
  .content-card-grid, .album-grid, .video-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { display: flex; gap: 35px; flex-wrap: wrap; }
  .article-aside div + div { margin-top: 0; }
  .photo-grid figure, .photo-grid figure:nth-child(1), .photo-grid figure:nth-child(6) { grid-column: span 6; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 36px); }
  .hero-content { padding-top: 0; }
  .hero h1, .hero h2 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-copy { font-size: .98rem; line-height: 1.6; }
  .scroll-cue { display: none; }
  .slider-controls { left: 18px; bottom: 18px; }
  .metric { min-height: 128px; padding: 24px 18px; }
  .metric strong { font-size: 2rem; }
  .metric span { font-size: .7rem; }
  .section { padding: 82px 0; }
  .editorial-image { height: 76svh; }
  .editorial-image p { left: 18px; bottom: 22px; }
  .brand-section { min-height: 780px; }
  .brand-content { padding-top: 90px; }
  .brand-heading { margin-bottom: 70px; }
  .brand-logo { min-height: 125px; padding: 20px; }
  .brand-logo img { width: 105px; height: 70px; }
  .brand-logo--word small { display: none; }
  .project, .project--wide { min-height: 420px; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-mark { min-height: 145px; padding: 18px; }
  .partner-mark img { height: 85px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer nav { grid-column: auto; }
  .footer::before { inset-inline-start: 38%; }
  .footer-bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-credit { order: 2; align-self: flex-start; }
  .footer-bottom > a[href^="#"] { order: 3; align-self: flex-start; }
  .page-hero { min-height: 520px; }
  .page-hero__content { padding-bottom: 45px; }
  .value-row { grid-template-columns: 34px 1fr; gap: 20px; }
  .split-feature__image { min-height: 390px; }
  .service-row { grid-template-columns: 34px 1fr; gap: 20px; }
  .brand-detail__visual { min-height: 360px; }
  .project-case__image { height: 390px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .client-page-grid { grid-template-columns: repeat(2, 1fr); }
  .listing-feature__image { min-height: 350px; }
  .listing-page .page-hero { min-height: 460px; }
  .listing-page .page-hero__content { padding-bottom: 40px; }
  .listing-page .page-main > .section { padding: 68px 0; }
  .listing-page .listing-feature, .listing-page .listing-feature__image { min-height: 0; }
  .listing-page .listing-feature__image { height: 280px; }
  .content-card-grid, .album-grid, .video-grid { grid-template-columns: 1fr; }
  .content-card__image { flex-basis: 240px; height: 240px; }
  .video-card__media { height: 240px; }
  .article-header { padding: 105px 0 55px; }
  .article-aside { display: grid; grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-auto-rows: 180px; }
  .photo-grid figure, .photo-grid figure:nth-child(1), .photo-grid figure:nth-child(6) { grid-column: 1 / -1; }
  .photo-grid figure:nth-child(2), .photo-grid figure:nth-child(6) { grid-row: span 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; }
  .reveal { opacity: 1; transform: none; }
}
