:root {
  --home-ink: #fffaf4;
  --home-muted: #eee3db;
  --home-line: rgba(255, 250, 244, .48);
  --home-accent: #d7b576;
}

html.global-topnav-root:has(.premium-home),
html.global-topnav-root:has(.premium-home) body { background: #171411; }
html.global-topnav-root body:has(.premium-home) { overflow-x: hidden; }
html.global-topnav-root body:has(.premium-home) .site-container,
html.global-topnav-root body:has(.premium-home) .site-content {
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

.premium-home {
  background: #171411;
  color: var(--home-ink);
  min-height: calc(100svh - var(--topnav-height));
  overflow: hidden;
  position: relative;
}

.premium-home__stage {
  align-items: end;
  display: grid;
  isolation: isolate;
  min-height: calc(100svh - var(--topnav-height));
  overflow: hidden;
  position: relative;
}

.premium-home__photo,
.premium-home__photo::after { inset: 0; position: absolute; }
.premium-home__photo {
  --home-frame-x: 22%;
  --home-frame-y: 7%;
  background: #28221d;
  clip-path: inset(0);
  overflow: hidden;
  z-index: -2;
}
.premium-home__photo img {
  filter: saturate(1) brightness(1) contrast(1);
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  transform: scale(1.018);
  width: 100%;
}
.premium-home__photo::after {
  background: linear-gradient(90deg, rgba(17, 14, 12, .8) 0%, rgba(17, 14, 12, .42) 47%, rgba(17, 14, 12, .08) 80%), linear-gradient(0deg, rgba(14, 11, 9, .58) 0%, transparent 50%);
  content: '';
}

.premium-home__content {
  box-sizing: border-box;
  display: grid;
  gap: clamp(22px, 3vh, 36px);
  padding: clamp(42px, 7vw, 112px) clamp(24px, 7vw, 112px) clamp(44px, 8vh, 88px);
  width: min(980px, 100%);
  z-index: 1;
}

.premium-home h1 {
  color: var(--home-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(56px, 8.2vw, 96px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .9;
  margin: 0;
  max-width: 10ch;
  text-wrap: balance;
}
.premium-home__line { display: block; overflow: hidden; padding-bottom: .1em; }
.premium-home__line > span { display: block; }
.premium-home p {
  color: var(--home-muted);
  font-family: ftnk, 'Helvetica Neue', sans-serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  margin: 0;
  max-width: 37ch;
}

.premium-home__entry {
  align-items: center;
  color: var(--home-ink);
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(54px, 1fr) 48px;
  margin-top: clamp(5px, 1vh, 14px);
  max-width: 470px;
  min-height: 62px;
  padding: 0;
  text-decoration: none;
}
.premium-home__entry-label {
  font-family: ftnk, 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.premium-home__entry-rule {
  background: var(--home-line);
  height: 1px;
  transform: scaleX(1);
  transform-origin: right;
  transition: background-color 220ms ease-out, transform 360ms cubic-bezier(.16, 1, .3, 1);
}
.premium-home__entry-icon {
  align-items: center;
  border: 1px solid var(--home-line);
  box-sizing: border-box;
  display: flex;
  height: 48px;
  justify-content: center;
  transition: background-color 220ms ease-out, border-color 220ms ease-out, color 220ms ease-out;
  width: 48px;
}
.premium-home__entry-icon svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 280ms cubic-bezier(.16, 1, .3, 1);
  width: 21px;
}
.premium-home__entry:hover .premium-home__entry-rule,
.premium-home__entry:focus-visible .premium-home__entry-rule {
  background: var(--home-accent);
  transform: scaleX(.93);
  transform-origin: left;
}
.premium-home__entry:hover .premium-home__entry-icon,
.premium-home__entry:focus-visible .premium-home__entry-icon {
  background: var(--home-ink);
  border-color: var(--home-ink);
  color: #37291e;
}
.premium-home__entry:hover .premium-home__entry-icon svg,
.premium-home__entry:focus-visible .premium-home__entry-icon svg { transform: translateX(3px); }
.premium-home__entry:focus-visible { outline: 3px solid var(--home-accent); outline-offset: 7px; }

html.is-home-motion-ready .premium-home__photo { animation: home-frame-open 1250ms cubic-bezier(.16, 1, .3, 1) 180ms both; }
html.is-home-motion-ready .premium-home__photo img { animation: home-photo-develop 1400ms cubic-bezier(.16, 1, .3, 1) 180ms both; }
html.is-home-settled.is-home-visible .premium-home__photo img { animation: home-photo-drift 10s ease-in-out infinite alternate; }
html.is-home-motion-ready .premium-home__line > span { animation: home-title-develop 700ms cubic-bezier(.16, 1, .3, 1) both; }
html.is-home-motion-ready .premium-home p,
html.is-home-motion-ready .premium-home__entry { animation: home-detail-arrive 520ms cubic-bezier(.16, 1, .3, 1) both; }
html.is-home-motion-ready .premium-home__line:first-child > span { animation-delay: 540ms; }
html.is-home-motion-ready .premium-home__line:nth-child(2) > span { animation-delay: 650ms; }
html.is-home-motion-ready .premium-home p { animation-delay: 790ms; }
html.is-home-motion-ready .premium-home__entry { animation-delay: 900ms; }

@keyframes home-frame-open {
  from { clip-path: inset(var(--home-frame-y) var(--home-frame-x)); }
  to { clip-path: inset(0); }
}
@keyframes home-photo-develop {
  from { filter: saturate(.18) brightness(.5) contrast(.86); transform: scale(1.09); }
  to { filter: saturate(1) brightness(1) contrast(1); transform: scale(1.018); }
}
@keyframes home-photo-drift {
  from { transform: scale(1.018) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-1%, -.65%, 0); }
}
@keyframes home-title-develop {
  from { clip-path: inset(0 0 100% 0); opacity: .25; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes home-detail-arrive {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

html.global-topnav-root body:has(.premium-home) .cookie-banner.show {
  backdrop-filter: blur(12px);
  background: rgba(23, 20, 17, .94) !important;
  border-top: 1px solid rgba(255, 250, 244, .2);
  box-sizing: border-box;
  color: var(--home-muted) !important;
  padding: 12px 52px 12px 20px;
  text-align: left;
  width: 100%;
}
html.global-topnav-root body:has(.premium-home) .cookie-banner p {
  font-family: ftnk, 'Helvetica Neue', sans-serif;
  font-size: 11px;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 1180px;
}
html.global-topnav-root body:has(.premium-home) .cookie-banner a {
  color: var(--home-ink);
  margin-left: 10px;
  text-decoration-color: var(--home-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
html.global-topnav-root body:has(.premium-home) .cookie-banner .close-btn { height: 16px; right: 22px; width: 16px; }
html.global-topnav-root body:has(.premium-home) .cookie-banner .close-btn .stroke { fill: var(--home-ink); }

@media (max-width: 720px) {
  .premium-home__photo img { object-position: 60% 42%; }
  .premium-home__photo::after { background: linear-gradient(0deg, rgba(15, 12, 10, .84) 0%, rgba(15, 12, 10, .34) 65%, rgba(15, 12, 10, .08) 100%); }
  .premium-home__content { gap: 20px; padding: 38px 22px 112px; }
  .premium-home h1 { font-size: clamp(50px, 15vw, 72px); }
  .premium-home__entry { gap: 12px; grid-template-columns: auto minmax(30px, 1fr) 44px; max-width: 100%; min-height: 56px; }
  .premium-home__entry-label { font-size: 11px; letter-spacing: .08em; }
  .premium-home__entry-icon { height: 44px; width: 44px; }
  html.global-topnav-root body:has(.premium-home) .cookie-banner.show { padding: 10px 40px 10px 12px; }
  html.global-topnav-root body:has(.premium-home) .cookie-banner p { font-size: 10px; line-height: 1.35; max-width: none; }
  html.global-topnav-root body:has(.premium-home) .cookie-banner a { margin-left: 6px; }
  html.global-topnav-root body:has(.premium-home) .cookie-banner .close-btn { right: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .premium-home__photo,
  .premium-home__photo img,
  .premium-home__line > span,
  .premium-home p,
  .premium-home__entry {
    animation: none !important;
    clip-path: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .premium-home__entry-rule,
  .premium-home__entry-icon,
  .premium-home__entry-icon svg { transition: none; }
}