@font-face {
  font-family: "BHE Condensed";
  src: url("assets/roboto-condensed-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --navy-950: #020a15;
  --navy-900: #04101f;
  --navy-850: #071a30;
  --navy-800: #0a2948;
  --navy-700: #0d4778;
  --accent: #3ccff2;
  --accent-strong: #0c72c4;
  --accent-soft: #8ae8fb;
  --white: #f5faff;
  --muted: #a8bed1;
  --line: rgba(109, 194, 235, 0.22);
  --max: 1440px;
  --heading: "BHE Condensed", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; scroll-padding-bottom: 5rem; background: var(--navy-950); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--white);
  background: var(--navy-900);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
body.menu-open .site-header { position: fixed; }
main section > *, .field-group, .site-footer > * { min-width: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: var(--navy-950);
  background: var(--accent);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  column-gap: clamp(1.5rem, 2vw, 3.5rem);
  align-items: center;
  min-height: 124px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5,17,29,.96), rgba(5,17,29,.72));
}
.site-header.is-sticky {
  position: fixed;
  min-height: 64px;
  background: rgba(5,17,29,.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  animation: header-in .25s ease-out both;
}
@keyframes header-in { from { transform: translateY(-100%); } }

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .3));
}
.brand__mark { display: block; flex-shrink: 0; width: clamp(118px, 10vw, 140px); height: clamp(96px, 8.5vw, 116px); object-fit: contain; }
.brand__name { display: flex; flex-direction: column; font-family: var(--heading); line-height: .84; text-transform: uppercase; white-space: nowrap; }
.brand__name strong { font-size: clamp(2.2rem, 2.8vw, 2.8rem); font-style: italic; font-weight: 900; letter-spacing: -.045em; }
.brand__name small { margin-top: .5rem; color: var(--accent); font-size: clamp(1rem, 1.2vw, 1.18rem); font-style: italic; font-weight: 900; letter-spacing: .16em; }
.site-header.is-sticky .brand__mark { width: 88px; height: 70px; }
.site-header.is-sticky .brand__name strong { font-size: 1.75rem; }
.site-header.is-sticky .brand__name small { font-size: .78rem; }
.desktop-nav { display: flex; gap: clamp(1.25rem, 1.8vw, 2rem); }
.desktop-nav a {
  color: #d9e1e8;
  font-size: .875rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a[aria-current="page"] { color: var(--accent); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; }
.phone-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
  color: #eef8ff;
}
.phone-link__icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(60, 207, 242, .42);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(60, 207, 242, .08);
}
.phone-link svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 2; }
.phone-link__copy { display: flex; flex-direction: column; line-height: 1.15; }
.phone-link__copy small { color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.phone-link__copy strong { margin-top: .18rem; font-size: .9rem; letter-spacing: .035em; white-space: nowrap; }
.phone-link:hover .phone-link__icon { color: var(--navy-950); background: var(--accent); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: .8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--heading);
  font-size: .87rem;
  font-weight: 900;
  letter-spacing: .055em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--accent-soft); outline-offset: 4px; }
.button--brand { color: var(--navy-950); background: linear-gradient(135deg, #48b7ee, var(--accent)); box-shadow: 0 14px 34px rgba(5, 116, 188, .2); }
.button--brand:hover { background: linear-gradient(135deg, #74d4fa, var(--accent-soft)); }
.button:disabled { opacity: .6; cursor: not-allowed; }
.button--outline { border-color: var(--accent); color: var(--accent); }
.button--outline:hover { color: var(--navy-950); background: var(--accent); }
.header-estimate { min-height: 46px; }
.header-estimate { white-space: nowrap; }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.menu-button span { display: block; width: 25px; height: 2px; background: currentColor; transition: .2s ease; }
.menu-button:disabled { display: none; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-panel {
  position: fixed;
  z-index: 18;
  inset: 0;
  display: grid;
  align-content: start;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 9rem 7vw calc(3rem + env(safe-area-inset-bottom, 0px));
  background: rgba(5,17,29,.985);
}
.menu-panel[hidden] { display: none; }
.menu-panel nav { max-width: 900px; }
.menu-panel nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--heading);
  font-size: clamp(1.65rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
  text-transform: uppercase;
}
.menu-panel nav a:hover { color: var(--accent); }
.menu-panel nav span { color: var(--accent); font-size: .85rem; letter-spacing: .12em; }
.menu-call { display: flex; align-items: center; min-height: 44px; margin-top: 1.5rem; color: var(--accent); font-weight: 800; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
  min-height: min(810px, 100vh);
  min-height: min(810px, 100svh);
  padding-top: 0;
  background: var(--navy-900);
}
.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5,17,29,.62));
}
.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 5vw, 6rem) 3vw clamp(3rem, 5vw, 6rem) 4vw;
  border-right: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(5,17,29,.99), rgba(5,17,29,.78));
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
  color: #c4ced8;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 3rem; height: 4px; background: linear-gradient(90deg, var(--accent-strong), var(--accent)); }
.eyebrow--accent { color: var(--accent); }
h1, h2, h3 { margin: 0; font-family: var(--heading); font-weight: 900; text-transform: uppercase; }
h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 5.6vw, 6.7rem);
  letter-spacing: -.055em;
  line-height: .93;
}
.hero #hero-title { max-width: none; font-size: clamp(2.8rem, 4.1vw, 5.2rem); line-height: 1; letter-spacing: -.04em; }
.hero #hero-title span { display: block; }
.hero__copy > p {
  max-width: 30rem;
  margin: 1.8rem 0 2rem;
  color: #c1ccd6;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}
.hero__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero__actions .button { width: 13rem; max-width: 100%; justify-content: center; gap: 1rem; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; font-size: .875rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.text-link:hover { color: var(--accent); }

.service-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding-block: 1px;
  background: var(--line);
}
.service-tile {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 88px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: .625rem;
  padding: 1rem .75rem;
  background: linear-gradient(145deg, #061426, #0a2948);
  text-align: left;
  transition: background .25s ease, color .25s ease;
}
.service-tile:hover, .service-tile:focus-visible { z-index: 2; color: var(--white); background: linear-gradient(145deg, #084875, #09577e); }
.service-tile::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(109,194,235,.3); border-radius: 3px; pointer-events: none; }
.service-tile:focus-visible { outline-offset: -4px; }
.service-tile svg { flex-shrink: 0; width: 2rem; height: 2rem; fill: none; stroke: var(--accent); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.service-tile:hover svg, .service-tile:focus-visible svg { stroke: var(--white); }
.service-tile span { min-width: 0; overflow-wrap: anywhere; font-family: var(--heading); font-size: 1.1rem; font-weight: 900; line-height: 1.1; text-transform: uppercase; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #061426, #0a2948 50%, #061426);
}
.trust-bar__item {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  padding: 1rem 2.1rem;
  border-right: 1px solid var(--line);
}
.trust-bar__item:last-child { border-right: 0; }
a.trust-bar__item:focus-visible { outline-offset: -4px; }
.trust-bar__item span { color: var(--accent); font-size: .75rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.trust-bar__item strong { font-family: var(--heading); font-size: clamp(1.05rem, 1.45vw, 1.45rem); letter-spacing: -.01em; line-height: 1.1; text-transform: uppercase; }

.story {
  display: grid;
  grid-template-columns: minmax(420px, 42%) 1fr;
  min-height: 710px;
  border-top: 1px solid var(--line);
  background: var(--navy-850);
}
.story__copy { padding: clamp(5rem, 8vw, 8rem) 6vw 5rem 4vw; }
.home-main, .contact-main--with-credentials { padding-top: 124px; }
.story h1, .story h2, .work h2, .estimate h2 { font-size: clamp(2.9rem, 5vw, 5.6rem); letter-spacing: -.05em; line-height: .96; }
.story h1 { max-width: none; }
.story__lead { max-width: 34rem; margin: 2rem 0 1rem; color: #d7dfe6; font-size: 1.2rem; line-height: 1.6; }
.story__copy > p:not(.story__lead) { max-width: 34rem; margin: 0 0 2.2rem; color: var(--muted); }
.story__image {
  min-height: 620px;
  background: linear-gradient(90deg, rgba(10,28,45,.38), transparent 35%), url("assets/home-kitchen-lighting-edited.png") 65% center / cover no-repeat;
}

.work {
  padding: clamp(5rem, 9vw, 9rem) 4vw;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(12, 114, 196, .24), transparent 33%),
    linear-gradient(145deg, #061426, #081e36 62%, #06182c);
}
.work .eyebrow { color: var(--accent); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 5vw; align-items: end; max-width: var(--max); margin: 0 auto 5rem; }
.section-heading > p { max-width: 36rem; margin: 0; color: var(--muted); font-size: 1.1rem; }
.capability-list { max-width: var(--max); margin: 0 auto; border-top: 2px solid var(--accent); }
.capability {
  display: grid;
  grid-template-columns: 70px minmax(190px, .65fr) 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(118, 184, 219, .28);
}
.capability__number { color: var(--accent); font-size: .75rem; font-weight: 800; }
.capability h3 { font-size: clamp(1.7rem, 3vw, 3rem); letter-spacing: -.03em; }
.capability p { max-width: 36rem; margin: 0; color: var(--muted); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 5rem auto 0;
  border: 1px solid rgba(118, 184, 219, .3);
  background: rgba(118, 184, 219, .3);
}
.project-card { position: relative; min-height: 360px; margin: 0; overflow: hidden; background: var(--navy-950); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,10,21,.94), rgba(2,10,21,.05) 65%); }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card div { position: absolute; z-index: 1; inset: auto 1.5rem 1.4rem; display: flex; flex-direction: column; }
.project-card span { color: var(--accent); font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.project-card strong { font-family: var(--heading); font-size: 1.45rem; letter-spacing: -.015em; text-transform: uppercase; }

.project-band { position: relative; min-height: min(70vw, 760px); overflow: hidden; background: var(--navy-950); }
.project-band__image { position: absolute; inset: 0; background: url("assets/commercial-lighting.jpg") center / cover no-repeat; transition: transform 1s ease; }
.project-band:hover .project-band__image { transform: scale(1.025); }
.project-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,17,29,.92), transparent 55%); }
.project-band__caption {
  position: absolute;
  z-index: 2;
  inset: auto 4vw 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  font-family: var(--heading);
  text-transform: uppercase;
}
.project-band__caption > span { max-width: 15ch; font-size: clamp(2.5rem, 5vw, 5.5rem); font-weight: 900; letter-spacing: -.04em; line-height: .95; }
.project-band__caption a { display: inline-flex; align-items: center; min-height: 44px; padding-bottom: .35rem; border-bottom: 2px solid var(--accent); color: var(--accent); font-size: .875rem; font-weight: 900; letter-spacing: .08em; }

.process {
  padding: clamp(5rem, 9vw, 9rem) 4vw;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(12,114,196,.18), transparent 30%),
    var(--navy-850);
}
.process__heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 6vw; align-items: end; max-width: var(--max); margin: 0 auto 5rem; }
.process h2 { font-size: clamp(2.9rem, 5vw, 5.6rem); letter-spacing: -.05em; line-height: .96; }
.process__heading > p { max-width: 32rem; margin: 0; color: var(--muted); font-size: 1.1rem; }
.process__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: var(--max); margin: 0 auto; border: 1px solid rgba(118,184,219,.3); background: rgba(118,184,219,.3); }
.process-step { position: relative; min-height: 330px; padding: clamp(2rem, 3.5vw, 3.5rem); background: rgba(4,16,31,.96); }
.process-step::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--accent-strong), var(--accent)); transform: scaleX(.22); transform-origin: left; transition: transform .35s ease; }
.process-step:hover::before { transform: scaleX(1); }
.process-step__number { color: var(--accent); font-size: .75rem; font-weight: 900; letter-spacing: .15em; }
.process-step h3 { max-width: 12ch; margin-top: 4.5rem; font-size: clamp(1.65rem, 2.5vw, 2.65rem); letter-spacing: -.035em; line-height: 1; }
.process-step p { max-width: 30rem; margin: 1.4rem 0 0; color: var(--muted); }

.project-invite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  padding: clamp(5rem, 9vw, 9rem) 4vw;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 25%, rgba(12, 114, 196, .22), transparent 32%),
    var(--navy-900);
}
.project-invite h2 { font-size: clamp(2.9rem, 5vw, 5.6rem); letter-spacing: -.05em; line-height: .96; }
.project-invite__actions { display: flex; max-width: 38rem; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
.project-invite__actions p { margin: 0 0 .5rem; color: var(--muted); font-size: 1.1rem; }

.estimate {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  padding: clamp(5rem, 9vw, 9rem) 4vw;
  background: var(--navy-900);
}
.estimate__intro > p { max-width: 34rem; margin: 1.8rem 0; color: var(--muted); font-size: 1.1rem; }
.contact-lines { display: flex; flex-direction: column; align-items: flex-start; gap: .35rem; }
.contact-lines a { display: inline-flex; align-items: center; min-height: 44px; color: var(--accent); font-size: 1.05rem; font-weight: 800; overflow-wrap: anywhere; }
.contact-lines span { color: var(--muted); }
.estimate-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.2rem; align-content: start; }
.field-group { display: flex; flex-direction: column; gap: .45rem; }
.field-group--wide { grid-column: 1 / -1; }
.field-group label { color: #d4dde5; font-size: .875rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field-hint { margin: 0; color: var(--muted); font-size: .875rem; }
.field-group input, .field-group select, .field-group textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #385068;
  border-radius: 2px;
  color: var(--white);
  background: var(--navy-850);
  padding: .9rem 1rem;
  outline: none;
}
.field-group input, .field-group select { min-height: 52px; }
.field-group textarea { resize: vertical; }
.field-group .address-field { min-height: 52px; overflow-wrap: anywhere; white-space: pre-wrap; }
.field-group .address-field--autosize { overflow-y: hidden; resize: none; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(60,207,242,.16); }
.form-note { margin: -.5rem 0 0; color: var(--muted); font-size: .875rem; overflow-wrap: anywhere; }
.form-note a { text-decoration: underline; text-underline-offset: .2em; }
.form-status { margin: 0; padding: 1rem; border: 1px solid var(--accent); color: var(--white); font-size: .875rem; }

.contact-page { min-height: 100vh; min-height: 100svh; background: var(--navy-950); }
.contact-main { min-height: 100vh; min-height: 100svh; }
.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(3rem, 7vw, 8rem);
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(9rem, 13vw, 12rem) 4vw clamp(5rem, 8vw, 8rem);
  background:
    linear-gradient(90deg, rgba(2,10,21,.98) 0 42%, rgba(2,10,21,.82) 62%, rgba(2,10,21,.92)),
    url("assets/malibu-lighting.jpg") center / cover no-repeat;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 73% 22%, rgba(60,207,242,.16), transparent 28%);
}
.contact-hero > * { position: relative; z-index: 1; }
.contact-main--with-credentials .contact-hero--hub { min-height: auto; padding-top: clamp(3rem, 5vw, 5rem); }
.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: .6rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  color: var(--accent);
  font-size: .875rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-hero h1 { max-width: 10ch; font-size: clamp(3.7rem, 6.2vw, 7rem); }
.contact-hero__intro > p { max-width: 36rem; margin: 2rem 0; color: #c3d1de; font-size: 1.1rem; }
.contact-hero__form-wrap {
  align-self: center;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(110, 196, 235, .38);
  background: rgba(4,16,31,.9);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.contact-form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.contact-form-heading h2 { font-family: var(--heading); font-size: 1.6rem; font-weight: 900; text-transform: uppercase; }
.contact-form-heading p { margin: 0; color: var(--muted); font-size: .875rem; }
.contact-options { display: grid; align-self: center; gap: 1rem; min-width: 0; }
.contact-option { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: start; gap: 1.25rem; padding: clamp(1.5rem, 2.4vw, 2.5rem); border: 1px solid rgba(110,196,235,.38); background: rgba(4,16,31,.92); transition: border-color .2s, background .2s; }
.contact-option:hover { border-color: var(--accent); background: var(--navy-850); }
.contact-option__number { padding-top: .35rem; color: var(--accent); font-size: .875rem; font-weight: 800; }
.contact-option h2 { font-size: clamp(1.65rem, 2.4vw, 2.5rem); line-height: 1.1; }
.contact-option p { margin: .8rem 0 1rem; color: #c3d1de; }
.contact-option__tag { color: var(--accent); font-size: .875rem; font-weight: 700; }
.contact-option__arrow { color: var(--accent); font-size: 1.5rem; }
.request-nav { display: flex; flex-wrap: wrap; gap: .4rem; margin: -1rem 0 2rem; }
.request-nav a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: .6rem .8rem; border: 1px solid var(--line); color: var(--muted); font-size: .875rem; font-weight: 750; }
.request-nav a:hover { border-color: var(--accent); color: var(--white); }
.request-nav a[aria-current="page"] { background: var(--accent); border-color: var(--accent); color: var(--navy-950); }
.contact-hero__intro > .request-context { max-width: 34rem; padding-left: 1rem; border-left: 2px solid var(--accent); font-size: 1rem; }
.request-jump { min-height: 44px; }
.contact-hero--request h1 { max-width: 12ch; }
.contact-hero--request .back-link { margin-bottom: clamp(2rem, 4vw, 4rem); }
.field-group textarea::placeholder { color: #9baec1; opacity: 1; }
.estimate-form > button { white-space: normal; }
.contact-footer { border-top-color: rgba(109, 194, 235, .3); }

.gallery-page { background: var(--navy-950); }
.gallery-hero {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  padding: 10.5rem 4vw 3.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--navy-950);
}
.gallery-hero__image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 49%; }
.gallery-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(2,10,21,.94), rgba(2,10,21,.77) 35%, rgba(2,10,21,.12) 75%), linear-gradient(0deg, rgba(2,10,21,.72), transparent 45%); }
.gallery-hero__content { max-width: var(--max); margin: 0 auto; }
.gallery-hero .back-link { margin-bottom: 2rem; }
.gallery-hero h1 { max-width: 12ch; font-size: clamp(3.5rem, 6vw, 6.25rem); line-height: .98; letter-spacing: -.035em; }
.gallery-hero__content > p { max-width: 28rem; margin: 1.5rem 0 1rem; color: #d8e3eb; font-size: 1.05rem; }
.gallery-hero__browse { display: inline-flex; align-items: center; gap: 1.5rem; min-height: 44px; border-bottom: 1px solid var(--accent); font-size: .875rem; font-weight: 700; }
.gallery-hero__browse span { color: var(--accent); }
.gallery-hero__credit { position: absolute; right: 4vw; bottom: 2rem; color: #d8e3eb; font-size: .875rem; }
.instagram-link { display: inline-flex; align-items: center; gap: .65rem; min-height: 44px; max-width: 100%; color: var(--accent); font-size: .95rem; font-weight: 700; }
.instagram-link svg { flex: 0 0 22px; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.75; }
.instagram-link:hover { color: var(--accent-soft); }
.instagram-link span { overflow-wrap: anywhere; }
.project-archive { padding: 2.25rem 4vw 4rem; background: var(--navy-900); border-bottom: 1px solid var(--line); scroll-margin-top: 1.5rem; }
.gallery-toolbar { max-width: var(--max); margin: 0 auto 1.75rem; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.gallery-filters[hidden], .archive-photo[hidden] { display: none; }
.gallery-filters button { min-height: 46px; padding: .6rem 1.15rem; border: 1px solid var(--line); color: #cfdeeb; background: transparent; font-size: .875rem; font-weight: 700; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.gallery-filters button:hover { border-color: var(--accent); }
.gallery-filters button[aria-pressed="true"] { color: var(--navy-950); border-color: var(--accent); background: var(--accent); }
.gallery-help { margin: 1rem 0 0; color: var(--muted); font-size: .875rem; }
.gallery-help span { color: #d8e3eb; }
.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; max-width: var(--max); margin: 0 auto; }
.archive-photo { position: relative; display: block; min-width: 0; overflow: hidden; background: var(--navy-950); }
.archive-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.archive-photo:hover img { transform: scale(1.035); }
.archive-photo__zoom { position: absolute; bottom: .85rem; right: .85rem; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.35); color: white; background: rgba(2,10,21,.78); opacity: 0; transition: opacity .2s ease; }
.archive-photo__zoom svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.archive-photo:hover .archive-photo__zoom, .archive-photo:focus-visible .archive-photo__zoom { opacity: 1; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
body.gallery-viewer-open { overflow: hidden; }
.gallery-viewer { width: min(1240px, calc(100% - 3rem)); max-width: none; height: min(940px, calc(100vh - 3rem)); height: min(940px, calc(100dvh - 3rem)); max-height: none; padding: 0; margin: auto; border: 1px solid var(--line); color: var(--white); background: var(--navy-950); }
.gallery-viewer:not([open]) { display: none; }
.gallery-viewer[open] { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.gallery-viewer::backdrop { background: rgba(0,5,12,.93); }
.gallery-viewer__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .75rem 1.25rem; border-bottom: 1px solid var(--line); }
.gallery-viewer__bar h2 { font-family: var(--body); font-size: 1rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
.gallery-viewer button { display: inline-flex; align-items: center; justify-content: center; gap: .75rem; min-width: 48px; min-height: 48px; padding: .5rem .85rem; border: 1px solid var(--line); color: var(--white); background: var(--navy-850); cursor: pointer; }
.gallery-viewer button:hover { border-color: var(--accent); color: var(--accent); }
.gallery-viewer__close { font-size: .875rem; }
.gallery-viewer__close span { font-size: 1.5rem; line-height: 1; }
.gallery-viewer__stage { min-height: 0; padding: 1rem; }
.gallery-viewer__stage img { width: 100%; height: 100%; object-fit: contain; }
.gallery-viewer__footer { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: .75rem 1.25rem 1rem; border-top: 1px solid var(--line); }
.gallery-viewer__details { min-width: 0; }
.gallery-viewer__details p { margin: 0; font-size: .875rem; color: var(--muted); }
.gallery-viewer__details .gallery-viewer__category { margin-bottom: .25rem; color: var(--accent); font-weight: 700; }
.gallery-viewer__navigation { display: flex; flex-shrink: 0; gap: .5rem; }
.gallery-viewer__navigation button { font-size: 1.4rem; }
.gallery-services { padding: clamp(4rem, 7vw, 7rem) 4vw; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #061426, #0a2948); }
.gallery-services__heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 4vw; max-width: var(--max); margin: 0 auto 3rem; }
.gallery-services h2 { font-size: clamp(2.6rem, 4.5vw, 4.8rem); line-height: 1; letter-spacing: -.04em; }
.gallery-services__heading > p { max-width: 32rem; margin: 0; color: #c3d1de; font-size: 1.05rem; }
.gallery-services__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; max-width: var(--max); margin: 0 auto; }
.gallery-service { display: flex; min-width: 0; flex-direction: column; border: 1px solid rgba(109,194,235,.3); background: var(--navy-900); }
.gallery-service__image { width: 100%; height: auto; aspect-ratio: 4 / 3; max-height: 260px; object-fit: cover; object-position: center; border-bottom: 1px solid var(--line); }
.gallery-service__image--residential { object-position: 50% 25%; }
.gallery-service__image--outdoor { object-position: 50% 50%; }
.gallery-service__image--commercial { object-position: 50% 40%; }
.gallery-service__body { display: flex; flex: 1; flex-direction: column; padding: 1.5rem; }
.gallery-service h3 { min-height: 2.1em; font-size: clamp(1.6rem, 2.2vw, 2rem); line-height: 1.05; letter-spacing: -.025em; }
.gallery-service__body > p { margin: 1rem 0; color: #c3d1de; font-size: 1rem; line-height: 1.55; }
.gallery-service ul { margin: 0 0 1.75rem; padding-left: 1.1rem; color: var(--muted); font-size: 1rem; line-height: 1.5; }
.gallery-service li + li { margin-top: .45rem; }
.gallery-service li::marker { color: var(--accent); }
.gallery-service__actions { display: flex; flex-direction: column; align-items: stretch; gap: .4rem; margin-top: auto; }
.gallery-service__actions .button { min-height: 48px; justify-content: center; padding: .85rem .6rem; white-space: normal; text-align: center; }
.gallery-service__request { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; color: #d8e3eb; font-size: .875rem; font-weight: 700; text-decoration: underline; text-underline-offset: .25em; }
.gallery-service__request:hover { color: var(--accent); }
.gallery-cta { display: flex; justify-content: space-between; gap: 4rem; align-items: flex-end; padding: clamp(5rem, 9vw, 9rem) 4vw; background: var(--navy-900); }
.gallery-cta h2 { font-size: clamp(2.9rem, 5vw, 5.6rem); letter-spacing: -.05em; line-height: .96; }

.locations {
  padding: clamp(5rem, 9vw, 9rem) 4vw;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 12%, rgba(12, 114, 196, .18), transparent 30%),
    var(--navy-850);
}
.locations__heading { display: grid; grid-template-columns: 1fr .8fr; gap: 1rem 7vw; max-width: var(--max); margin: 0 auto 4rem; align-items: end; }
.locations__heading .eyebrow { grid-column: 1 / -1; margin-bottom: .3rem; }
.locations h2 { font-size: clamp(2.9rem, 5vw, 5.6rem); letter-spacing: -.05em; line-height: .96; }
.locations__heading > p { max-width: 36rem; margin: 0; color: var(--muted); font-size: 1.08rem; }
.location-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; max-width: var(--max); margin: 0 auto; border: 1px solid rgba(118, 184, 219, .3); background: rgba(118, 184, 219, .3); }
.location-card { position: relative; min-height: 330px; padding: clamp(2rem, 4vw, 4rem); background: rgba(4,16,31,.96); }
.location-card__number { position: absolute; inset: 2rem 2rem auto auto; color: rgba(138,232,251,.48); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.location-card__label { margin: 0 0 2.4rem; color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.location-card h3 { max-width: 15ch; font-size: clamp(1.75rem, 3vw, 3rem); letter-spacing: -.035em; line-height: 1; }
.location-card address { min-height: 4rem; margin: 1rem 0 2.5rem; color: var(--muted); font-style: normal; }
.location-card > a { display: inline-flex; align-items: center; min-height: 44px; padding-bottom: .3rem; border-bottom: 1px solid var(--accent); color: var(--accent); font-size: .875rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.business-details { display: grid; grid-template-columns: repeat(4, auto); gap: 1rem 2rem; justify-content: space-between; max-width: var(--max); margin: 1px auto 0; padding: 1.35rem 1.5rem; color: #b8cbd9; background: rgba(4,16,31,.72); font-size: .76rem; font-weight: 750; letter-spacing: .045em; }
.business-details a { color: var(--white); min-height: 44px; display: inline-flex; align-items: center; overflow-wrap: anywhere; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 4vw 5rem;
  border-top: 1px solid var(--line);
  background: var(--navy-950);
}
.brand--footer .brand__mark { width: clamp(82px, 7vw, 112px); height: clamp(68px, 6vw, 94px); }
.brand--footer .brand__name strong { font-size: clamp(1.55rem, 2.1vw, 2.1rem); }
.brand--footer .brand__name small { font-size: clamp(.72rem, .9vw, .9rem); }
.site-footer p { max-width: 34rem; margin: 0; color: var(--muted); }
.license { display: inline-block; margin-top: .5rem; color: #d9e8f2; font-size: .78rem; font-weight: 750; letter-spacing: .055em; text-transform: uppercase; }
.site-footer > div { display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; color: var(--muted); font-size: .85rem; }
.site-footer > div a { display: inline-flex; align-items: center; min-height: 44px; color: var(--white); font-weight: 700; overflow-wrap: anywhere; }
.site-footer > div .instagram-link { color: var(--accent); }
.footer-nav { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .5rem 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; color: var(--muted); font-size: .875rem; font-weight: 700; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--accent); }
.mobile-actions { display: none; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

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

@media (max-width: 1320px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .phone-link__copy small { display: none; }
  .business-details { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1260px) {
  .gallery-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-tile span { font-size: 1rem; }
  .hero { min-height: auto; }
  .hero__copy { min-height: 620px; padding-bottom: 3rem; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item:nth-child(2) { border-right: 0; }
  .trust-bar__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 1100px) {
  .service-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 1.5rem;
  }
  .phone-link, .header-estimate { display: none; }
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-inline: 4vw;
  }
  .contact-hero__intro { max-width: 44rem; }
  .site-footer { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .site-footer > .brand { grid-column: 1 / -1; }
  .gallery-cta { flex-wrap: wrap; }
}

@media (max-width: 760px) {
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px)); }
  .site-header { min-height: 84px; padding: 0 1rem; }
  .site-header { column-gap: .5rem; }
  .brand { gap: .55rem; }
  .brand__mark { width: 74px; height: 66px; }
  .brand__name strong { font-size: 1.38rem; }
  .brand__name small { margin-top: .34rem; font-size: .66rem; letter-spacing: .13em; }
  .site-header.is-sticky .brand__mark { width: 74px; height: 66px; }
  .site-header.is-sticky .brand__name strong { font-size: 1.38rem; }
  .site-header.is-sticky .brand__name small { font-size: .66rem; }
  .menu-panel { padding-top: 6rem; padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px)); }
  body.menu-open .mobile-actions { visibility: hidden; }
  .phone-link, .header-estimate { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__image { grid-row: 1; height: 75vw; min-height: 0; }
  .hero::after { display: none; }
  .hero__copy { min-height: auto; justify-content: center; padding: 3.5rem 1.25rem 2.5rem; background: linear-gradient(180deg, rgba(5,17,29,.35), rgba(5,17,29,.98) 83%); }
  .eyebrow { margin-bottom: 1rem; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .hero #hero-title { font-size: clamp(2.35rem, 10vw, 4.7rem); }
  .hero__copy > p { max-width: 34rem; margin: 1.2rem 0 1.5rem; }
  .service-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-tile { min-height: 76px; gap: .5rem; padding: .875rem .5rem; }
  .service-tile svg { width: 1.75rem; height: 1.75rem; }
  .service-tile span { font-size: 1rem; }
  .trust-bar__item { min-height: 88px; padding: .875rem 1.25rem; }
  .trust-bar__item strong { font-size: 1rem; }
  .trust-bar--reference .trust-bar__item { min-height: 68px; gap: .25rem; padding: .5rem .875rem; }
  .trust-bar--reference .trust-bar__item span { line-height: 1.2; letter-spacing: .1em; }
  .trust-bar--reference .trust-bar__item strong { font-size: .9375rem; }
  .story { grid-template-columns: 1fr; }
  .home-main, .contact-main--with-credentials { padding-top: 84px; }
  .story__copy { padding: 5rem 1.25rem; }
  .story__image { min-height: 68vw; grid-row: 1; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 3rem; }
  .work { padding: 5rem 1.25rem; }
  .capability { grid-template-columns: 40px 1fr; gap: 1rem; }
  .capability p { grid-column: 2; }
  .project-grid { grid-template-columns: 1fr; margin-top: 3.5rem; }
  .project-card { min-height: 72vw; }
  .project-band { min-height: 125vw; }
  .project-band__caption { inset: auto 1.25rem 2rem; flex-direction: column; align-items: flex-start; }
  .process { padding: 5rem 1.25rem; }
  .process__heading { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .process__steps { grid-template-columns: 1fr; }
  .process-step { min-height: 275px; }
  .process-step h3 { margin-top: 3.5rem; }
  .project-invite { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.25rem; }
  .estimate { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.25rem; }
  .estimate-form { grid-template-columns: 1fr; }
  .field-group, .field-group--wide { grid-column: 1; }
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 8rem 1.25rem 5rem;
    background:
      linear-gradient(180deg, rgba(2,10,21,.88), rgba(2,10,21,.98) 45%),
      url("assets/malibu-lighting.jpg") 58% top / auto 54rem no-repeat;
  }
  .back-link { margin-bottom: 3rem; }
  .contact-hero__form-wrap { padding: 1.5rem; }
  .contact-form-heading { align-items: flex-start; flex-direction: column; gap: .25rem; }
  .contact-hero h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .contact-hero--hub { gap: 2.5rem; }
  .contact-main--with-credentials .contact-hero--hub { padding-top: 1.5rem; }
  .contact-main--with-credentials .back-link { margin-bottom: 1.5rem; }
  .contact-option { gap: .75rem; padding: 1.5rem 1.1rem; }
  .request-nav { margin-top: 0; }
  .request-nav a { flex: 1 1 auto; }
  .hero__actions { gap: .8rem; }
  .gallery-hero { min-height: 650px; padding: 7rem 1.25rem 4rem; }
  .gallery-hero__image { object-position: 64% center; }
  .gallery-hero::after { background: linear-gradient(90deg, rgba(2,10,21,.82), rgba(2,10,21,.34)), linear-gradient(0deg, rgba(2,10,21,.9), transparent 70%); }
  .gallery-hero .back-link { margin-bottom: 5rem; }
  .gallery-hero h1 { font-size: clamp(2.75rem, 10.5vw, 4.5rem); }
  .gallery-hero__credit { right: 1.25rem; bottom: 1.25rem; font-size: .8rem; }
  .project-archive { padding: 1.5rem 1.25rem 3rem; }
  .gallery-filters { gap: .5rem; }
  .gallery-filters button { flex: 1 1 auto; padding: .6rem .8rem; }
  .gallery-help span { display: block; }
  .gallery-viewer { width: 100%; height: 100vh; height: 100dvh; border: 0; padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px); }
  .gallery-viewer__bar { padding: .6rem 1rem; }
  .gallery-viewer__stage { padding: .5rem; }
  .gallery-viewer__footer { flex-wrap: wrap; gap: .75rem; padding: .75rem 1rem 1rem; }
  .gallery-viewer__details { flex: 1 1 220px; }
  .gallery-viewer__navigation { margin-left: auto; }
  .gallery-cta { align-items: flex-start; flex-direction: column; padding: 5rem 1.25rem; }
  .gallery-services { padding: 4rem 1.25rem; }
  .gallery-services__heading { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
  .gallery-services__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-service h3 { min-height: 0; }
  .locations { padding: 5rem 1.25rem; }
  .locations__heading, .location-cards { grid-template-columns: 1fr; }
  .location-card { min-height: 290px; }
  .business-details { grid-template-columns: 1fr; padding: 1.5rem; }
  .site-footer { grid-template-columns: 1fr; padding: 3rem 1.25rem 4rem; }
  .site-footer > div { align-items: flex-start; }
  .mobile-actions {
    position: fixed;
    z-index: 30;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(62px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    border-top: 1px solid #3d5061;
    background: var(--navy-950);
  }
  .mobile-actions a { display: grid; place-items: center; min-height: 62px; padding: .5rem; text-align: center; font-family: var(--heading); font-size: .875rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
  .mobile-actions a + a { color: var(--navy-950); background: linear-gradient(135deg, #48b7ee, var(--accent)); }
  .contact-page:has(.estimate-form :focus) .mobile-actions { display: none; }
}

@media (max-width: 540px) {
  .archive-grid { grid-template-columns: 1fr; }
}

@media (min-width: 761px) and (max-width: 1320px) and (max-height: 500px) {
  .trust-bar--reference { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-bar--reference .trust-bar__item { min-height: 68px; gap: .25rem; padding: .5rem .875rem; border-bottom: 0; }
  .trust-bar--reference .trust-bar__item:nth-child(2) { border-right: 1px solid var(--line); }
  .trust-bar--reference .trust-bar__item span { line-height: 1.2; letter-spacing: .1em; }
  .trust-bar--reference .trust-bar__item strong { font-size: .9375rem; }
}

@media (max-height: 500px) and (max-width: 1320px) {
  .site-header, .site-header.is-sticky { min-height: 70px; }
  .home-main, .contact-main--with-credentials { padding-top: 70px; }
  .site-header .brand__mark { width: 74px; height: 62px; }
  .site-header .brand__name strong { font-size: 1.38rem; }
  .site-header .brand__name small { font-size: .7rem; }
  .menu-panel { padding-top: 5rem; }
  .menu-panel nav a { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
