:root {
  --red: #e31919;
  --red-dark: #b90f12;
  --ink: #111111;
  --charcoal: #1b1b1b;
  --muted: #6d6d6d;
  --line: #dcdcdc;
  --paper: #f5f4f1;
  --white: #ffffff;
  --shell: min(1240px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.utility-bar {
  position: relative;
  z-index: 30;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.utility-inner p {
  margin: 0;
}

.utility-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-meta a {
  transition: color 180ms ease;
}

.utility-meta a:hover {
  color: var(--white);
}

.utility-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: 166px;
  height: 57px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 34px 0 30px;
  color: #393939;
  font-size: 13px;
  font-weight: 560;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-cta {
  min-width: 176px;
  padding: 0 20px;
  background: var(--red);
  color: var(--white);
}

.nav-cta:hover,
.button-red:hover {
  background: var(--red-dark);
}

.nav-cta:hover span,
.button:hover span {
  transform: translate(2px, -2px);
}

.nav-cta span,
.button span {
  transition: transform 180ms ease;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #171717;
  color: var(--white);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 45%),
    url("../assets/salt-fields.jpeg") center 47% / cover no-repeat;
  transform: scale(1.01);
  animation: hero-settle 1.3s ease-out both;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.91) 0%, rgba(9, 9, 9, 0.78) 38%, rgba(9, 9, 9, 0.18) 75%, rgba(9, 9, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.7) 0%, transparent 38%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) 346px;
  align-items: end;
  gap: 80px;
  padding-top: 100px;
  padding-bottom: 74px;
}

.hero-content {
  align-self: center;
  max-width: 810px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow.light > span {
  background: var(--red);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(56px, 6.4vw, 94px);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-copy {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.button {
  min-width: 202px;
  padding: 0 22px;
}

.button-red {
  background: var(--red);
  color: var(--white);
}

.button-dark {
  margin-top: 28px;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--red);
}

.video-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.play-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-size: 11px;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.video-trigger:hover .play-icon {
  border-color: var(--red);
  background: var(--red);
}

.video-trigger strong,
.video-trigger small {
  display: block;
}

.video-trigger strong {
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.video-trigger small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.portfolio-split {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(17, 17, 17, 0.66);
  backdrop-filter: blur(12px);
}

.portfolio-main {
  position: relative;
  min-height: 170px;
  padding: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.portfolio-main strong {
  font-size: 82px;
  font-weight: 560;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.portfolio-main > span {
  margin-left: 5px;
  color: var(--red);
  font-size: 28px;
  font-weight: 700;
}

.portfolio-main p,
.portfolio-minor p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-minor {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.portfolio-minor > div {
  padding: 22px 26px;
}

.portfolio-minor > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.portfolio-minor strong {
  font-size: 25px;
  font-weight: 560;
}

.portfolio-minor p {
  margin-top: 8px;
  font-size: 9px;
}

.hero-index {
  position: absolute;
  right: 20px;
  bottom: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-mark {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.trust-grid p {
  margin: 0;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.03em;
}

.section {
  padding: 124px 0;
}

.section-heading h2,
.services-intro h2,
.video-copy h2,
.process-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.4vw, 66px);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 100px;
  align-items: end;
}

.split-heading h2 {
  max-width: 780px;
}

.heading-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.heading-copy p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  margin-top: 24px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  margin-top: 70px;
}

.about-image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #ddd;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-image:hover img {
  transform: scale(1.025);
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 240px;
  min-height: 82px;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  background: var(--white);
}

.image-label span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-label strong {
  font-size: 12px;
  letter-spacing: 0.13em;
}

.about-panel {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px;
  background: var(--ink);
  color: var(--white);
}

.panel-kicker {
  margin: 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-panel blockquote {
  margin: 44px 0 64px;
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.fact-grid > div {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.fact-grid strong {
  margin-bottom: 10px;
  font-size: 31px;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.fact-grid span,
.fact-grid small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-grid small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.32);
}

.business-section {
  background: var(--paper);
}

.center-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading > p:last-child {
  max-width: 630px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.business-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 70px;
  border-top: 1px solid #c9c8c5;
  border-left: 1px solid #c9c8c5;
}

.business-tabs button {
  position: relative;
  display: grid;
  min-height: 120px;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  padding: 24px 28px;
  border: 0;
  border-right: 1px solid #c9c8c5;
  border-bottom: 1px solid #c9c8c5;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.business-tabs button::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.business-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.business-tabs button.is-active::after {
  transform: scaleX(1);
}

.business-tabs button > span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}

.business-tabs strong {
  font-size: 16px;
  font-weight: 620;
}

.business-tabs small {
  margin-top: 7px;
  color: #7a7976;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.business-tabs button.is-active small {
  color: rgba(255, 255, 255, 0.48);
}

.business-panel {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  background: var(--white);
  animation: panel-in 360ms ease both;
}

.business-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #d9d9d9;
}

.business-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent 45%);
  content: "";
}

.business-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-salt .business-visual img {
  object-position: center 23%;
}

.share-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 178px;
  height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 0 22px;
  background: var(--red);
  color: var(--white);
}

.share-badge strong {
  font-size: 37px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.share-badge span {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.business-content {
  align-self: center;
  max-width: 670px;
  padding: 70px clamp(42px, 5vw, 86px);
}

.business-content h3 {
  margin: 22px 0 22px;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 570;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.business-description {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.business-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.business-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 550;
}

.business-list li span {
  color: var(--red);
  font-size: 18px;
  font-weight: 400;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.tag-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: #707070;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.services-section::after {
  position: absolute;
  top: -210px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 88px solid rgba(227, 25, 25, 0.12);
  border-radius: 50%;
  content: "";
}

.services-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.52fr);
  align-items: end;
  gap: 110px;
}

.services-intro h2 {
  max-width: 760px;
}

.services-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.75;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.services-grid article {
  position: relative;
  min-height: 340px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 220ms ease;
}

.services-grid article:hover {
  background: var(--red);
}

.services-grid article > span:first-child {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  transition: color 220ms ease;
}

.services-grid article:hover > span:first-child {
  color: var(--white);
}

.services-grid h3 {
  max-width: 180px;
  margin: 92px 0 18px;
  font-size: 22px;
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.services-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.7;
  transition: color 220ms ease;
}

.services-grid article:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.service-arrow {
  position: absolute;
  right: 26px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.4);
}

.video-section {
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  align-items: center;
  gap: 90px;
}

.video-copy h2 {
  margin-top: 0;
}

.video-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.video-frame {
  position: relative;
  background: var(--ink);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-caption {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: var(--ink);
  color: var(--white);
}

.video-caption span,
.video-caption strong {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-caption span {
  color: rgba(255, 255, 255, 0.46);
}

.gallery-section {
  background: var(--paper);
}

.gallery-heading {
  align-items: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 310px 310px;
  gap: 10px;
  margin-top: 70px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  background: #d0d0d0;
  cursor: zoom-in;
}

.gallery-item-1 {
  grid-column: span 5;
}

.gallery-item-2 {
  grid-column: span 4;
}

.gallery-item-3 {
  grid-column: span 3;
}

.gallery-item-4 {
  grid-column: span 3;
}

.gallery-item-5 {
  grid-column: span 4;
}

.gallery-item-6 {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item-5 img {
  object-position: center 68%;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 56%);
  color: var(--white);
  text-align: left;
}

.gallery-overlay small,
.gallery-overlay strong {
  display: block;
}

.gallery-overlay small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-overlay strong {
  font-size: 14px;
  font-weight: 590;
}

.gallery-overlay b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 400;
}

.process-section {
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: 110px;
}

.process-heading {
  position: sticky;
  top: 150px;
  align-self: start;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 155px;
  grid-template-columns: 90px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.process-list h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 570;
  letter-spacing: -0.025em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 124px 0;
  background: #171717;
  color: var(--white);
}

.contact-accent {
  position: absolute;
  top: -42%;
  left: -14%;
  width: 620px;
  height: 620px;
  border: 100px solid rgba(227, 25, 25, 0.11);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: start;
  gap: 120px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.8;
}

.contact-direct {
  display: flex;
  gap: 60px;
  margin-top: 70px;
}

.contact-direct a small,
.contact-direct a strong {
  display: block;
}

.contact-direct a small {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-direct a strong {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 560;
}

.inquiry-form {
  min-height: 520px;
  padding: 44px;
  background: var(--white);
  color: var(--ink);
}

.form-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.form-head span {
  color: var(--red);
  font-weight: 700;
}

.form-head strong {
  color: #a0a0a0;
}

.inquiry-form label {
  display: block;
  margin-top: 20px;
  color: #686868;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 0 0 13px;
  border: 0;
  border-bottom: 1px solid #cfcfcf;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 180ms ease;
}

.inquiry-form input {
  height: 39px;
}

.inquiry-form select {
  height: 39px;
}

.inquiry-form textarea {
  min-height: 73px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--red);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-submit {
  width: 100%;
  margin-top: 30px;
}

.form-success {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 22px;
}

.form-success h3 {
  margin: 28px 0 12px;
  font-size: 30px;
  font-weight: 570;
  letter-spacing: -0.04em;
}

.form-success p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.form-success button {
  margin-top: 28px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.site-footer {
  background: #0d0d0d;
  color: var(--white);
}

.footer-top {
  display: flex;
  min-height: 280px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 70px;
}

.footer-brand > strong {
  font-size: 44px;
  font-weight: 760;
  letter-spacing: -0.07em;
}

.footer-brand > strong span {
  color: var(--red);
}

.footer-brand p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.footer-nav > div {
  display: flex;
  min-width: 130px;
  flex-direction: column;
  gap: 12px;
}

.footer-nav small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav button {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 12px;
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.33);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--white);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 52px;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(10px);
  animation: modal-in 180ms ease both;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.modal-close:hover {
  background: var(--red);
}

.lightbox figure {
  margin: 0;
}

.lightbox figure img {
  max-width: min(1100px, calc(100vw - 100px));
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  color: var(--white);
}

.lightbox figcaption span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox figcaption strong {
  font-size: 13px;
  font-weight: 550;
}

.modal-video-wrap {
  width: min(1100px, calc(100vw - 100px));
  background: var(--ink);
}

.modal-video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.modal-video-wrap > div {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--white);
}

.modal-video-wrap span,
.modal-video-wrap p {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-video-wrap span {
  color: var(--red);
  font-weight: 700;
}

.modal-video-wrap p {
  color: rgba(255, 255, 255, 0.45);
}

@keyframes hero-settle {
  from {
    opacity: 0.6;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1.01);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 56px, 960px);
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav > a:not(.nav-cta) {
    font-size: 12px;
  }

  .nav-cta {
    min-width: 160px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 42px;
  }

  .split-heading,
  .services-intro {
    gap: 60px;
  }

  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .about-panel {
    padding: 38px;
  }

  .business-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .business-content {
    padding: 54px 46px;
  }

  .business-list {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-grid,
  .process-grid {
    gap: 60px;
  }

  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: 144px;
    height: 50px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-bottom: 0 solid var(--line);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 280ms ease,
      opacity 180ms ease;
  }

  .main-nav.is-open {
    max-height: 500px;
    border-bottom-width: 1px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 17px 24px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    width: auto;
    min-height: 58px;
    margin: 16px 20px 20px;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
    padding-top: 86px;
    padding-bottom: 42px;
  }

  .hero-content {
    align-self: end;
  }

  .hero h1 {
    font-size: clamp(51px, 11vw, 78px);
  }

  .portfolio-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-main {
    min-height: 142px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
  }

  .portfolio-main strong {
    font-size: 64px;
  }

  .portfolio-minor {
    grid-template-columns: 1fr;
  }

  .portfolio-minor > div {
    padding: 17px 22px;
  }

  .portfolio-minor > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div {
    min-height: 74px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(3) {
    border-left: 0;
  }

  .trust-grid > div:first-child {
    padding-left: 18px;
  }

  .section {
    padding: 92px 0;
  }

  .split-heading,
  .services-intro,
  .video-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .about-panel {
    min-height: 540px;
  }

  .business-tabs {
    grid-template-columns: 1fr;
  }

  .business-tabs button {
    min-height: 90px;
  }

  .business-panel {
    grid-template-columns: 1fr;
  }

  .business-visual {
    min-height: 540px;
  }

  .services-grid {
    margin-top: 48px;
  }

  .video-copy {
    max-width: 620px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 280px);
  }

  .gallery-item {
    grid-column: auto;
  }

  .process-heading {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 670px;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .hero,
  .hero-inner {
    min-height: 780px;
  }

  .hero-media {
    background-position: 56% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(9, 9, 9, 0.88), rgba(9, 9, 9, 0.35)),
      linear-gradient(0deg, rgba(9, 9, 9, 0.86), transparent 64%);
  }

  .hero-inner {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(46px, 14.2vw, 67px);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .portfolio-split {
    grid-template-columns: 1fr;
  }

  .portfolio-main {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .portfolio-main strong {
    font-size: 55px;
  }

  .portfolio-main p {
    display: inline;
    margin-left: 18px;
  }

  .portfolio-minor {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-minor > div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-index {
    display: none;
  }

  .trust-grid p {
    font-size: 10px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .services-intro h2,
  .video-copy h2,
  .process-heading h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .heading-copy {
    font-size: 14px;
  }

  .about-grid {
    margin-top: 44px;
  }

  .about-image {
    min-height: 420px;
  }

  .about-panel {
    min-height: 560px;
    padding: 32px 24px;
  }

  .about-panel blockquote {
    font-size: 27px;
  }

  .business-tabs {
    margin-top: 44px;
  }

  .business-tabs button {
    padding: 20px;
  }

  .business-visual {
    min-height: 420px;
  }

  .share-badge {
    width: 145px;
    height: 98px;
  }

  .business-content {
    padding: 42px 24px 48px;
  }

  .business-content h3 {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid article {
    min-height: 270px;
  }

  .services-grid h3 {
    margin-top: 62px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 290px);
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-direct {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 44px;
  }

  .inquiry-form {
    min-height: 520px;
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    min-height: 430px;
    flex-direction: column;
    gap: 52px;
    padding-bottom: 54px;
  }

  .footer-nav {
    width: 100%;
    gap: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
  }

  .modal {
    padding: 18px;
  }

  .lightbox figure img,
  .modal-video-wrap {
    max-width: calc(100vw - 36px);
    width: 100%;
  }

  .modal-video-wrap > div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .lightbox figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
