:root {
  --bg: #161311;
  --bg-soft: #1b1715;
  --ink: #f3eee8;
  --ink-soft: #d8cec3;
  --muted: #9b8f84;
  --line: rgba(243, 238, 232, 0.16);
  --dark: #12100f;
  --brown: #26201d;
  --white: #f3eee8;
  --font-jp: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --font-en: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  --side: clamp(20px, 5vw, 72px);
  --section: clamp(72px, 11vw, 152px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --intro-duration: 3.98s;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #12100f, var(--bg) 42%, #211c19);
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-intro-visible {
  overflow: hidden;
}

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

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

button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}

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

dt {
  margin: 0;
}

.skip-link {
  position: fixed;
  inset: 10px auto auto 10px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--dark);
  color: var(--white);
  padding: 10px 14px;
}

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

:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(18, 16, 15, 0.72), rgba(18, 16, 15, 0.72)),
    linear-gradient(90deg, rgba(18, 16, 15, 0.5), rgba(18, 16, 15, 0.14) 48%, rgba(18, 16, 15, 0.66)),
    url("../images/tokine-intro-bg.png") center / cover no-repeat,
    #12100f;
  color: #f3eee8;
  pointer-events: none;
  animation: intro-screen-hide var(--intro-duration) var(--ease) forwards;
}

.intro-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 254, 250, 0.72), rgba(247, 244, 237, 0.54) 42%, rgba(247, 244, 237, 0.94) 100%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.2), rgba(255, 254, 250, 0.96));
  opacity: 0;
  animation: intro-white-wash var(--intro-duration) var(--ease) forwards;
}

.intro-screen__brand {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  text-align: center;
  line-height: 1.55;
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 10px 32px rgba(18, 16, 15, 0.82);
  animation: intro-brand-breathe var(--intro-duration) var(--ease) forwards;
}

.intro-screen__brand span:first-child {
  font-size: 28px;
}

.intro-screen__brand span:last-child {
  color: #d8cec3;
  font-size: 14px;
}

.is-intro-done .intro-screen {
  visibility: hidden;
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px var(--side);
  color: var(--white);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    height 0.35s ease;
}

.motion-ready .site-header {
  opacity: 0;
  transform: translateY(-12px);
}

.motion-ready.is-intro-done .site-header {
  animation: header-reveal 0.9s var(--ease) forwards;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(18, 16, 15, 0.78);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 112px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  font-family: var(--font-jp);
  font-size: 18px;
  line-height: 1;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__name {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand__sub {
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 44px);
  font-family: var(--font-en);
  font-size: 14px;
}

.site-nav a,
.footer-nav a {
  position: relative;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 0.28s var(--ease);
}

.site-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle,
.header-cta,
.quiet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0.5px solid currentColor;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    transform 0.28s var(--ease),
    border-color 0.28s ease;
}

.lang-toggle {
  width: 42px;
}

.header-cta {
  min-width: 150px;
  padding: 0 18px;
}

.quiet-button {
  align-self: flex-start;
  gap: 22px;
  min-width: 188px;
  width: fit-content;
  max-width: 100%;
  padding: 0 26px;
  background: rgba(243, 238, 232, 0.04);
  color: var(--white);
  border-color: rgba(243, 238, 232, 0.28);
}

.quiet-button::after,
.header-cta::after {
  content: "→";
  margin-left: 18px;
  font-family: var(--font-en);
}

.quiet-button--light {
  background: rgba(18, 16, 15, 0.18);
  color: var(--white);
  border-color: rgba(243, 238, 232, 0.42);
  border-width: 0.5px;
}

.lang-toggle:hover,
.header-cta:hover,
.quiet-button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.motion-ready .hero {
  opacity: 0;
}

.motion-ready.is-intro-done .hero {
  animation: hero-stage-reveal 1.35s var(--ease) forwards;
}

.hero__image,
.hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image img {
  object-fit: cover;
  object-position: 48% 49%;
  filter: saturate(0.74) contrast(0.94) brightness(0.72);
}

.motion-ready .hero__image img {
  transform: scale(1.055);
}

.motion-ready.is-intro-done .hero__image img {
  animation: hero-image-breathe 8.5s var(--ease) forwards;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 16, 15, 0.66), rgba(18, 16, 15, 0.16) 44%, rgba(18, 16, 15, 0.38)),
    linear-gradient(0deg, rgba(18, 16, 15, 0.64), rgba(18, 16, 15, 0.08) 56%, rgba(18, 16, 15, 0.2));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - var(--side) * 2));
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  padding: 132px 0 17svh;
  margin-left: var(--side);
}

.motion-ready .hero__content > * {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready.is-intro-done .hero__content > * {
  animation: hero-copy-reveal 0.95s var(--ease) forwards;
}

.motion-ready.is-intro-done .hero__content > *:nth-child(1) {
  animation-delay: 0.14s;
}

.motion-ready.is-intro-done .hero__content > *:nth-child(2) {
  animation-delay: 0.28s;
}

.motion-ready.is-intro-done .hero__content > *:nth-child(3) {
  animation-delay: 0.42s;
}

.motion-ready.is-intro-done .hero__content > *:nth-child(4) {
  animation-delay: 0.56s;
}

.eyebrow {
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: rgba(255, 254, 250, 0.76);
}

.hero h1 {
  font-size: clamp(40px, 9vw, 78px);
  line-height: 1.28;
  font-weight: 400;
  text-shadow: 0 12px 44px rgba(18, 16, 15, 0.62);
}

.hero__lead {
  color: rgba(255, 254, 250, 0.88);
  font-size: clamp(15px, 2.2vw, 19px);
  line-height: 2;
}

.scroll-sign {
  position: absolute;
  z-index: 2;
  right: var(--side);
  bottom: 34px;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0;
  color: rgba(255, 254, 250, 0.82);
}

.scroll-sign::after {
  content: "";
  display: block;
  width: 1px;
  height: 52px;
  margin: 12px auto 0;
  background: currentColor;
}

.section {
  padding: var(--section) var(--side);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.7fr);
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
  max-width: 1240px;
  margin: 0 auto;
}

.section-grid--wide {
  grid-template-columns: minmax(230px, 0.64fr) minmax(0, 1.52fr);
}

.section-copy {
  display: grid;
  align-content: center;
  gap: 28px;
}

.section-copy p:not(.eyebrow) {
  max-width: 30em;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.25;
}

.section__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.75;
}

.about {
  background: linear-gradient(180deg, var(--dark), var(--bg));
}

.about__photo {
  margin: 0;
  min-height: 42vw;
  overflow: hidden;
  background: #211c19;
}

.about__photo img {
  width: 100%;
  height: min(58vw, 620px);
  object-fit: cover;
  filter: saturate(0.78) brightness(0.72);
}

.stay {
  background: #12100f;
}

.stay-list {
  display: grid;
  max-width: 310px;
  border-top: 1px solid var(--line);
}

.stay-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-en);
  text-align: left;
  cursor: pointer;
}

.stay-list__item::after {
  content: "+";
}

.stay-list__item.is-active {
  color: var(--ink);
}

.stay-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
}

.stay-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.stay-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.68);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.stay-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(18, 16, 15, 0.86), rgba(18, 16, 15, 0));
}

.stay-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  text-align: center;
}

.stay-card p {
  font-family: var(--font-en);
  font-size: 17px;
  letter-spacing: 0;
}

.stay-card h3 {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
}

.stay-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.82) brightness(0.76);
}

.gallery {
  background: #1b1715;
}

.gallery__head {
  max-width: 1240px;
  margin: 0 auto clamp(48px, 7vw, 92px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(16px, 2.1vw, 28px);
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-item {
  margin: 0;
  min-height: 300px;
  overflow: hidden;
  background: #26201d;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 420px;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.76) brightness(0.72);
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.info {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: stretch;
  background: #161311;
}

.info__photo {
  min-height: 580px;
  overflow: hidden;
}

.info__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) brightness(0.68);
}

.info__panel {
  align-self: center;
  display: grid;
  gap: 30px;
  padding: clamp(32px, 5vw, 64px);
  background: rgba(18, 16, 15, 0.62);
  box-shadow: inset 0 0 0 1px rgba(243, 238, 232, 0.08);
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-list div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-family: var(--font-en);
}

.info-list dd {
  color: var(--ink-soft);
}

.final-cta {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  padding: var(--section) var(--side);
  overflow: hidden;
  background: #12100f;
}

.final-cta__image {
  position: absolute;
  inset: 0 0 0 34%;
  z-index: 0;
}

.final-cta__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #12100f 0%, rgba(18, 16, 15, 0.92) 25%, rgba(18, 16, 15, 0.22) 68%);
}

.final-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.6);
}

.final-cta__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  max-width: 520px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 42px var(--side) 30px;
  background: #12100f;
}

.brand--footer {
  color: var(--ink);
}

.footer-nav {
  justify-content: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-family: var(--font-en);
}

.footer-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
}

.copyright {
  grid-column: 1 / -1;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 12px;
  text-align: center;
}

.fade-in,
.section__title {
  opacity: 1;
  transform: none;
}

.motion-ready .fade-in,
.motion-ready .section__title {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.82s var(--ease), transform 0.82s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .fade-in.is-visible,
.motion-ready .section__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .about__photo,
.motion-ready .stay-card,
.motion-ready .gallery-item,
.motion-ready .info__photo,
.motion-ready .final-cta__image {
  clip-path: inset(8% 0 8% 0);
  transition:
    opacity 0.92s var(--ease),
    transform 0.92s var(--ease),
    clip-path 1.08s var(--ease);
}

.motion-ready .about__photo img,
.motion-ready .gallery-item img,
.motion-ready .info__photo img,
.motion-ready .final-cta__image img {
  transform: scale(1.055);
  transition:
    transform 1.25s var(--ease),
    filter 0.82s ease;
}

.motion-ready .about__photo.is-visible,
.motion-ready .stay-card.is-visible,
.motion-ready .gallery-item.is-visible,
.motion-ready .info__photo.is-visible,
.motion-ready .final-cta__image.is-visible {
  clip-path: inset(0);
}

.motion-ready .about__photo.is-visible img,
.motion-ready .gallery-item.is-visible img,
.motion-ready .info__photo.is-visible img,
.motion-ready .final-cta__image.is-visible img {
  transform: scale(1);
}

@keyframes intro-screen-hide {
  0%, 82% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-brand-breathe {
  0%, 58% {
    opacity: 1;
    transform: translateY(0);
  }
  82% {
    opacity: 0.56;
    transform: translateY(-4px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes intro-white-wash {
  0%, 42% {
    opacity: 0;
  }
  82% {
    opacity: 0.86;
  }
  100% {
    opacity: 1;
  }
}

@keyframes header-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-stage-reveal {
  to {
    opacity: 1;
  }
}

@keyframes hero-image-breathe {
  from {
    transform: scale(1.055);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .header-cta {
    min-width: 150px;
    padding: 0 13px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 16svh;
  }

  .section-grid,
  .section-grid--wide,
  .info {
    grid-template-columns: 1fr;
  }

  .about__photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.18;
  }

  .stay-cards {
    grid-template-columns: 1fr;
  }

  .stay-card,
  .stay-card img {
    min-height: 430px;
  }

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

  .gallery-item,
  .gallery-item--large {
    min-height: 320px;
  }

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: span 2;
  }

  .info__photo {
    min-height: 420px;
  }

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

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

  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .brand__sub {
    display: none;
  }

  .lang-toggle {
    width: 38px;
    min-height: 38px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
    overflow: visible;
    background: #12100f;
  }

  .hero__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    background: #12100f;
  }

  .hero__image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 36%;
    background: linear-gradient(180deg, rgba(18, 16, 15, 0), rgba(18, 16, 15, 0.78) 68%, #12100f);
    pointer-events: none;
  }

  .hero__image img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: saturate(0.8) contrast(0.94) brightness(0.76);
  }

  .motion-ready .hero__image img,
  .motion-ready.is-intro-done .hero__image img {
    transform: none;
    animation: none;
  }

  .hero__shade {
    display: none;
  }

  .hero__content {
    position: relative;
    width: calc(100% - 40px);
    min-height: auto;
    margin: -28px 20px 0;
    padding: 68px 0 84px;
    gap: 19px;
    background: linear-gradient(180deg, rgba(18, 16, 15, 0), #12100f 24%);
  }

  .hero h1 {
    font-size: clamp(36px, 13vw, 56px);
  }

  .scroll-sign {
    display: none;
  }

  .section {
    padding: 76px 20px;
  }

  .section-copy {
    gap: 20px;
  }

  .section__title {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.68;
  }

  .about__photo img {
    aspect-ratio: 0.92;
  }

  .stay-card,
  .stay-card img {
    min-height: 390px;
  }

  .stay-card div {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .gallery-item,
  .gallery-item--large {
    min-height: 220px;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .info {
    padding-left: 0;
    padding-right: 0;
  }

  .info__panel {
    margin: 0 20px;
    padding: 28px 20px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .final-cta {
    min-height: 520px;
    padding: 86px 20px;
  }

  .final-cta__image {
    inset: 0;
  }

  .final-cta__image::before {
    background:
      linear-gradient(0deg, rgba(18, 16, 15, 0.96), rgba(18, 16, 15, 0.78) 48%, rgba(18, 16, 15, 0.28)),
      linear-gradient(90deg, rgba(18, 16, 15, 0.72), rgba(18, 16, 15, 0.08));
  }

  .site-footer {
    padding: 40px 20px 28px;
  }
}

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

  body.is-intro-visible {
    overflow: auto;
  }

  .intro-screen {
    display: none;
  }

  .motion-ready .site-header,
  .motion-ready .hero__content > *,
  .motion-ready .hero__image img {
    opacity: 1;
    transform: none;
  }

  .motion-ready .fade-in,
  .motion-ready .section__title {
    opacity: 1;
    transform: none;
  }

  .motion-ready .about__photo,
  .motion-ready .stay-card,
  .motion-ready .gallery-item,
  .motion-ready .info__photo,
  .motion-ready .final-cta__image {
    clip-path: none;
  }
}
