:root {
  --blue-950: #0b2f58;
  --blue-900: #123f6f;
  --blue-800: #174b7f;
  --blue-700: #235f96;
  --logo-blue: #11427a;
  --gold: #f5b335;
  --gold-dark: #c98519;
  --gold-soft: #ffd778;
  --cream: #faf4e9;
  --cream-light: #fffaf3;
  --surface: #ffffff;
  --text: #243244;
  --muted: #626b78;
  --border: rgba(23, 75, 127, 0.15);
  --shadow-small: 0 14px 35px rgba(11, 47, 88, 0.09);
  --shadow: 0 28px 75px rgba(11, 47, 88, 0.16);
  --radius-small: 14px;
  --radius-medium: 26px;
  --radius-large: 42px;
  --container: 1180px;
  --font-brand: "Baskerville", "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-ui: var(--font-brand);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream-light);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.78;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

h1,
h2,
h3 {
  color: var(--blue-950);
  font-family: var(--font-brand);
  font-weight: 500;
  text-wrap: balance;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 42px), var(--container));
  margin-inline: auto;
}

.center {
  text-align: center;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(245, 179, 53, 0.48);
  background: rgba(18, 63, 111, 0.97);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  width: 170px;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 10px;
  background: var(--logo-blue);
}

.brand-logo {
  width: 100%;
  height: 62px;
  object-fit: contain;
  object-position: center;
  background: var(--logo-blue);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-soft);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 18px;
  border-left: 1px solid rgba(245, 179, 53, 0.35);
}

.lang {
  width: 34px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 8px;
  line-height: 1;
  opacity: 1;
  text-decoration: none;
}

.lang-flag {
  width: 24px;
  height: 16px;
  display: block;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.lang:hover,
.lang.active {
  border-color: var(--gold);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

/* TYPOGRAPHY */

.eyebrow,
.section-label {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: none;
}

.section {
  padding: 108px 0;
}

.section-light {
  background: var(--cream-light);
}

.section-cream {
  background: var(--cream);
}

.section-blue {
  background:
    radial-gradient(circle at 10% 90%, rgba(245, 179, 53, 0.12), transparent 30%),
    linear-gradient(135deg, var(--blue-800), var(--blue-950));
}

.section-blue h2,
.section-blue h3 {
  color: var(--cream-light);
}

.section-blue p {
  color: rgba(255, 255, 255, 0.73);
}

.section-heading h2,
.section-title h2,
.cta-section h2 {
  font-size: clamp(39px, 4.7vw, 61px);
  line-height: 1.08;
}

.section-title {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-title > p:last-child {
  max-width: 800px;
  font-size: 18px;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.reading-copy {
  max-width: 760px;
}

.reading-copy p {
  margin-bottom: 21px;
  font-size: 17px;
}

.reading-copy .lead {
  color: var(--blue-900);
  font-family: var(--font-brand);
  font-size: 25px;
  line-height: 1.55;
}

/* BUTTONS */

.primary-button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--blue-950);
}

.primary-button.solid {
  background: var(--gold);
  color: var(--blue-950);
  box-shadow: 0 12px 28px rgba(245, 179, 53, 0.2);
}

.primary-button.solid:hover {
  background: var(--gold-soft);
}

/* HOME HERO */

.hero-section {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 82px 0;
  background:
    radial-gradient(circle at 85% 16%, rgba(245, 179, 53, 0.17), transparent 30%),
    linear-gradient(135deg, var(--blue-800), var(--blue-950));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.76fr);
  align-items: center;
  gap: clamp(52px, 8vw, 115px);
}

.hero-content {
  max-width: 740px;
}

.hero-content h1 {
  max-width: 780px;
  margin-bottom: 27px;
  color: var(--cream-light);
  font-size: clamp(48px, 6.2vw, 79px);
  line-height: 1.03;
  letter-spacing: -2px;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-brand);
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.52;
}

.official-logo-badge {
  position: relative;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: var(--radius-large);
  background: var(--logo-blue);
  box-shadow: var(--shadow);
}

.badge-label {
  position: absolute;
  top: -13px;
  left: 33px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue-950);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.official-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-large);
  background: var(--logo-blue);
}

/* PAGE HERO */

.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 92px 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(245, 179, 53, 0.16), transparent 30%),
    linear-gradient(135deg, var(--blue-800), var(--blue-950));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.54fr);
  align-items: center;
  gap: clamp(45px, 7vw, 95px);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--cream-light);
  font-size: clamp(45px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.6px;
}

.page-hero-text {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.79);
  font-family: var(--font-brand);
  font-size: 23px;
  line-height: 1.55;
}

.mini-logo-badge {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: var(--radius-medium);
  background: var(--logo-blue);
  box-shadow: var(--shadow-small);
}

.mini-logo-badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-medium);
  background: var(--logo-blue);
}

/* CARDS */

.feature-grid,
.principles-grid,
.publication-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.feature-card,
.principle-card,
.publication-card,
.contact-card {
  min-height: 290px;
  padding: 33px;
  border-radius: var(--radius-medium);
}

.feature-card {
  border: 1px solid rgba(245, 179, 53, 0.32);
  background: rgba(255, 255, 255, 0.055);
}

.feature-card > span,
.principle-card > span,
.contact-card > span,
.publication-card > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.feature-card h3,
.principle-card h3,
.publication-card h3,
.contact-card h3 {
  margin: 43px 0 14px;
  font-size: 27px;
  line-height: 1.2;
}

.feature-card p,
.principle-card p,
.publication-card p,
.contact-card p {
  font-size: 15px;
}

.principle-card,
.publication-card,
.contact-card {
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.83);
  box-shadow: var(--shadow-small);
}

.contact-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue-800);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--gold-dark);
}


/* ARTICLES */

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

.publication-card {
  display: flex;
  flex-direction: column;
}

.publication-card .article-link {
  margin-top: auto;
  padding-top: 24px;
}

.article-link,
.article-back {
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.35px;
  text-decoration: none;
}

.article-link:hover,
.article-back:hover {
  color: var(--gold-dark);
}

.article-page-hero {
  min-height: 48vh;
}

.article-hero-inner {
  max-width: 980px;
}

.article-page-hero h1 {
  max-width: 980px;
}

.article-author {
  margin: -8px 0 12px;
  color: var(--gold-soft);
  font-family: var(--font-brand);
  font-size: 18px;
  font-style: italic;
}

.article-back {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold-soft);
}

.article-back:hover {
  color: var(--gold);
}

.article-body {
  max-width: 900px;
}

.article-body p {
  margin-bottom: 28px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.9;
}

.article-body .article-lead {
  margin-bottom: 42px;
  color: var(--blue-900);
  font-family: var(--font-brand);
  font-size: 23px;
  line-height: 1.65;
}

.article-body h2 {
  margin: 66px 0 24px;
  font-size: clamp(30px, 3.6vw, 43px);
  line-height: 1.15;
}

/* FOUNDERS */

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.founder-card {
  overflow: hidden;
  border: 1px solid rgba(245, 179, 53, 0.35);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.06);
}

.founder-photo {
  height: 440px;
  overflow: hidden;
  background: var(--blue-950);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.founder-photo.silvia-photo img {
  object-position: 68% center;
}

.founder-copy {
  padding: 34px;
}

.founder-role {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.founder-copy h3 {
  margin: 13px 0 21px;
  color: var(--cream-light);
  font-size: 34px;
}

.founder-copy p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

/* BUNDLE */

.bundle-list {
  display: grid;
  gap: 0;
}

.bundle-item {
  display: grid;
  grid-template-columns: 75px 1fr;
  align-items: center;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(245, 179, 53, 0.27);
}

.bundle-item span {
  color: var(--gold);
  font-family: var(--font-brand);
  font-size: 27px;
}

.bundle-item p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

/* CTA */

.cta-section {
  padding: 92px 0;
  background: var(--blue-950);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 55px;
}

.cta-section h2 {
  max-width: 890px;
  color: var(--cream-light);
}

.cta-section p:not(.section-label) {
  max-width: 820px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.7);
}

/* FOOTER */

.site-footer {
  padding: 42px 0 29px;
  border-top: 1px solid rgba(245, 179, 53, 0.5);
  background: #08294d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 10px;
  background: var(--logo-blue);
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-copy p,
.footer-copy a,
.footer-legal {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--gold-soft);
}


/* GLOBAL BRAND TYPOGRAPHY */
.nav-links a,
.language-switcher .lang,
.eyebrow,
.section-label,
.feature-card > span,
.principle-card > span,
.contact-card > span,
.publication-card > span,
.badge-label,
.founder-role,
.primary-button,
.article-link,
.article-back,
.footer-copy p,
.footer-copy a,
.footer-legal {
  font-family: var(--font-brand);
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.58s ease,
    transform 0.58s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: 88px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(245, 179, 53, 0.35);
    border-radius: var(--radius-small);
    background: var(--blue-900);
    box-shadow: var(--shadow);
  }

  .nav-panel.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 11px 2px;
  }

  .language-switcher {
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid rgba(245, 179, 53, 0.25);
    border-left: 0;
  }

  .hero-grid,
  .page-hero-grid,
  .split-copy,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .official-logo-badge,
  .mini-logo-badge {
    width: min(100%, 650px);
  }

  .feature-grid,
  .principles-grid,
  .publication-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-legal {
    grid-column: 1 / -1;
  }
}

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

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

  .navbar {
    min-height: 79px;
  }

  .brand {
    width: 150px;
  }

  .brand-logo {
    height: 54px;
  }

  .nav-panel {
    top: 79px;
    right: 14px;
    left: 14px;
  }

  .hero-section {
    min-height: auto;
    padding: 67px 0 78px;
  }

  .hero-content h1 {
    font-size: 45px;
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 22px;
  }

  .official-logo-badge {
    margin-top: 10px;
  }

  .section {
    padding: 78px 0;
  }

  .page-hero {
    min-height: auto;
    padding: 75px 0;
  }

  .page-hero h1 {
    font-size: 43px;
  }

  .page-hero-text {
    font-size: 20px;
  }

  .founder-photo {
    height: 370px;
  }

  .feature-card,
  .principle-card,
  .publication-card,
  .contact-card {
    min-height: auto;
  }

  .cta-section {
    padding: 75px 0;
  }

  .primary-button {
    width: 100%;
  }

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

  .footer-brand {
    width: 190px;
    margin-inline: auto;
  }

  .footer-legal {
    grid-column: auto;
  }

  .bundle-item {
    grid-template-columns: 52px 1fr;
    gap: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* HOME LABEL SCALE — requested update */
body[data-page="home"] .hero-content .eyebrow,
body[data-page="home"] .section-label {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  letter-spacing: 1.2px;
  text-transform: none;
}

body[data-page="home"] .feature-card > span,
body[data-page="home"] .principle-card > span {
  font-size: clamp(24px, 2.35vw, 30px);
  line-height: 1;
  letter-spacing: 0.8px;
}

body[data-page="home"] .primary-button {
  min-height: 60px;
  padding: 14px 28px;
  font-size: clamp(18px, 1.65vw, 22px);
  letter-spacing: 0.35px;
}

/* Article visibility: keep content visible on tablets/phones even if reveal animation is delayed/unsupported. */
@media (max-width: 980px) {
  body[data-page="articles"] .reveal {
    opacity: 1;
    transform: none;
  }

  body[data-page="articles"] .publication-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body[data-page="articles"] .publication-card {
    display: flex;
    min-height: auto;
    visibility: visible;
  }

  body[data-page="articles"] .article-body {
    display: block;
    width: min(calc(100% - 28px), 900px);
  }
}

@media (max-width: 620px) {
  body[data-page="home"] .hero-content .eyebrow,
  body[data-page="home"] .section-label {
    font-size: 23px;
  }

  body[data-page="home"] .feature-card > span,
  body[data-page="home"] .principle-card > span {
    font-size: 25px;
  }

  body[data-page="home"] .primary-button {
    font-size: 18px;
  }

  body[data-page="articles"] .article-body p {
    font-size: 16px;
    line-height: 1.82;
    overflow-wrap: anywhere;
  }

  body[data-page="articles"] .article-body .article-lead {
    font-size: 21px;
  }
}

body[data-page="home"] .home-discover-button {
  margin-top: 18px;
}

/* MODIFICA 5 — paragraph justification across the site */
p:not(.eyebrow):not(.section-label):not(.badge-label) {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}


/* PRIVACY POLICY */
.footer-privacy-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-privacy-link:hover {
  color: var(--gold-soft);
}

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

.privacy-content h2 {
  margin: 46px 0 14px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p,
.privacy-content li {
  color: var(--text);
  font-size: 17px;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-word;
}

.privacy-content p {
  margin-bottom: 18px;
}

.privacy-content ul {
  margin: 0 0 20px 24px;
}

.privacy-content a {
  color: var(--blue-800);
  font-weight: 700;
}

.privacy-note {
  margin-bottom: 34px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
}


/* MODIFICA 7 — typography harmonization across main pages */
/* Keep the same visual hierarchy on Home, About, Articles and Contact. */
.eyebrow,
.section-label,
body[data-page="home"] .hero-content .eyebrow,
body[data-page="home"] .section-label {
  font-size: clamp(22px, 2.15vw, 29px);
  line-height: 1.18;
  letter-spacing: 1px;
  text-transform: none;
}

.hero-content h1,
.page-hero h1 {
  font-size: clamp(50px, 5.8vw, 78px);
  line-height: 1.05;
  letter-spacing: -1.4px;
}

.hero-text,
.page-hero-text {
  font-size: clamp(22px, 2.05vw, 28px);
  line-height: 1.55;
}

.section-heading h2,
.section-title h2,
.cta-section h2 {
  font-size: clamp(40px, 4.45vw, 59px);
  line-height: 1.1;
}

.reading-copy p,
.section-title > p:last-child,
.feature-card p,
.principle-card p,
.publication-card p,
.contact-card p,
.founder-copy p {
  font-size: 17px;
  line-height: 1.78;
}

@media (max-width: 620px) {
  .eyebrow,
  .section-label,
  body[data-page="home"] .hero-content .eyebrow,
  body[data-page="home"] .section-label {
    font-size: 20px;
    line-height: 1.2;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 44px;
    line-height: 1.06;
    letter-spacing: -0.8px;
  }

  .hero-text,
  .page-hero-text {
    font-size: 21px;
    line-height: 1.5;
  }

  .section-heading h2,
  .section-title h2,
  .cta-section h2 {
    font-size: 38px;
  }
}


/* LIGHTWEIGHT PRIVACY NOTICE */
.privacy-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2000;
  width: min(760px, calc(100% - 36px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 179, 53, 0.7);
  border-radius: 16px;
  background: rgba(8, 41, 77, 0.97);
  box-shadow: 0 18px 45px rgba(8, 41, 77, 0.24);
  backdrop-filter: blur(12px);
}

.privacy-notice-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.privacy-notice-copy strong {
  color: var(--gold-soft);
  font-size: 15px;
  line-height: 1.25;
}

.privacy-notice-copy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-notice-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
}

.privacy-notice-actions a,
.privacy-notice-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.privacy-notice-actions a {
  border: 1px solid rgba(245, 179, 53, 0.7);
  color: var(--gold-soft);
}

.privacy-notice-actions button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--blue-950);
}

.privacy-notice-actions a:hover,
.privacy-notice-actions button:hover {
  transform: translateY(-1px);
}

@media (max-width: 620px) {
  .privacy-notice {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }

  .privacy-notice-actions {
    width: 100%;
  }

  .privacy-notice-actions a,
  .privacy-notice-actions button {
    flex: 1 1 0;
  }
}
