@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

/* =========================================================
   ROOT
   ========================================================= */

:root {
  --bg: #f4f6f4;
  --surface: rgba(255,255,255,.72);
  --surface-strong: #ffffff;
  --text: #111b1a;
  --muted: #5f6a67;
  --line: rgba(17,27,26,.12);

  --navy: #092a36;
  --navy-2: #0e3a47;

  --green: #1d5c50;
  --green-2: #2d7566;

  --silver: #aab5b2;
  --accent: #b5c8c2;

  --shadow: 0 24px 70px rgba(7,31,34,.12);

  --radius: 24px;

  --header-h: 78px;
}

body[data-theme="dark"] {
  --bg: #071114;
  --surface: rgba(13,27,30,.76);
  --surface-strong: #0d1d20;
  --text: #edf3f1;
  --muted: #9eafaa;
  --line: rgba(238,246,243,.13);

  --navy: #0e3b48;
  --navy-2: #155362;

  --green: #2b7465;
  --green-2: #3d8b79;

  --silver: #7e8e8a;
  --accent: #c6d5d1;

  --shadow: 0 28px 80px rgba(0,0,0,.3);
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  background: var(--bg);
  color: var(--text);

  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;

  overflow-x: hidden;

  transition:
    background .45s ease,
    color .45s ease;
}

body::before {
  content: "";

  position: fixed;
  inset: 0;

  pointer-events: none;

  z-index: -5;

  opacity: .34;

  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(46,104,91,.12) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(11,57,70,.1) 0 1px,
      transparent 1px
    );

  background-size:
    42px 42px,
    58px 58px;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

main,
header,
footer {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

img {
  display: block;
}

::selection {
  background: var(--green);
  color: #fff;
}


/* =========================================================
   CONTAINERS / TYPOGRAPHY
   ========================================================= */

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-sm {
  padding: 82px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 18px;

  color: var(--green-2);

  font-size: .76rem;
  font-weight: 800;

  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  width: 32px;
  height: 1px;

  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;

  font-family: "Manrope", sans-serif;

  line-height: 1.04;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 7.8rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  max-width: 680px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.muted {
  color: var(--muted);
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: var(--green-2);

  transform: scaleX(0);
  transform-origin: left;

  z-index: 1100;
}


/* =========================================================
   HEADER — DESKTOP
   ========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  max-width: 100vw;

  height: var(--header-h);

  z-index: 100;

  border-bottom: 1px solid transparent;

  transition:
    background .35s,
    border-color .35s,
    box-shadow .35s;

  box-sizing: border-box;
}

.site-header.scrolled {
  background:
    color-mix(
      in srgb,
      var(--surface-strong) 78%,
      transparent
    );

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-color: var(--line);

  box-shadow: 0 10px 40px rgba(0,0,0,.06);
}


/* Header inner */

.nav-wrap {
  width: min(1180px, calc(100% - 40px));

  height: 100%;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;

  gap: 20px;

  box-sizing: border-box;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  width: max-content;
  max-width: 100%;

  min-width: 0;

  font-family: "Manrope", sans-serif;

  font-weight: 800;

  letter-spacing: .08em;

  font-size: .86rem;
}

.brand-mark {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  border: 1px solid var(--line);

  border-radius: 50%;

  display: grid;
  place-items: center;

  overflow: hidden;

  background: var(--surface-strong);
}

.brand-mark img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.brand-copy {
  min-width: 0;
}

.brand-copy span {
  display: block;

  line-height: 1;

  white-space: nowrap;
}

.brand-copy small {
  display: block;

  color: var(--muted);

  font-size: .52rem;

  letter-spacing: .24em;

  margin-top: 4px;

  white-space: nowrap;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.site-nav {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 28px;

  min-width: 0;
}

.site-nav a {
  position: relative;

  color: var(--muted);

  font-size: .84rem;

  font-weight: 700;

  white-space: nowrap;
}

.site-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;

  bottom: -7px;

  height: 1px;

  background: var(--text);

  transition: right .3s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  right: 0;
}


/* =========================================================
   NAV ACTIONS
   ========================================================= */

.nav-actions {
  justify-self: end;

  display: flex;

  align-items: center;

  gap: 12px;

  min-width: 0;
}

.theme-control {
  display: flex;

  align-items: center;

  gap: 8px;

  color: var(--muted);

  font-size: .7rem;

  text-transform: uppercase;

  letter-spacing: .12em;

  white-space: nowrap;
}

.theme-toggle {
  appearance: none;

  width: 44px;
  height: 24px;

  flex: 0 0 44px;

  border: 1px solid var(--line);

  border-radius: 999px;

  position: relative;

  background: var(--surface);

  transition: .3s;
}

.theme-toggle::after {
  content: "";

  position: absolute;

  width: 18px;
  height: 18px;

  top: 2px;
  left: 3px;

  border-radius: 50%;

  background: var(--text);

  transition: .3s;
}

.theme-toggle:checked::after {
  transform: translateX(18px);
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  min-width: 42px;

  padding: 0;

  border: 1px solid var(--line);

  border-radius: 10px;

  background: var(--surface);

  color: var(--text);

  align-items: center;
  justify-content: center;

  font-size: 1.5rem;

  line-height: 1;

  z-index: 1500;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 48px;

  padding: 0 21px;

  border: 1px solid var(--line);

  border-radius: 999px;

  font-weight: 800;

  font-size: .82rem;

  letter-spacing: .02em;

  overflow: hidden;

  isolation: isolate;

  transition:
    transform .3s,
    border-color .3s,
    background .3s,
    color .3s;
}

.btn::before {
  content: "";

  position: absolute;

  inset: 0;

  background: var(--text);

  transform: translateY(102%);

  transition: transform .35s;

  z-index: -1;
}

.btn:hover {
  color: var(--bg);

  border-color: var(--text);

  transform: translateY(-2px);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-primary::before {
  background: var(--green-2);
}

.btn-ghost {
  background: var(--surface);
}

.btn-light {
  background: #fff;
  color: #102024;
  border-color: #fff;
}

.btn-light::before {
  background: #dbe5e1;
}

.btn-sm {
  min-height: 40px;
  padding-inline: 16px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100svh;

  display: flex;

  align-items: center;

  padding: 150px 0 90px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 72% 32%,
      color-mix(
        in srgb,
        var(--green) 26%,
        transparent
      ),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--bg),
      color-mix(
        in srgb,
        var(--bg) 88%,
        var(--navy)
      )
    );
}

.hero-grid {
  display: grid;

  grid-template-columns: 1.02fr .98fr;

  align-items: center;

  gap: 60px;
}

.hero-kicker {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  border: 1px solid var(--line);

  background: var(--surface);

  padding: 8px 12px;

  border-radius: 999px;

  backdrop-filter: blur(16px);

  color: var(--muted);

  font-size: .72rem;

  font-weight: 800;

  letter-spacing: .14em;

  text-transform: uppercase;
}

.hero-kicker i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--green-2);

  box-shadow:
    0 0 0 6px
    color-mix(
      in srgb,
      var(--green-2) 15%,
      transparent
    );
}

.hero h1 {
  margin: 24px 0 25px;

  max-width: 850px;
}

.hero h1 em {
  font-style: normal;

  color: var(--green-2);
}

.hero-copy {
  max-width: 650px;
}

.hero-actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.hero-note {
  display: flex;

  gap: 26px;

  margin-top: 42px;
}

.hero-note div {
  border-left: 1px solid var(--line);

  padding-left: 14px;
}

.hero-note strong {
  display: block;

  font-family: "Manrope";

  font-size: 1.15rem;
}

.hero-note span {
  color: var(--muted);

  font-size: .72rem;

  text-transform: uppercase;

  letter-spacing: .1em;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
  min-height: 560px;

  position: relative;

  display: grid;

  place-items: center;
}

.hero-orbit {
  width: min(540px, 90vw);

  aspect-ratio: 1;

  border: 1px solid var(--line);

  border-radius: 50%;

  position: relative;

  box-shadow:
    inset 0 0 80px rgba(20,80,75,.08),
    0 0 100px rgba(20,80,75,.08);
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";

  position: absolute;

  inset: 10%;

  border: 1px solid
    color-mix(
      in srgb,
      var(--green-2) 42%,
      transparent
    );

  border-radius: 50%;
}

.hero-orbit::after {
  inset: 24%;

  border-color:
    color-mix(
      in srgb,
      var(--navy-2) 40%,
      transparent
    );
}

.hero-logo-card {
  position: absolute;

  inset: 17%;

  display: grid;

  place-items: center;

  border-radius: 36px;

  background-image:
    linear-gradient(
      145deg,
      rgba(3,12,14,.68),
      rgba(3,12,14,.36)
    ),
    var(--hero-image);

  background-size: cover;

  background-position: center;

  border: 1px solid var(--line);

  box-shadow: var(--shadow);

  backdrop-filter: blur(10px);

  transform: translateZ(0);

  overflow: hidden;
}

.hero-logo-card img {
  width: 78%;

  max-width: 360px;

  filter:
    drop-shadow(
      0 18px 35px rgba(0,0,0,.55)
    );

  position: relative;

  z-index: 2;
}

.orbit-dot {
  position: absolute;

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: var(--green-2);

  box-shadow:
    0 0 0 9px
    color-mix(
      in srgb,
      var(--green-2) 10%,
      transparent
    );
}

.orbit-dot.one {
  top: 12%;
  right: 16%;
}

.orbit-dot.two {
  bottom: 14%;
  left: 15%;

  background: var(--navy-2);
}

.orbit-label {
  position: absolute;

  right: -5%;
  bottom: 8%;

  padding: 12px 14px;

  background: var(--surface-strong);

  border: 1px solid var(--line);

  box-shadow: var(--shadow);

  border-radius: 14px;

  font-size: .72rem;

  font-weight: 800;

  letter-spacing: .1em;

  text-transform: uppercase;
}

.ambient {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(2px);

  opacity: .65;

  border:
    1px solid
    color-mix(
      in srgb,
      var(--green-2) 18%,
      transparent
    );
}

.ambient.a {
  width: 280px;
  height: 280px;

  left: -160px;
  top: 12%;
}

.ambient.b {
  width: 420px;
  height: 420px;

  right: -250px;
  bottom: -160px;
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.section-head {
  display: flex;

  justify-content: space-between;

  gap: 40px;

  align-items: end;

  margin-bottom: 52px;
}

.section-head > div:last-child {
  max-width: 480px;
}

.section-head h2 {
  max-width: 740px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.service-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

.service-card {
  min-height: 280px;

  position: relative;

  overflow: hidden;

  padding: 28px;

  background: var(--surface);

  border: 1px solid var(--line);

  border-radius: var(--radius);

  transition:
    border-color .35s,
    box-shadow .35s,
    background .35s,
    transform .35s;
}

.service-card-image::before {
  content: "";

  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(
      180deg,
      rgba(4,13,15,.20),
      rgba(4,13,15,.92)
    ),
    var(--service-image);

  background-size: cover;

  background-position: center;

  opacity: .72;

  transform: scale(1.02);

  transition:
    transform .7s ease,
    opacity .4s ease;
}

.service-card-image:hover::before {
  transform: scale(1.08);

  opacity: .88;
}

.service-card-image > * {
  position: relative;

  z-index: 2;
}

.service-card:hover {
  border-color:
    color-mix(
      in srgb,
      var(--green-2) 45%,
      var(--line)
    );

  box-shadow: var(--shadow);

  background: var(--surface-strong);
}

.service-number {
  font-family: "Manrope";

  font-size: .72rem;

  font-weight: 800;

  letter-spacing: .18em;

  color: var(--green-2);
}

.service-card h3 {
  margin: 65px 0 12px;
}

.service-card p {
  font-size: .9rem;

  max-width: 320px;
}

.service-icon {
  position: absolute;

  top: 22px;
  right: 22px;

  width: 58px;
  height: 58px;

  display: grid;

  place-items: center;

  border: 1px solid var(--line);

  border-radius: 50%;

  color: var(--green-2);

  font-family: "Manrope";

  font-weight: 800;
}

.service-card .coming {
  position: absolute;

  top: 23px;
  right: 22px;

  font-size: .62rem;

  letter-spacing: .12em;

  text-transform: uppercase;

  padding: 7px 9px;

  border: 1px solid var(--line);

  border-radius: 999px;

  color: var(--green-2);
}


/* =========================================================
   DARK BAND / MATERIALS
   ========================================================= */

.dark-band {
  background: var(--navy);

  color: #edf5f2;

  overflow: hidden;
}

.dark-band p {
  color: rgba(237,245,242,.68);
}

.dark-band .eyebrow {
  color: #8ec6b8;
}

.dark-band .ambient {
  border-color: rgba(142,198,184,.2);
}

.materials-track {
  display: flex;

  gap: 14px;

  overflow-x: auto;

  overflow-y: hidden;

  padding: 8px 4px 20px;

  scroll-snap-type: x mandatory;

  scrollbar-width: thin;

  -webkit-overflow-scrolling: touch;
}

.material {
  min-width: 300px;

  height: 380px;

  flex: 0 0 auto;

  scroll-snap-align: start;

  position: relative;

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.14);

  border-radius: 28px;

  background-color: #142f35;

  background-size: cover;

  background-position: center;
}

.material::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(4,13,15,.08),
      rgba(4,13,15,.86)
    ),
    repeating-linear-gradient(
      120deg,
      rgba(255,255,255,.08) 0 2px,
      transparent 2px 11px
    );

  opacity: .82;
}

.material:nth-child(2)::before {
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(255,255,255,.14),
      transparent 32%
    ),
    repeating-linear-gradient(
      12deg,
      rgba(255,255,255,.06) 0 2px,
      transparent 2px 8px
    );
}

.material:nth-child(3)::before {
  background:
    linear-gradient(
      145deg,
      transparent,
      rgba(255,255,255,.1)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.07) 0 1px,
      transparent 1px 18px
    );
}

.material:nth-child(4)::before {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.07) 0 1px,
      transparent 1px 12px
    );
}

.material-content {
  position: absolute;

  inset: auto 22px 22px;

  z-index: 2;

  text-shadow:
    0 2px 16px rgba(0,0,0,.55);
}

.material small {
  color: #91b9af;

  letter-spacing: .15em;

  text-transform: uppercase;

  font-size: .65rem;
}

.material h3 {
  margin-top: 7px;

  font-size: 1.5rem;
}


/* =========================================================
   STORY
   ========================================================= */

.split {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.story-panel {
  position: relative;

  min-height: 530px;

  border: 1px solid var(--line);

  border-radius: 34px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      var(--navy),
      var(--green)
    );

  box-shadow: var(--shadow);
}

.story-image-panel {
  background-image:
    linear-gradient(
      145deg,
      rgba(4,18,20,.62),
      rgba(5,33,31,.80)
    ),
    var(--story-image);

  background-size: cover;

  background-position: center;
}

.story-panel::before {
  content: "";

  position: absolute;

  width: 80%;

  aspect-ratio: 1;

  border: 1px solid rgba(255,255,255,.2);

  border-radius: 50%;

  top: 10%;
  left: 10%;

  box-shadow:
    0 0 0 70px rgba(255,255,255,.025),
    0 0 0 140px rgba(255,255,255,.02);
}

.story-panel img {
  position: absolute;

  width: 58%;

  max-width: 390px;

  left: 50%;
  top: 50%;

  transform: translate(-50%,-50%);

  filter:
    drop-shadow(
      0 30px 40px rgba(0,0,0,.35)
    );
}

.story-tag {
  position: absolute;

  left: 25px;
  bottom: 25px;
  right: 25px;

  display: flex;

  justify-content: space-between;

  gap: 15px;

  padding: 15px 17px;

  border:
    1px solid
    rgba(255,255,255,.16);

  background: rgba(0,0,0,.18);

  backdrop-filter: blur(16px);

  border-radius: 16px;

  color: #fff;
}

.story-tag span {
  font-size: .65rem;

  text-transform: uppercase;

  letter-spacing: .12em;

  opacity: .7;
}

.story-tag strong {
  display: block;

  font-size: .82rem;
}

.bullets {
  display: grid;

  gap: 14px;

  margin: 28px 0;
}

.bullet {
  display: flex;

  gap: 12px;

  align-items: flex-start;
}

.bullet-mark {
  width: 25px;
  height: 25px;

  flex: 0 0 25px;

  border-radius: 50%;

  border: 1px solid var(--line);

  display: grid;

  place-items: center;

  color: var(--green-2);

  font-size: .75rem;
}

.bullet strong {
  display: block;

  font-size: .92rem;
}

.bullet span {
  display: block;

  color: var(--muted);

  font-size: .82rem;
}


/* =========================================================
   WORKS PREVIEW
   ========================================================= */

.works-preview {
  display: grid;

  grid-template-columns: 1.35fr .65fr;

  gap: 14px;
}

.works-preview .work-card:first-child {
  grid-row: span 2;
}

.work-card {
  position: relative;

  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--line);

  border-radius: 24px;

  transition:
    box-shadow .35s,
    border-color .35s;
}

.work-card:hover {
  border-color:
    color-mix(
      in srgb,
      var(--green-2) 45%,
      var(--line)
    );

  box-shadow: var(--shadow);
}

.work-image-button {
  display: block;

  position: relative;

  width: 100%;

  min-height: 270px;

  padding: 0;

  border: 0;

  background: transparent;

  overflow: hidden;

  color: inherit;

  text-align: left;
}

.work-card:first-child .work-image-button {
  min-height: 570px;
}

.work-image-button img {
  width: 100%;
  height: 100%;

  min-height: inherit;

  object-fit: cover;

  transition:
    transform .8s
    cubic-bezier(.2,.7,.2,1);
}

.work-card:hover
.work-image-button img {
  transform: scale(1.045);
}

.work-image-overlay {
  position: absolute;

  inset: auto 14px 14px 14px;

  display: flex;

  justify-content: space-between;

  padding: 11px 13px;

  border:
    1px solid
    rgba(255,255,255,.22);

  background: rgba(7,17,20,.5);

  backdrop-filter: blur(12px);

  color: #fff;

  font-size: .7rem;

  text-transform: uppercase;

  letter-spacing: .12em;

  opacity: 0;

  transform: translateY(10px);

  transition: .35s;
}

.work-card:hover
.work-image-overlay {
  opacity: 1;

  transform: translateY(0);
}

.work-card-meta {
  display: flex;

  justify-content: space-between;

  gap: 15px;

  padding: 16px 18px 18px;
}

.work-card-meta span {
  color: var(--green-2);

  font-size: .65rem;

  font-weight: 800;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.work-card-meta strong {
  font-family: "Manrope";

  font-size: .84rem;

  text-align: right;
}

.work-placeholder {
  min-height: 280px;

  display: grid;

  place-items: center;

  align-content: center;

  gap: 8px;

  text-align: center;

  padding: 40px;

  color: var(--muted);
}

.work-placeholder b {
  color: var(--text);
}

.work-placeholder small {
  font-size: .75rem;
}

.placeholder-mark {
  width: 58px;
  height: 58px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  border: 1px solid var(--line);

  color: var(--green-2);

  font-family: "Manrope";

  font-weight: 800;
}

.image-fallback {
  min-height: 270px;

  display: grid;

  place-items: center;

  align-content: center;

  gap: 7px;

  background:
    linear-gradient(
      145deg,
      var(--navy),
      var(--green)
    );

  color: #fff;
}

.image-fallback span {
  font-family: "Manrope";

  font-weight: 800;

  font-size: 2rem;
}

.image-fallback small {
  opacity: .7;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
  position: relative;

  overflow: hidden;

  border: 1px solid var(--line);

  border-radius: 34px;

  padding: 70px;

  background:
    linear-gradient(
      135deg,
      color-mix(
        in srgb,
        var(--navy) 96%,
        #000
      ),
      var(--green)
    );

  color: #fff;

  box-shadow: var(--shadow);
}

.cta::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  border: 1px solid rgba(255,255,255,.13);

  border-radius: 50%;

  right: -190px;
  top: -220px;

  box-shadow:
    0 0 0 80px rgba(255,255,255,.025),
    0 0 0 160px rgba(255,255,255,.02);
}

.cta p {
  color: rgba(255,255,255,.7);

  max-width: 620px;
}

.cta .actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 28px;

  position: relative;

  z-index: 2;
}


/* =========================================================
   COMING SOON
   ========================================================= */

.coming-timeline {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 12px;
}

.coming-card {
  position: relative;

  min-height: 220px;

  padding: 25px;

  border: 1px solid var(--line);

  border-radius: 22px;

  background: var(--surface);
}

.coming-card::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--green-2);

  box-shadow:
    0 0 0 8px
    color-mix(
      in srgb,
      var(--green-2) 10%,
      transparent
    );

  position: absolute;

  top: 28px;
  right: 28px;
}

.coming-card span {
  font-size: .65rem;

  color: var(--green-2);

  font-weight: 800;

  letter-spacing: .14em;

  text-transform: uppercase;
}

.coming-card h3 {
  margin-top: 65px;

  font-size: 1.1rem;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
  padding: 170px 0 95px;

  background:
    radial-gradient(
      circle at 80% 30%,
      color-mix(
        in srgb,
        var(--green) 18%,
        transparent
      ),
      transparent 30%
    );
}

.page-hero h1 {
  max-width: 950px;
}

.page-hero p {
  max-width: 700px;

  margin-top: 25px;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-toolbar {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  margin-bottom: 28px;
}

.filters {
  display: flex;

  gap: 7px;

  flex-wrap: wrap;
}

.filter {
  border: 1px solid var(--line);

  background: var(--surface);

  color: var(--muted);

  border-radius: 999px;

  padding: 9px 13px;

  font-size: .72rem;

  font-weight: 800;

  transition: .25s;
}

.filter:hover,
.filter.active {
  background: var(--navy);

  color: #fff;

  border-color: var(--navy);
}

.gallery-grid {
  columns: 3 280px;

  column-gap: 14px;
}

.gallery-grid .work-card {
  break-inside: avoid;

  margin: 0 0 14px;
}

.gallery-grid .work-image-button {
  min-height: 220px;
}

.gallery-grid
.work-card:nth-child(3n+1)
.work-image-button {
  min-height: 380px;
}

.gallery-grid
.work-card:nth-child(5n)
.work-image-button {
  min-height: 300px;
}

.empty-gallery {
  grid-column: 1/-1;

  min-height: 350px;

  display: grid;

  place-items: center;

  align-content: center;

  gap: 12px;

  text-align: center;

  border: 1px dashed var(--line);

  border-radius: 24px;

  padding: 50px;
}

.gallery-status {
  font-size: .72rem;

  color: var(--muted);
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
  position: fixed;

  inset: 0;

  z-index: 2000;

  display: grid;

  place-items: center;

  padding: 30px;

  background: rgba(2,9,11,.82);

  backdrop-filter: blur(22px);

  opacity: 0;

  visibility: hidden;

  transition: .3s;
}

.lightbox.is-open {
  opacity: 1;

  visibility: visible;
}

.lightbox-panel {
  width: min(1100px, 100%);

  height: min(86vh, 800px);

  display: grid;

  grid-template-rows: 1fr auto;

  position: relative;

  border:
    1px solid
    rgba(255,255,255,.15);

  border-radius: 28px;

  overflow: hidden;

  background: #071114;

  box-shadow:
    0 40px 120px rgba(0,0,0,.5);

  transform: scale(.96);

  transition: .35s;
}

.lightbox.is-open
.lightbox-panel {
  transform: scale(1);
}

.lightbox-media {
  min-height: 0;

  display: grid;

  place-items: center;

  background: #050b0d;
}

.lightbox-media img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.lightbox-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 14px 18px;

  color: #fff;

  border-top:
    1px solid
    rgba(255,255,255,.12);
}

.lightbox-bottom strong {
  display: block;

  font-family: "Manrope";
}

.lightbox-bottom span {
  font-size: .72rem;

  opacity: .65;
}

.lightbox-control {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  border:
    1px solid
    rgba(255,255,255,.18);

  background:
    rgba(255,255,255,.06);

  color: #fff;
}

.lightbox-close {
  position: absolute;

  top: 14px;
  right: 14px;

  z-index: 2;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;

  grid-template-columns: .8fr 1.2fr;

  gap: 50px;

  align-items: start;
}

.contact-info {
  display: grid;

  gap: 14px;
}

.contact-item {
  display: flex;

  gap: 14px;

  padding: 18px;

  border: 1px solid var(--line);

  border-radius: 18px;

  background: var(--surface);
}

.contact-item .icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  border: 1px solid var(--line);

  color: var(--green-2);
}

.contact-item small {
  display: block;

  color: var(--muted);

  font-size: .65rem;

  text-transform: uppercase;

  letter-spacing: .12em;
}

.contact-item strong {
  display: block;

  margin-top: 2px;
}

.form-shell {
  padding: 28px;

  border: 1px solid var(--line);

  border-radius: 28px;

  background: var(--surface);

  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

.field {
  display: grid;

  gap: 7px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  font-size: .72rem;

  font-weight: 800;

  color: var(--muted);

  letter-spacing: .08em;

  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;

  border: 1px solid var(--line);

  background:
    color-mix(
      in srgb,
      var(--surface-strong) 80%,
      transparent
    );

  color: var(--text);

  border-radius: 13px;

  padding: 13px 14px;

  outline: 0;

  transition: .25s;
}

.field textarea {
  min-height: 150px;

  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-2);

  box-shadow:
    0 0 0 4px
    color-mix(
      in srgb,
      var(--green-2) 12%,
      transparent
    );
}

.form-submit {
  margin-top: 18px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 14px;

  flex-wrap: wrap;
}

#form-status {
  font-size: .75rem;

  color: var(--green-2);
}

#form-status.error {
  color: #b44848;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 60px 0 30px;

  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr
    .7fr
    .9fr
    .9fr;

  gap: 35px;
}

.footer h4 {
  font-size: .72rem;

  letter-spacing: .14em;

  text-transform: uppercase;

  margin-bottom: 15px;
}

.footer a,
.footer p {
  color: var(--muted);

  font-size: .82rem;
}

.footer-links {
  display: grid;

  gap: 8px;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding-top: 35px;

  margin-top: 35px;

  border-top: 1px solid var(--line);

  font-size: .72rem;

  color: var(--muted);
}


/* =========================================================
   REVEAL / PARALLAX
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1),
    transform .8s cubic-bezier(.2,.7,.2,1);

  transition-delay: var(--delay,0ms);
}

.reveal.revealed {
  opacity: 1;

  transform: none;
}

[data-parallax] {
  will-change: transform;
}


/* =========================================================
   INTRO
   ========================================================= */

.intro {
  position: fixed;

  inset: 0;

  z-index: 3000;

  display: grid;

  place-items: center;

  background: #04090b;

  color: #fff;

  overflow: hidden;

  transition:
    opacity .75s,
    visibility .75s;
}

.intro.is-done,
.intro.is-skipped {
  opacity: 0;

  visibility: hidden;
}

.intro-rings {
  position: absolute;

  width: 620px;

  aspect-ratio: 1;

  border:
    1px solid
    rgba(255,255,255,.18);

  border-radius: 50%;

  animation:
    introSpin 12s linear infinite;
}

.intro-rings::before,
.intro-rings::after {
  content: "";

  position: absolute;

  inset: 12%;

  border:
    1px solid
    rgba(98,163,148,.35);

  border-radius: 50%;
}

.intro-rings::after {
  inset: 28%;

  border-color:
    rgba(255,255,255,.15);
}

.intro-content {
  position: relative;

  z-index: 1;

  text-align: center;
}

.intro-content img {
  width: 190px;

  margin: 0 auto 22px;

  filter:
    drop-shadow(
      0 18px 35px rgba(0,0,0,.4)
    );
}

.intro-content p {
  color: rgba(255,255,255,.55);

  font-size: .7rem;

  letter-spacing: .22em;

  text-transform: uppercase;
}

.intro-skip {
  position: fixed;

  right: 26px;
  bottom: 24px;

  color: #fff;

  background: transparent;

  border:
    1px solid
    rgba(255,255,255,.2);

  border-radius: 999px;

  padding: 9px 13px;

  font-size: .68rem;

  letter-spacing: .12em;

  text-transform: uppercase;
}

@keyframes introSpin {
  to {
    transform: rotate(360deg);
  }
}


/* =========================================================
   UTILITY
   ========================================================= */

.is-disabled {
  opacity: .45;

  pointer-events: none;
}

.visually-hidden {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip: rect(0,0,0,0) !important;

  white-space: nowrap !important;

  border: 0 !important;
}

.mobile-theme {
  display: none;

  align-items: center;

  justify-content: space-between;

  gap: 14px;

  padding: 12px;

  margin-top: 8px;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: .72rem;

  text-transform: uppercase;

  letter-spacing: .1em;
}


/* =========================================================
   TABLET — 1200px
   ========================================================= */

@media (max-width: 1200px) {

  .container {
    width: min(
      100% - 36px,
      1080px
    );
  }

  .nav-wrap {
    width: min(
      100% - 36px,
      1080px
    );
  }

  .section {
    padding: 100px 0;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-logo-card {
    border-radius: 28px;
  }

  .service-card {
    padding: 24px;
  }

  .cta {
    padding: 56px;
  }
}


/* =========================================================
   TABLET / MOBILE HEADER — 980px
   THIS IS THE ONLY 980px HEADER RULE
   ========================================================= */

@media (max-width: 980px) {

  :root {
    --header-h: 72px;
  }

  .site-header {
    height: var(--header-h);

    width: 100%;
    max-width: 100vw;
  }

  /*
     IMPORTANT:
     Switch from the desktop 3-column grid
     to a simple 2-column layout.

     LEFT  = logo
     RIGHT = hamburger
  */

  .nav-wrap {
    width: 100%;

    max-width: none;

    padding-left: 16px;
    padding-right: 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;
  }


  /* Logo */

  .brand {
    flex: 1 1 auto;

    min-width: 0;

    width: auto;

    max-width: calc(100% - 54px);

    overflow: hidden;
  }

  .brand-copy {
    min-width: 0;

    overflow: hidden;
  }

  .brand-copy span,
  .brand-copy small {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
  }


  /*
     HAMBURGER MUST NOT BE INSIDE
     THE HIDDEN NAV ACTIONS.
  */

  .menu-toggle {
    display: flex;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    margin-left: auto;
  }


  /*
     MOBILE MENU
  */

  .site-nav {
    position: fixed;

    top: calc(var(--header-h) + 10px);

    left: 12px;
    right: 12px;

    width: auto;

    max-width: none;

    max-height:
      calc(
        100svh
        - var(--header-h)
        - 24px
      );

    overflow-x: hidden;
    overflow-y: auto;

    overscroll-behavior: contain;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    justify-content: flex-start;

    gap: 4px;

    padding: 14px;

    background: var(--surface-strong);

    border: 1px solid var(--line);

    border-radius: 18px;

    box-shadow: var(--shadow);

    transform: translateY(-12px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
      transform .25s ease,
      opacity .25s ease,
      visibility .25s ease;

    z-index: 1200;

    box-sizing: border-box;
  }

  .site-nav.is-open {
    transform: translateY(0);

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;

    display: flex;

    align-items: center;

    min-height: 46px;

    padding: 12px;

    border-radius: 9px;

    white-space: normal;

    box-sizing: border-box;
  }

  .site-nav a:hover {
    background: var(--surface);
  }

  .site-nav a::after {
    display: none;
  }


  /*
     Hide desktop actions.

     The hamburger is NOT affected because
     it is controlled independently.
  */

  .nav-actions {
    display: none;
  }


  /*
     Mobile theme row
  */

  .site-nav .mobile-theme {
    display: flex;
  }


  /* Other tablet layout */

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

  .hero-visual {
    min-height: 500px;

    order: -1;
  }

  .hero {
    padding-top: 125px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coming-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-preview {
    grid-template-columns: 1fr 1fr;
  }

  .works-preview .work-card:first-child {
    grid-column: 1/-1;

    grid-row: auto;
  }

  .works-preview
  .work-card:first-child
  .work-image-button {
    min-height: 420px;
  }

  .gallery-grid {
    columns: 2;

    column-gap: 14px;
  }

  .lightbox-panel {
    width: min(94vw, 1100px);
  }
}


/* =========================================================
   MOBILE — 767px
   ========================================================= */

@media (max-width: 767px) {

  .container {
    width: min(
      100% - 28px,
      680px
    );
  }

  .section {
    padding: 76px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .page-hero {
    padding: 130px 0 70px;
  }

  h1 {
    font-size:
      clamp(
        2.75rem,
        13vw,
        5rem
      );
  }

  h2 {
    font-size:
      clamp(
        2.15rem,
        10vw,
        3.6rem
      );
  }

  h3 {
    font-size: 1.2rem;
  }

  .eyebrow {
    font-size: .66rem;

    letter-spacing: .14em;
  }


  /* Hero */

  .hero {
    min-height: auto;

    padding: 112px 0 62px;
  }

  .hero-grid {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 34px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;

    min-height:
      clamp(
        280px,
        72vw,
        430px
      );
  }

  .hero-orbit {
    width:
      min(
        82vw,
        390px
      );
  }

  .hero-logo-card {
    inset: 12%;

    border-radius: 22px;
  }

  .hero-logo-card img {
    width: 72%;
  }

  .hero-actions,
  .actions {
    width: 100%;
  }

  .hero-actions .btn,
  .actions .btn {
    flex: 1 1 170px;
  }

  .hero-note {
    display: grid;

    grid-template-columns:
      repeat(3, 1fr);

    gap: 8px;

    margin-top: 28px;
  }

  .hero-note div {
    min-width: 0;

    padding-left: 9px;
  }

  .hero-note strong {
    font-size: .86rem;
  }

  .hero-note span {
    display: block;

    font-size: .53rem;

    line-height: 1.3;
  }


  /* Sections */

  .section-head {
    display: block;

    margin-bottom: 30px;
  }

  .section-head > div:last-child {
    margin-top: 16px;

    max-width: 100%;
  }

  .service-grid,
  .coming-timeline {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;

    padding: 22px;
  }

  .service-icon {
    width: 48px;
    height: 48px;

    top: 18px;
    right: 18px;
  }


  /* Materials */

  .materials-track {
    margin-inline: -2px;

    padding-inline: 2px;
  }

  .material {
    min-width:
      min(
        78vw,
        310px
      );

    height:
      min(
        105vw,
        380px
      );

    border-radius: 22px;
  }


  /* Story */

  .split,
  .contact-grid {
    gap: 32px;
  }

  .story-panel {
    min-height:
      min(
        108vw,
        430px
      );

    border-radius: 24px;
  }

  .story-panel img {
    width: 62%;
  }

  .story-tag {
    left: 16px;
    right: 16px;
    bottom: 16px;

    padding: 12px;

    gap: 12px;
  }


  /* Works */

  .works-preview {
    grid-template-columns: 1fr;
  }

  .works-preview
  .work-card:first-child
  .work-image-button {
    min-height:
      min(
        72vw,
        360px
      );
  }

  .works-preview
  .work-image-button {
    min-height:
      min(
        62vw,
        290px
      );
  }


  /* Gallery */

  .gallery-grid {
    columns: 1;
  }

  .gallery-toolbar {
    display: block;
  }

  .filters {
    max-width: 100%;

    overflow-x: auto;

    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    min-height: 42px;

    flex: 0 0 auto;
  }


  /* Form */

  .form-shell {
    padding: 20px;

    border-radius: 22px;
  }

  .form-submit {
    align-items: stretch;
  }

  .form-submit .btn {
    width: 100%;
  }


  /* CTA */

  .cta {
    padding: 38px 22px;

    border-radius: 22px;
  }

  .cta h2 {
    max-width: 100%;
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .footer-bottom {
    display: flex;

    flex-direction: column;

    gap: 8px;
  }


  /* Lightbox */

  .lightbox {
    padding: 8px;
  }

  .lightbox-panel {
    width: 100%;

    height:
      min(
        86svh,
        720px
      );

    border-radius: 16px;
  }

  .lightbox-control {
    width: 40px;
    height: 40px;
  }


  /* Intro */

  .intro-rings {
    width:
      min(
        125vw,
        560px
      );
  }

  .intro-content img {
    width:
      min(
        48vw,
        190px
      );
  }

  .intro-skip {
    right: 14px;

    bottom: 14px;
  }
}


/* =========================================================
   SMALL PHONES — 479px
   ========================================================= */

@media (max-width: 479px) {

  :root {
    --header-h: 66px;
  }

  .site-header {
    height: var(--header-h);
  }

  .container {
    width: calc(100% - 24px);
  }

  /*
     Small phone header
  */

  .nav-wrap {
    width: 100%;

    padding-left: 12px;
    padding-right: 12px;

    gap: 8px;
  }

  .brand {
    max-width:
      calc(
        100% - 48px
      );

    gap: 8px;

    font-size: .74rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;

    flex-basis: 30px;
  }

  .brand-copy {
    min-width: 0;

    overflow: hidden;
  }

  .brand-copy small {
    font-size: .44rem;

    letter-spacing: .18em;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;

    min-width: 40px;

    flex-basis: 40px;

    font-size: 1.45rem;

    padding: 0;
  }

  /*
     Mobile menu width is explicitly tied
     to the viewport.
  */

  .site-nav {
    top:
      calc(
        var(--header-h) + 8px
      );

    left: 10px;
    right: 10px;

    width:
      calc(
        100vw - 20px
      );

    max-width:
      calc(
        100vw - 20px
      );

    border-radius: 16px;
  }


  /* Rest */

  .hero {
    padding-top: 102px;
  }

  .hero-orbit {
    width:
      min(
        84vw,
        340px
      );
  }

  .hero-note {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .hero-note div {
    border-left: 0;

    border-top:
      1px solid
      var(--line);

    padding: 9px 0 0;
  }

  .hero-note div:first-child {
    border-top: 0;

    padding-top: 0;
  }

  .hero-actions .btn,
  .actions .btn {
    width: 100%;

    flex-basis: 100%;
  }

  .btn {
    min-height: 46px;

    padding-inline: 16px;
  }

  .service-card {
    min-height: 235px;
  }

  .material {
    min-width: 82vw;
  }

  .story-panel {
    min-height: 92vw;
  }

  .story-tag {
    display: block;
  }

  .story-tag > div + div {
    margin-top: 8px;
  }

  .form-shell {
    padding: 16px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }

  .field textarea {
    min-height: 130px;
  }

  .lightbox-panel {
    height: 82svh;
  }

  .lightbox-bottom {
    display: flex;

    align-items: center;

    gap: 8px;
  }

  .lightbox-bottom > div:first-child {
    min-width: 0;
  }

  .lightbox-bottom strong {
    display: block;

    max-width: 55vw;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
  }
}


/* =========================================================
   VERY SMALL PHONES — 359px
   ========================================================= */

@media (max-width: 359px) {

  :root {
    --header-h: 62px;
  }

  .container {
    width: calc(100% - 20px);
  }

  .nav-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  /*
     On extremely small screens,
     show only the logo mark.
  */

  .brand-copy {
    display: none;
  }

  .brand {
    max-width: none;

    flex: 1 1 auto;
  }

  .brand-mark {
    width: 32px;
    height: 32px;

    flex-basis: 32px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;

    min-width: 38px;

    flex-basis: 38px;
  }

  .site-nav {
    top:
      calc(
        var(--header-h) + 8px
      );

    left: 8px;
    right: 8px;

    width:
      calc(
        100vw - 16px
      );

    max-width:
      calc(
        100vw - 16px
      );
  }

  h1 {
    font-size:
      clamp(
        2.45rem,
        14vw,
        3.4rem
      );
  }

  h2 {
    font-size:
      clamp(
        2rem,
        11vw,
        2.7rem
      );
  }

  .hero-logo-card {
    inset: 10%;
  }

  .section {
    padding: 64px 0;
  }
}


/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */

@media
  (orientation: landscape)
  and (max-height: 600px) {

  .hero {
    min-height: auto;

    padding-top: 96px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .page-hero {
    padding-top: 110px;
  }

  .intro-content img {
    width: 130px;

    margin-bottom: 10px;
  }

  .intro-content p {
    font-size: .58rem;
  }
}


/* =========================================================
   TOUCH DEVICES
   ========================================================= */

@media (hover: none) {

  .btn:hover,
  .service-card:hover,
  .work-card:hover {
    transform: none;
  }

  .work-image-overlay {
    opacity: 1;

    transform: none;
  }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }

  [data-parallax] {
    transform: none !important;
  }
}

@media (max-width: 767px){

  .ambient.b{
    display: none !important;
  }

}