@font-face {
  font-family: "Literature Decor";
  font-style: normal;
  font-weight: 400;
  src:
    local("LiteratureDecor"),
    local("Literature Decor"),
    url("assets/fonts/Literature-Decor.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --ink: #19150f;
  --muted: #6c6254;
  --paper: #f4efe3;
  --paper-deep: #e8dec9;
  --panel: #fbf7ed;
  --line: #cfc0a6;
  --gold: #a7792f;
  --gold-light: #d7bb72;
  --green: #112f28;
  --green-soft: #25483e;
  --wine: #5b2030;
  --glass: rgba(255, 253, 246, 0.2);
  --glass-strong: rgba(255, 253, 246, 0.68);
  --shadow: 0 28px 80px rgba(33, 24, 10, 0.18);
  --font-main: "Dejavu-serif_415", "DejaVu Serif", Georgia, "Times New Roman", serif;
  --font-ru: "Literature Decor", "LiteratureDecor", var(--font-main);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background:
    linear-gradient(180deg, rgba(105, 75, 28, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--paper), #faf6ec 44%, var(--paper-deep));
  background-size: 44px 44px, auto;
  color: var(--ink);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.ru-text {
  font-family: var(--font-ru);
}

.no-ru {
  font-family: var(--font-main);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: clamp(12px, 3vw, 40px);
  right: clamp(12px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  color: #fffdf7;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.18), rgba(255, 253, 247, 0.05)),
    rgba(15, 34, 29, 0.42);
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(22px) saturate(148%);
  -webkit-backdrop-filter: blur(22px) saturate(148%);
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.16);
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 1px;
  background: currentColor;
  transform-origin: bottom;
}

.brand-mark::before {
  height: 6px;
  transform: translateX(-50%) rotate(35deg);
}

.brand-mark::after {
  height: 4px;
  transform: translateX(-50%) rotate(-80deg);
}

.nav {
  display: flex;
  gap: 6px;
  color: rgba(255, 253, 247, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav a:hover {
  color: #fffdf7;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 82px) 86px;
  background: #0f1512;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 22, 19, 0.96), rgba(18, 42, 34, 0.68) 48%, rgba(18, 42, 34, 0.16)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(13, 18, 15, 0.82)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Lange%201%20Moon%20Phase%20%2850386634128%29.jpg?width=2200") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 0 72%, rgba(255, 253, 247, 0.08) 72% 72.15%, transparent 72.15%);
  pointer-events: none;
}

.hero > :not(.hero-media),
.intro > *,
.closing > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 740px;
  color: #fffdf7;
  position: relative;
  padding-left: clamp(18px, 3vw, 30px);
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold-light), rgba(255, 253, 247, 0.12));
}

.eyebrow,
.section-kicker,
.year,
.model {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow {
  color: #d8bd75;
}

.hero h1 {
  margin: 16px 0 22px;
  font-size: clamp(3.35rem, 10vw, 8.9rem);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 500;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.4);
}

.hero p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 88px);
  width: min(1120px, calc(100% - clamp(28px, 7vw, 104px)));
  margin: -56px auto 0;
  position: relative;
  z-index: 3;
  padding: clamp(40px, 5vw, 68px);
  border: 1px solid rgba(167, 121, 47, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.28)),
    rgba(246, 239, 226, 0.62);
  box-shadow: 0 30px 90px rgba(39, 27, 12, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  top: clamp(28px, 4vw, 46px);
  bottom: clamp(28px, 4vw, 46px);
  left: clamp(20px, 3vw, 38px);
  width: 1px;
  z-index: 0;
  background: linear-gradient(180deg, rgba(167, 121, 47, 0.3), rgba(167, 121, 47, 0.06));
  pointer-events: none;
}

.intro h2,
.closing h2 {
  margin: 10px 0 0;
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
}

.intro p:last-child,
.closing p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.brand-grid {
  display: grid;
  gap: 0;
  margin-top: -34px;
  padding: 124px clamp(16px, 4vw, 48px) 54px;
  position: relative;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(91, 32, 48, 0.06), transparent 36%),
    linear-gradient(180deg, #eee5d5, #f7f1e6);
  border-bottom: 1px solid var(--line);
}

.watch-card {
  --card-overlap: 46px;
  --card-copy-gap: clamp(22px, 3.2vw, 46px);
  --card-copy-bottom-gap: calc(var(--card-copy-gap) + var(--card-overlap));
  min-height: 620px;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.52), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.13)),
    rgba(251, 247, 237, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow:
    0 26px 76px rgba(33, 24, 10, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(87, 61, 25, 0.1);
  backdrop-filter: blur(28px) saturate(152%);
  -webkit-backdrop-filter: blur(28px) saturate(152%);
}

.watch-card + .watch-card {
  margin-top: calc(-1 * var(--card-overlap));
}

.watch-card:last-child {
  --card-copy-bottom-gap: var(--card-copy-gap);
}

.watch-card:nth-child(odd) {
  transform: translateX(clamp(-18px, -1.4vw, -6px));
}

.watch-card:nth-child(even) {
  transform: translateX(clamp(6px, 1.4vw, 18px));
}

.watch-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 48%);
  pointer-events: none;
  z-index: 1;
}

.watch-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(89, 61, 25, 0.08);
  pointer-events: none;
  z-index: 1;
}

.watch-card:nth-child(even) {
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.95fr);
}

.watch-card:nth-child(even) img {
  order: 2;
}

.watch-card img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  background: #e8e0d3;
  filter: saturate(0.96) contrast(1.02);
  opacity: 0.82;
}

.watch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
  align-self: center;
  min-height: calc(100% - var(--card-copy-gap) - var(--card-copy-bottom-gap));
  margin: var(--card-copy-gap) var(--card-copy-gap) var(--card-copy-bottom-gap);
  padding: clamp(30px, 4vw, 58px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    rgba(252, 248, 238, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  box-shadow:
    0 22px 60px rgba(39, 27, 12, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(88, 61, 24, 0.08);
  backdrop-filter: blur(26px) saturate(142%);
  -webkit-backdrop-filter: blur(26px) saturate(142%);
  overflow: hidden;
  transform: none;
}

.watch-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 74%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), transparent);
  pointer-events: none;
}

.watch-card:nth-child(even) .watch-copy {
  background:
    linear-gradient(215deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    rgba(252, 248, 238, 0.42);
  transform: none;
}

.watch-copy h2 {
  margin: 10px 0 20px;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 500;
  color: #241a12;
}

.watch-copy p:not(.year) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.model {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  color: #15352d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2)),
    rgba(235, 225, 207, 0.54);
  border: 1px solid rgba(167, 121, 47, 0.32);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 12px 34px rgba(44, 31, 13, 0.12);
  padding: 10px 14px;
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.closing {
  margin-top: -18px;
  position: relative;
  z-index: 1;
  padding: 124px clamp(20px, 6vw, 80px) 106px;
  background: linear-gradient(180deg, var(--green), #0c211c);
  color: #fffdf7;
  overflow: hidden;
}

.closing::before {
  content: "";
  position: absolute;
  top: 78px;
  bottom: 70px;
  left: clamp(10px, 3vw, 40px);
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 187, 114, 0.34), rgba(215, 187, 114, 0.04));
  pointer-events: none;
}

.closing .section-kicker {
  color: #d8b76d;
}

.closing p:last-child {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 253, 247, 0.78);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(20px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(91, 32, 48, 0.2), transparent 34%),
    #15120e;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.88rem;
}

.footer p {
  margin: 0;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.source-links a {
  color: #fffdf7;
  text-decoration-color: rgba(255, 253, 247, 0.28);
  text-underline-offset: 4px;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .intro,
  .watch-card,
  .watch-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .intro {
    width: min(100% - 28px, 680px);
    margin-top: -34px;
    padding: 34px 24px;
  }

  .brand-grid {
    margin-top: -20px;
    padding: 74px 14px 36px;
  }

  .watch-card:nth-child(even) img {
    order: 0;
  }

  .watch-card {
    --card-overlap: 22px;
    --card-copy-gap: 16px;
    min-height: 0;
    transform: none;
  }

  .watch-card + .watch-card {
    margin-top: calc(-1 * var(--card-overlap));
  }

  .watch-card img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .watch-copy,
  .watch-card:nth-child(even) .watch-copy {
    min-height: auto;
    margin: var(--card-copy-gap) var(--card-copy-gap) var(--card-copy-bottom-gap);
    transform: none;
  }
}

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

  .nav {
    margin-top: 12px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 152px;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 5.4rem);
  }

  .watch-copy {
    padding: 30px 18px 34px;
  }

  .watch-copy h2 {
    font-size: clamp(2.15rem, 13vw, 3.7rem);
  }
}
