:root {
  --ink: #18222a;
  --ink-soft: #536069;
  --paper: #f4efe5;
  --paper-deep: #e9e0d1;
  --card: #fffdf8;
  --night: #16353a;
  --night-deep: #0d2529;
  --sea: #1f7778;
  --sea-light: #d8ebE7;
  --signal: #dc5a3f;
  --signal-dark: #b83d29;
  --line: #d7cdbd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 39, 42, 0.14);
  --shadow-small: 0 12px 32px rgba(21, 39, 42, 0.1);
  --radius-large: 30px;
  --radius-medium: 18px;
  --radius-small: 10px;
  --content-wide: 1160px;
  --content-reading: 740px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid #f1bd55;
  outline-offset: 4px;
}

.page-frame {
  width: min(calc(100% - 40px), var(--content-wide));
  margin-inline: auto;
}

.reading-frame {
  width: min(calc(100% - 40px), var(--content-reading));
  margin-inline: auto;
}

.ad-flag {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 80;
  padding: 5px 10px;
  color: var(--white);
  background: var(--signal);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: 0 5px 20px rgba(24, 34, 42, 0.22);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.masthead {
  position: relative;
  z-index: 30;
  color: var(--white);
  background: var(--night-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.masthead__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
}

.wordmark__dot {
  color: #f19a73;
}

.masthead__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 94px;
  color: #b9d0d1;
  font-size: 12px;
}

.masthead__label {
  padding: 4px 9px;
  color: #ffd7c8;
  border: 1px solid rgba(241, 154, 115, 0.5);
  border-radius: 999px;
  font-weight: 700;
}

.story-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(58, 143, 137, 0.42), transparent 29rem),
    var(--night-deep);
}

.story-hero::before {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.story-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.story-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #b9cccd;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.story-hero__tag {
  padding: 6px 10px;
  color: var(--night-deep);
  background: #f1bd55;
  border-radius: 5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5.4vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.story-hero h1 em {
  display: block;
  margin-top: 14px;
  color: #f29a74;
  font-style: normal;
}

.story-hero__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: #d7e1e1;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.6;
}

.story-hero__visual {
  position: relative;
}

.story-hero__visual::before {
  content: "";
  position: absolute;
  inset: -18px 24px 20px -18px;
  border: 1px solid rgba(241, 189, 85, 0.48);
  border-radius: 42% 58% 48% 52% / 56% 42% 58% 44%;
  transform: rotate(-2deg);
}

.story-hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 60% center;
  border-radius: 46% 54% 42% 58% / 53% 42% 58% 47%;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.35);
}

.story-hero__caption {
  position: absolute;
  right: -18px;
  bottom: 30px;
  width: 210px;
  margin: 0;
  padding: 14px 16px;
  color: var(--ink);
  background: #f8f2e8;
  border-radius: 12px 0 0 12px;
  box-shadow: var(--shadow-small);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.disclosure {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 40px), 940px);
  margin: -36px auto 58px;
  padding: 20px 26px;
  color: #583f17;
  background: #fff3cf;
  border: 1px solid #e9ca76;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-small);
  font-size: 13px;
  line-height: 1.6;
}

.disclosure strong {
  color: #3c2d13;
}

.article-shell {
  position: relative;
  padding-bottom: 40px;
}

.opening-note {
  margin: 0 0 38px;
  padding: 0 0 0 26px;
  border-left: 4px solid var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.55;
}

.chapter {
  margin-top: 54px;
}

.chapter__number {
  display: block;
  margin-bottom: 8px;
  color: var(--sea);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chapter h2 {
  margin: 0 0 22px;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 43px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.chapter p {
  margin: 0 0 22px;
}

.scene-card {
  width: min(calc(100% - 40px), 1040px);
  margin: 58px auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.scene-card--reverse {
  grid-template-columns: 0.82fr 1.18fr;
}

.scene-card__media {
  min-height: 460px;
}

.scene-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-card--reverse .scene-card__media {
  order: 2;
}

.scene-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
}

.scene-card__kicker {
  margin: 0 0 14px;
  color: var(--sea);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scene-card__copy h3 {
  margin: 0 0 16px;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.18;
}

.scene-card__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.pull-line {
  position: relative;
  width: min(calc(100% - 40px), 920px);
  margin: 64px auto;
  padding: 58px clamp(30px, 7vw, 80px);
  color: var(--white);
  background: var(--sea);
  border-radius: 4px 48px 4px 48px;
  box-shadow: var(--shadow);
}

.pull-line::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 24px;
  color: rgba(255, 255, 255, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 100px;
  line-height: 1;
}

.pull-line p {
  position: relative;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3.3vw, 35px);
  font-style: italic;
  line-height: 1.45;
}

.pull-line cite {
  display: block;
  margin-top: 20px;
  color: #d6efeb;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.facts-band {
  margin-top: 72px;
  padding: 74px 0;
  color: var(--white);
  background: var(--night);
}

.facts-band__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.facts-band__head h2 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.4vw, 51px);
  font-weight: 400;
  line-height: 1.12;
}

.facts-band__head p {
  max-width: 330px;
  margin: 0;
  color: #bad0d1;
  font-size: 13px;
}

.facts-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.fact {
  min-height: 185px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.fact__index {
  display: block;
  margin-bottom: 28px;
  color: #f1bd55;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.fact strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 15px;
}

.fact p {
  margin: 0;
  color: #b8cccd;
  font-size: 12px;
  line-height: 1.55;
}

.verdict {
  padding-top: 72px;
}

.offer-panel {
  position: relative;
  width: min(calc(100% - 40px), 1000px);
  margin: 78px auto 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.06), transparent 52%),
    var(--night-deep);
  border-radius: var(--radius-large);
  box-shadow: 0 32px 76px rgba(13, 37, 41, 0.27);
}

.offer-panel__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  padding: clamp(38px, 7vw, 76px);
}

.offer-panel__stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  margin: 0;
  padding: 5px 9px;
  color: #ffd1c3;
  border: 1px solid rgba(242, 154, 116, 0.45);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-panel__mini {
  margin: 0 0 13px;
  color: #f1bd55;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-panel h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 5vw, 59px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.offer-panel__summary {
  margin: 0;
  color: #bfd0d1;
  font-size: 14px;
}

.offer-panel__availability {
  margin: 0 0 18px;
  color: #f4cc75;
  font-size: 18px;
  font-weight: 800;
}

.offer-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 14px 24px;
  color: var(--white);
  background: var(--signal);
  border-radius: var(--radius-small);
  box-shadow: 0 14px 30px rgba(220, 90, 63, 0.28);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.offer-panel__button:hover {
  background: var(--signal-dark);
  transform: translateY(-2px);
}

.offer-panel__microcopy {
  margin: 15px 0 0;
  color: #91aaac;
  font-size: 11px;
  line-height: 1.55;
}

.site-footer {
  margin-top: 90px;
  padding: 55px 0 26px;
  color: #9db2b4;
  background: #091d21;
  font-size: 12px;
  line-height: 1.65;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 30px;
}

.site-footer__company {
  max-width: 760px;
  margin: 10px 0 0;
  color: #799497;
}

.site-footer__links {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.site-footer__links a,
.site-footer__legal a {
  color: #d3e0e0;
}

.site-footer__links a:hover,
.site-footer__legal a:hover {
  color: var(--white);
}

.site-footer__legal {
  display: grid;
  gap: 9px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal strong {
  color: #d9e3e4;
}

.site-footer__copyright {
  margin: 22px 0 0;
  color: #59767a;
  text-align: center;
}

.legal-hero {
  padding: 70px 0 65px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 30%, rgba(31, 119, 120, 0.45), transparent 26rem),
    var(--night-deep);
}

.legal-hero__tag {
  margin: 0 0 11px;
  color: #f1bd55;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.legal-hero p {
  margin: 0;
  color: #b9cdce;
  font-size: 14px;
}

.legal-content {
  padding: 64px 0 5px;
}

.legal-section {
  margin-bottom: 46px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 18px;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 35px);
  font-weight: 400;
  line-height: 1.2;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section ul {
  margin: 12px 0 16px;
  padding-left: 24px;
}

.legal-section a {
  color: #12686a;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-card {
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-alert {
  padding: 24px 26px;
  background: #fff3cf;
  border-left: 5px solid #dcae42;
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

@media (max-width: 900px) {
  .story-hero {
    padding-top: 58px;
  }

  .story-hero__grid {
    grid-template-columns: 1fr;
  }

  .story-hero__copy {
    max-width: 710px;
  }

  .story-hero__visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .story-hero__image {
    aspect-ratio: 5 / 4;
    border-radius: 36px 80px 36px 80px;
  }

  .scene-card,
  .scene-card--reverse {
    grid-template-columns: 1fr;
  }

  .scene-card--reverse .scene-card__media {
    order: 0;
  }

  .scene-card__media {
    min-height: 360px;
    max-height: 520px;
  }

  .facts-band__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .offer-panel__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .page-frame,
  .reading-frame,
  .scene-card,
  .pull-line,
  .offer-panel,
  .disclosure {
    width: min(calc(100% - 28px), var(--content-wide));
  }

  .masthead__inner {
    min-height: 62px;
  }

  .masthead__meta {
    padding-right: 78px;
  }

  .masthead__meta > span:not(.masthead__label) {
    display: none;
  }

  .ad-flag {
    top: 12px;
    right: 9px;
  }

  .story-hero {
    padding: 50px 0 68px;
  }

  .story-hero h1 {
    font-size: clamp(40px, 12.5vw, 58px);
  }

  .story-hero__lead {
    margin-top: 22px;
  }

  .story-hero__visual::before {
    inset: -10px 12px 12px -10px;
  }

  .story-hero__image {
    aspect-ratio: 4 / 5;
    border-radius: 22px 55px 22px 55px;
  }

  .story-hero__caption {
    right: -7px;
    bottom: 18px;
    width: 180px;
  }

  .disclosure {
    margin-top: -24px;
    margin-bottom: 44px;
    padding: 17px 18px;
  }

  .opening-note {
    padding-left: 19px;
    font-size: 21px;
  }

  .chapter {
    margin-top: 43px;
  }

  .scene-card {
    margin-top: 46px;
    margin-bottom: 46px;
    border-radius: 20px;
  }

  .scene-card__media {
    min-height: 250px;
  }

  .scene-card__copy {
    padding: 30px 24px 34px;
  }

  .pull-line {
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 48px 26px 36px;
    border-radius: 4px 30px 4px 30px;
  }

  .facts-band {
    margin-top: 54px;
    padding: 54px 0;
  }

  .facts-band__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact {
    min-height: 170px;
    padding: 22px;
  }

  .fact__index {
    margin-bottom: 19px;
  }

  .verdict {
    padding-top: 54px;
  }

  .offer-panel {
    margin-top: 58px;
    border-radius: 20px;
  }

  .offer-panel__inner {
    padding: 65px 24px 32px;
  }

  .offer-panel__stamp {
    top: 19px;
    right: 19px;
  }

  .site-footer {
    margin-top: 68px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-hero {
    padding: 54px 0 50px;
  }

  .legal-content {
    padding-top: 48px;
  }

  .legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }
}

@media (max-width: 420px) {
  .wordmark {
    font-size: 20px;
  }

  .story-hero__eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .facts-band__grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .offer-panel__button {
    transition: none;
  }
}
