@font-face {
  font-family: "Poppins";
  src: url("/assets/poppins-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/poppins-400-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/poppins-700-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --mist: #f1f1f1;
  --silver: #d9d9d9;
  --aqua: #08c3ba;
  --content: 1200px;
  --gutter: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 16px 24px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 180px;
  padding: 28px var(--gutter);
  background: transparent;
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 390px) minmax(260px, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1480px;
  margin: 0 auto;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  align-content: start;
  padding-top: 5px;
}

.primary-nav a {
  display: inline-block;
  padding: 0 0 3px;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  border-bottom: 1px solid currentColor;
}

.brand {
  display: block;
  justify-self: center;
  width: min(100%, 350px);
}

.brand img {
  width: 100%;
}

.social-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-top: 13px;
}

.social-nav a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  text-decoration: none;
}

.social-nav svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  padding: 10px;
  color: #000;
  background: transparent;
}

.mobile-panel {
  display: none;
}

.content-width {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 9vw, 120px) var(--gutter);
}

.section-title {
  margin-bottom: 48px;
  font-size: clamp(42px, 5.3vw, 74px);
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 13px 28px;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.button:hover {
  color: #fff;
  background: #000;
}

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

.home-hero {
  padding: 146px var(--gutter) 42px;
  overflow: hidden;
  background: #fff;
}

.home-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.home-hero__picture {
  display: block;
}

.home-hero__image {
  width: 100%;
  margin-inline: auto;
}

.home-intro {
  padding: clamp(68px, 7vw, 104px) var(--gutter);
  color: #fff;
  background: #000;
}

.home-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
  max-width: 1160px;
  margin: 0 auto;
}

.home-intro__eyebrow {
  margin-bottom: 18px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-intro h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(48px, 6vw, 82px);
}

.home-intro__copy > p {
  max-width: 460px;
  margin-bottom: 30px;
  color: var(--silver);
  font-size: clamp(18px, 2vw, 23px);
}

.home-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  align-items: center;
}

.home-intro__listen {
  font-weight: 700;
}

.home-intro__listen:hover {
  color: var(--aqua);
}

.watch-section {
  background: #fff;
}

.video-frame {
  width: min(100%, 900px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: 0;
}

.about-preview {
  background: var(--silver);
}

.about-preview__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.about-preview h2 {
  margin-bottom: 32px;
  font-size: clamp(34px, 4vw, 54px);
}

.about-preview p {
  margin-bottom: 24px;
}

.member-list {
  margin: 28px 0;
}

.member-list span {
  display: block;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.connect-section {
  background: #fff;
}

.connect-section .social-nav {
  justify-content: center;
  gap: 28px;
  padding-top: 0;
}

.connect-section .social-nav a {
  width: 34px;
  height: 34px;
}

.connect-section .social-nav svg {
  width: 28px;
  height: 28px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1260px;
  margin: 58px auto 0;
}

.instagram-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #eee;
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.instagram-grid a:hover img {
  transform: scale(1.025);
}

.subscribe-strip {
  text-align: center;
  background: #fff;
}

.subscribe-strip h2 {
  margin-bottom: 24px;
  font-size: 34px;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(100%, 660px);
  margin: 0 auto;
}

.inline-form input,
.footer-form input {
  min-width: 0;
  border: 1px solid #bbb;
  border-radius: 0;
  padding: 15px 16px;
  color: #000;
  background: #fff;
}

.inline-form input {
  border-right: 0;
}

.inline-form .form-status {
  grid-column: 1 / -1;
}

.inline-form button,
.footer-form button {
  border: 1px solid #000;
  padding: 14px 27px;
  color: #fff;
  background: #000;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 14px;
}

.site-footer {
  padding: 68px var(--gutter) 34px;
  background: var(--mist);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 1.7fr;
  gap: clamp(36px, 6vw, 90px);
  max-width: 1260px;
  margin: 0 auto;
}

.footer-links a {
  display: block;
  width: fit-content;
}

.footer-social {
  margin-top: 28px;
}

.footer-social .social-nav {
  justify-content: flex-start;
  gap: 14px;
  padding: 0;
}

.footer-contact p {
  margin-bottom: 20px;
}

.footer-contact strong {
  display: block;
}

.footer-signup h2 {
  margin-bottom: 12px;
  font-size: 31px;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.footer-form .email-field,
.footer-form button,
.footer-form .form-status {
  grid-column: 1 / -1;
}

.copyright {
  max-width: 1260px;
  margin: 52px auto 0;
  font-size: 14px;
}

.page-shell {
  min-height: 480px;
}

.page-hero-image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.page-hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.67);
}

.tour-page-content {
  min-height: 420px;
  text-align: center;
}

.tour-page-content h1 {
  margin-bottom: 84px;
  font-size: 42px;
}

.press-content,
.about-content,
.contact-content,
.cart-content {
  width: min(calc(100% - (2 * var(--gutter))), 1200px);
  margin: 0 auto;
  padding: 28px 0 110px;
}

.page-heading {
  margin: 0 0 64px;
  font-size: 52px;
  text-align: center;
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(250px, 0.7fr);
  gap: clamp(42px, 8vw, 120px);
}

.press-quotes {
  margin-bottom: 52px;
}

.press-quotes p {
  margin-bottom: 38px;
  font-style: italic;
}

.press-list p {
  margin-bottom: 20px;
}

.press-list strong {
  font-weight: 700;
}

.press-images {
  display: grid;
  align-content: start;
  gap: 48px;
  padding-top: 90px;
}

.press-images img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.2fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
  padding: 58px 0 96px;
}

.about-intro h1 {
  margin-bottom: 34px;
  font-size: clamp(36px, 3.1vw, 42px);
}

.about-intro__copy p {
  margin-bottom: 28px;
  font-size: clamp(17px, 1.6vw, 22px);
}

.about-intro__image {
  width: 100%;
}

.detail-section {
  padding: 78px 0;
  border-top: 1px solid #d4d4d4;
}

.detail-section h2 {
  margin-bottom: 42px;
  font-size: clamp(38px, 4vw, 56px);
}

.representation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.representation strong {
  display: block;
}

.contact-content {
  padding-top: 0;
}

.contact-content .page-heading {
  max-width: 620px;
  margin-inline: auto;
  overflow-wrap: anywhere;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
  margin-top: 60px;
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 40px;
  font-size: 34px;
}

.contact-card h3 {
  margin-bottom: 22px;
  font-size: 20px;
  text-transform: uppercase;
}

.contact-card a {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(17px, 2vw, 24px);
}

.contact-signup {
  padding-top: 100px;
  text-align: center;
}

.contact-signup h2 {
  margin-bottom: 18px;
  font-size: 38px;
}

.contact-connect {
  margin-top: 80px;
}

.contact-connect .social-nav {
  justify-content: center;
}

.cart-content {
  min-height: 500px;
  padding-top: 0;
}

.cart-content h1 {
  margin-bottom: 34px;
  font-size: 34px;
}

.cart-content p {
  margin-bottom: 28px;
}

.not-found {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 80px var(--gutter);
  text-align: center;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(64px, 10vw, 130px);
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header,
  .home-page .site-header {
    position: relative;
    min-height: 112px;
    padding: 18px 20px;
    background: #fff;
  }

  .header-inner {
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 12px;
  }

  .primary-nav,
  .header-inner > .social-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
    justify-self: start;
  }

  .brand {
    grid-column: 2;
    width: min(100%, 260px);
  }

  .mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 24px;
    color: #fff;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .menu-open .mobile-panel {
    opacity: 1;
    visibility: visible;
  }

  .menu-close {
    display: block;
    justify-self: end;
    color: #fff;
  }

  .mobile-panel nav {
    display: grid;
    align-content: center;
    gap: 12px;
  }

  .mobile-panel nav a {
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 10vw, 54px);
    line-height: 1.08;
    text-decoration: none;
  }

  .mobile-panel .social-nav {
    justify-content: flex-start;
    padding: 0;
  }

  .home-hero {
    padding: 8px 20px 30px;
  }

  .home-hero__inner {
    max-width: 700px;
  }

  .home-intro__inner,
  .about-preview__inner,
  .press-layout,
  .about-intro {
    grid-template-columns: 1fr;
  }

  .home-intro__copy > p {
    max-width: 600px;
  }

  .home-intro__actions {
    justify-content: flex-start;
  }

  .photo-grid img {
    height: 200px;
  }

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

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

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

  .press-images {
    grid-row: 1;
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
  }

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

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

@media (max-width: 620px) {
  .section {
    padding: 64px 28px;
  }

  .section-title {
    margin-bottom: 34px;
    font-size: 42px;
  }

  .home-intro {
    padding: 64px 28px;
  }

  .home-intro__inner {
    gap: 34px;
  }

  .home-intro h1 {
    font-size: 46px;
  }

  .home-intro__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-preview h2 {
    font-size: 35px;
    text-align: center;
  }

  .about-preview__copy {
    text-align: left;
  }

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

  .photo-grid img {
    height: auto;
    aspect-ratio: 1.35;
  }

  .inline-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .inline-form input {
    border-right: 1px solid #bbb;
  }

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

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

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

  .press-content,
  .about-content,
  .contact-content,
  .cart-content {
    width: min(calc(100% - 40px), 1200px);
  }

  .page-heading {
    margin-bottom: 48px;
    font-size: 58px;
  }

  .press-images {
    gap: 14px;
  }

  .about-intro {
    padding-top: 14px;
  }

  .about-intro h1 {
    font-size: 42px;
  }
}

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

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