:root {
  --ink: #171512;
  --muted: #6f6a62;
  --paper: #f3efe7;
  --sheet: #fffaf2;
  --soft: #eee6d9;
  --line: #d8ccba;
  --accent: #c84b2a;
  --accent-soft: #f3d4c7;
  --dark: #11100e;
  --shadow: 0 34px 90px rgba(40, 31, 19, .16);
  --soft-shadow: 0 20px 55px rgba(40, 31, 19, .11);
}

* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 75, 42, .08), transparent 30%),
    linear-gradient(90deg, rgba(17, 16, 14, .035) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
  font-family: Manrope, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
p, li { color: var(--muted); line-height: 1.78; }

.toolbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 54px);
  border-bottom: 1px solid rgba(23, 21, 18, .08);
  background: rgba(243, 239, 231, .9);
  backdrop-filter: blur(16px);
}
.toolbar strong {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.toolbar nav,
.language-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.toolbar a:hover,
.language-nav a.active { color: var(--accent); }

.language-nav {
  justify-content: center;
  width: min(1180px, calc(100% - 44px));
  margin: 34px auto 0;
}
.language-nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, .62);
  box-shadow: 0 10px 24px rgba(40, 31, 19, .06);
}

.page {
  width: min(1280px, calc(100% - 56px));
  margin: 46px auto;
  background: var(--sheet);
  box-shadow: var(--shadow);
}
.cover {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  min-height: 820px;
  overflow: hidden;
}
.cover-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(56px, 6vw, 92px);
}
.brand-row {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.cover-title { padding: 86px 0 72px; }
.eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  max-width: 100%;
  overflow-wrap: break-word;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
}
.lead {
  max-width: 560px;
  margin-top: 34px;
  font-size: 18px;
  line-height: 1.82;
}
.cover-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.cover-price article,
.metric,
.investment-card,
.info-card {
  background: rgba(255, 255, 255, .48);
  box-shadow: var(--soft-shadow);
}
.cover-price article {
  padding: 22px;
  border: 1px solid rgba(216, 204, 186, .82);
}
.cover-price span,
.metric span,
.data-table span,
.info-card span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cover-price strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
}
.cover-media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: 34px 34px 34px 0;
}
.cover-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 70px rgba(17, 16, 14, .22);
}

.sheet-section {
  padding: clamp(64px, 7vw, 104px);
  border-top: 1px solid var(--line);
}
.section-grid {
  display: block;
}
h2 {
  max-width: 980px;
  overflow-wrap: break-word;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}
.summary-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 38px;
  max-width: 980px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.metric {
  min-height: 170px;
  padding: 28px;
  border: 1px solid rgba(216, 204, 186, .8);
}
.metric strong {
  display: block;
  margin-top: 16px;
  font-size: 24px;
}
.metric p {
  margin-top: 14px;
  font-size: 13px;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.42fr .82fr;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--dark);
}
.photo-band img {
  height: 480px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .28);
}
.photo-band aside {
  display: grid;
  gap: 22px;
}
.photo-band aside img { height: 229px; }

.investment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 50px;
}
.investment-card {
  display: grid;
  grid-template-columns: 150px minmax(260px, .46fr) minmax(0, 1fr);
  gap: 34px;
  min-height: auto;
  padding: 38px;
  border: 1px solid rgba(216, 204, 186, .82);
}
.investment-card h3 {
  margin-top: 0;
  overflow-wrap: break-word;
  font-size: 30px;
  line-height: 1.12;
}
.investment-card p { margin-top: 0; }

.details-layout {
  display: grid;
  grid-template-columns: 1fr .76fr;
  gap: 52px;
  align-items: start;
}
.data-table {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.data-table div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(216, 204, 186, .82);
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 12px 30px rgba(40, 31, 19, .07);
}
.data-table strong { font-size: 16px; }
.details-image {
  position: sticky;
  top: 92px;
}
.details-image img {
  height: 570px;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}
.quality-list li,
.info-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(216, 204, 186, .82);
  background: rgba(255, 255, 255, .46);
  box-shadow: 0 14px 34px rgba(40, 31, 19, .08);
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: clamp(58px, 7vw, 86px);
  color: #fff;
  background: var(--dark);
}
.contact-panel .eyebrow { color: #f06b42; }
.contact-panel h2 { color: #fff; }
.contact-panel p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .66);
}
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 2px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 18px 42px rgba(200, 75, 42, .28);
}
.disclaimer {
  padding: 24px clamp(58px, 7vw, 86px) 44px;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 980px) {
  .toolbar { position: static; align-items: flex-start; flex-direction: column; }
  .cover,
  .section-grid,
  .summary-copy,
  .metrics,
  .photo-band,
  .investment-grid,
  .details-layout,
  .quality-list,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .investment-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cover { min-height: auto; }
  .cover-media { min-height: 460px; order: -1; padding: 28px; }
  .cover-title { padding: 42px 0 52px; }
  .photo-band img,
  .photo-band aside img,
  .details-image img { height: auto; }
  .details-image { position: static; }
  .data-table div { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .page { width: min(100% - 24px, 1280px); margin: 24px auto; }
  .language-nav { width: min(100% - 24px, 1180px); justify-content: flex-start; }
  .toolbar nav { gap: 12px 16px; }
  .cover-copy,
  .sheet-section,
  .contact-panel { padding: 34px 28px; }
  .brand-row,
  .cover-price { grid-template-columns: 1fr; display: grid; gap: 16px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(30px, 9vw, 44px); }
  .lead { font-size: 16px; }
}

@media print {
  @page { size: A4; margin: 0; }
  html, body {
    width: 210mm;
    background: #fff;
  }
  body {
    background-image: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .toolbar,
  .language-nav { display: none; }
  .page {
    width: 210mm;
    min-height: 297mm;
    margin: 0;
    box-shadow: none;
    break-after: page;
    page-break-after: always;
  }
  .page:last-child { break-after: auto; }
  .cover {
    grid-template-columns: 1fr;
    min-height: 297mm;
  }
  .cover-copy {
    padding: 18mm 18mm 12mm;
  }
  .cover-title {
    padding: 24mm 0 18mm;
  }
  h1 {
    max-width: 170mm;
    font-size: 34px;
    line-height: 1.05;
  }
  h2 {
    font-size: 28px;
  }
  .lead {
    max-width: 160mm;
    font-size: 12px;
  }
  .cover-media {
    min-height: 94mm;
    padding: 0 18mm 18mm;
  }
  .cover-media img {
    height: 94mm;
  }
  .sheet-section {
    padding: 18mm;
  }
  .summary-copy,
  .metrics,
  .photo-band,
  .investment-card,
  .details-layout,
  .quality-list,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .sheet-section,
  .contact-panel { break-inside: avoid; }
  .details-image { position: static; }
  .button { display: none; }
}
