:root {
  --ink: #171916;
  --muted: #61645f;
  --paper: #f5f5f2;
  --paper-deep: #ecece8;
  --line: rgba(23, 25, 22, 0.14);
  --forest: #244438;
  --forest-dark: #1d2b26;
  --white: #fff;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.032em;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 112px 1fr auto;
  align-items: center;
  height: 78px;
  padding: 4px clamp(24px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 11, 9, 0.46), rgba(10, 11, 9, 0));
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 245, 242, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

body.menu-open .site-header {
  color: var(--white);
  background: rgba(18, 22, 19, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.brand {
  position: relative;
  display: inline-flex;
  width: 86px;
  height: 62px;
  align-items: center;
  justify-content: center;
}

.brand__logo {
  position: absolute;
  inset: 0;
  width: 86px;
  height: 62px;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.brand__logo--black {
  opacity: 0;
}

.site-header.is-scrolled .brand__logo--white {
  opacity: 0;
}

.site-header.is-scrolled .brand__logo--black {
  opacity: 1;
}

body.menu-open .brand__logo--white {
  opacity: 1;
}

body.menu-open .brand__logo--black {
  opacity: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 40px);
}

.primary-nav a,
.languages a,
.footer-label,
.eyebrow,
.button,
.text-link,
.fact-title {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
}

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

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.languages {
  display: flex;
  gap: 12px;
}

.languages a {
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
}

.languages .is-active {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-header.is-scrolled .languages a {
  color: rgba(23, 25, 22, 0.55);
}

.site-header.is-scrolled .languages .is-active {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  box-shadow: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.site-header.is-scrolled .button--outline {
  color: var(--ink);
  border-color: rgba(23, 25, 22, 0.48);
}

.site-header.is-scrolled .button--outline:hover,
.site-header.is-scrolled .button--outline:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--solid {
  color: var(--ink);
  background: var(--white);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: #e8e9e5;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #211f1a;
}

.hero__slides,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slides {
  z-index: 0;
  overflow: hidden;
  background: #211f1a;
}

.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  visibility: hidden;
}

.hero__slide.is-active,
.hero__slide.is-leaving,
.hero__slide.is-entering {
  visibility: visible;
}

.hero__slide.is-active,
.hero__slide.is-leaving {
  z-index: 1;
}

.hero__slide.is-entering {
  z-index: 2;
  animation: hero-diagonal-reveal 1.3s cubic-bezier(0.72, 0, 0.18, 1) both;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.66) brightness(0.72) contrast(0.94);
  transform: scale(1.025);
  transition: transform 7s linear;
}

.hero__slide.is-active img,
.hero__slide.is-entering img {
  transform: scale(1);
}

.hero__slide--table img {
  object-position: center 51%;
}

.hero__slide--ribs img {
  object-position: center 54%;
  filter: saturate(0.82) brightness(0.68) contrast(0.98);
}

.hero__slide--octopus img {
  object-position: center 55%;
  filter: saturate(0.8) brightness(0.67) contrast(0.98);
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 11, 9, 0.76) 0%, rgba(10, 11, 9, 0.44) 39%, rgba(10, 11, 9, 0.08) 75%),
    linear-gradient(0deg, rgba(10, 11, 9, 0.28), transparent 56%);
}

.hero::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15vw;
  min-width: 140px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0;
  transform: translateX(112vw) skewX(-12deg);
}

.hero.is-transitioning::after {
  animation: hero-light-sweep 1.3s cubic-bezier(0.72, 0, 0.18, 1) both;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(100%, 690px);
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 116px clamp(28px, 5.4vw, 86px) 96px;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--forest);
  font-family: var(--sans);
  line-height: 1.3;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: 570px;
  font-size: clamp(42px, 4.3vw, 64px);
}

.hero__lead {
  max-width: 460px;
  margin: 18px 0 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  left: clamp(28px, 5.4vw, 86px);
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-pagination {
  --hero-progress-duration: 7000ms;
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 64px);
  bottom: 27px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--sans);
}

.hero-pagination__track {
  display: flex;
  width: clamp(160px, 17vw, 270px);
  align-items: center;
  gap: 5px;
}

.hero-pagination__step {
  position: relative;
  display: block;
  height: 22px;
  flex: 1 1 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-pagination__step::before,
.hero-pagination__step::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  transform: translateY(-50%);
}

.hero-pagination__step::before {
  background: rgba(255, 255, 255, 0.3);
}

.hero-pagination__step::after {
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}

.hero-pagination__step.is-active::after {
  animation: hero-progress-fill var(--hero-progress-duration) linear forwards;
}

.hero-pagination__step:hover::before,
.hero-pagination__step:focus-visible::before {
  height: 2px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-pagination__step:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.92);
  outline-offset: 2px;
}

.hero.is-paused .hero-pagination__step.is-active::after,
.menu-hero.is-paused .hero-pagination__step.is-active::after {
  animation-play-state: paused;
}

.hero__scroll i {
  display: block;
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
}

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

.section-pad {
  padding: clamp(54px, 5.5vw, 78px) clamp(28px, 6vw, 96px);
}

.intro,
.experience-intro {
  min-height: 286px;
  background: #f8f8f5;
  border-bottom: 1px solid var(--line);
}

.intro__inner {
  display: grid;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
}

.experience-intro__inner {
  display: grid;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
}

.intro h2,
.experience-intro h2 {
  font-size: clamp(36px, 3.4vw, 50px);
}

.intro__copy,
.experience-intro__copy {
  max-width: 720px;
  color: var(--muted);
}

.intro__statement,
.experience-intro__statement {
  max-width: 620px;
  margin-bottom: 27px;
  color: #3f423e;
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.32;
}

.intro__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.intro__facts li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  padding: 17px 13px 0 0;
  border-right: 1px solid var(--line);
}

.intro__facts li + li {
  padding-left: 13px;
}

.intro__facts li:last-child {
  border-right: 0;
}

.fact-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-top: 1px;
}

.fact-title {
  margin-bottom: 3px;
  color: var(--ink);
}

.fact-description {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.fact-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--forest);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-pair,
.atmosphere {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.atmosphere-card {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.feature-card:last-child,
.atmosphere-card:last-child {
  border-right: 0;
}

.atmosphere-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.feature-card__media,
.atmosphere-card__media,
.josper__media {
  overflow: hidden;
  background: #d4d4cf;
}

.feature-card__media {
  height: clamp(300px, 26vw, 420px);
}

.feature-card__media img,
.atmosphere-card__media img,
.josper__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.86) contrast(0.94);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.feature-card:first-child .feature-card__media img {
  object-position: center 54%;
}

.feature-card:last-child .feature-card__media img {
  object-position: center 47%;
}

.feature-card:hover img,
.atmosphere-card:hover img {
  transform: scale(1.018);
  filter: saturate(0.78) brightness(0.88) contrast(0.95);
}

.feature-card__content {
  min-height: 242px;
  padding: clamp(34px, 3.5vw, 50px) clamp(28px, 4vw, 58px);
}

.feature-card__content h3 {
  margin-bottom: 14px;
  font-size: clamp(32px, 3vw, 44px);
}

.feature-card__content p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.menu-pair--secondary {
  border-top: 1px solid var(--line);
  background: #f8f8f5;
}

.menu-pair--secondary .feature-card__media {
  height: clamp(260px, 22vw, 350px);
}

.menu-pair--secondary .feature-card:first-child .feature-card__media img {
  object-position: center 51%;
}

.menu-pair--secondary .feature-card:last-child .feature-card__media img {
  object-position: center 50%;
}

.menu-pair--secondary .feature-card__content {
  min-height: 218px;
  padding-block: clamp(30px, 3vw, 42px);
}

.menu-pair--secondary .feature-card__content h3 {
  font-size: clamp(30px, 2.6vw, 40px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.josper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 470px;
  color: var(--white);
  background: var(--forest-dark);
}

.josper h2 {
  font-size: clamp(36px, 3.4vw, 50px);
}

.josper__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(52px, 6vw, 88px) clamp(34px, 6vw, 88px);
}

.josper__content p:not(.eyebrow) {
  max-width: 530px;
  margin: 21px 0 27px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.text-link--light {
  color: var(--white);
}

.josper__media img {
  object-position: 48% center;
  filter: saturate(0.62) brightness(0.75) contrast(0.95);
}

.atmosphere-card__media {
  height: clamp(280px, 23vw, 360px);
}

.atmosphere-card:first-child .atmosphere-card__media img {
  object-position: center 53%;
}

.atmosphere-card:last-child .atmosphere-card__media img {
  object-position: center 52%;
}

.atmosphere-card__content {
  display: flex;
  min-height: 232px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(32px, 3.2vw, 46px) clamp(28px, 4vw, 58px) clamp(34px, 3.5vw, 50px);
}

.atmosphere-card__content h2 {
  max-width: 570px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3vw, 44px);
}

.atmosphere-card__content p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.atmosphere-card__content .text-link,
.atmosphere-card__content .button {
  margin-top: auto;
}

.atmosphere-card__content--accent {
  background: var(--paper-deep);
}

.atmosphere-card__content--accent .button--solid {
  color: var(--white);
  background: var(--forest);
}

.atmosphere-card__content--accent .button--solid:hover,
.atmosphere-card__content--accent .button--solid:focus-visible {
  background: var(--forest-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 34px;
  align-items: start;
  padding: 34px clamp(28px, 5vw, 76px) 38px;
  color: rgba(255, 255, 255, 0.62);
  background: #20231f;
  font-size: 12px;
  line-height: 1.65;
}

.site-footer__brand img {
  width: 86px;
  height: 62px;
  object-fit: contain;
  opacity: 0.82;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-label {
  margin-bottom: 7px !important;
  color: var(--white);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 16px;
  color: var(--white);
  font-size: 20px;
}

@keyframes hero-diagonal-reveal {
  from {
    clip-path: polygon(116% 0, 116% 0, 92% 100%, 92% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes hero-light-sweep {
  0% {
    opacity: 0;
    transform: translateX(112vw) skewX(-12deg);
  }
  18% {
    opacity: 1;
  }
  82% {
    opacity: 0.62;
  }
  100% {
    opacity: 0;
    transform: translateX(-24vw) skewX(-12deg);
  }
}

@keyframes hero-progress-fill {
  from {
    transform: translateY(-50%) scaleX(0);
  }

  to {
    transform: translateY(-50%) scaleX(1);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 104px 1fr auto;
    padding-inline: 22px;
  }

  .primary-nav {
    gap: 19px;
  }

  .header-actions {
    gap: 17px;
  }

  .languages {
    display: none;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 14px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 68px;
    padding: 2px 16px;
  }

  .brand,
  .brand__logo {
    width: 76px;
    height: 56px;
  }

  .menu-toggle {
    position: relative;
    z-index: 50;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
  }

  .site-header.is-scrolled .menu-toggle {
    color: var(--ink);
  }

  body.menu-open .site-header.is-scrolled .menu-toggle {
    color: var(--white);
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .primary-nav {
    position: fixed;
    inset: 68px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 38px 22px;
    color: var(--white);
    background: rgba(18, 22, 19, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .primary-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: none;
  }

  .primary-nav a::after,
  .header-actions {
    display: none;
  }

  .hero {
    height: 100svh;
    min-height: 640px;
  }

  .hero__slide--table img {
    object-position: 54% center;
  }

  .hero__slide--ribs img {
    object-position: 58% center;
  }

  .hero__slide--octopus img {
    object-position: 60% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(10, 11, 9, 0.7), rgba(10, 11, 9, 0.14)),
      linear-gradient(0deg, rgba(10, 11, 9, 0.66), transparent 70%);
  }

  .hero__content {
    height: 100%;
    justify-content: flex-end;
    padding: 94px 20px 104px;
  }

  .hero h1 {
    max-width: 460px;
    font-size: clamp(39px, 10.7vw, 46px);
  }

  .hero__lead {
    margin: 16px 0 23px;
    font-size: 14px;
  }

  .hero__scroll {
    display: none;
  }

  .hero-pagination {
    right: 20px;
    bottom: 22px;
    left: 20px;
    justify-content: flex-end;
  }

  .hero-pagination__track {
    width: min(50vw, 210px);
  }

  .section-pad {
    padding: 48px 20px;
  }

  .intro {
    min-height: 0;
  }

  .intro__inner {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .intro h2,
  .experience-intro h2,
  .josper h2 {
    font-size: 36px;
  }

  .intro__statement {
    margin-bottom: 22px;
    font-size: 20px;
  }

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

  .intro__facts li,
  .intro__facts li + li {
    gap: 12px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro__facts li:last-child {
    border-bottom: 0;
  }

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

  .menu-pair,
  .atmosphere,
  .josper,
  .experience-intro__inner {
    grid-template-columns: 1fr;
  }

  .experience-intro__inner {
    gap: 27px;
  }

  .experience-intro.section-pad {
    padding-block: 40px;
  }

  .experience-intro__statement {
    font-size: 20px;
  }

  .feature-card,
  .atmosphere-card {
    border-right: 0;
  }

  .feature-card__media,
  .atmosphere-card__media {
    height: 260px;
  }

  .menu-pair--secondary .feature-card__media {
    height: 240px;
  }

  .menu-pair--secondary .feature-card__content {
    min-height: 0;
    padding-block: 30px 36px;
  }

  .feature-card__content,
  .atmosphere-card__content {
    min-height: 0;
    padding: 34px 20px 40px;
  }

  .feature-card__content h3,
  .atmosphere-card__content h2 {
    font-size: 33px;
  }

  .josper {
    min-height: 0;
  }

  .josper__content {
    padding: 52px 20px 58px;
  }

  .josper__media {
    height: 310px;
  }

  .josper__media img {
    object-position: 51% center;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: 34px 20px 40px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .button {
    min-height: 40px;
    padding-inline: 18px;
  }

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

  .site-footer__brand {
    grid-column: 1;
  }
}

/* v31: restore the approved home composition shown in 01-Home.png. */
.approved-home .site-header {
  position: relative;
  color: var(--ink);
  background: #f3f1ed;
  box-shadow: none;
}

.approved-home .brand__logo--white {
  opacity: 0;
}

.approved-home .brand__logo--black {
  opacity: 1;
}

.approved-home .languages a {
  color: var(--muted);
}

.approved-home .languages .is-active {
  color: var(--ink);
}

.approved-home .button--outline {
  color: var(--ink);
  border-color: rgba(23, 25, 22, 0.52);
}

.approved-home .hero {
  height: clamp(560px, 62vw, 680px);
  min-height: 0;
}

.approved-home .hero__content {
  justify-content: flex-end;
  padding: 90px clamp(28px, 5.4vw, 86px) 34px;
}

.approved-home .hero h1 {
  max-width: 540px;
  font-size: clamp(48px, 5.15vw, 66px);
}

.approved-home .hero__lead {
  margin: 14px 0 20px;
  font-size: 16px;
}

.approved-home .hero-pagination,
.approved-home .hero__scroll {
  display: none;
}

.approved-home .intro {
  min-height: 200px;
}

.approved-home .intro__inner {
  max-width: 1360px;
  gap: clamp(48px, 8vw, 120px);
}

.approved-home .intro h2 {
  font-size: clamp(42px, 4.6vw, 60px);
  white-space: nowrap;
}

.approved-home .intro__statement {
  max-width: 590px;
  margin: 0;
  color: #3f423e;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
}

.approved-home .feature-card__media {
  height: clamp(330px, 39vw, 500px);
}

.approved-home .feature-card__content {
  min-height: 152px;
  padding: 27px clamp(28px, 4vw, 58px) 32px;
}

.approved-home .feature-card__content .eyebrow {
  margin-bottom: 11px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.055em;
}

.approved-home .feature-card__content .eyebrow::after {
  display: block;
  width: 30px;
  height: 1px;
  margin-top: 9px;
  content: "";
  background: rgba(23, 25, 22, 0.45);
}

.approved-home .feature-card__content p:not(.eyebrow) {
  max-width: 480px;
  margin: 0;
  font-size: 14px;
}

.approved-home .josper {
  min-height: 420px;
}

.approved-home .atmosphere-card__media {
  height: clamp(250px, 25vw, 330px);
}

.approved-home .atmosphere-card__content {
  min-height: 240px;
}

@media (max-width: 780px) {
  .approved-home .site-header {
    position: relative;
    color: var(--ink);
    background: #f3f1ed;
  }

  .approved-home .menu-toggle {
    color: var(--ink);
  }

  .approved-home.menu-open .site-header {
    color: var(--white);
    background: rgba(18, 22, 19, 0.98);
  }

  .approved-home.menu-open .brand__logo--white {
    opacity: 1;
  }

  .approved-home.menu-open .brand__logo--black {
    opacity: 0;
  }

  .approved-home .hero {
    height: 590px;
    min-height: 0;
  }

  .approved-home .hero__content {
    padding: 94px 20px 42px;
  }

  .approved-home .intro h2 {
    white-space: normal;
  }

  .approved-home .feature-card__media {
    height: 270px;
  }

  .approved-home .feature-card__content {
    padding: 28px 20px 32px;
  }

  .approved-home .josper {
    min-height: 0;
  }
}

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

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

}
