:root {
  --navy-900: #0d1828;
  --navy-800: #14243b;
  --navy-700: #203653;
  --ivory-50: #f8f6f1;
  --ivory-100: #f1ece3;
  --white: #fff;
  --burgundy-700: #772f40;
  --burgundy-800: #612432;
  --gold-500: #b49a67;
  --gold-200: #ddd0b5;
  --text-primary: #252930;
  --text-secondary: #626b78;
  --text-muted: #858c96;
  --border: #ddd9d1;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
  --container: 1240px;
  --shadow-soft: 0 20px 50px rgba(13, 24, 40, 0.12);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text-primary);
  background: var(--ivory-50);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-900);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 217, 209, 0.85);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-header {
  width: 172px;
  height: 64px;
}

.brand-logo {
  display: block;
  width: 172px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.header-cta {
  min-height: 44px;
  padding-inline: 19px;
  white-space: nowrap;
}
.brand-mark {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ivory-50);
  background: var(--navy-800);
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.brand-text {
  display: grid;
  line-height: 1.15;
}
.brand-text strong {
  color: var(--navy-800);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}
.brand-text small {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.primary-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.primary-navigation > a,
.nav-dropdown-toggle {
  position: relative;
  padding: 11px 0;
  color: var(--navy-800);
  background: none;
  border: 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
.primary-navigation > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--burgundy-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.primary-navigation > a:hover::after,
.primary-navigation > a:focus-visible::after,
.primary-navigation > a.active::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after {
  transform: scaleX(1);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 360px;
  padding: 12px;
  display: grid;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  padding: 12px 14px;
  color: var(--navy-800);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--ivory-100);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-800);
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: 180ms ease;
}
.button-small {
  min-height: 46px;
  padding-inline: 20px;
}
.button-primary {
  color: #fff;
  background: var(--burgundy-700);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--burgundy-800);
}
.button-light {
  color: var(--navy-900);
  background: var(--ivory-50);
}
.button-light:hover,
.button-light:focus-visible {
  background: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--burgundy-700);
  text-decoration: none;
  font-weight: 600;
}
.text-link span {
  transition: transform 180ms ease;
}
.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}
.text-link-light {
  color: var(--ivory-50);
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(248, 246, 241, 1) 0%,
    rgba(248, 246, 241, 0.98) 52%,
    rgba(241, 236, 227, 0.95) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  top: -160px;
  right: -160px;
  border: 1px solid rgba(180, 154, 103, 0.32);
  border-radius: 50%;
}
.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 64px;
  padding-block: 52px 64px;
}

.hero-copy {
  align-self: start;
  padding-top: 46px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--burgundy-700);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.eyebrow-light {
  color: var(--gold-200);
}
h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-800);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}
h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 5.7vw, 76px);
  line-height: 0.98;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
}
h3 {
  margin-bottom: 14px;
  font-size: 29px;
  line-height: 1.18;
}
.hero-role {
  max-width: 660px;
  margin: 0 0 22px;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.4;
}
.hero-text {
  max-width: 650px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
}
.hero-actions,
.book-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  max-width: 540px;
  margin-left: auto;
}
.hero-title-prefix,
.hero-title-name {
    display: block;
}

.hero-title-prefix {
    font-size: 0.78em;
    line-height: 1.05;
}

.hero-title-name {
    margin-top: 4px;
}
.portrait-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ivory-100);
  box-shadow: var(--shadow-soft);
}
.portrait-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.portrait-accent {
  position: absolute;
  width: 80%;
  height: 86%;
  right: -28px;
  bottom: -28px;
  border: 1px solid var(--gold-500);
}
.section {
  padding-block: 110px;
}
.section-light {
  background: #fff;
  padding-block: 88px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.intro-copy {
  max-width: 680px;
}
.intro-copy p:first-child {
  margin-top: 0;
}

.intro-grid h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.intro-copy p {
  margin-top: 0;
  margin-bottom: 20px;
}

.intro-copy .text-link {
  margin-top: 4px;
}
.section-heading {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 760px;
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.teaser-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 34px 32px 26px;
  border-right: 1px solid var(--border);
}
.teaser-card:first-child {
  padding-left: 0;
}
.teaser-card:last-child {
  padding-right: 0;
  border-right: 0;
}
.teaser-number {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-size: 16px;
}
.teaser-card p {
  margin: 0 0 22px;
  color: var(--text-secondary);
}

.teaser-card .text-link {
  margin-top: auto;
}
.featured-book-section {
  padding-block: 88px;
  background: var(--navy-800);
}
.featured-book-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: center;
}
.book-cover-wrap {
  max-width: 360px;
  margin-inline: auto;
}
.book-cover {
  aspect-ratio: 0.72;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}
.book-content h2 {
  max-width: 760px;
  font-size: clamp(42px, 3.5vw, 50px);
  line-height: 1.08;
}

.book-content h2,
.book-content p,
.book-content dt,
.book-content dd {
  color: var(--ivory-50);
}
.book-content > p {
  max-width: 720px;
  line-height: 1.7;
}
.book-author {
  margin-top: -8px;
  color: var(--gold-200) !important;
  font-weight: 600;
}
.book-meta {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.book-meta div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.book-meta div:nth-child(odd) {
  padding-right: 24px;
}
.book-meta div:nth-child(even) {
  padding-left: 24px;
}
.book-meta dt {
  color: var(--gold-200);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.book-meta dd {
  margin: 0;
}
.book-price {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--ivory-50);
}
.book-price span,
.book-price small {
  color: var(--gold-200);
}
.book-price strong {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
}

.book-actions {
  margin-top: 28px;
}
.contact-cta {
  padding-block: 88px;
  color: var(--ivory-50);
  background: var(--burgundy-700);
}
.contact-cta h2 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ivory-50);
  font-size: clamp(42px, 3.8vw, 54px);
  line-height: 1.08;
}
.contact-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 72px;
  align-items: center;
}
.contact-cta p {
  max-width: 760px;
  margin: 0;
  line-height: 1.7;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 44px;
  border-left: 1px solid rgba(248, 246, 241, 0.22);
}

.contact-actions .button {
  min-width: 190px;
}

.contact-actions .text-link {
  font-size: 17px;
}
.site-footer {
  padding-top: 78px;
  color: rgba(248, 246, 241, 0.78);
  background: var(--navy-900);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 56px;
}
.brand-footer {
  align-items: center;
}

.footer-brand-logo {
  display: block;
  width: 96px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.brand-footer .brand-text strong {
  color: var(--ivory-50);
}

.brand-footer .brand-text small {
  color: rgba(248, 246, 241, 0.72);
}
.site-footer h3 {
  color: var(--ivory-50);
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li + li {
  margin-top: 8px;
}
.site-footer a {
  text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}
.footer-bottom {
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}
.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-credit {
  color: rgba(248, 246, 241, 0.6);
}

.footer-credit a {
  color: var(--ivory-50);
  font-weight: 600;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--gold-200);
}
:focus-visible {
  outline: 3px solid rgba(180, 154, 103, 0.75);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .header-cta {
    display: none;
  }

  .primary-navigation {
    gap: 20px;
  }

  .hero-grid {
    gap: 56px;
  }

  .featured-book-grid {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  .brand-header,
  .brand-logo {
    width: 132px;
    height: 54px;
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-navigation {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: var(--ivory-50);
    border-bottom: 1px solid var(--border);
  }

  .primary-navigation.open {
    display: flex;
  }

  .primary-navigation > a,
  .nav-dropdown-toggle {
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .hero-grid,
  .intro-grid,
  .featured-book-grid,
  .contact-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 52px;
    padding-block: 52px 60px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-visual {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .section-light {
    padding-block: 64px;
  }

  .intro-grid {
    gap: 30px;
  }

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

  .teaser-card,
  .teaser-card:first-child,
  .teaser-card:last-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .teaser-card:last-child {
    border-bottom: 0;
  }

  .featured-book-section {
    padding-block: 64px;
  }

  .featured-book-grid {
    gap: 44px;
  }

  .book-cover-wrap {
    width: min(78%, 340px);
  }

  .book-content h2 {
    font-size: 40px;
  }

  .contact-cta {
    padding-block: 64px;
  }

  .contact-cta-inner {
    gap: 38px;
  }

  .contact-actions {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

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

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand-header,
  .brand-logo {
    width: 116px;
    height: 50px;
  }

  .header-inner {
    min-height: 70px;
  }

  .primary-navigation {
    top: 70px;
  }

  .hero-grid {
    padding-block: 36px 52px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  h2 {
    font-size: 36px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.13em;
    line-height: 1.7;
  }

  .hero-role {
    font-size: 21px;
  }

  .hero-actions,
  .book-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 28px;
  }

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

  .portrait-accent {
    right: -14px;
    bottom: -14px;
  }

  .section {
    padding-block: 72px;
  }

  .section-light {
    padding-block: 52px 60px;
  }

  .intro-grid {
    gap: 24px;
  }

  .intro-grid h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .intro-copy p {
    margin-bottom: 18px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .teaser-card,
  .teaser-card:first-child,
  .teaser-card:last-child {
    min-height: 0;
    padding: 28px 0;
  }

  .teaser-number {
    margin-bottom: 18px;
  }

  .teaser-card h3 {
    margin-bottom: 12px;
  }

  .teaser-card p {
    margin-bottom: 18px;
  }

  .teaser-card .text-link {
    margin-top: 0;
  }

  .featured-book-section {
    padding-block: 56px 64px;
  }

  .featured-book-grid {
    gap: 34px;
  }

  .book-cover-wrap {
    width: min(82%, 300px);
  }

  .book-content h2 {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1.08;
  }

  .book-author {
    margin-bottom: 18px;
  }

  .book-content > p {
    margin-bottom: 18px;
    line-height: 1.65;
  }

  .book-meta {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .book-meta div {
    padding-block: 14px;
    grid-template-columns: 120px 1fr;
  }

  .book-meta div:nth-child(odd),
  .book-meta div:nth-child(even) {
    padding-inline: 0;
  }

  .book-price {
    margin-top: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .book-actions {
    margin-top: 24px;
    gap: 16px;
  }

  .contact-cta {
    padding-block: 56px 64px;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-cta h2 {
    max-width: none;
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.08;
  }

  .contact-cta p {
    max-width: none;
    line-height: 1.65;
  }

  .contact-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .contact-actions .button {
    width: 100%;
    min-width: 0;
  }

  .contact-actions .text-link {
    display: inline-flex;
    width: fit-content;
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .brand-footer {
    align-items: flex-start;
    gap: 14px;
  }

  .footer-brand-logo {
    width: 78px;
    height: 52px;
  }

  .brand-footer .brand-text strong {
    font-size: 20px;
  }

  .brand-footer .brand-text small {
    max-width: 190px;
    font-size: 11px;
    line-height: 1.45;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-bottom-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom-links > a,
  .footer-credit {
    display: block;
    width: 100%;
  }

  .footer-credit {
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 39px;
  }

  .brand-header,
  .brand-logo {
    width: 108px;
  }

  .intro-grid h2 {
    font-size: 35px;
  }

  .contact-cta h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* ==================================================
   O MENI PAGE
================================================== */

.about-page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(248, 246, 241, 1) 0%,
    rgba(248, 246, 241, 0.98) 58%,
    rgba(241, 236, 227, 0.95) 100%
  );
}

.about-page-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -160px;
  border: 1px solid rgba(180, 154, 103, 0.28);
  border-radius: 50%;
}

.about-page-hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
  padding-block: 64px;
}

.about-page-hero-copy {
  position: relative;
  z-index: 2;
}

.about-page-hero-copy h1 {
  margin-bottom: 26px;
}

.about-page-lead {
  max-width: 700px;
  margin: 0;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.48;
}

.about-page-hero-visual {
  position: relative;
  width: min(100%, 460px);
  margin-left: auto;
}

.about-page-portrait-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.about-page-portrait-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-page-portrait-accent {
  position: absolute;
  width: 78%;
  height: 84%;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--gold-500);
}

.about-page-intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: start;
}

.about-page-intro-grid h2 {
  max-width: 600px;
  margin-bottom: 0;
}

.about-page-copy {
  max-width: 720px;
}

.about-page-copy p {
  margin-top: 0;
  margin-bottom: 20px;
}

.about-page-timeline-section {
  background: var(--ivory-50);
}

.about-page-section-heading {
  max-width: 820px;
}

.about-page-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.about-page-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding-block: 32px;
  border-bottom: 1px solid var(--border);
}

.about-page-timeline-index,
.about-page-card-number {
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-size: 18px;
}

.about-page-timeline-item h3 {
  margin-bottom: 10px;
}

.about-page-timeline-item p {
  max-width: 780px;
  margin: 0;
  color: var(--text-secondary);
}

.about-page-career {
  color: var(--ivory-50);
  background: var(--navy-800);
}

.about-page-career-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: start;
}

.about-page-career h2,
.about-page-career p {
  color: var(--ivory-50);
}

.about-page-career-main h2 {
  max-width: 800px;
}

.about-page-highlight {
  padding: 36px;
  border: 1px solid rgba(221, 208, 181, 0.4);
  background: rgba(255, 255, 255, 0.035);
}

.about-page-highlight-label {
  margin: 0 0 16px;
  color: var(--gold-200) !important;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-page-highlight-title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.25;
}

.about-page-highlight p:last-child {
  margin-bottom: 0;
  color: rgba(248, 246, 241, 0.75);
}

.about-page-engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.about-page-engagement-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 26px;
  border-right: 1px solid var(--border);
}

.about-page-engagement-card:first-child {
  padding-left: 0;
}

.about-page-engagement-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-page-engagement-card h3 {
  margin-top: 26px;
}

.about-page-engagement-card p {
  margin: 0;
  color: var(--text-secondary);
}

.about-page-cta {
  padding-block: 88px;
  color: var(--ivory-50);
  background: var(--burgundy-700);
}

.about-page-cta-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 72px;
  align-items: center;
}

.about-page-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ivory-50);
  font-size: clamp(42px, 3.8vw, 54px);
  line-height: 1.08;
}

.about-page-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 44px;
  border-left: 1px solid rgba(248, 246, 241, 0.22);
}

@media (max-width: 860px) {
  .about-page-hero-grid,
  .about-page-intro-grid,
  .about-page-career-grid,
  .about-page-cta-inner {
    grid-template-columns: 1fr;
  }

  .about-page-hero-grid {
    min-height: auto;
    gap: 52px;
    padding-block: 52px 60px;
  }

  .about-page-hero-visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .about-page-intro-grid {
    gap: 30px;
  }

  .about-page-career-grid {
    gap: 44px;
  }

  .about-page-engagement-grid {
    grid-template-columns: 1fr;
  }

  .about-page-engagement-card,
  .about-page-engagement-card:first-child,
  .about-page-engagement-card:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .about-page-engagement-card:last-child {
    border-bottom: 0;
  }

  .about-page-cta {
    padding-block: 64px;
  }

  .about-page-cta-inner {
    gap: 38px;
  }

  .about-page-cta-actions {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .about-page-hero-grid {
    padding-block: 38px 52px;
  }

  .about-page-lead {
    font-size: 22px;
    line-height: 1.5;
  }

  .about-page-portrait-accent {
    right: -14px;
    bottom: -14px;
  }

  .about-page-intro-grid {
    gap: 24px;
  }

  .about-page-intro-grid h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .about-page-timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 26px;
  }

  .about-page-career-grid {
    gap: 34px;
  }

  .about-page-highlight {
    padding: 26px 22px;
  }

  .about-page-highlight-title {
    font-size: 26px;
  }

  .about-page-engagement-card,
  .about-page-engagement-card:first-child,
  .about-page-engagement-card:last-child {
    padding: 28px 0;
  }

  .about-page-engagement-card h3 {
    margin-top: 18px;
    margin-bottom: 12px;
  }

  .about-page-cta {
    padding-block: 56px 64px;
  }

  .about-page-cta-inner {
    gap: 28px;
  }

  .about-page-cta h2 {
    font-size: 36px;
  }

  .about-page-cta-actions {
    align-items: stretch;
    gap: 16px;
  }

  .about-page-cta-actions .button {
    width: 100%;
  }

  .about-page-cta-actions .text-link {
    width: fit-content;
  }
}

@media (max-width: 380px) {
  .about-page-intro-grid h2 {
    font-size: 35px;
  }

  .about-page-cta h2 {
    font-size: 34px;
  }
}
/* O MENI — HERO POLISH */

.about-page-hero-grid {
  min-height: 550px;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  padding-block: 52px 58px;
}

.about-page-hero-copy {
  align-self: center;
}

.about-page-hero-copy h1 {
  margin-bottom: 22px;
}

.about-page-lead {
  max-width: 650px;
  font-size: 26px;
  line-height: 1.46;
}

.about-page-hero-visual {
  width: min(100%, 440px);
}
@media (max-width: 860px) {
  .about-page-hero-grid {
    gap: 42px;
  }
}

@media (max-width: 600px) {
  .about-page-hero-grid {
    gap: 36px;
    padding-block: 34px 48px;
  }

  .about-page-hero-copy h1 {
    margin-bottom: 20px;
  }

  .about-page-lead {
    font-size: 21px;
    line-height: 1.48;
  }

  .about-page-hero-visual {
    width: min(100%, 420px);
  }
}

@media (max-width: 380px) {
  .about-page-lead {
    font-size: 20px;
  }
}
/* O MENI HERO — MOBILE FIX */

@media (max-width: 860px) {
  .about-page-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
    padding-block: 48px 60px;
  }

  .about-page-hero-copy {
    width: 100%;
  }

  .about-page-hero-visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .about-page-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-block: 36px 52px;
  }

  .about-page-hero-copy,
  .about-page-hero-visual {
    min-width: 0;
    width: 100%;
  }

  .about-page-hero-copy h1 {
    margin-bottom: 20px;
  }

  .about-page-lead {
    max-width: none;
    font-size: 21px;
    line-height: 1.5;
  }

  .about-page-hero-visual {
    width: min(100%, 420px);
  }

  .about-page-portrait-frame {
    width: 100%;
  }
}
/* ==================================================
   NAUČNI RADOVI PAGE
================================================== */

.research-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory-50);
}

.research-page-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -180px;
  border: 1px solid rgba(180, 154, 103, 0.3);
  border-radius: 50%;
}

.research-page-hero-grid {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: center;
  padding-block: 72px;
}

.research-page-hero-copy {
  position: relative;
  z-index: 2;
}

.research-page-hero-copy h1 {
  max-width: 860px;
  margin-bottom: 28px;
}

.research-page-lead {
  max-width: 760px;
  margin: 0;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.48;
}

.research-page-hero-summary {
  position: relative;
  z-index: 2;
  padding: 42px;
  border: 1px solid var(--gold-500);
  background: rgba(248, 246, 241, 0.82);
}

.research-page-summary-number {
  display: block;
  margin-bottom: 4px;
  color: var(--burgundy-700);
  font-family: var(--font-serif);
  font-size: clamp(70px, 7vw, 110px);
  line-height: 0.95;
}

.research-page-summary-title {
  margin: 0 0 22px;
  color: var(--navy-800);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.2;
}

.research-page-hero-summary p:last-child {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.research-page-intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: start;
}

.research-page-intro-grid h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.research-page-intro-copy {
  max-width: 720px;
}

.research-page-intro-copy p {
  margin-top: 0;
  margin-bottom: 20px;
}

.research-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.research-topic-card {
  min-height: 285px;
  padding: 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.research-topic-index {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-size: 18px;
}

.research-topic-card h3 {
  max-width: 490px;
  margin-bottom: 14px;
}

.research-topic-card p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.research-contribution-section {
  color: var(--ivory-50);
  background: var(--navy-800);
}

.research-contribution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.research-contribution-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ivory-50);
}

.research-contribution-copy p {
  margin-top: 0;
  color: rgba(248, 246, 241, 0.78);
}

.research-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid rgba(248, 246, 241, 0.2);
}

.research-stat {
  min-height: 180px;
  padding: 32px 26px 0;
  border-right: 1px solid rgba(248, 246, 241, 0.2);
}

.research-stat:first-child {
  padding-left: 0;
}

.research-stat:last-child {
  border-right: 0;
}

.research-stat strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-200);
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}

.research-stat span {
  display: block;
  max-width: 200px;
  color: rgba(248, 246, 241, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.research-page-section-heading {
  max-width: 880px;
}

.featured-publications {
  border-top: 1px solid var(--border);
}

.featured-publication {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 48px;
  padding-block: 38px;
  border-bottom: 1px solid var(--border);
}

.featured-publication-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--burgundy-700);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-publication h3 {
  max-width: 900px;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.25;
}

.featured-publication-authors {
  margin-bottom: 14px;
  color: var(--navy-700);
  font-weight: 600;
}

.featured-publication p {
  max-width: 860px;
}

.featured-publication-reference {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.bibliography-section {
  background: var(--ivory-100);
}

.bibliography-heading-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.bibliography-heading-grid h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.bibliography-heading-grid > div:last-child p {
  margin-top: 0;
}

.bibliography-groups {
  border-top: 1px solid var(--border);
}

.bibliography-group {
  border-bottom: 1px solid var(--border);
}

.bibliography-group summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 25px;
  color: var(--navy-800);
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.bibliography-group summary::-webkit-details-marker {
  display: none;
}

.bibliography-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--burgundy-700);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
}

.bibliography-group[open] summary::after {
  content: "−";
}

.bibliography-count {
  margin-left: auto;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bibliography-group-content {
  max-width: 980px;
  padding: 0 0 34px;
}

.bibliography-group-content p {
  color: var(--text-secondary);
}

.bibliography-group-content ol {
  margin: 0;
  padding-left: 24px;
}

.bibliography-group-content li {
  margin-bottom: 18px;
  padding-left: 8px;
  color: var(--text-secondary);
}

.bibliography-note {
  margin-top: 48px;
  padding: 24px 28px;
  border-left: 3px solid var(--gold-500);
  background: var(--ivory-50);
}

.bibliography-note p {
  margin: 0;
  color: var(--text-secondary);
}

.research-page-cta {
  padding-block: 88px;
  color: var(--ivory-50);
  background: var(--burgundy-700);
}

.research-page-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}

.research-page-cta h2 {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--ivory-50);
}

.research-page-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 44px;
  border-left: 1px solid rgba(248, 246, 241, 0.22);
}

@media (max-width: 860px) {
  .research-page-hero-grid,
  .research-page-intro-grid,
  .research-contribution-grid,
  .bibliography-heading-grid,
  .research-page-cta-inner {
    grid-template-columns: 1fr;
  }

  .research-page-hero-grid {
    min-height: auto;
    gap: 48px;
    padding-block: 52px 64px;
  }

  .research-page-hero-summary {
    max-width: 600px;
  }

  .research-page-intro-grid,
  .research-contribution-grid,
  .bibliography-heading-grid {
    gap: 34px;
  }

  .research-topic-grid {
    grid-template-columns: 1fr;
  }

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

  .research-stat {
    border-bottom: 1px solid rgba(248, 246, 241, 0.2);
  }

  .research-stat:nth-child(2) {
    border-right: 0;
  }

  .featured-publication {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-publication-meta {
    flex-direction: row;
    justify-content: space-between;
  }

  .research-page-cta-actions {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .research-page-hero-grid {
    gap: 34px;
    padding-block: 36px 52px;
  }

  .research-page-lead {
    font-size: 21px;
    line-height: 1.5;
  }

  .research-page-hero-summary {
    padding: 28px 24px;
  }

  .research-page-summary-number {
    font-size: 72px;
  }

  .research-page-summary-title {
    font-size: 24px;
  }

  .research-topic-grid {
    margin-top: 48px;
  }

  .research-topic-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .research-stat-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .research-stat,
  .research-stat:first-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
  }

  .research-stat strong {
    font-size: 46px;
  }

  .featured-publication {
    padding-block: 30px;
  }

  .featured-publication-meta {
    flex-direction: column;
  }

  .featured-publication h3 {
    font-size: 25px;
  }

  .bibliography-heading-grid {
    margin-bottom: 44px;
  }

  .bibliography-group summary {
    align-items: flex-start;
    font-size: 21px;
  }

  .bibliography-count {
    display: none;
  }

  .bibliography-note {
    margin-top: 36px;
    padding: 22px;
  }

  .research-page-cta {
    padding-block: 58px 64px;
  }

  .research-page-cta-inner {
    gap: 30px;
  }

  .research-page-cta-actions {
    width: 100%;
    align-items: stretch;
  }

  .research-page-cta-actions .button {
    width: 100%;
  }

  .research-page-cta-actions .text-link {
    width: fit-content;
  }
}
/* ==================================================
   KNJIGE PAGE
================================================== */

.books-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory-50);
}

.books-page-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  top: -220px;
  right: -140px;
  border: 1px solid rgba(180, 154, 103, 0.3);
  border-radius: 50%;
}

.books-page-hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: center;
  padding-block: 68px;
}

.books-page-hero-copy,
.books-page-hero-note {
  position: relative;
  z-index: 2;
}

.books-page-hero-copy h1 {
  margin-bottom: 26px;
}

.books-page-lead {
  max-width: 720px;
  margin: 0;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.48;
}

.books-page-hero-note {
  max-width: 470px;
  margin-left: auto;
  padding: 36px;
  border-left: 3px solid var(--gold-500);
  background: rgba(241, 236, 227, 0.62);
}

.books-page-hero-note-label {
  display: block;
  margin-bottom: 16px;
  color: var(--burgundy-700);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.books-page-hero-note p {
  margin: 0;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.45;
}

.books-featured-section {
  background: var(--ivory-100);
}

.books-featured-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: center;
}

.books-featured-visual {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
}

.books-featured-cover-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.books-featured-cover-frame img {
  width: 100%;
  height: auto;
}

.books-featured-cover-accent {
  position: absolute;
  width: 82%;
  height: 88%;
  right: -25px;
  bottom: -25px;
  border: 1px solid var(--gold-500);
}

.books-featured-content h2 {
  max-width: 850px;
}

.books-featured-intro {
  max-width: 760px;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.48;
}

.books-featured-copy {
  max-width: 760px;
  margin-top: 28px;
}

.books-featured-copy p {
  margin-top: 0;
  margin-bottom: 18px;
}

.books-featured-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.books-author-section {
  color: var(--ivory-50);
  background: var(--navy-800);
}

.books-author-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.books-author-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ivory-50);
}

.books-author-copy p {
  margin-top: 0;
  color: rgba(248, 246, 241, 0.78);
}

.books-author-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid rgba(248, 246, 241, 0.2);
}

.books-author-principle {
  min-height: 270px;
  padding: 34px 30px 0;
  border-right: 1px solid rgba(248, 246, 241, 0.2);
}

.books-author-principle:first-child {
  padding-left: 0;
}

.books-author-principle:last-child {
  padding-right: 0;
  border-right: 0;
}

.books-author-principle-index {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-200);
  font-family: var(--font-serif);
  font-size: 18px;
}

.books-author-principle h3 {
  color: var(--ivory-50);
}

.books-author-principle p {
  margin-bottom: 0;
  color: rgba(248, 246, 241, 0.7);
}

.books-page-section-heading {
  max-width: 820px;
}

.books-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.book-catalog-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 34px;
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--ivory-50);
}

.book-catalog-cover {
  display: block;
  align-self: start;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.book-catalog-cover img {
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.book-catalog-cover:hover img {
  transform: scale(1.025);
}

.book-catalog-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.book-catalog-meta {
  margin: 0 0 14px;
  color: var(--burgundy-700);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.book-catalog-content h3 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.23;
}

.book-catalog-content h3 a {
  color: inherit;
  text-decoration: none;
}

.book-catalog-content h3 a:hover {
  color: var(--burgundy-700);
}

.book-catalog-content p {
  color: var(--text-secondary);
}

.book-catalog-content .text-link {
  margin-top: auto;
}

.book-catalog-card-upcoming {
  background: var(--ivory-100);
}

.book-catalog-upcoming-visual {
  min-height: 290px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-500);
  background: var(--navy-800);
}

.book-catalog-upcoming-monogram {
  color: var(--ivory-50);
  font-family: var(--font-serif);
  font-size: 70px;
  line-height: 1;
}

.books-order-section {
  background: var(--ivory-50);
}

.books-order-heading {
  max-width: 850px;
  margin-bottom: 64px;
}

.books-order-heading p:last-child {
  max-width: 720px;
}

.books-order-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.books-order-step {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 42px;
  padding-block: 32px;
  border-bottom: 1px solid var(--border);
}

.books-order-step-number {
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-size: 18px;
}

.books-order-step h3 {
  margin-bottom: 10px;
}

.books-order-step p {
  max-width: 760px;
  margin: 0;
  color: var(--text-secondary);
}

.books-page-cta {
  padding-block: 88px;
  color: var(--ivory-50);
  background: var(--burgundy-700);
}

.books-page-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}

.books-page-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--ivory-50);
}

.books-page-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 44px;
  border-left: 1px solid rgba(248, 246, 241, 0.22);
}

@media (max-width: 1080px) {
  .books-catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .books-page-hero-grid,
  .books-featured-grid,
  .books-author-grid,
  .books-page-cta-inner {
    grid-template-columns: 1fr;
  }

  .books-page-hero-grid {
    min-height: auto;
    gap: 46px;
    padding-block: 52px 64px;
  }

  .books-page-hero-note {
    max-width: 600px;
    margin-left: 0;
  }

  .books-featured-grid {
    gap: 58px;
  }

  .books-featured-visual {
    width: min(100%, 430px);
  }

  .books-author-grid {
    gap: 34px;
  }

  .books-author-principles {
    grid-template-columns: 1fr;
  }

  .books-author-principle,
  .books-author-principle:first-child,
  .books-author-principle:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 246, 241, 0.2);
  }

  .books-author-principle:last-child {
    border-bottom: 0;
  }

  .books-page-cta-actions {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .books-page-hero-grid {
    gap: 34px;
    padding-block: 36px 52px;
  }

  .books-page-lead {
    font-size: 21px;
    line-height: 1.5;
  }

  .books-page-hero-note {
    padding: 26px 22px;
  }

  .books-page-hero-note p {
    font-size: 21px;
  }

  .books-featured-grid {
    gap: 46px;
  }

  .books-featured-cover-accent {
    right: -14px;
    bottom: -14px;
  }

  .books-featured-intro {
    font-size: 21px;
  }

  .books-featured-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .books-featured-actions .button {
    width: 100%;
  }

  .books-featured-actions .text-link {
    width: fit-content;
  }

  .book-catalog-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .book-catalog-cover {
    width: min(100%, 310px);
  }

  .book-catalog-content h3 {
    font-size: 26px;
  }

  .book-catalog-upcoming-visual {
    min-height: 230px;
  }

  .books-order-heading {
    margin-bottom: 44px;
  }

  .books-order-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 27px;
  }

  .books-page-cta {
    padding-block: 58px 64px;
  }

  .books-page-cta-inner {
    gap: 30px;
  }

  .books-page-cta-actions {
    width: 100%;
    align-items: stretch;
  }

  .books-page-cta-actions .button {
    width: 100%;
  }

  .books-page-cta-actions .text-link {
    width: fit-content;
  }
}
/* ==================================================
   KNJIGA — INTERFERENCIJE
================================================== */

.book-detail-hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory-50);
}

.book-detail-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -250px;
  right: -170px;
  border: 1px solid rgba(180, 154, 103, 0.3);
  border-radius: 50%;
}

.book-detail-hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 104px;
  align-items: center;
  padding-block: 72px 84px;
}

.book-detail-hero-visual {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
}

.book-detail-cover-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.book-detail-cover-frame img {
  width: 100%;
  height: auto;
}

.book-detail-cover-accent {
  position: absolute;
  width: 82%;
  height: 88%;
  right: -26px;
  bottom: -26px;
  border: 1px solid var(--gold-500);
}

.book-detail-hero-content {
  position: relative;
  z-index: 2;
}

.book-detail-hero-content h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1.03;
}

.book-detail-hero-author {
  margin: 0 0 28px;
  color: var(--burgundy-700);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.book-detail-lead {
  max-width: 760px;
  margin: 0;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.48;
}

.book-detail-hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.book-detail-quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.book-detail-quick-info > div {
  padding-right: 24px;
  border-right: 1px solid var(--border);
}

.book-detail-quick-info > div:not(:first-child) {
  padding-left: 24px;
}

.book-detail-quick-info > div:last-child {
  border-right: 0;
}

.book-detail-quick-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.book-detail-quick-info strong {
  display: block;
  color: var(--navy-800);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.book-detail-intro-section {
  background: var(--ivory-100);
}

.book-detail-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 84px;
  align-items: start;
}

.book-detail-intro-grid h2 {
  max-width: 690px;
  margin-bottom: 0;
}

.book-detail-copy {
  max-width: 740px;
}

.book-detail-copy p {
  margin-top: 0;
  margin-bottom: 20px;
}

.book-detail-audience-section {
  background: var(--ivory-50);
}

.book-detail-section-heading {
  max-width: 850px;
}

.book-detail-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.book-detail-audience-card {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.book-detail-card-index {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-size: 18px;
}

.book-detail-audience-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
}

.book-detail-audience-card p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.book-detail-topics-section {
  color: var(--ivory-50);
  background: var(--navy-800);
}

.book-detail-topics-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.book-detail-topics-heading {
  position: sticky;
  top: 120px;
}

.book-detail-topics-heading h2 {
  color: var(--ivory-50);
}

.book-detail-topics-heading p:last-child {
  max-width: 600px;
  color: rgba(248, 246, 241, 0.72);
}

.book-detail-topic-list {
  border-top: 1px solid rgba(248, 246, 241, 0.2);
}

.book-detail-topic-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding-block: 28px;
  border-bottom: 1px solid rgba(248, 246, 241, 0.2);
}

.book-detail-topic-item > span {
  color: var(--gold-200);
  font-family: var(--font-serif);
  font-size: 18px;
}

.book-detail-topic-item h3 {
  margin-bottom: 10px;
  color: var(--ivory-50);
}

.book-detail-topic-item p {
  max-width: 670px;
  margin: 0;
  color: rgba(248, 246, 241, 0.68);
}

.book-detail-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.book-detail-value-card {
  min-height: 245px;
  padding: 32px 30px 0;
  border-right: 1px solid var(--border);
}

.book-detail-value-card:first-child {
  padding-left: 0;
}

.book-detail-value-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.book-detail-value-card p {
  color: var(--text-secondary);
}

.book-detail-author-section {
  background: var(--ivory-50);
}

.book-detail-author-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.book-detail-author-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.book-detail-author-copy {
  max-width: 720px;
}

.book-detail-author-copy p {
  margin-top: 0;
}

.book-detail-author-copy .text-link {
  margin-top: 14px;
}

.book-detail-data-section {
  color: var(--ivory-50);
  background: var(--navy-800);
}

.book-detail-data-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.book-detail-data-heading h2 {
  margin-bottom: 0;
  color: var(--ivory-50);
}

.book-detail-data-list {
  margin: 0;
  border-top: 1px solid rgba(248, 246, 241, 0.2);
}

.book-detail-data-list > div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  padding-block: 21px;
  border-bottom: 1px solid rgba(248, 246, 241, 0.2);
}

.book-detail-data-list dt {
  color: var(--gold-200);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.book-detail-data-list dd {
  margin: 0;
  color: rgba(248, 246, 241, 0.86);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.4;
}

.book-order-form-section {
  background: var(--ivory-100);
}

.book-order-form-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.book-order-form-intro {
  position: sticky;
  top: 120px;
}

.book-order-form-intro h2 {
  max-width: 660px;
}

.book-order-form-intro > p:last-of-type {
  max-width: 610px;
}

.book-order-contact-note {
  margin-top: 36px;
  padding: 24px 26px;
  border-left: 3px solid var(--gold-500);
  background: var(--ivory-50);
}

.book-order-contact-note p {
  margin: 0 0 8px;
  color: var(--text-secondary);
}

.book-order-contact-note a {
  color: var(--burgundy-700);
  font-weight: 600;
}

.book-order-form {
  padding: 42px;
  border: 1px solid var(--border);
  background: var(--ivory-50);
}

.book-order-form .form-group {
  margin-bottom: 23px;
}

.book-order-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.book-order-form label:not(.form-checkbox) {
  display: block;
  margin-bottom: 9px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 600;
}

.book-order-form label span {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 400;
}

.book-order-form input,
.book-order-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--ivory-100);
  color: var(--navy-800);
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.book-order-form input {
  min-height: 50px;
  padding: 11px 13px;
}

.book-order-form textarea {
  min-height: 145px;
  padding: 13px;
  resize: vertical;
}

.book-order-form input:focus,
.book-order-form textarea:focus {
  outline: none;
  border-color: var(--burgundy-700);
  background: var(--ivory-50);
  box-shadow: 0 0 0 3px rgba(119, 47, 64, 0.09);
}

.form-checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 6px 0 28px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.form-checkbox input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--burgundy-700);
}

.form-checkbox a {
  color: var(--burgundy-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.book-order-form .button {
  width: 100%;
}

.form-note {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 980px) {
  .book-detail-hero-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  }

  .book-detail-hero-content h1 {
    font-size: clamp(48px, 5.5vw, 66px);
  }
}

@media (max-width: 860px) {
  .book-detail-hero-grid,
  .book-detail-intro-grid,
  .book-detail-topics-grid,
  .book-detail-author-grid,
  .book-order-form-grid {
    grid-template-columns: 1fr;
  }

  .book-detail-hero-grid {
    min-height: auto;
    gap: 58px;
    padding-block: 54px 68px;
  }

  .book-detail-hero-visual {
    width: min(100%, 410px);
  }

  .book-detail-intro-grid,
  .book-detail-author-grid {
    gap: 34px;
  }

  .book-detail-topics-grid,
  .book-order-form-grid {
    gap: 56px;
  }

  .book-detail-topics-heading,
  .book-order-form-intro {
    position: static;
  }

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

  .book-detail-value-card,
  .book-detail-value-card:first-child,
  .book-detail-value-card:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .book-detail-value-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .book-detail-hero-grid {
    gap: 44px;
    padding-block: 38px 54px;
  }

  .book-detail-cover-accent {
    right: -14px;
    bottom: -14px;
  }

  .book-detail-hero-content h1 {
    font-size: 43px;
    line-height: 1.05;
  }

  .book-detail-lead {
    font-size: 21px;
    line-height: 1.5;
  }

  .book-detail-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

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

  .book-detail-hero-actions .text-link {
    width: fit-content;
  }

  .book-detail-quick-info {
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding-top: 0;
  }

  .book-detail-quick-info > div,
  .book-detail-quick-info > div:not(:first-child) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .book-detail-quick-info > div:last-child {
    border-bottom: 0;
  }

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

  .book-detail-audience-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .book-detail-topic-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 26px;
  }

  .book-detail-data-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 19px;
  }

  .book-detail-data-list dd {
    font-size: 19px;
  }

  .book-order-form {
    padding: 28px 22px;
  }

  .book-order-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 380px) {
  .book-detail-hero-content h1 {
    font-size: 39px;
  }
}
/* ==================================================
   KONTAKT PAGE
================================================== */

.contact-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory-50);
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -230px;
  right: -150px;
  border: 1px solid rgba(180, 154, 103, 0.3);
  border-radius: 50%;
}

.contact-page-hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: center;
  padding-block: 68px;
}

.contact-page-hero-copy,
.contact-page-hero-note {
  position: relative;
  z-index: 2;
}

.contact-page-hero-copy h1 {
  margin-bottom: 26px;
}

.contact-page-lead {
  max-width: 720px;
  margin: 0;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.48;
}

.contact-page-hero-note {
  max-width: 450px;
  margin-left: auto;
  padding: 34px;
  border-left: 3px solid var(--gold-500);
  background: rgba(241, 236, 227, 0.62);
}

.contact-page-hero-note p {
  margin: 0;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.45;
}

.contact-page-main-section {
  background: var(--ivory-100);
}

.contact-page-main-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-page-details-heading {
  max-width: 620px;
}

.contact-page-details-heading p:last-child {
  color: var(--text-secondary);
}

.contact-page-detail-list {
  margin-top: 42px;
  border-top: 1px solid var(--border);
}

.contact-page-detail-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding-block: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-page-detail-label {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-page-detail-item a {
  color: var(--navy-800);
  font-family: var(--font-serif);
  font-size: 20px;
  text-decoration: none;
}

.contact-page-detail-item a:hover {
  color: var(--burgundy-700);
}

.contact-page-book-note {
  margin-top: 48px;
  padding: 30px;
  border: 1px solid var(--gold-500);
  background: var(--ivory-50);
}

.contact-page-book-note-label {
  margin: 0 0 14px;
  color: var(--burgundy-700);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-page-book-note h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.contact-page-book-note p {
  color: var(--text-secondary);
}

.contact-page-form-wrapper {
  padding: 42px;
  border: 1px solid var(--border);
  background: var(--ivory-50);
}

.contact-page-form-heading {
  margin-bottom: 34px;
}

.contact-page-form-heading h2 {
  margin-bottom: 12px;
}

.contact-page-form-heading p:last-child {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.contact-page-form .form-group {
  margin-bottom: 23px;
}

.contact-page-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-page-form label:not(.form-checkbox) {
  display: block;
  margin-bottom: 9px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 600;
}

.contact-page-form label span {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 400;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--ivory-100);
  color: var(--navy-800);
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-page-form input,
.contact-page-form select {
  min-height: 50px;
  padding: 11px 13px;
}

.contact-page-form textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

.contact-page-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy-700) 50%),
    linear-gradient(135deg, var(--navy-700) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  outline: none;
  border-color: var(--burgundy-700);
  background: var(--ivory-50);
  box-shadow: 0 0 0 3px rgba(119, 47, 64, 0.09);
}

.contact-page-form .button {
  width: 100%;
}

.contact-page-social-section {
  padding-block: 88px;
  color: var(--ivory-50);
  background: var(--navy-800);
}

.contact-page-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.contact-page-social-section h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ivory-50);
}

.contact-page-social-links {
  border-top: 1px solid rgba(248, 246, 241, 0.2);
}

.contact-page-social-links a {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-bottom: 1px solid rgba(248, 246, 241, 0.2);
  color: var(--ivory-50);
  font-family: var(--font-serif);
  font-size: 26px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.contact-page-social-links a:hover {
  padding-left: 8px;
  color: var(--gold-200);
}

@media (max-width: 860px) {
  .contact-page-hero-grid,
  .contact-page-main-grid,
  .contact-page-social-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-hero-grid {
    min-height: auto;
    gap: 44px;
    padding-block: 52px 64px;
  }

  .contact-page-hero-note {
    max-width: 600px;
    margin-left: 0;
  }

  .contact-page-main-grid {
    gap: 58px;
  }

  .contact-page-social-grid {
    gap: 42px;
  }
}

@media (max-width: 600px) {
  .contact-page-hero-grid {
    gap: 34px;
    padding-block: 36px 52px;
  }

  .contact-page-lead {
    font-size: 21px;
    line-height: 1.5;
  }

  .contact-page-hero-note {
    padding: 26px 22px;
  }

  .contact-page-hero-note p {
    font-size: 21px;
  }

  .contact-page-detail-item {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-block: 18px;
  }

  .contact-page-detail-item a {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .contact-page-book-note {
    margin-top: 38px;
    padding: 24px 22px;
  }

  .contact-page-form-wrapper {
    padding: 28px 22px;
  }

  .contact-page-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-page-social-section {
    padding-block: 58px 64px;
  }

  .contact-page-social-links a {
    font-size: 23px;
  }
}
/* ==================================================
   POLITIKA PRIVATNOSTI
================================================== */

.privacy-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory-50);
}

.privacy-page-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -250px;
  right: -160px;
  border: 1px solid rgba(180, 154, 103, 0.3);
  border-radius: 50%;
}

.privacy-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding-block: 92px 100px;
}

.privacy-page-hero h1 {
  margin-bottom: 26px;
}

.privacy-page-lead {
  max-width: 790px;
  margin-bottom: 26px;
  color: var(--navy-700);
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.48;
}

.privacy-page-updated {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.privacy-page-section {
  background: var(--ivory-100);
}

.privacy-page-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.privacy-page-nav {
  position: sticky;
  top: 112px;
  padding: 26px 24px;
  border: 1px solid var(--border);
  background: var(--ivory-50);
}

.privacy-page-nav-title {
  margin: 0 0 18px;
  color: var(--burgundy-700);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.privacy-page-nav nav {
  display: flex;
  flex-direction: column;
}

.privacy-page-nav a {
  padding-block: 9px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.privacy-page-nav a:last-child {
  border-bottom: 0;
}

.privacy-page-nav a:hover {
  color: var(--burgundy-700);
}

.privacy-page-content {
  max-width: 900px;
}

.privacy-page-content > section {
  padding-bottom: 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 120px;
}

.privacy-page-content > section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.privacy-section-number {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-size: 17px;
}

.privacy-page-content h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 3.5vw, 48px);
}

.privacy-page-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 25px;
}

.privacy-page-content p,
.privacy-page-content li {
  color: var(--text-secondary);
}

.privacy-page-content ul {
  margin: 22px 0;
  padding-left: 22px;
}

.privacy-page-content li {
  margin-bottom: 10px;
  padding-left: 7px;
}

.privacy-page-content a {
  color: var(--burgundy-700);
}

.privacy-contact-box {
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 3px solid var(--gold-500);
  background: var(--ivory-50);
}

.privacy-contact-box p {
  margin: 0 0 9px;
}

.privacy-contact-box p:last-child {
  margin-bottom: 0;
}

.privacy-page-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--burgundy-700);
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 500;
  text-decoration: none;
}

.privacy-page-contact-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 960px) {
  .privacy-page-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .privacy-page-layout {
    grid-template-columns: 1fr;
  }

  .privacy-page-nav {
    position: static;
  }

  .privacy-page-nav nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
}

@media (max-width: 600px) {
  .privacy-page-hero-inner {
    padding-block: 48px 56px;
  }

  .privacy-page-lead {
    font-size: 21px;
    line-height: 1.5;
  }

  .privacy-page-layout {
    gap: 46px;
  }

  .privacy-page-nav {
    padding: 22px 20px;
  }

  .privacy-page-nav nav {
    grid-template-columns: 1fr;
  }

  .privacy-page-content > section {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }

  .privacy-page-content h2 {
    font-size: 35px;
    line-height: 1.08;
  }

  .privacy-page-content h3 {
    font-size: 23px;
  }

  .privacy-contact-box {
    padding: 21px;
  }

  .privacy-page-contact-link {
    font-size: 21px;
    overflow-wrap: anywhere;
  }
}