:root {
  --bg: #f3f1ec;
  --paper: #fff;
  --ink: #080808;
  --muted: #66645f;
  --line: #d2cec5;
  --soft: #ebe7df;
  --dark: #0c0c0c;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.055) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(rgba(8, 8, 8, 0.04) 1px, transparent 1px) 0 0 / 88px 88px,
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.76), transparent 34rem);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.intro-film {
  position: fixed;
  inset: 0;
  z-index: 99;
  overflow: hidden;
  pointer-events: none;
  background: var(--ink);
  animation: film-exit 5s ease forwards;
}

.film-frame {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.1);
  opacity: 0;
  transform: scale(1.08);
}

.film-one {
  background-image: url("assets/img/hres-intro-icons.png");
  animation: dissolve-one 5s ease forwards;
}

.film-two {
  background-image: url("assets/img/hres-luxury-hero.png");
  animation: dissolve-two 5s ease forwards;
}

.film-three {
  background-image: url("assets/img/hres-offer-asset.png");
  animation: dissolve-three 5s ease forwards;
}

.film-caption {
  position: absolute;
  left: clamp(28px, 7vw, 96px);
  bottom: clamp(28px, 7vw, 86px);
  color: var(--paper);
  text-transform: uppercase;
}

.film-caption span {
  display: block;
  font-size: clamp(3.8rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 0.8;
}

.film-caption small {
  display: block;
  margin-top: 18px;
  font-size: clamp(0.76rem, 1.4vw, 1rem);
  letter-spacing: 0.18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid var(--ink);
  background: rgba(243, 241, 236, 0.91);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  align-content: center;
  min-width: 278px;
  padding: 15px 28px;
  border-right: 1px solid var(--ink);
  text-decoration: none;
}

.brand span {
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  line-height: 0.78;
}

.brand small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-tabs {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  overflow-x: auto;
}

.tab {
  min-width: 96px;
  padding: 0 14px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
}

.tab:hover,
.tab:focus-visible,
.tab.is-active {
  background: var(--ink);
  color: var(--paper);
  outline: none;
}

main {
  width: min(1680px, 100%);
  margin: 0 auto;
}

.panel {
  display: none;
  min-height: calc(100vh - 126px);
  padding: clamp(20px, 3.2vw, 54px);
}

.panel.is-active {
  display: block;
}

.hero-luxury {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  min-height: calc(100vh - 142px);
  border: 1px solid var(--ink);
  background: var(--paper);
}

.hero-media {
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.hero-media img,
.editorial-grid img,
.offer-stage img,
.press-layout img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 70px);
  border-left: 1px solid var(--ink);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8.6vw, 9rem);
  line-height: 0.86;
  font-weight: 900;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
  line-height: 1.05;
}

p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.55;
}

.offer-facts {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.08;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-action,
.ghost-action,
.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 22px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 900;
  cursor: pointer;
}

.ghost-action,
.download-link:hover,
.download-link:focus-visible,
.primary-action:not(:disabled):hover,
.primary-action:not(:disabled):focus-visible {
  background: transparent;
  color: var(--ink);
  outline: none;
}

.ghost-action:hover,
.ghost-action:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: none;
}

.primary-action:disabled {
  border-color: var(--line);
  background: var(--soft);
  color: var(--muted);
  cursor: not-allowed;
}

.luxury-strip,
.metrics,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
  border-top: 0;
  background: rgba(255, 255, 255, 0.72);
}

.luxury-strip article,
.metrics article,
.news-grid article {
  min-height: 235px;
  padding: clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--ink);
}

.luxury-strip article:last-child,
.news-grid article:last-child {
  border-right: 0;
}

.luxury-strip span,
.news-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-grid,
.offer-stage,
.press-layout,
.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  margin-top: clamp(28px, 4vw, 58px);
  border: 1px solid var(--ink);
  background: var(--paper);
}

.editorial-copy,
.offer-intro,
.press-layout > div,
.contact-panel > div {
  padding: clamp(28px, 4vw, 58px);
}

.editorial-grid figure,
.offer-stage figure {
  min-height: 520px;
  margin: 0;
  border-left: 1px solid var(--ink);
}

.offer-stage {
  grid-template-columns: 1fr 0.9fr;
  margin-top: 0;
}

.offer-stage figure {
  min-height: 470px;
  border-left: 0;
  border-right: 1px solid var(--ink);
}

.gate,
.offer-view,
.doc-toolbar,
.market-hero,
.market-note,
.imprint {
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.gate {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(420px, 1.32fr);
  border-top: 0;
}

.gate-copy,
.confirm-form {
  padding: clamp(24px, 4vw, 46px);
}

.gate-copy {
  border-right: 1px solid var(--ink);
  background: var(--dark);
  color: var(--paper);
}

.gate-copy p {
  color: #d6d2c9;
}

.confirm-form {
  display: grid;
  gap: 18px;
  align-content: start;
  max-width: 920px;
}

.bot-field {
  display: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.is-error {
  color: #8f1d1d;
}

.identity-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.identity-fields label,
.identity-fields label:last-child {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-width: 0;
}

.identity-fields label:last-child {
  grid-column: 1 / -1;
}

.identity-fields span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-fields input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 1rem;
}

.confirm-form label,
.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  line-height: 1.42;
}

.confirm-form label {
  grid-template-columns: 22px 1fr;
  gap: 14px;
}

.identity-fields label,
.identity-fields label:last-child {
  grid-template-columns: 1fr;
  gap: 8px;
}

.confirm-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--ink);
}

.confirm-form .primary-action {
  width: min(100%, 380px);
  margin-top: 16px;
}

.offer-view {
  margin-top: 28px;
}

.doc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid var(--ink);
}

.doc-toolbar h1,
.doc-toolbar h2 {
  margin-bottom: 0;
}

.doc-toolbar h1 {
  font-size: clamp(2.4rem, 6vw, 6.5rem);
}

.pdf-frame {
  display: block;
  width: 100%;
  height: min(78vh, 920px);
  border: 1px solid var(--ink);
  border-top: 0;
  background: var(--paper);
}

.market-hero {
  padding: clamp(30px, 5vw, 70px);
}

.metrics {
  grid-template-columns: repeat(4, 1fr);
  border-top: 0;
}

.metrics article:last-child {
  border-right: 0;
}

.metrics span {
  display: block;
  margin-bottom: 42px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 0.9;
}

.metrics p,
.news-grid p,
.luxury-strip p {
  font-size: 0.98rem;
}

.market-note {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 52px);
}

.source-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
}

.press-layout {
  grid-template-columns: 0.95fr 1.05fr;
  margin-top: 0;
}

.press-layout img {
  min-height: 470px;
  border-left: 1px solid var(--ink);
}

.contact-panel {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 58px);
  border-left: 1px solid var(--ink);
}

.contact-form span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.imprint {
  max-width: 1060px;
  padding: clamp(28px, 5vw, 66px);
}

.imprint h1 {
  font-size: clamp(2.8rem, 7vw, 7rem);
}

dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--ink);
}

dl div {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

@keyframes dissolve-one {
  0%,
  38% {
    opacity: 1;
    transform: scale(1);
  }
  54%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes dissolve-two {
  0%,
  28% {
    opacity: 0;
  }
  48%,
  72% {
    opacity: 0.92;
    transform: scale(1.02);
  }
  88%,
  100% {
    opacity: 0;
  }
}

@keyframes dissolve-three {
  0%,
  58% {
    opacity: 0;
  }
  78%,
  94% {
    opacity: 0.9;
    transform: scale(1.01);
  }
  100% {
    opacity: 0;
  }
}

@keyframes film-exit {
  0%,
  88% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-film {
    display: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    position: static;
    display: block;
  }

  .brand {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .nav-tabs {
    justify-content: flex-start;
  }

  .tab {
    min-height: 58px;
  }

  .hero-luxury,
  .editorial-grid,
  .offer-stage,
  .gate,
  .press-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .editorial-grid figure,
  .press-layout img,
  .contact-form {
    border-left: 0;
  }

  .hero-copy,
  .contact-form {
    border-top: 1px solid var(--ink);
  }

  .offer-stage figure {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .gate-copy {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

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

  .luxury-strip,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .luxury-strip article,
  .news-grid article,
  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .metrics article:nth-child(2n) {
    border-left: 1px solid var(--ink);
  }

  .luxury-strip article:last-child,
  .news-grid article:last-child,
  .metrics article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .panel {
    padding: 14px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .hero-media,
  .editorial-grid figure,
  .offer-stage figure,
  .press-layout img {
    min-height: 330px;
  }

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

  .metrics article:nth-child(2n) {
    border-left: 0;
  }

  .metrics article {
    border-bottom: 1px solid var(--ink);
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .doc-toolbar,
  .site-footer,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .download-link,
  .primary-action,
  .ghost-action {
    width: 100%;
  }

  .identity-fields {
    grid-template-columns: 1fr;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
