:root {
  --brand-blue: #137597;
  --brand-dark: #00585e;
  --brand-orange: #ff9c19;
  --brand-white: #ffffff;
  --brand-ink: #003f43;
  --brand-gradient: linear-gradient(130deg, var(--brand-blue) 0%, var(--brand-dark) 72%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(19, 117, 151, .1), rgba(0, 88, 94, .03));

  --text: #123d42;
  --text-muted: #547075;
  --surface: #ffffff;
  --surface-soft: #f1f7f7;
  --line: rgba(0, 88, 94, .15);
  --white-muted: rgba(255, 255, 255, .74);
  --white-line: rgba(255, 255, 255, .2);

  --font-brand: Gotham, "Montserrat", "Avenir Next", "Century Gothic", Arial, sans-serif;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 42px;
  --shadow-sm: 0 12px 32px rgba(0, 57, 62, .1);
  --shadow-lg: 0 30px 80px rgba(0, 57, 62, .24);
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font-brand);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--brand-ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--brand-orange);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-180%);
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  color: var(--brand-dark);
  background: var(--brand-white);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--white-line);
  background: rgba(0, 88, 94, .96);
  box-shadow: 0 10px 28px rgba(0, 57, 62, .18);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 236px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, .86);
  font-size: .89rem;
  font-weight: 700;
}

.main-nav a {
  padding-block: 10px;
  transition: color .2s ease, transform .2s ease;
}

.main-nav a:hover {
  color: var(--brand-white);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 156, 25, .75);
  border-radius: 999px;
  color: var(--brand-ink);
  background: var(--brand-orange);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  padding: 11px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--brand-white);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 146px 0 78px;
  color: var(--brand-white);
  background: var(--brand-gradient);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, .9), transparent 70%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 460px;
  height: 460px;
  right: -190px;
  bottom: -250px;
  border-radius: 50%;
  background: var(--brand-orange);
  opacity: .16;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
  top: -280px;
  right: 10%;
}

.hero-orbit-two {
  width: 260px;
  height: 260px;
  left: -110px;
  bottom: -125px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--brand-orange);
}

.hero h1 {
  max-width: 720px;
  margin: 20px 0 24px;
  font-size: clamp(3.6rem, 6.2vw, 6.7rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--white-muted);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  color: var(--brand-ink);
  background: var(--brand-orange);
  box-shadow: 0 14px 34px rgba(0, 57, 62, .2);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(0, 57, 62, .28);
}

.button-secondary {
  border-color: var(--white-line);
  color: var(--brand-white);
  background: rgba(255, 255, 255, .07);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, .13);
}

.hero-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
  font-weight: 700;
}

.hero-values li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-values li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.hero-visual {
  position: relative;
  width: min(100%, 540px);
  justify-self: end;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 2px solid rgba(255, 156, 25, .62);
  border-radius: var(--radius-lg);
}

.hero-portrait picture {
  display: block;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-lg);
  background: var(--brand-dark);
  box-shadow: var(--shadow-lg);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
}

.photo-brand-card {
  position: absolute;
  left: -34px;
  bottom: 28px;
  width: min(66%, 330px);
  display: block;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  background: rgba(0, 88, 94, .96);
  box-shadow: 0 18px 42px rgba(0, 57, 62, .32);
  backdrop-filter: blur(10px);
}

.photo-brand-card img {
  width: 100%;
  height: auto;
}

.hero-note {
  max-width: 360px;
  margin: 34px 0 0 auto;
  color: rgba(255, 255, 255, .66);
  font-size: .91rem;
  text-align: right;
}

.values-strip {
  color: var(--brand-ink);
  background: var(--brand-orange);
}

.values-strip-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.values-strip span {
  position: relative;
  padding: 8px 24px;
  font-size: .89rem;
  font-weight: 900;
  text-align: center;
}

.values-strip span + span::before {
  content: "";
  position: absolute;
  inset: 20% auto 20% 0;
  width: 1px;
  background: rgba(0, 88, 94, .28);
}

.section {
  padding: 112px 0;
}

.section-about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(56px, 8vw, 110px);
}

.section-heading h2,
.story-heading h2,
.contact-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}

.about-copy {
  padding-top: 20px;
}

.about-copy p {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.about-copy .lead-paragraph {
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.46rem);
  font-weight: 700;
  line-height: 1.5;
}

.story-callout {
  position: relative;
  margin-top: 38px;
  padding: 28px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--brand-gradient-soft);
}

.story-callout::after {
  content: "7070";
  position: absolute;
  right: -12px;
  bottom: -34px;
  color: rgba(19, 117, 151, .08);
  font-size: 5.8rem;
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: 1;
}

.story-callout span,
.story-callout strong {
  position: relative;
  z-index: 1;
  display: block;
}

.story-callout span {
  color: var(--brand-blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.story-callout strong {
  max-width: 500px;
  margin-top: 8px;
  font-size: 1.1rem;
  line-height: 1.45;
}

.section-story {
  position: relative;
  overflow: hidden;
  color: var(--brand-white);
  background: var(--brand-gradient);
}

.section-story::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -250px;
  right: -140px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.story-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 70px;
}

.story-heading h2 {
  max-width: 760px;
}

.story-heading > p {
  margin: 0 0 5px;
  color: var(--white-muted);
  font-size: 1.04rem;
}

.story-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.story-step {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .055);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.story-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 156, 25, .55);
  background: rgba(255, 255, 255, .08);
}

.step-number {
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--brand-ink);
  background: var(--brand-orange);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.story-step h3 {
  margin: 36px 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.story-step p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: .95rem;
}

.section-commitments {
  background: var(--surface-soft);
}

.commitment-heading {
  max-width: 850px;
}

.commitment-heading > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.commitment-card {
  position: relative;
  min-height: 255px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.commitment-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -72px;
  bottom: -72px;
  border-radius: 22px 22px 22px 4px;
  background: var(--brand-orange);
  opacity: .18;
  transform: rotate(45deg);
}

.commitment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(19, 117, 151, .35);
  box-shadow: 0 22px 44px rgba(0, 57, 62, .14);
}

.card-number {
  color: var(--brand-blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.commitment-card h3 {
  max-width: 430px;
  margin: 48px 0 12px;
  font-size: 1.54rem;
  line-height: 1.18;
}

.commitment-card p {
  max-width: 500px;
  margin: 0;
  color: var(--text-muted);
}

.statement {
  padding: 92px 0;
  color: var(--brand-white);
  background: var(--brand-dark);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(220px, .58fr) minmax(0, 1.42fr);
  align-items: center;
  gap: clamp(46px, 8vw, 100px);
}

.statement-grid > img {
  width: 100%;
  filter: drop-shadow(0 18px 34px rgba(0, 57, 62, .34));
}

.statement figure {
  margin: 0;
}

.statement blockquote {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.statement figcaption {
  margin-top: 24px;
  color: var(--brand-orange);
  font-weight: 900;
}

.contact-section {
  color: var(--brand-white);
  background:
    radial-gradient(circle at 8% 84%, rgba(19, 117, 151, .38), transparent 28%),
    #003f43;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(54px, 8vw, 100px);
}

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

.contact-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--white-muted);
  font-size: 1.06rem;
}

.contact-kicker {
  display: inline-block;
  margin-top: 28px;
  color: var(--brand-orange);
  font-size: 1.12rem;
  font-weight: 900;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-card:hover {
  transform: translateX(5px);
  border-color: rgba(255, 156, 25, .55);
  background: rgba(255, 255, 255, .09);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-ink);
  background: var(--brand-orange);
  font-weight: 900;
}

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

.contact-card small {
  color: rgba(255, 255, 255, .55);
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: .98rem;
}

.arrow {
  color: var(--brand-orange);
  font-size: 1.2rem;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .62);
  background: #003337;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .75fr 1.1fr;
  align-items: center;
  gap: 30px;
}

.brand-footer img {
  width: 225px;
}

.footer-grid p {
  margin: 0;
  font-size: .78rem;
}

.footer-copy {
  text-align: right;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: var(--brand-ink);
  background: var(--brand-orange);
  box-shadow: 0 14px 34px rgba(0, 57, 62, .28);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: transform .2s ease, opacity .2s ease;
}

.floating-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.floating-contact.is-visible:hover {
  transform: translateY(-4px);
}

.noscript-message {
  padding: 12px;
  color: var(--brand-white);
  background: var(--brand-dark);
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
    gap: 44px;
  }

  .photo-brand-card {
    left: -20px;
  }

  .story-heading {
    gap: 42px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand img {
    width: 210px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--white-line);
    border-radius: 18px;
    color: var(--brand-white);
    background: rgba(0, 72, 77, .99);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 11px 12px;
  }

  .main-nav .nav-cta {
    justify-content: center;
    margin-top: 6px;
    border-radius: 12px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 76px;
  }

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

  .hero-grid {
    gap: 64px;
  }

  .hero-content {
    max-width: 720px;
    text-align: center;
  }

  .hero-content .eyebrow,
  .hero-actions,
  .hero-values {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(84vw, 540px);
    justify-self: center;
  }

  .hero-note {
    margin-inline: auto;
    text-align: center;
  }

  .about-grid {
    gap: 38px;
  }

  .about-copy {
    padding-top: 0;
  }

  .story-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-heading > p {
    max-width: 640px;
  }

  .story-steps {
    grid-template-columns: 1fr;
  }

  .story-step {
    min-height: 240px;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy .eyebrow {
    justify-content: center;
  }

  .contact-copy h2,
  .contact-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}

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

  .brand img {
    width: 180px;
  }

  .main-nav {
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 116px 0 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-values {
    gap: 10px 16px;
  }

  .hero-visual {
    width: min(92vw, 430px);
  }

  .hero-portrait::before {
    inset: 12px -8px -12px 8px;
    border-radius: 30px;
  }

  .hero-portrait picture {
    aspect-ratio: 4 / 5;
    border-radius: 30px;
  }

  .photo-brand-card {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 12px 16px;
    border-radius: 17px;
  }

  .values-strip-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .values-strip span {
    padding: 8px 12px;
  }

  .values-strip span + span::before {
    inset: 0 30% auto;
    width: 40%;
    height: 1px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .story-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .story-callout {
    padding: 24px;
  }

  .story-callout::after {
    font-size: 4.8rem;
  }

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

  .commitment-card {
    min-height: 235px;
    padding: 26px;
  }

  .commitment-card h3 {
    margin-top: 38px;
  }

  .statement {
    padding: 76px 0;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .statement-grid > img {
    width: min(78%, 320px);
    margin-inline: auto;
  }

  .statement figure {
    text-align: center;
  }

  .contact-card {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 15px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 162px;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-values {
    font-size: .79rem;
  }

  .contact-card {
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    padding: 13px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }
}

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

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

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