
:root {
  --zf-red: #c90012;
  --zf-red-dark: #97000b;
  --ink: #181716;
  --charcoal: #232120;
  --paper: #f3f1ee;
  --line: #d8d3ce;
  --muted: #6d6965;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 12px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(24, 23, 22, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.brand {
  justify-self: start;
}

.brand img {
  width: 118px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  color: #4f4b48;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--zf-red);
}

.language-switch {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 7px;
  color: #8b8783;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switch button {
  padding: 6px 2px;
  border: 0;
  background: transparent;
  color: #8b8783;
  cursor: pointer;
}

.language-switch button.active,
.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--zf-red);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: clamp(38px, 6vw, 78px) clamp(22px, 6vw, 92px) clamp(48px, 7vw, 96px);
  background: var(--white);
}

.hero::after {
  position: absolute;
  right: -18vw;
  bottom: -37vw;
  width: 58vw;
  height: 58vw;
  border: min(9vw, 130px) solid rgba(201, 0, 18, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(22px, 6vw, 92px);
  width: 5px;
  background: var(--zf-red);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin-left: clamp(18px, 2.4vw, 38px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--zf-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.archive-copy h2,
.contacts-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero .eyebrow {
  max-width: 990px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 6.4vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 940px;
  margin-top: 26px;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: var(--zf-red);
}

.hero h1 span + span {
  margin-top: 6px;
}

.hero-intro {
  max-width: 720px;
  margin: 27px 0 0;
  color: #4f4b48;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 29px;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meta-separator {
  width: 34px;
  height: 2px;
  background: var(--zf-red);
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-icon,
.contact-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  border-color: var(--zf-red);
  background: var(--zf-red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--zf-red-dark);
  background: var(--zf-red-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.edition-mark {
  position: absolute;
  z-index: 1;
  right: clamp(26px, 5vw, 80px);
  bottom: 30px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: rgba(201, 0, 18, 0.14);
}

.edition-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 700;
  line-height: 0.72;
}

.edition-mark small {
  max-width: 70px;
  font-size: clamp(0.66rem, 0.9vw, 0.9rem);
  font-weight: 900;
  line-height: 1.08;
}

.presentation-section {
  padding: clamp(54px, 6.5vw, 92px) clamp(18px, 5vw, 76px) clamp(56px, 7vw, 96px);
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: flex;
  max-width: 1380px;
  margin: 0 auto 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.presentation-section > .section-heading {
  display: none;
}

.presentation-section {
  padding-top: clamp(28px, 3.5vw, 50px);
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1;
}

.dark-heading .eyebrow {
  color: #f05b67;
}

.slide-counter {
  margin: 0;
  color: #aaa5a1;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-counter strong {
  color: var(--white);
  font-size: 1.35rem;
}

.viewer-shell {
  max-width: 1380px;
  margin: 0 auto;
}

.slide-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #080808;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.42);
}

.slide-stage:fullscreen {
  display: grid;
  place-items: center;
  background: #000;
}

.slide-stage:fullscreen img {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
}

.slide-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stage-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 50px;
  height: 68px;
  border: 0;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition: background 160ms ease;
}

.stage-nav:hover,
.stage-nav:focus-visible {
  background: var(--zf-red);
}

.stage-nav-left {
  left: 0;
}

.stage-nav-right {
  right: 0;
}

.viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 18px;
  border-bottom: 1px solid #3c3937;
}

.toolbar-navigation,
.toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.viewer-toolbar button,
.viewer-toolbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid #4c4845;
  background: transparent;
  color: #d9d5d1;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.viewer-toolbar button:hover,
.viewer-toolbar button:focus-visible,
.viewer-toolbar a:hover,
.viewer-toolbar a:focus-visible {
  border-color: var(--zf-red);
  background: var(--zf-red);
  color: var(--white);
}

.thumbnail-strip {
  display: grid;
  grid-auto-columns: minmax(128px, 10vw);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 1px 9px;
  scrollbar-color: #68625e #262322;
}

.thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 2px solid transparent;
  background: #090909;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 160ms ease, border-color 160ms ease;
}

.thumbnail:hover,
.thumbnail:focus-visible,
.thumbnail.active {
  border-color: var(--zf-red);
  opacity: 1;
}

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

.thumbnail span {
  position: absolute;
  right: 4px;
  bottom: 4px;
  min-width: 26px;
  padding: 3px 5px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
}

.archive-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
  max-width: 1532px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 104px) clamp(22px, 5vw, 76px) clamp(28px, 4vw, 58px);
  align-items: center;
  gap: clamp(38px, 6vw, 90px);
}

.archive-copy h2,
.contacts-intro h2 {
  font-size: clamp(2.35rem, 4vw, 4.7rem);
  line-height: 1;
}

.archive-copy > p:not(.eyebrow),
.contacts-intro > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: var(--zf-red);
  font-size: 0.89rem;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--zf-red-dark);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 18px 18px 0 var(--zf-red);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.archive-gallery {
  grid-column: 1 / -1;
  margin-top: clamp(34px, 5vw, 72px);
}

.archive-gallery h3 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.archive-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}

.archive-gallery-grid figure {
  overflow: hidden;
  margin: 0;
  background: var(--ink);
}

.archive-gallery-grid figure:first-child {
  grid-column: 1 / -1;
}

.archive-gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 280ms ease;
}

.archive-gallery-grid figure:first-child img {
  aspect-ratio: 16 / 7;
}

.archive-gallery-grid figure:hover img {
  transform: scale(1.018);
}

.contacts-section {
  padding: clamp(36px, 4vw, 64px) clamp(22px, 5vw, 76px) clamp(62px, 7vw, 98px);
  background: var(--white);
}

.contacts-intro {
  max-width: 1380px;
  margin: 0 auto 38px;
}

.contacts-intro h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.8rem);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.contact-card {
  min-width: 0;
  padding: 27px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card:nth-child(even) {
  padding-right: 0;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.contact-card:last-child {
  grid-column: 1 / -1;
  width: 50%;
  margin: 0 auto;
  padding-right: 34px;
  padding-left: 34px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: center;
}

.contact-role {
  margin: 0 0 6px;
  color: var(--zf-red);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 1.2;
  font-weight: 400;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 15px;
}

.contact-card:last-child .contact-links {
  justify-content: center;
}

.contact-links a {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: #57534f;
  font-size: 0.87rem;
  overflow-wrap: anywhere;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--zf-red);
}

.sales-contact-bar {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  height: 104px;
  border-top: 1px solid rgba(24, 23, 22, 0.14);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -12px 36px rgba(24, 23, 22, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear 220ms;
  visibility: hidden;
}

.sales-contact-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 220ms ease, visibility 0s;
  visibility: visible;
}

.sales-contact-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  max-width: 1532px;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 76px);
}

.sales-contact-compact {
  display: flex;
  min-width: 0;
  padding: 13px clamp(12px, 1.5vw, 24px);
  border-left: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

.sales-contact-compact:last-child {
  border-right: 1px solid var(--line);
}

.sales-contact-compact > .sales-contact-name {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.76rem, 1vw, 0.95rem);
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.sales-contact-compact > div {
  display: grid;
  gap: 3px;
  margin-top: 7px;
}

.sales-contact-compact a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  color: #57534f;
  font-size: clamp(0.64rem, 0.78vw, 0.74rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.sales-contact-compact a:hover,
.sales-contact-compact a:focus-visible {
  color: var(--zf-red);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(22px, 5vw, 76px);
  background: var(--ink);
  color: #aaa5a1;
  font-size: 0.75rem;
}

footer img {
  width: 92px;
  filter: grayscale(1) brightness(4);
}

footer p {
  margin: 0;
}

footer p:last-child {
  justify-self: end;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 0;
  }

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

  .hero h1 {
    font-size: clamp(1.65rem, 4vw, 2.6rem);
  }

  .edition-mark {
    display: none;
  }

  .archive-section {
    grid-template-columns: 1fr;
  }

  .video-frame {
    box-shadow: 10px 10px 0 var(--zf-red);
  }

  .sales-contact-bar {
    height: 96px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 66px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand img {
    width: 104px;
  }

  .hero {
    padding: 34px 20px 50px 32px;
  }

  .hero-rule {
    left: 18px;
    width: 4px;
  }

  .hero-inner {
    margin-left: 0;
  }

  .hero .eyebrow {
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 0.96;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(1.55rem, 7.5vw, 2.15rem);
    line-height: 1.08;
  }

  .hero-intro {
    margin-top: 22px;
  }

  .event-meta {
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 23px;
    font-size: 0.79rem;
  }

  .meta-separator {
    width: 18px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .presentation-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 2.5rem;
  }

  .stage-nav {
    width: 38px;
    height: 50px;
  }

  .viewer-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-navigation,
  .toolbar-actions {
    width: 100%;
  }

  .toolbar-navigation button,
  .toolbar-actions button,
  .toolbar-actions a {
    flex: 1 1 auto;
    justify-content: center;
  }

  .toolbar-actions span {
    display: none;
  }

  .thumbnail-strip {
    grid-auto-columns: 112px;
  }

  .archive-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .archive-gallery-grid {
    grid-template-columns: 1fr;
  }

  .archive-gallery-grid figure:first-child {
    grid-column: auto;
  }

  .archive-gallery-grid figure:first-child img {
    aspect-ratio: 16 / 9;
  }

  .contacts-section {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .contact-card,
  .contact-card:nth-child(even),
  .contact-card:last-child {
    grid-column: auto;
    width: 100%;
    margin: 0;
    padding: 23px 0;
    border-right: 0;
    border-left: 0;
    text-align: left;
  }

  .contact-card:last-child .contact-links {
    justify-content: flex-start;
  }

  .sales-contact-bar {
    height: 88px;
  }

  .sales-contact-bar-inner {
    grid-template-columns: none;
    grid-auto-columns: minmax(220px, 74vw);
    grid-auto-flow: column;
    padding: 0 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .sales-contact-compact {
    padding: 10px 16px;
    scroll-snap-align: start;
  }

  .sales-contact-compact > .sales-contact-name {
    font-size: 0.8rem;
  }

  .sales-contact-compact a {
    font-size: 0.68rem;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p:first-of-type {
    display: none;
  }
}

/* Remove the auxiliary archive and partnership labels. */
.archive-copy > .eyebrow,
.archive-copy > .text-link,
.contacts-intro > .eyebrow {
  display: none;
}

/* Keep the final black band text-only. */
footer {
  grid-template-columns: 1fr auto;
}

footer > img {
  display: none;
}

/* Present the complete deck as a vertically scrollable document. */
.viewer-shell {
  max-width: 1180px;
}

.slide-stage,
.viewer-toolbar {
  display: none;
}

.thumbnail-strip {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vw, 48px);
  overflow: visible;
  padding: 0;
}

.thumbnail {
  width: 100%;
  border: 0;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  opacity: 1;
  cursor: default;
}

.thumbnail:hover,
.thumbnail:focus-visible,
.thumbnail.active {
  border: 0;
  opacity: 1;
}

.thumbnail span {
  display: none;
}

@media (max-width: 680px) {
  .thumbnail-strip {
    gap: 14px;
  }

  .thumbnail {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
  }
}

/* Center and enlarge the Ziarul Financiar masthead in the top bar. */
.site-header {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 104px;
}

.brand {
  grid-row: 1;
  grid-column: 2;
  justify-self: center;
}

.brand img {
  width: 230px;
}

.desktop-nav {
  display: none;
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
}

.language-switch {
  grid-row: 1;
  grid-column: 3;
  justify-self: end;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    min-height: 96px;
  }

  .brand img {
    width: 205px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 88px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    min-height: 88px;
    padding: 9px 18px;
  }

  .brand img {
    width: 175px;
  }
}

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

  * {
    transition-duration: 0.01ms !important;
  }
}

/* Keep the full event publication name on two deliberate lines. */
.hero .eyebrow {
  width: 100%;
  max-width: 990px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
 font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero .eyebrow span {
  display: block;
}

.hero h1 {
  font-size: clamp(2.35rem, 3.8vw, 3.8rem);
  line-height: 1.03;
}

@media (max-width: 920px) {
  

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

@media (max-width: 680px) {
 
  .hero h1 {
    font-size: clamp(1rem, 5.1vw, 1.4rem);
    line-height: 1.08;
  }
}

/* Native editorial presentation assembled from the deck content and imagery. */
.presentation-section {
  padding: clamp(34px, 5vw, 74px) clamp(18px, 5vw, 76px) clamp(64px, 8vw, 118px);
  background: var(--paper);
  color: var(--ink);
}

.native-story {
  max-width: 1380px;
  margin: 0 auto;
}

.native-story h2,
.native-story h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.native-story p {
  margin: 0;
}

.story-kicker {
  margin-bottom: 16px !important;
  color: var(--zf-red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-impact {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(34px, 5vw, 72px);
  padding: clamp(32px, 4.5vw, 64px) clamp(26px, 5.5vw, 82px) 22px;
  border-left: 6px solid var(--zf-red);
  background: var(--ink);
  color: var(--white);
}

.story-impact::after {
  position: absolute;
  right: -150px;
  bottom: -230px;
  width: 440px;
  height: 440px;
  border: 70px solid rgba(201, 0, 18, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.story-impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-impact-stat {
  min-width: 0;
  padding-right: clamp(24px, 5vw, 72px);
}

.story-impact-stat + .story-impact-stat {
  padding-right: 0;
  padding-left: clamp(24px, 5vw, 72px);
  border-left: 1px solid #504b48;
}

.story-impact-stat strong,
.story-impact-stat span {
  display: block;
}

.story-impact-stat strong {
  color: #ff4352;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.story-impact-stat span {
  max-width: 430px;
  margin-top: 20px;
  font-size: clamp(1rem, 1.65vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
}

.story-impact > p {
  position: relative;
  z-index: 1;
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 18px;
  border-top: 1px solid #504b48;
  color: #aaa5a1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(460px, 1.18fr);
  overflow: hidden;
  border-left: 6px solid var(--zf-red);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(32, 27, 24, 0.12);
}

.story-intro-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 88px);
}

.story-intro h2,
.story-heading h2,
.guest-copy h2,
.ranking-copy h2,
.anniversary-copy h2 {
  font-size: clamp(2.45rem, 4.6vw, 5.15rem);
  line-height: 0.98;
}

.story-intro-copy > p:last-child {
  max-width: 630px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.55;
}

.story-intro > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.story-section {
  margin-top: clamp(34px, 5vw, 72px);
  padding: clamp(42px, 6vw, 88px);
  background: var(--white);
}

.story-heading {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.story-heading-compact {
  max-width: 880px;
}

.story-heading > p:last-child,
.ranking-copy > p,
.anniversary-copy > p,
.guest-copy > p {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.65;
}

.story-context-lead,
.story-context-close {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(440px, 1.2fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 74px);
}

.story-context-close {
  grid-template-columns: minmax(440px, 1.2fr) minmax(340px, 0.8fr);
}

.story-context-lead img,
.story-context-close img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.story-copy-columns {
  columns: 2 260px;
  column-gap: clamp(28px, 4vw, 56px);
  align-self: center;
}

.story-copy-columns p {
  margin: 0 0 20px;
  color: #4f4b48;
  font-size: 1.02rem;
  line-height: 1.68;
  break-inside: avoid;
}

.story-context blockquote,
.ranking-copy blockquote {
  margin: clamp(38px, 6vw, 76px) 0;
  padding: 8px 0 8px clamp(22px, 3vw, 42px);
  border-left: 5px solid var(--zf-red);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.story-guest {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1.32fr);
  gap: clamp(38px, 6vw, 90px);
  background: var(--ink);
  color: var(--white);
}

.guest-portrait img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.guest-copy {
  align-self: center;
}

.guest-copy .story-kicker {
  color: #f05b67;
}

.guest-copy > p {
  color: #c8c3bf;
}

.guest-copy .story-standfirst {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.38;
}

.guest-copy h3 {
  margin-top: 38px;
  font-size: 1.35rem;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.book-grid article {
  display: grid;
  grid-template-rows: 176px auto;
  overflow: hidden;
  border: 1px solid #4a4643;
  background: #262322;
}

.book-grid img {
  width: 100%;
  height: 176px;
  padding: 14px;
  object-fit: contain;
  background: #efede9;
}

.book-grid article > div {
  padding: 14px;
}

.book-grid span,
.book-grid strong {
  display: block;
}

.book-grid span {
  color: #f05b67;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.book-grid strong {
  margin-top: 5px;
  font-size: 0.85rem;
  line-height: 1.35;
}

.speaker-gallery,
.company-gallery {
  display: grid;
  gap: 12px;
}

.speaker-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.speaker-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0;
  background: var(--ink);
}

.speaker-gallery img,
.company-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 18px 16px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.speaker-gallery figcaption span,
.speaker-gallery figcaption strong {
  display: block;
}

.speaker-gallery figcaption span {
  margin-bottom: 5px;
  color: #ff6571;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.story-ranking {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(40px, 6vw, 86px);
}

.ranking-copy {
  align-self: center;
}

.ranking-copy blockquote {
  margin: 36px 0 0;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
}

.ranking-visual {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 18px;
}

.ranking-visual img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.15));
}

.company-gallery {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.company-gallery img {
  aspect-ratio: 3 / 2;
}

.story-anniversary {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  background: #f8ecee;
}

.anniversary-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 16px;
}

.anniversary-gallery img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(65, 24, 30, 0.14));
}

.story-packages {
  background: var(--ink);
  color: var(--white);
}

.story-packages .story-heading > p:last-child {
  color: #c2bdb9;
}

.package-list {
  display: grid;
  gap: 18px;
}

.package-card {
  border: 1px solid #45413e;
  background: #23201f;
}

.package-card > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 3vw, 38px);
  border-bottom: 1px solid #45413e;
}

.package-card > header span {
  color: #ff6571;
  font-size: clamp(1.25rem, 2.1vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.package-card > header strong {
  font-size: clamp(1rem, 1.35vw, 1.3rem);
}

.package-phases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-phases section {
  padding: 26px clamp(20px, 2.8vw, 36px) 30px;
}

.package-phases section + section {
  border-left: 1px solid #45413e;
}

.package-phases h3 {
  color: #ff6571;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-phases ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #d7d2ce;
}

.package-phases li {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .story-intro,
  .story-guest,
  .story-ranking,
  .story-anniversary,
  .story-context-lead,
  .story-context-close {
    grid-template-columns: 1fr;
  }

  .story-intro > img,
  .guest-portrait img,
  .story-context-lead img,
  .story-context-close img {
    min-height: 0;
    max-height: 560px;
  }

  .story-context-close img {
    order: -1;
  }

  .ranking-visual {
    max-width: 680px;
  }

  .company-gallery {
    grid-column: auto;
  }

  .anniversary-gallery {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .presentation-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .story-intro-copy,
  .story-section {
    padding: 34px 24px;
  }

  .story-impact {
    padding: 32px 24px 18px;
  }

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

  .story-impact-stat {
    padding-right: 0;
  }

  .story-impact-stat + .story-impact-stat {
    margin-top: 28px;
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid #504b48;
    border-left: 0;
  }

  .story-impact-stat strong {
    font-size: clamp(4.1rem, 22vw, 6.5rem);
  }

  .story-impact-stat span {
    margin-top: 14px;
  }

  .story-intro > img {
    min-height: 260px;
  }

  .story-intro h2,
  .story-heading h2,
  .guest-copy h2,
  .ranking-copy h2,
  .anniversary-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .story-copy-columns {
    columns: 1;
  }

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

  .book-grid article {
    grid-template-columns: 110px 1fr;
    grid-template-rows: auto;
  }

  .book-grid img {
    height: 148px;
  }

  .speaker-gallery,
  .company-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speaker-gallery figure {
    min-height: 220px;
  }

  .ranking-visual {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .anniversary-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-phases {
    grid-template-columns: 1fr;
  }

  .package-phases section + section {
    border-top: 1px solid #45413e;
    border-left: 0;
  }
}

.hero .eyebrow {
  width: 100%;
  max-width: 990px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
 font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero .eyebrow span {
  display: block;
}