:root {
  --navy-950: #04141d;
  --navy-900: #061d2a;
  --navy-800: #0b2b3a;
  --steel: #7b9daa;
  --electric: #2aaac3;
  --electric-bright: #6dd4e7;
  --ink: #0c1f29;
  --muted: #5a6b73;
  --paper: #f5f7f6;
  --white: #ffffff;
  --line: rgba(10, 43, 58, 0.16);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; }
.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;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(6, 29, 42, 0.12);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { width: 244px; height: 62px; display: flex; align-items: center; }
.brand img { width: 100%; max-height: 58px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  color: var(--white);
  background: var(--navy-900);
  padding: 12px 18px;
  border-radius: 3px;
}
.nav-cta:hover { background: var(--electric); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle > span:not(.sr-only) {
  width: 27px;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--navy-900);
}

.hero {
  min-height: 750px;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}
.hero-image, .hero-overlay, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 52%; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(4,20,29,.96) 0%, rgba(4,20,29,.94) 30%, rgba(4,20,29,.77) 45%, rgba(4,20,29,.13) 78%, rgba(4,20,29,.06) 100%);
}
.hero-grid {
  opacity: .2;
  background-image:
    linear-gradient(rgba(109, 212, 231, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 212, 231, .16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}
.hero-content { position: relative; z-index: 2; padding: 100px 0 156px; }
.hero-image-credit { position: absolute; z-index: 3; right: max(20px, calc((100% - var(--max))/2)); bottom: 103px; margin: 0; font-size: .76rem; color: #fff; padding: 6px 10px; background: rgba(4,20,29,.58); }
.eyebrow {
  margin: 0 0 20px;
  color: var(--electric-bright);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #177d93; }
.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(3.8rem, 6.1vw, 6.3rem);
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 590px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--electric); color: var(--white); }
.button-primary:hover { background: var(--electric-bright); color: var(--navy-950); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.05); }
.button-ghost:hover { background: var(--white); color: var(--navy-950); }
.hero-proof {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 40px), var(--max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  color: var(--navy-900);
}
.hero-proof span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--electric);
  transform: rotate(45deg);
}
.hero-proof span:last-child { border: 0; }

.split-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: start; }
h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.4vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.intro-copy { max-width: 560px; padding-top: 34px; color: var(--muted); font-size: 1.09rem; }
.intro-copy p { margin: 0 0 20px; }

.services { color: var(--white); background: var(--navy-900); }
.section-kicker { max-width: 700px; margin-bottom: 54px; }
.section-kicker > p:last-child { max-width: 580px; color: rgba(255,255,255,.66); font-size: 1.06rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.service-card {
  min-height: 290px;
  padding: 34px;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .25s ease, transform .25s ease;
}
.service-card:hover { background: var(--navy-800); transform: translateY(-3px); }
.service-number { display: block; margin-bottom: 52px; color: var(--electric-bright); font-size: .78rem; font-weight: 800; }
.service-card h3 { margin: 0 0 15px; font-size: 1.25rem; line-height: 1.25; }
.service-card p { margin: 0; color: rgba(255,255,255,.65); }

.projects { background: var(--white); }
.projects-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.projects-heading > p { max-width: 360px; margin: 0; color: var(--muted); }
.project-group + .project-group { margin-top: 70px; }
.project-group-heading { display: grid; grid-template-columns: 210px 1fr; align-items: start; gap: 20px; padding: 22px 0 26px; border-top: 1px solid #c8d1d4; }
.project-group-heading > span { color: var(--electric); font-size: .75rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.project-group-heading h3 { margin: 0 0 8px; font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.15; }
.project-group-heading p { margin: 0; color: var(--muted); }
.project-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 310px; gap: 16px; }
.project-mosaic-lighting { grid-template-columns: repeat(2, 1fr); }
.project-mosaic-lighting .project { grid-column: auto; }
.project-mosaic-retail { grid-template-columns: repeat(2, 1fr); grid-template-rows: 680px 490px; }
.project-mosaic-retail .project { grid-column: auto; }
.project-mosaic-retail .project:first-child img { object-position: center 25%; }
.project-mosaic-retail .project:nth-child(2) img { object-position: center 40%; }
.project-mosaic-retail .project-rotated { grid-column: 1 / -1; }
.project { grid-column: span 4; position: relative; margin: 0; overflow: hidden; background: var(--navy-900); }
.project-wide { grid-column: span 8; }
.project-full { grid-column: span 12; grid-row: span 2; }
.project-tall { grid-row: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.project:hover img { transform: scale(1.035); }
.project-rotated img { object-fit: contain; transform: rotate(-90deg) scale(2.55); }
.project-rotated:hover img { transform: rotate(-90deg) scale(2.6); }
.project::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(4,20,29,.9));
}
.project figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  color: var(--white);
}
.project figcaption span { font-size: 1rem; font-weight: 800; }
.project figcaption small { color: var(--electric-bright); text-transform: uppercase; letter-spacing: .08em; }
.hotel-gallery { display: grid; gap: 16px; }
.hotel-feature { position: relative; margin: 0; overflow: hidden; background: var(--navy-900); }
.hotel-feature img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .55s ease; }
.hotel-feature-hilton img { object-position: center 44%; filter: brightness(1.18) contrast(1.07) saturate(1.07); }
.hotel-feature-everhome img { object-position: center; filter: brightness(1.08) contrast(.85) saturate(.96); transform: scale(1.58); transform-origin: 24% 50%; }
.hotel-feature:hover img { transform: scale(1.025); }
.hotel-feature-everhome:hover img { transform: scale(1.6); }
.hotel-feature::after { content: ""; position: absolute; inset: 60% 0 0; background: linear-gradient(transparent, rgba(4,20,29,.84)); pointer-events: none; }
.hotel-feature figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; display: flex; justify-content: space-between; align-items: end; gap: 16px; color: var(--white); }
.hotel-feature figcaption span { font-size: clamp(1.15rem, 2.4vw, 1.9rem); font-weight: 800; }
.hotel-feature figcaption small { color: var(--electric-bright); text-transform: uppercase; letter-spacing: .08em; }

.about { overflow: hidden; }
.about-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: center; }
.about-media { position: relative; min-height: 650px; }
.about-media::before {
  content: "";
  position: absolute;
  left: -100vw;
  right: 56%;
  top: 8%;
  bottom: 8%;
  background: var(--navy-900);
}
.about-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  right: -34px;
  bottom: 42px;
  padding: 22px 25px;
  color: var(--white);
  background: var(--electric);
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.about-content .lead { margin: 30px 0 36px; color: var(--muted); font-size: 1.13rem; }
.values { border-top: 1px solid var(--line); }
.values > div { display: grid; grid-template-columns: 170px 1fr; gap: 26px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.values h3 { margin: 0; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; }
.values p { margin: 0; color: var(--muted); }

.gc-section { padding: 100px 0; color: var(--white); background: var(--navy-950); }
.gc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.gc-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.gc-list li { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 1.05rem; }
.gc-list span { color: var(--electric-bright); font-size: .74rem; font-weight: 800; letter-spacing: .1em; }

.insights { background: #eef3f4; }
.insights-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 44px; }
.insights-heading h2 { max-width: 680px; }
.insights-heading > p { max-width: 330px; margin: 0; color: var(--muted); }
.insights-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.insight-card { display: flex; flex-direction: column; background: var(--white); text-decoration: none; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.insight-card:hover, .insight-card:focus-visible { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(4,20,29,.12); }
.insight-card img { width: 100%; height: 235px; object-fit: cover; }
.insight-card > div { display: flex; flex: 1; flex-direction: column; padding: 30px; }
.insight-card span, .article-meta { color: #177d93; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.insight-card h3 { margin: 16px 0 12px; font-size: 1.45rem; line-height: 1.2; }
.insight-card p { color: var(--muted); margin: 0 0 28px; }
.insight-card strong { margin-top: auto; color: #117b92; text-transform: uppercase; font-size: .75rem; letter-spacing: .08em; }
.all-insights { display: inline-block; margin-top: 35px; color: #08738a; text-transform: uppercase; font-size: .8rem; font-weight: 800; letter-spacing: .08em; }
.article-page { background: var(--paper); }
.article-hero { padding: 104px 0 70px; color: var(--white); background: var(--navy-900); }
.article-hero h1 { max-width: 980px; margin: 0 0 24px; font-size: clamp(2.7rem, 5.7vw, 5.8rem); line-height: 1; letter-spacing: -.05em; }
.article-hero p:last-child { max-width: 740px; margin: 0; font-size: 1.22rem; color: rgba(255,255,255,.8); }
.article-body { display: grid; grid-template-columns: minmax(0, 730px) minmax(200px, 1fr); gap: 78px; padding: 72px 0 105px; }
.article-body article { min-width: 0; }
.article-body figure { margin: 0 0 35px; }
.article-body figure img { width: 100%; max-height: 440px; object-fit: cover; }
.article-body figcaption { color: var(--muted); margin-top: 8px; font-size: .78rem; }
.article-body article h2 { margin: 44px 0 18px; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.14; }
.article-body article h2:first-child { margin-top: 0; }
.article-body article p, .article-body article li { font-size: 1.07rem; line-height: 1.78; }
.article-body article p { margin: 0 0 21px; }
.article-body article ul { padding-left: 1.3rem; }
.article-body article li + li { margin-top: 12px; }
.article-aside { align-self: start; position: sticky; top: 110px; padding: 24px; border-top: 3px solid var(--electric); background: var(--white); }
.article-aside h2 { font-size: 1.15rem; line-height: 1.25; letter-spacing: 0; }
.article-aside p { color: var(--muted); }
.article-aside a { color: #08738a; font-weight: 800; }
.article-source { padding: 22px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.article-source a { color: #08738a; overflow-wrap: anywhere; }
.article-list-hero { padding-bottom: 96px; }
.article-list { padding: 82px 0 105px; }
.article-list .insights-grid { margin-bottom: 30px; }
.back-link { display: inline-block; margin-top: 35px; font-weight: 800; color: #08738a; }

.contact { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: .93fr 1.07fr; gap: 100px; }
.contact-copy > p:not(.eyebrow):not(.service-area) { max-width: 600px; color: var(--muted); font-size: 1.08rem; }
.contact-links { margin: 40px 0 30px; border-top: 1px solid var(--line); }
.contact-links a {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 750;
}
.contact-links span { color: var(--muted); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.service-area { color: var(--navy-800); font-weight: 700; }
.quote-form { padding: 42px; color: var(--white); background: var(--navy-900); }
.quote-form label { display: grid; gap: 7px; margin-bottom: 18px; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form input, .quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 2px;
  outline: 0;
  color: var(--white);
  background: rgba(255,255,255,.06);
  padding: 13px 14px;
  text-transform: none;
  letter-spacing: normal;
}
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--electric-bright); box-shadow: 0 0 0 3px rgba(109,212,231,.13); }
.quote-form textarea { resize: vertical; min-height: 130px; }
.form-button { width: 100%; border: 0; margin-top: 4px; }
.form-note { margin: 12px 0 0; color: rgba(255,255,255,.54); font-size: .78rem; text-align: center; }

.site-footer { padding: 68px 0 24px; color: rgba(255,255,255,.68); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 260px 1fr auto; gap: 50px; align-items: center; }
.footer-brand { width: 230px; padding: 9px; background: var(--white); }
.footer-brand img { width: 100%; }
.footer-grid p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: var(--white); text-decoration: none; font-size: .82rem; font-weight: 700; }
.copyright { margin-top: 56px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: .78rem; }

@media (max-width: 960px) {
  .section { padding: 86px 0; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 4px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero { min-height: 850px; align-items: start; }
  .hero-image { top: 0; left: 0; right: 0; width: 100%; height: 375px; object-position: center 44%; }
  .hero-image-credit { top: 338px; bottom: auto; right: 20px; }
  .hero-overlay, .hero-grid { display: none; }
  .hero-content { padding: 410px 0 155px; }
  .hero h1 { max-width: 760px; font-size: clamp(3.5rem, 8vw, 5.5rem); }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof span { min-height: 60px; }
  .split-heading, .about-layout, .gc-layout, .contact-layout { grid-template-columns: 1fr; gap: 54px; }
  .intro-copy { padding-top: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .projects-heading { align-items: start; flex-direction: column; }
  .project-group-heading { grid-template-columns: 1fr; gap: 12px; }
  .project { grid-column: span 6; }
  .project-wide { grid-column: span 12; }
  .project-mosaic-retail { grid-template-rows: 550px 420px; }
  .project-rotated img { transform: rotate(-90deg) scale(1.85); }
  .project-rotated:hover img { transform: rotate(-90deg) scale(1.89); }
  .about-media { min-height: 560px; width: min(86%, 540px); }
  .about-badge { right: -50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
  .insights-heading { align-items: start; flex-direction: column; }
  .insights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-body { grid-template-columns: 1fr; gap: 20px; }
  .article-aside { position: static; }
}

@media (max-width: 640px) {
  .container, .nav-shell { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .nav-shell { min-height: 72px; }
  .brand { width: 195px; height: 52px; }
  .hero { min-height: 890px; }
  .hero-image { height: 310px; object-position: 68% 45%; }
  .hero-image-credit { top: 275px; right: 14px; font-size: .66rem; }
  .hero-content { padding: 345px 0 185px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.8rem); }
  .hero-proof { width: 100%; }
  .hero-proof span { padding: 13px 14px; font-size: .69rem; }
  .hero-proof span:nth-child(2) { border-right: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; }
  .service-number { margin-bottom: 34px; }
  .project-mosaic { display: grid; grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .project-mosaic-lighting { grid-template-columns: 1fr; }
  .project-mosaic-retail { grid-template-columns: 1fr; grid-template-rows: 480px 480px 280px; }
  .project, .project-wide, .project-tall, .project-full { grid-column: auto; grid-row: auto; }
  .project-rotated img { transform: rotate(-90deg) scale(1.9); }
  .project-rotated:hover img { transform: rotate(-90deg) scale(1.93); }
  .hotel-feature figcaption { left: 18px; right: 18px; bottom: 18px; }
  .hotel-feature img { aspect-ratio: 4 / 3; }
  .hotel-feature-everhome img { transform: scale(1.25); transform-origin: 35% center; }
  .hotel-feature-everhome:hover img { transform: scale(1.27); }
  .about-media { min-height: 470px; width: calc(100% - 30px); }
  .about-badge { right: -30px; bottom: 24px; }
  .values > div { grid-template-columns: 1fr; gap: 7px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-links { grid-column: auto; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card img { height: 220px; }
  .article-hero { padding: 65px 0; }
  .article-hero p:last-child { font-size: 1.05rem; }
  .article-body { padding: 52px 0 75px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
