@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lato:wght@400;500;600;700&family=Montserrat:wght@600;700&family=Poppins:wght@400;500;600&display=swap");

:root {
  --copper: #bb8056;
  --copper-deep: #a9653f;
  --copper-light: #dec0aa;
  --copper-pale: #ead8ca;
  --ink: #111111;
  --muted: #4d4d4d;
  --paper: #f5f4ef;
  --white: #ffffff;
  --content: 1520px;
  --copy: 1140px;
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f9f9f9;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16.8px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #243a72;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 4px;
  background: #111;
  color: #fff;
}

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

.site-header {
  position: relative;
  z-index: 50;
  min-height: 116px;
  background: #fff;
}

.header-inner {
  width: min(100% - 48px, 1620px);
  min-height: 116px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  flex: 0 0 auto;
  width: 286px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  display: block;
  padding: 15px;
  color: #3a3a3a;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  white-space: nowrap;
}

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

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px auto;
  background: #222;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-8px) rotate(-45deg);
}

.page-shell {
  overflow: clip;
}

.eyebrow {
  color: var(--copper);
  font-family: "Lato", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.copper-title {
  margin: 0;
  color: var(--copper);
  font-family: "Lato", sans-serif;
  font-weight: 600;
  line-height: 1.15;
}

.page-hero {
  display: grid;
  min-height: 600px;
  place-items: center;
  padding: 120px 32px 150px;
  text-align: center;
}

.page-hero__inner {
  width: min(100%, 1320px);
}

.page-hero h1 {
  margin: 0 0 42px;
  color: var(--copper);
  font-family: "Lato", sans-serif;
  font-size: clamp(48px, 4.5vw, 76px);
  font-weight: 600;
  line-height: 1.08;
}

.page-hero p {
  max-width: 1180px;
  margin: 0 auto;
  font-family: "Lato", sans-serif;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.4;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border: 1px solid #111;
  border-radius: 999px;
  background: transparent;
  color: #111;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

.button--light {
  border-color: #fff;
  color: #fff;
}

.button--light:hover {
  background: #fff;
  color: #111;
}

.button--copper {
  border-color: var(--copper);
  background: var(--copper);
  color: #fff;
}

.button--copper:hover {
  border-color: var(--copper-deep);
  background: var(--copper-deep);
  color: #fff;
}

.button--tan {
  border-color: var(--copper-light);
  background: var(--copper-light);
  color: #1c1c1c;
}

.button--tan:hover {
  border-color: var(--copper);
  background: var(--copper);
  color: #fff;
}

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

.footer-inner {
  width: min(100% - 64px, var(--content));
  min-height: 510px;
  margin-inline: auto;
  padding: 95px 0 120px;
  display: grid;
  grid-template-columns: minmax(310px, 1.45fr) repeat(3, minmax(170px, 0.75fr));
  gap: 70px;
}

.footer-logo {
  width: min(100%, 390px);
  margin-top: 4px;
}

.footer-heading {
  margin: 0 0 26px;
  color: #23282d;
  font-family: "Lato", sans-serif;
  font-size: 23px;
  font-weight: 700;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 18px;
}

.footer-links a {
  color: #3e3e3e;
  font-family: "Lato", sans-serif;
  font-size: 17px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.subscribe-link {
  color: var(--copper);
  font-weight: 500;
}

.linkedin-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 4px;
  background: #8b9198;
  color: #fff;
}

.linkedin-link:hover {
  background: var(--copper);
}

.linkedin-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .site-logo {
    width: 230px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 28px;
    border-top: 1px solid #eee;
    background: #fff;
    box-shadow: 0 16px 30px rgb(0 0 0 / 8%);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: block;
  }

  .primary-nav a {
    padding-block: 12px;
  }

  .primary-nav a::after {
    bottom: 7px;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .header-inner {
    min-height: 88px;
  }

  .header-inner {
    width: min(100% - 28px, 1620px);
  }

  .site-logo {
    width: 190px;
  }

  .page-hero {
    min-height: 480px;
    padding: 85px 22px 105px;
  }

  .page-hero h1 {
    margin-bottom: 30px;
    font-size: clamp(40px, 13vw, 60px);
  }

  .page-hero p {
    font-size: 22px;
  }

  .footer-inner {
    width: min(100% - 44px, var(--content));
    min-height: 0;
    padding: 70px 0 85px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    width: 310px;
  }
}

/* Scroll entrance animations (mirrors the original site's animate.css set).
   Elements are hidden only when JS has added .js-anim to <html>. */
.js-anim [data-anim] {
  opacity: 0;
}

.js-anim [data-anim].is-in {
  opacity: 1;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.js-anim [data-anim][data-anim-slow].is-in {
  animation-duration: 2s;
}

.js-anim [data-anim="fade-up"].is-in {
  animation-name: animFadeInUp;
}

.js-anim [data-anim="zoom-in"].is-in {
  animation-name: animZoomIn;
}

.js-anim [data-anim="slide-left"].is-in {
  animation-name: animSlideInLeft;
}

.js-anim [data-anim="slide-right"].is-in {
  animation-name: animSlideInRight;
}

@keyframes animFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes animZoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes animSlideInLeft {
  from {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes animSlideInRight {
  from {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
