:root {
  --navy-950: #071722;
  --navy-900: #0b1d2c;
  --navy-800: #123148;
  --navy-700: #1c465f;
  --stone-100: #f2f4f5;
  --stone-200: #e5e9eb;
  --stone-300: #d2d8dc;
  --paper: #ffffff;
  --ink: #14212a;
  --ink-soft: #35434d;
  --muted: #68757e;
  --copper: #965b18;
  --gold: #d3a14e;
  --gold-light: #e5bc70;
  --line: rgba(20, 33, 42, 0.14);
  --line-dark: rgba(255, 255, 255, 0.15);
  --container: 1280px;
  --header-height: 82px;
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  border: 0;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd,
ol,
ul {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

[hidden] {
  display: none !important;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #713d0c;
}

h1[tabindex="-1"]:focus,
h2[tabindex="-1"]:focus,
h3[tabindex="-1"]:focus {
  outline: 0;
  box-shadow: none;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 160ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding-block: 112px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.eyebrow-dark {
  color: var(--gold-light);
}

.section-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.section-tag span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--copper);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.section-tag-dark {
  color: rgba(255, 255, 255, 0.62);
}

.section-tag-dark span {
  border-color: var(--line-dark);
  color: var(--gold-light);
}

.section-head h2,
.drilling-head h2,
.contact-copy h2,
.process-head h2 {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 620;
  line-height: 1.2;
}

.section-summary {
  padding-top: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding-top: 14px;
  transition: padding 180ms var(--ease), filter 180ms var(--ease);
}

.site-header.scrolled {
  padding-top: 0;
  filter: drop-shadow(0 7px 18px rgba(6, 24, 36, 0.14));
}

.header-inner {
  position: relative;
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 28px;
  padding-inline: 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(5, 21, 33, 0.14), inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
  transition: border-radius 180ms var(--ease), width 180ms var(--ease);
}

.site-header.scrolled .header-inner {
  width: 100%;
  max-width: none;
  border-color: rgba(20, 33, 42, 0.08);
  border-radius: 0;
  box-shadow: 0 1px 0 rgba(20, 33, 42, 0.08);
}

.brand {
  position: relative;
  z-index: 3;
  display: block;
  width: 290px;
  flex: 0 0 290px;
}

.brand img {
  width: 100%;
}

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: stretch;
  align-self: stretch;
  gap: 26px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 620;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="location"] {
  color: var(--navy-900);
}

.primary-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  box-shadow: none;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  flex: 0 0 auto;
}

.menu-button {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 3px 0 var(--stone-300), inset 0 1px 0 #fff;
}

.menu-button span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  transition: transform 180ms var(--ease), opacity 180ms var(--ease), top 180ms var(--ease);
}

.menu-button span:nth-child(1) { top: 14px; }
.menu-button span:nth-child(2) { top: 21px; }
.menu-button span:nth-child(3) { top: 28px; }
.menu-button[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Tactile buttons */

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
  transform: translateY(0);
  transition: transform 120ms var(--ease), box-shadow 120ms var(--ease), filter 120ms var(--ease);
}

.button::before {
  position: absolute;
  inset: 1px 2px auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

.button i {
  font-size: 16px;
  font-style: normal;
  transition: transform 160ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover i {
  transform: translate(2px, -1px);
}

.button:active {
  transform: translateY(3px);
}

.button-navy {
  border: 1px solid #071520;
  background: linear-gradient(180deg, #163b54 0%, #0b2436 100%);
  color: #fff;
  box-shadow: 0 4px 0 #06141e, 0 9px 18px rgba(6, 24, 36, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-navy:hover {
  box-shadow: 0 6px 0 #06141e, 0 13px 24px rgba(6, 24, 36, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-navy:active {
  box-shadow: 0 1px 0 #06141e, 0 4px 10px rgba(6, 24, 36, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-gold {
  border: 1px solid #99601e;
  background: linear-gradient(180deg, #e2b967 0%, #be812f 100%);
  color: #10202b;
  box-shadow: 0 5px 0 #794915, 0 13px 28px rgba(4, 15, 24, 0.28), inset 0 1px 0 #ffe0a4;
}

.button-gold:hover {
  filter: brightness(1.04);
  box-shadow: 0 7px 0 #794915, 0 17px 34px rgba(4, 15, 24, 0.32), inset 0 1px 0 #ffe0a4;
}

.button-gold:active {
  box-shadow: 0 1px 0 #794915, 0 6px 12px rgba(4, 15, 24, 0.24), inset 0 1px 0 #ffe0a4;
}

/* Hero */

.hero {
  position: relative;
  height: min(900px, calc(100svh - 56px));
  min-height: 700px;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-shade,
.hero-tech {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -4;
  overflow: hidden;
}

.hero-poster,
.hero-poster img,
.hero-clouds {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster {
  z-index: 0;
}

.hero-poster img,
.hero-clouds {
  max-width: none;
  object-fit: cover;
  object-position: center 50%;
}

.hero-poster img {
  transform: scale(1.015) translate(var(--hero-x, 0), var(--hero-y, 0));
  transition: transform 500ms var(--ease-out);
}

.hero-clouds {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1600ms var(--ease-out);
}

.hero-clouds.is-ready {
  opacity: 1;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 19, 29, 0.9) 0%, rgba(5, 19, 29, 0.67) 42%, rgba(5, 19, 29, 0.18) 72%, rgba(5, 19, 29, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 19, 29, 0.74) 0%, rgba(5, 19, 29, 0.05) 56%, rgba(5, 19, 29, 0.32) 100%);
}

.hero-tech {
  z-index: -2;
  overflow: hidden;
  opacity: 0.16;
}

.hero-tech svg {
  position: absolute;
  right: -2%;
  bottom: 0;
  width: 72%;
  height: 45%;
}

.hero-tech path {
  fill: none;
  stroke: rgba(226, 185, 103, 0.38);
  stroke-dasharray: 3 18;
  stroke-width: 1;
  animation: strataMove 38s linear infinite;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 72px;
  align-items: end;
  padding-top: 150px;
  padding-bottom: 76px;
}

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

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 650;
}

.hero-kicker span {
  padding: 5px 9px;
  border: 1px solid rgba(229, 188, 112, 0.65);
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

.hero-kicker b {
  font-weight: 650;
}

.hero-copy h1 {
  max-width: 800px;
  font-size: clamp(46px, 5.1vw, 70px);
  font-weight: 650;
  line-height: 1.14;
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.07em;
  margin-bottom: -0.07em;
}

.hero-title-line > span {
  display: block;
  white-space: nowrap;
  will-change: transform;
}

.hero-copy > p {
  max-width: 690px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  transition: border-color 160ms var(--ease), color 160ms var(--ease);
}

.text-link i {
  font-style: normal;
  transition: transform 160ms var(--ease);
}

.text-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.text-link:hover i {
  transform: translateX(3px);
}

.hero-facts {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(7, 23, 34, 0.72);
  box-shadow: 0 24px 60px rgba(3, 13, 20, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.fact-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
}

.fact-label b {
  color: var(--gold-light);
  font-weight: 700;
}

.hero-facts dl {
  padding: 4px 18px;
}

.hero-facts dl div {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero-facts dd {
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.hero-facts > a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.hero-motion-toggle {
  position: absolute;
  right: 24px;
  bottom: 42px;
  z-index: 3;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(7, 23, 34, 0.68);
  color: #fff;
  box-shadow: 0 3px 0 rgba(3, 13, 20, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: background 160ms var(--ease), border-color 160ms var(--ease), transform 160ms var(--ease);
}

.hero-motion-toggle:hover {
  border-color: var(--gold-light);
  background: rgba(7, 23, 34, 0.86);
  transform: translateY(-1px);
}

.hero-motion-toggle span {
  font-size: 13px;
  line-height: 1;
}

/* Metrics */

.metrics {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.metrics-grid {
  display: grid;
  min-height: 174px;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: stretch;
}

.metrics-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.metrics-intro span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 750;
}

.metrics-intro p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

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

.metrics-grid dl > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 34px;
  border-right: 1px solid var(--line);
}

.metrics-grid dl > div:last-child {
  border-right: 0;
}

.metrics-grid dt {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}

.metrics-grid strong {
  color: var(--navy-900);
  font-size: 44px;
  font-weight: 630;
  line-height: 1;
}

.metrics-grid small {
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
}

.metrics-grid dd {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* About */

.about {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(360px, 0.87fr);
  gap: 76px;
  align-items: center;
}

.about-photo,
.capacity-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 42, 0.12);
  border-radius: 6px;
  box-shadow: 0 24px 58px rgba(12, 31, 43, 0.15);
}

.about-photo {
  aspect-ratio: 16 / 9;
}

.about-photo picture,
.about-photo img,
.capacity-photo img {
  width: 100%;
  height: 100%;
}

.about-photo img,
.capacity-photo img {
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.about-photo:hover img,
.capacity-photo:hover img {
  transform: scale(1.025);
}

.about-photo figcaption,
.capacity-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  min-width: 190px;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(7, 23, 34, 0.76);
  color: #fff;
  backdrop-filter: blur(10px);
}

.about-photo figcaption span,
.capacity-photo figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.about-photo figcaption b,
.capacity-photo figcaption b {
  font-size: 11px;
  font-weight: 650;
}

.about-content {
  padding-right: 20px;
}

.about-lead {
  color: var(--ink);
  font-size: 25px;
  font-weight: 520;
  line-height: 1.58;
}

.about-content > p:nth-child(2) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.about-evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-block: 34px 38px;
  border-block: 1px solid var(--line);
}

.about-evidence div {
  padding-block: 23px;
}

.about-evidence div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.about-evidence strong {
  display: block;
  color: var(--navy-900);
  font-size: 34px;
  font-weight: 640;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.about-evidence span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

/* Business tabs */

.business {
  border-block: 1px solid var(--line);
  background: var(--stone-100);
}

.tabs {
  min-width: 0;
}

.tabs-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--paper);
}

.tabs-list button {
  position: relative;
  display: grid;
  min-height: 78px;
  grid-template-columns: 31px 1fr;
  gap: 10px;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 120ms var(--ease);
}

.tabs-list button:last-child {
  border-right: 0;
}

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

.tabs-list button span {
  color: var(--copper);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.tabs-list button b {
  font-size: 14px;
  font-weight: 660;
}

.tabs-list button:hover {
  background: #f8f9f9;
}

.tabs-list button:active {
  transform: translateY(2px);
}

.tabs-list button[aria-selected="true"] {
  background: var(--navy-900);
  color: #fff;
}

.tabs-list button[aria-selected="true"] span {
  color: var(--gold-light);
}

.tabs-list button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.business-panel {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(420px, 1.06fr) minmax(440px, 0.94fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.business-panel figure {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--navy-900);
}

.business-panel figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 23, 34, 0.54), transparent 42%);
  content: "";
  pointer-events: none;
}

.business-panel figure img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.business-panel:hover figure img {
  transform: scale(1.025);
}

.business-panel figure figcaption,
.drilling-panel figure figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.panel-copy {
  align-self: center;
  padding: 52px 56px;
}

.panel-no {
  color: var(--copper);
  font-size: 11px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.panel-copy h3 {
  margin-top: 15px;
  font-size: 39px;
  font-weight: 620;
  line-height: 1.25;
}

.panel-lead {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.panel-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.panel-details h4 {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 750;
}

.panel-details li {
  position: relative;
  padding: 5px 0 5px 14px;
  color: var(--muted);
  font-size: 13px;
}

.panel-details li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 1px;
  background: var(--copper);
  content: "";
}

/* Drilling */

.drilling {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
}

.drilling::before {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(165deg, transparent 0, transparent 86px, rgba(255, 255, 255, 0.025) 87px, transparent 88px);
  content: "";
  pointer-events: none;
}

.drilling-head,
.drilling-tabs {
  position: relative;
  z-index: 1;
}

.drilling-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.drilling-head .section-tag {
  margin-bottom: 38px;
}

.drilling-head > p {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.85;
}

.drilling-tabs {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
}

.drilling-tab-list {
  border-right: 1px solid var(--line-dark);
}

.drilling-tab-list button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 86px;
  grid-template-columns: 32px 1fr 18px;
  gap: 10px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 110ms var(--ease);
}

.drilling-tab-list button:last-child {
  border-bottom: 0;
}

.drilling-tab-list button::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  content: "";
  transform: scaleY(0);
  transition: transform 160ms var(--ease);
}

.drilling-tab-list button span {
  color: rgba(229, 188, 112, 0.7);
  font-size: 11px;
}

.drilling-tab-list button b {
  font-size: 15px;
  font-weight: 630;
}

.drilling-tab-list button i {
  font-size: 15px;
  font-style: normal;
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
}

.drilling-tab-list button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.drilling-tab-list button:active {
  transform: translateY(2px);
}

.drilling-tab-list button[aria-selected="true"] {
  background: var(--gold);
  color: var(--navy-950);
}

.drilling-tab-list button[aria-selected="true"]::before {
  transform: scaleY(1);
}

.drilling-tab-list button[aria-selected="true"] span {
  color: rgba(7, 23, 34, 0.64);
}

.drilling-tab-list button[aria-selected="true"] i {
  opacity: 1;
  transform: none;
}

.drilling-panel {
  display: grid;
  min-height: 520px;
  grid-template-columns: 1.15fr 0.85fr;
}

.drilling-panel figure {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background: var(--navy-950);
}

.drilling-panel figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 15, 24, 0.68), transparent 48%);
  content: "";
}

.drilling-panel figure img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
}

#drill-water figure img {
  object-position: center 30%;
}

#drill-cable figure img {
  object-position: 76% center;
}

.drilling-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 46px;
}

.drilling-panel h3 {
  margin-top: 15px;
  font-size: 34px;
  font-weight: 620;
  line-height: 1.3;
}

.drilling-panel > div > p:nth-of-type(2) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.86;
}

.drilling-panel dl {
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.drilling-panel dl div {
  display: grid;
  min-height: 62px;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.drilling-panel dt {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
}

.drilling-panel dd {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

/* Capacity */

.capacity {
  background: var(--paper);
}

.capacity-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 96px;
  border-block: 1px solid var(--line);
}

.capacity-metrics > div {
  padding: 34px 38px 32px;
  border-right: 1px solid var(--line);
}

.capacity-metrics > div:last-child {
  border-right: 0;
}

.capacity-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.capacity-metrics strong {
  display: block;
  margin-block: 14px 12px;
  color: var(--navy-900);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 620;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.capacity-metrics small {
  color: var(--copper);
  font-size: 17px;
  font-weight: 700;
}

.capacity-metrics p {
  color: var(--muted);
  font-size: 12px;
}

.capacity-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
  align-items: center;
}

.capacity-copy h3 {
  font-size: 39px;
  font-weight: 620;
  line-height: 1.28;
}

.capacity-copy > p:nth-of-type(2) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.capability-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.capability-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-block: 19px;
  border-bottom: 1px solid var(--line);
}

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

.capability-list b {
  font-size: 15px;
  font-weight: 680;
}

.capability-list p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.capacity-photo {
  aspect-ratio: 4 / 3;
}

/* Process */

.process {
  border-top: 1px solid var(--line);
  background: var(--stone-100);
}

.process-head {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 48px;
  margin-bottom: 54px;
}

.process-list {
  border-top: 2px solid var(--navy-900);
}

.process-list li {
  display: grid;
  min-height: 112px;
  grid-template-columns: 86px minmax(0, 1fr) 210px;
  gap: 38px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 180ms var(--ease);
}

.process-list li:hover {
  background: var(--paper);
}

.process-list li > span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.process-list h3 {
  font-size: 20px;
  font-weight: 650;
}

.process-list p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.process-list li > b {
  justify-self: end;
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 650;
}

/* Contact and footer */

.contact {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  background: var(--navy-800);
  color: #fff;
}

.contact::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 60%, rgba(211, 161, 78, 0.09) 60% 60.2%, transparent 60.2%),
    repeating-linear-gradient(165deg, transparent 0 92px, rgba(255, 255, 255, 0.025) 93px, transparent 94px);
  content: "";
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 110px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-copy > p:nth-of-type(2) {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.contact-copy .button {
  margin-top: 34px;
}

.contact-details {
  border-top: 1px solid var(--line-dark);
}

.contact-details div {
  display: grid;
  min-height: 74px;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.contact-details span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
}

.contact-details a,
.contact-details p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 530;
}

.contact-details a:hover {
  color: var(--gold-light);
}

.site-footer {
  background: var(--paper);
}

.footer-main {
  display: grid;
  min-height: 170px;
  grid-template-columns: 360px 1fr auto;
  gap: 48px;
  align-items: center;
}

.footer-brand {
  display: block;
  width: 340px;
}

.footer-brand img {
  width: 100%;
}

.footer-main > p {
  max-width: 360px;
  color: var(--muted);
  font-size: 13px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-main nav a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 620;
}

.footer-main nav a:hover {
  color: var(--copper);
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom .container {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
}

.asset-credit {
  color: var(--muted);
  font-size: 11px;
}

.asset-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* Motion */

.js .hero-entrance {
  opacity: 0;
  transform: translateY(18px);
}

.js .hero-title-line > span {
  transform: translateY(112%);
}

.js .hero.is-entered .hero-kicker {
  animation: heroElementIn 680ms var(--ease-out) 80ms forwards;
}

.js .hero.is-entered .hero-title-line:first-child > span {
  animation: heroTitleIn 900ms var(--ease-out) 180ms forwards;
}

.js .hero.is-entered .hero-title-line:nth-child(2) > span {
  animation: heroTitleIn 900ms var(--ease-out) 300ms forwards;
}

.js .hero.is-entered .hero-intro {
  animation: heroElementIn 720ms var(--ease-out) 480ms forwards;
}

.js .hero.is-entered .hero-actions {
  animation: heroElementIn 720ms var(--ease-out) 620ms forwards;
}

.js .hero.is-entered .hero-facts {
  animation: heroElementIn 760ms var(--ease-out) 760ms forwards;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.tabs-panel.is-entering {
  animation: panelIn 300ms var(--ease-out);
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTitleIn {
  from { transform: translateY(112%); }
  to { transform: translateY(0); }
}

@keyframes heroElementIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes strataMove {
  to { stroke-dashoffset: -320; }
}

/* Responsive */

@media (max-width: 1200px) {
  .header-inner {
    gap: 20px;
  }

  .brand {
    width: 250px;
    flex-basis: 250px;
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .section-head {
    grid-template-columns: 120px minmax(0, 1fr) 320px;
    gap: 32px;
  }

  .hero-layout {
    gap: 44px;
  }

  .metrics-grid dl > div {
    padding-inline: 24px;
  }

  .about-layout,
  .capacity-layout {
    gap: 58px;
  }

  .panel-copy {
    padding-inline: 42px;
  }

  .drilling-tabs {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .drilling-panel > div {
    padding-inline: 34px;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding-top: 10px;
    filter: none;
  }

  .site-header.scrolled {
    filter: none;
  }

  .header-inner {
    backdrop-filter: none;
  }

  .brand {
    width: 248px;
    flex-basis: 248px;
  }

  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 102px max(24px, calc((100vw - 720px) / 2)) 36px;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 66px;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
  }

  .primary-nav a::after {
    inset: auto 0 -1px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    flex: 0 0 46px;
    margin-left: auto;
  }

  .section-head {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .section-summary {
    grid-column: 2;
    max-width: 720px;
    padding-top: 0;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 286px;
    padding-bottom: 60px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 4.7vw, 49px);
  }

  .metrics-grid {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .metrics-grid strong {
    font-size: 36px;
  }

  .metrics-grid dl > div {
    padding-inline: 16px;
  }

  .tabs-list {
    display: flex;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .tabs-list::-webkit-scrollbar,
  .drilling-tab-list::-webkit-scrollbar {
    display: none;
  }

  .tabs-list button {
    min-width: 190px;
  }

  .business-panel {
    grid-template-columns: minmax(340px, 0.9fr) minmax(400px, 1.1fr);
  }

  .drilling-head {
    grid-template-columns: 1fr 350px;
    gap: 52px;
  }

  .drilling-tabs {
    display: block;
  }

  .drilling-tab-list {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .drilling-tab-list button {
    min-width: 220px;
    min-height: 74px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .drilling-tab-list button::before {
    inset: auto 0 0;
    width: auto;
    height: 3px;
    transform: scaleX(0);
  }

  .drilling-tab-list button[aria-selected="true"]::before {
    transform: scaleX(1);
  }

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

  .contact-layout {
    gap: 70px;
  }

  .footer-main {
    grid-template-columns: 300px 1fr;
  }

  .footer-brand {
    width: 300px;
  }

  .footer-main nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 30px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 82px;
  }

  .header-inner {
    width: calc(100% - 20px);
    gap: 12px;
    padding-inline: 16px;
  }

  .site-header.scrolled .header-inner {
    width: 100%;
  }

  .brand {
    width: 226px;
    flex-basis: 226px;
  }

  .header-cta {
    display: none;
  }

  .section-head {
    display: block;
    margin-bottom: 44px;
  }

  .section-tag {
    margin-bottom: 28px;
  }

  .section-summary {
    margin-top: 20px;
  }

  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 19, 29, 0.94) 0%, rgba(5, 19, 29, 0.66) 58%, rgba(5, 19, 29, 0.28) 100%),
      linear-gradient(90deg, rgba(5, 19, 29, 0.5), rgba(5, 19, 29, 0.12));
  }

  .hero-clouds {
    display: none;
  }

  .hero-tech {
    opacity: 0.1;
  }

  .hero-layout {
    display: flex;
    min-height: 760px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 30px;
    padding-top: 128px;
    padding-bottom: 38px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-facts {
    width: 100%;
  }

  .hero-facts dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }

  .hero-facts dl div {
    display: block;
    min-height: auto;
    padding: 13px 14px;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-facts dl div:last-child {
    border-right: 0;
  }

  .hero-facts dd {
    margin-top: 4px;
  }

  .hero-facts > a,
  .hero-caption,
  .hero-motion-toggle {
    display: none;
  }

  .metrics-grid {
    display: block;
    padding-block: 32px;
  }

  .metrics-intro {
    display: block;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-grid dl {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-grid dl > div {
    padding: 24px 18px;
    border-bottom: 1px solid var(--line);
  }

  .metrics-grid dl > div:nth-child(2n) {
    border-right: 0;
  }

  .metrics-grid dl > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .about-layout,
  .capacity-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-content {
    padding-right: 0;
  }

  .business-panel,
  .drilling-panel {
    display: block;
    min-height: 0;
  }

  .business-panel figure,
  .drilling-panel figure {
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .business-panel figure img,
  .drilling-panel figure img {
    min-height: 0;
  }

  .panel-copy,
  .drilling-panel > div {
    padding: 38px 30px;
  }

  .drilling-head {
    display: block;
  }

  .drilling-head > p {
    max-width: 680px;
    margin-top: 24px;
  }

  .capacity-metrics {
    margin-bottom: 68px;
  }

  .capacity-metrics > div {
    padding-inline: 22px;
  }

  .capacity-photo {
    order: -1;
  }

  .process-head {
    display: block;
  }

  .process-head .section-tag {
    margin-bottom: 28px;
  }

  .process-list li {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding-block: 24px;
  }

  .process-list li > b {
    grid-column: 2;
    justify-self: start;
  }

  .contact {
    padding-block: 82px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .footer-main {
    display: block;
    padding-block: 48px 36px;
  }

  .footer-main > p {
    margin-top: 22px;
  }

  .footer-main nav {
    margin-top: 26px;
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 66px;
  }

  .section {
    padding-block: 66px;
  }

  .header-inner {
    padding-inline: 12px;
  }

  .brand {
    width: min(240px, calc(100vw - 112px));
    flex-basis: min(240px, calc(100vw - 112px));
  }

  .menu-button {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    margin-left: auto;
  }

  .primary-nav {
    justify-content: flex-start;
    overflow-y: auto;
    padding: 100px 18px 28px;
  }

  .primary-nav a {
    min-height: 62px;
    font-size: 20px;
  }

  .section-head h2,
  .drilling-head h2,
  .contact-copy h2,
  .process-head h2 {
    font-size: 32px;
  }

  .hero,
  .hero-layout {
    min-height: 720px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-layout {
    gap: 20px;
    padding-bottom: 26px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .hero-copy > p {
    margin-top: 19px;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions {
    gap: 18px;
    margin-top: 26px;
  }

  .button {
    min-height: 45px;
    gap: 12px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero-actions .text-link {
    font-size: 13px;
  }

  .fact-label {
    display: none;
  }

  .hero-facts dl div {
    padding: 10px 9px;
  }

  .hero-facts dt {
    font-size: 10px;
  }

  .hero-facts dd {
    font-size: 11px;
  }

  .metrics-grid dl > div {
    padding-inline: 10px;
  }

  .metrics-grid strong {
    font-size: 37px;
  }

  .metrics-grid dd {
    font-size: 11px;
  }

  .about-photo {
    aspect-ratio: 4 / 3;
  }

  .about-photo figcaption,
  .capacity-photo figcaption {
    right: 9px;
    bottom: 9px;
    left: 9px;
    min-width: 0;
  }

  .about-lead {
    font-size: 21px;
  }

  .about-evidence {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .about-evidence div + div {
    padding-left: 18px;
  }

  .about-evidence strong {
    font-size: 28px;
  }

  .tabs-list button {
    min-width: 165px;
    min-height: 68px;
    padding-inline: 15px;
  }

  .business-panel figure,
  .drilling-panel figure {
    aspect-ratio: 4 / 3;
  }

  .panel-copy,
  .drilling-panel > div {
    padding: 30px 20px;
  }

  .panel-copy h3,
  .drilling-panel h3 {
    font-size: 29px;
  }

  .panel-lead {
    font-size: 15px;
  }

  .panel-details {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .drilling-tab-list button {
    min-width: 188px;
    min-height: 68px;
    padding-inline: 15px;
  }

  .drilling-tab-list button b {
    font-size: 13px;
  }

  .drilling-panel dl div {
    grid-template-columns: 72px 1fr;
  }

  .capacity-metrics {
    display: block;
  }

  .capacity-metrics > div {
    padding: 26px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capacity-metrics > div:last-child {
    border-bottom: 0;
  }

  .capacity-metrics strong {
    font-size: 43px;
  }

  .capacity-copy h3 {
    font-size: 31px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .process-list h3 {
    font-size: 18px;
  }

  .contact-details div {
    min-height: 68px;
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }

  .contact-details a,
  .contact-details p {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .footer-brand {
    width: min(300px, 100%);
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .footer-bottom .container {
    display: block;
    padding-block: 14px;
  }

  .footer-bottom .container > span {
    display: block;
  }

  .footer-bottom .container > a {
    display: block;
    margin-top: 6px;
  }

  .footer-bottom .asset-credit {
    margin-top: 6px;
  }

  .footer-bottom .asset-credit a {
    display: inline;
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 30px;
  }
}

@media (max-width: 340px) {
  .hero,
  .hero-layout {
    min-height: 700px;
  }

  .hero-copy h1 {
    font-size: 27px;
  }
}

@media (max-height: 690px) and (min-width: 821px) {
  .hero {
    min-height: 620px;
  }

  .hero-layout {
    padding-bottom: 44px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-copy > p {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 23px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .js .hero-entrance,
  .js .hero-title-line > span {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hero-clouds {
    display: none;
    opacity: 0;
  }

  .hero.is-motion-forced .hero-clouds {
    display: block;
  }

  .hero.is-motion-forced .hero-clouds.is-ready {
    opacity: 1;
  }

  .hero-media img,
  .about-photo img,
  .capacity-photo img,
  .business-panel figure img {
    transform: none !important;
  }
}
