@charset "UTF-8";
:root {
  --color-navy: #0e2f56;
  --color-navy-dark: #071f3d;
  --color-gold: #c99a3d;
  --color-gold-dark: #a97822;
  --color-white: #ffffff;
  --color-cream: #fbf8f1;
  --color-light: #f7f8fa;
  --color-text: #10233f;
  --color-muted: #64748b;
  --color-green: #21865b;
  --color-orange: #f28c18;
  --color-red: #e9504f;
  --color-blue: #2477b8;
  --radius-xs:10px;
  --radius-sm:14px;
  --radius-md:20px;
  --radius-lg:28px;
  --radius-xl:40px;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;
  --space-10: 6rem;
  --shadow-soft: 0 18px 45px rgba(15, 31, 54, 0.12);
  --shadow-sm:0 6px 14px rgba(0,0,0,.08);
  --shadow-md:0 12px 28px rgba(0,0,0,.10);
  --shadow-lg:0 18px 42px rgba(0,0,0,.14);
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading:
  "Cormorant Garamond",
  "DM Serif Display",
  "Libre Baskerville",
  "Playfair Display",
  "Times New Roman",
  serif;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

@media (hover: none), (pointer: coarse) {
  .tilt-card {
    transform: none !important;
    will-change: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tilt-card {
    transform: none !important;
    transition: none;
    will-change: auto;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-width: 320px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-white);
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(201, 154, 61, 0.55);
  outline-offset: 3px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -130%;
  width: 70%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(14, 47, 86, 0.15);
}
.btn:hover::before {
  left: 150%;
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(14, 47, 86, 0.12);
}
.btn:focus-visible {
  outline: 3px solid rgba(14, 47, 86, 0.28);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-navy);
}
.btn--gold {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn--gold:hover {
  background: var(--color-gold-dark);
}
.btn--outline {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: rgba(14, 47, 86, 0.16);
}
.btn--outline::before {
  background: linear-gradient(110deg, transparent, rgba(14, 47, 86, 0.08), transparent);
}
.btn--outline:hover {
  border-color: rgba(14, 47, 86, 0.3);
}
.btn--light {
  padding: 18px 30px;
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 15px;
}
.btn--light::before {
  background: linear-gradient(110deg, transparent, rgba(14, 47, 86, 0.08), transparent);
}
.btn--light:hover {
  background: var(--color-cream);
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn::before {
    display: none;
  }
  .btn:hover, .btn:active {
    transform: none;
  }
}
.header {
  position: relative;
  z-index: 10;
}
.header__topbar {
  background: var(--color-light);
  font-size: 16px;
  color: var(--color-navy);
}
.header__topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__contacts, .header__social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__nav {
  background: var(--color-white);
  border-bottom: 1px solid rgba(15, 31, 54, 0.08);
}
.header__nav-inner {
  width: calc(100% - 48px);
  max-width: 1540px;
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__logo {
  display: block;
  flex-shrink: 0;
}
.header__logo img {
  width: 250px;
  display: block;
}
.header__menu {
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.header__item {
  position: relative;
}
.header__link-row {
  display: flex;
  align-items: center;
}
.header__link {
  position: relative;
  display: block;
  white-space: nowrap;
  color: var(--color-navy);
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--color-gold);
  transition: width 0.2s ease;
}
.header__link:hover::after, .header__link--active::after {
  width: 100%;
}
.header__submenu-toggle {
  width: 20px;
  height: 24px;
  margin-left: 2px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--color-navy);
  cursor: pointer;
}
.header__submenu-toggle[aria-expanded=true] .header__submenu-icon {
  transform: rotate(180deg);
}
.header__submenu-icon {
  width: 12px;
  height: 12px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.header__submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  min-width: 250px;
  margin: 0;
  padding: 12px;
  list-style: none;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.header__submenu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
}
.header__submenu li {
  margin: 0;
}
.header__submenu a {
  display: block;
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.header__submenu a:hover, .header__submenu a:focus-visible {
  color: var(--color-gold-dark);
  background: rgba(201, 154, 61, 0.08);
  transform: translateX(3px);
}
.header__item--has-submenu:hover .header__submenu, .header__item--has-submenu:focus-within .header__submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.header__toggle {
  display: none;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .header__nav-inner {
    gap: 22px;
  }
  .header__logo img {
    width: 250px;
  }
  .header__menu {
    gap: 14px;
    font-size: 13px;
  }
  .header__submenu-toggle {
    margin-left: 1px;
  }
  .header__nav-inner > .btn {
    flex-shrink: 0;
    min-height: 48px;
    padding-inline: 20px;
    font-size: 12px;
  }
}
@media (max-width: 980px) {
  .header__topbar {
    display: none;
  }
  .header__nav {
    position: relative;
  }
  .header__nav-inner {
    min-height: 78px;
  }
  .header__logo img {
    width: 230px;
  }
  .header__nav-inner > .btn {
    display: none;
  }
  .header__toggle {
    position: relative;
    z-index: 12;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 12px;
    background: rgba(14, 47, 86, 0.06);
    cursor: pointer;
  }
  .header__toggle span {
    width: 24px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--color-navy);
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .header__toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header__toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .header__toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header__menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    z-index: 11;
    max-height: calc(100vh - 110px);
    margin: 0;
    padding: 18px;
    display: grid;
    gap: 4px;
    overflow-y: auto;
    border: 1px solid rgba(14, 47, 86, 0.08);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: 0 20px 55px rgba(7, 31, 61, 0.16);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .header__menu--open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header__item {
    width: 100%;
  }
  .header__link-row {
    width: 100%;
    justify-content: space-between;
  }
  .header__link {
    display: block;
    padding: 14px 16px;
    flex: 1;
    border-radius: 10px;
    font-size: 15px;
  }
  .header__link::after {
    display: none;
  }
  .header__link:hover, .header__link--active {
    color: var(--color-gold-dark);
    background: var(--color-cream);
  }
  .header__submenu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    margin-left: 4px;
    border-radius: 10px;
  }
  .header__submenu-toggle:hover {
    background: var(--color-cream);
  }
  .header__submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 2px 0 4px 16px;
    padding: 0 0 0 14px;
    display: none;
    border: 0;
    border-left: 2px solid rgba(201, 154, 61, 0.25);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .header__submenu::before {
    display: none;
  }
  .header__submenu a {
    padding: 10px 12px;
    color: var(--color-muted);
    font-size: 13px;
  }
  .header__submenu a:hover, .header__submenu a:focus-visible {
    color: var(--color-gold-dark);
    background: var(--color-cream);
    transform: none;
  }
  .header__submenu--open {
    display: block;
  }
  .header__item--has-submenu:hover .header__submenu, .header__item--has-submenu:focus-within .header__submenu {
    transform: none;
  }
  .header__item--has-submenu.is-open > .header__link::before {
    transform: rotate(225deg) translate(-1px, -1px);
  }
}
.header__item--has-submenu > .header__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.header__item--has-submenu > .header__link::before {
  content: "";
  width: 6px;
  height: 6px;
  order: 2;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.header__item--has-submenu:hover > .header__link::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

@media (max-width: 520px) {
  .header__logo img {
    width: 195px;
  }
  .header__menu {
    left: 14px;
    right: 14px;
    padding: 14px;
  }
  .header__link {
    padding: 13px 14px;
  }
  .header__submenu {
    margin-left: 12px;
  }
}
.hero {
  min-height: 520px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 40%, rgba(255, 255, 255, 0.1) 70%), url("../images/hero.webp") center right/cover no-repeat;
}
.hero__inner {
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero__content {
  max-width: 530px;
}
.hero__title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}
.hero__title span {
  color: var(--color-gold);
}
.hero__text {
  margin: 0;
  max-width: 420px;
  font-size: 21px;
  line-height: 1.45;
  color: var(--color-navy);
}
.hero__actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero {
    min-height: 560px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.38) 100%), url("../images/hero.webp") center/cover no-repeat;
  }
  .hero__inner {
    min-height: 560px;
    align-items: flex-start;
    padding-top: var(--space-8);
    padding-bottom: var(--space-7);
  }
  .hero__content {
    max-width: 560px;
  }
  .hero__title {
    font-size: clamp(46px, 8vw, 66px);
    line-height: 0.96;
  }
  .hero__text {
    max-width: 440px;
    font-size: 19px;
  }
}
@media (max-width: 680px) {
  .hero {
    min-height: 620px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.42) 100%), url("../images/hero.webp") 62% center/cover no-repeat;
  }
  .hero__inner {
    min-height: 620px;
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
  }
  .hero__content {
    width: 100%;
    max-width: 480px;
  }
  .hero__title {
    margin-bottom: var(--space-4);
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.94;
    letter-spacing: -0.035em;
  }
  .hero__text {
    max-width: 360px;
    font-size: 18px;
    line-height: 1.5;
  }
  .hero__actions {
    margin-top: var(--space-5);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    max-width: 340px;
  }
  .hero .btn {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .hero {
    min-height: 470px;
    background-position: 66% center;
  }
  .hero__inner {
    min-height: 470px;
    padding-top: var(--space-6);
    padding-bottom: var(--space-5);
  }
  .hero__title {
    font-size: clamp(39px, 12.5vw, 50px);
  }
  .hero__text {
    max-width: 310px;
    font-size: 17px;
  }
  .hero__actions {
    max-width: none;
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: flex;
  align-items: center;
  color: var(--color-navy);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 48%, rgba(255, 255, 255, 0.22) 100%), url("../images/about-hero.webp") center/cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201, 154, 61, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: var(--space-7);
  padding-bottom: var(--space-8);
}
.page-hero__content {
  max-width: 790px;
}
.page-hero__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-gold-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.page-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(50px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.page-hero__title span {
  color: var(--color-gold);
}
.page-hero__text {
  max-width: 640px;
  margin: var(--space-5) 0 0;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.55;
}

.breadcrumb {
  margin-bottom: var(--space-7);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 14px;
}
.breadcrumb a {
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--color-gold-dark);
}
.breadcrumb span[aria-hidden=true] {
  color: var(--color-gold);
}

@media (max-width: 720px) {
  .page-hero {
    min-height: 430px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.42) 100%), url("../images/about-hero.webp") center/cover no-repeat;
  }
  .page-hero__inner {
    padding-top: var(--space-6);
    padding-bottom: var(--space-7);
  }
  .page-hero__title {
    font-size: clamp(43px, 12vw, 60px);
  }
  .page-hero__text {
    font-size: 18px;
  }
  .breadcrumb {
    margin-bottom: var(--space-6);
  }
}
@media (max-width: 420px) {
  .page-hero {
    min-height: 400px;
    background-position: 62% center;
  }
  .page-hero__title {
    font-size: 42px;
  }
  .page-hero__text {
    font-size: 17px;
  }
}
.quick-actions {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}
.quick-actions__grid {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(7, 31, 61, 0.14);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.quick-action {
  position: relative;
  min-height: 112px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(14, 47, 86, 0.1);
  color: var(--color-navy);
  isolation: isolate;
  transition: background 0.2s ease, transform 0.2s ease;
}
.quick-action:last-child {
  border-right: 0;
}
.quick-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.78));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.quick-action:hover {
  transform: translateY(-2px);
}
.quick-action:hover::before {
  opacity: 1;
}
.quick-action:hover .quick-action__arrow {
  transform: translateX(4px);
}
.quick-action__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(14, 47, 86, 0.06);
  color: currentColor;
}
.quick-action__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quick-action__content {
  min-width: 0;
}
.quick-action__content strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-navy);
}
.quick-action__content small {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: var(--color-muted);
}
.quick-action__arrow {
  font-size: 24px;
  font-weight: 800;
  color: currentColor;
  transition: transform 0.2s ease;
}
.quick-action--green {
  color: var(--color-green);
}
.quick-action--green .quick-action__icon {
  background: rgba(33, 134, 91, 0.1);
}
.quick-action--gold {
  color: var(--color-gold);
}
.quick-action--gold .quick-action__icon {
  background: rgba(201, 154, 61, 0.13);
}
.quick-action--blue {
  color: var(--color-blue);
}
.quick-action--blue .quick-action__icon {
  background: rgba(36, 119, 184, 0.1);
}
.quick-action--red {
  color: var(--color-red);
}
.quick-action--red .quick-action__icon {
  background: rgba(233, 80, 79, 0.1);
}

@media (max-width: 1100px) {
  .quick-action {
    padding: 22px;
    grid-template-columns: 48px 1fr 20px;
  }
  .quick-action__icon {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 900px) {
  .quick-actions {
    margin-top: 24px;
  }
  .quick-actions__grid {
    grid-template-columns: 1fr 1fr;
  }
  .quick-action {
    border-right: 0;
    border-bottom: 1px solid rgba(14, 47, 86, 0.1);
  }
  .quick-action:nth-child(odd) {
    border-right: 1px solid rgba(14, 47, 86, 0.1);
  }
  .quick-action:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}
@media (max-width: 560px) {
  .quick-actions {
    padding-inline: 14px;
  }
  .quick-actions__grid {
    grid-template-columns: 1fr;
    box-shadow: var(--shadow-sm);
  }
  .quick-action {
    grid-template-columns: 42px 1fr 18px;
    gap: 14px;
    min-height: 80px;
    padding: 18px 20px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(14, 47, 86, 0.1) !important;
  }
  .quick-action__content strong {
    margin-bottom: 0;
    font-size: 17px;
  }
  .quick-action__content small {
    display: none;
  }
  .quick-action__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .quick-action__icon svg {
    width: 24px;
    height: 24px;
  }
  .quick-action__arrow {
    font-size: 20px;
    opacity: 0.85;
  }
  .quick-action:last-child {
    border-bottom: 0 !important;
  }
}
.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}
.section-heading__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-heading__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-heading__text {
  margin: 14px 0 0;
  max-width: 560px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .section-heading {
    margin-bottom: 24px;
  }
}
.featured-services {
  padding: 72px 0 42px;
}
.featured-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 24px;
  color: var(--color-white);
  box-shadow: 0 22px 55px rgba(7, 31, 61, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.28), transparent 28%), linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0.9;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 75px rgba(7, 31, 61, 0.22);
}
.service-card:hover .service-card__link {
  transform: translateX(6px);
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 36px;
}
.service-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
}
.service-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.service-card__link {
  margin-top: auto;
  padding-top: 24px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.25s ease;
}
.service-card--green {
  background: linear-gradient(135deg, #16885b, #0d6b48);
}
.service-card--orange {
  background: linear-gradient(135deg, #f59b22, #eb720f);
}
.service-card--red {
  background: linear-gradient(135deg, #ee6a5f, #dc3f49);
}
.service-card--blue {
  background: linear-gradient(135deg, #2f8fd2, #145c98);
}

@media (max-width: 1050px) {
  .featured-services {
    padding: var(--space-8) 0 var(--space-7);
  }
  .featured-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
  }
  .service-card {
    min-height: 250px;
  }
}
@media (max-width: 620px) {
  .featured-services {
    padding: var(--space-7) 14px var(--space-6);
  }
  .featured-services__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .service-card {
    min-height: 0;
    padding: 24px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  .service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 17px;
    font-size: 28px;
  }
  .service-card h3 {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.05;
  }
  .service-card p {
    max-width: 310px;
    font-size: 15px;
    line-height: 1.5;
  }
  .service-card__link {
    padding-top: 20px;
    font-size: 14px;
  }
  .service-card:hover {
    transform: none;
  }
  .service-card::after {
    right: -55px;
    bottom: -55px;
  }
}
@media (max-width: 380px) {
  .service-card {
    padding: 22px 20px;
  }
  .service-card h3 {
    font-size: 23px;
  }
  .service-card p {
    font-size: 14px;
  }
}
.stats {
  padding: 28px 0 72px;
}
.stats__inner {
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 34px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(251, 248, 241, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 20px 55px rgba(7, 31, 61, 0.08);
}
.stats__heading {
  padding-right: 30px;
  border-right: 1px solid rgba(14, 47, 86, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stats__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  min-width: 0;
  padding: 8px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(14, 47, 86, 0.08);
  border-color: rgba(14, 47, 86, 0.06);
}
.stat-item:last-child {
  border-right: 0;
}
.stat-item__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
.stat-item__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-item__icon--gold {
  color: var(--color-gold);
  background: rgba(201, 154, 61, 0.12);
}
.stat-item__icon--red {
  color: var(--color-red);
  background: rgba(233, 80, 79, 0.1);
}
.stat-item__icon--green {
  color: var(--color-green);
  background: rgba(33, 134, 91, 0.1);
}
.stat-item__icon--blue {
  color: var(--color-blue);
  background: rgba(36, 119, 184, 0.1);
}
.stat-item__value {
  display: block;
  color: var(--color-navy);
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stat-item__label {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .stats {
    padding: var(--space-6) 0 var(--space-8);
  }
  .stats__inner {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .stats__heading {
    padding-right: 0;
    padding-bottom: var(--space-5);
    border-right: 0;
    border-bottom: 1px solid rgba(14, 47, 86, 0.06);
  }
  .stats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stat-item {
    padding: 20px 16px;
  }
  .stat-item:nth-child(3) {
    border-right: 0;
  }
  .stat-item:nth-child(n+4) {
    border-top: 1px solid rgba(14, 47, 86, 0.06);
  }
}
@media (max-width: 720px) {
  .stats {
    padding: var(--space-5) 14px var(--space-7);
  }
  .stats__inner {
    padding: 28px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  .stats__title {
    font-size: 34px;
  }
  .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat-item {
    padding: 22px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(14, 47, 86, 0.06);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(14, 47, 86, 0.06);
  }
  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(14, 47, 86, 0.06);
  }
  .stat-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .stat-item:last-child {
    grid-column: 1/-1;
    border-right: 0;
  }
  .stat-item__value {
    font-size: 32px;
  }
}
@media (max-width: 420px) {
  .stats__inner {
    padding: 24px 18px 20px;
  }
  .stats__heading {
    padding-bottom: 18px;
  }
  .stats__title {
    font-size: 31px;
  }
  .stat-item:last-child {
    padding-top: 20px;
    padding-bottom: 14px;
  }
  .stat-item {
    padding: 18px 10px;
  }
  .stat-item__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }
  .stat-item__icon svg {
    width: 23px;
    height: 23px;
  }
  .stat-item__value {
    font-size: 28px;
  }
  .stat-item__label {
    margin-top: 6px;
    font-size: 13px;
  }
}
.upcoming-events {
  padding: 72px 0 84px;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.55), rgb(255, 255, 255));
}
.upcoming-events__header {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.upcoming-events__header .section-heading {
  margin-bottom: 0;
}
.upcoming-events__all {
  flex-shrink: 0;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}
.upcoming-events__all span {
  color: var(--color-gold);
  font-size: 22px;
}
.upcoming-events__all:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}
.upcoming-events__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 0.88fr;
  gap: 24px;
  align-items: stretch;
}

.event-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(14, 47, 86, 0.09);
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 65px rgba(7, 31, 61, 0.15);
}
.event-card:hover .event-card__image img {
  transform: scale(1.045);
}
.event-card:hover .event-card__link span {
  transform: translateX(5px);
}
.event-card__image {
  position: relative;
  height: 205px;
  overflow: hidden;
  display: block;
  background: var(--color-light);
}
.event-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.event-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 58px;
  min-height: 64px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(7, 31, 61, 0.15);
  color: var(--color-navy);
}
.event-card__date strong {
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}
.event-card__date small {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.event-card__category {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
}
.event-card__category--blue {
  background: rgba(36, 119, 184, 0.9);
}
.event-card__category--orange {
  background: rgba(242, 140, 24, 0.92);
}
.event-card__category--red {
  background: rgba(233, 80, 79, 0.92);
}
.event-card__content {
  flex: 1;
  padding: 25px 25px 23px;
  display: flex;
  flex-direction: column;
}
.event-card__title {
  margin: 0 0 18px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}
.event-card__title a {
  transition: color 0.2s ease;
}
.event-card__title a:hover {
  color: var(--color-gold-dark);
}
.event-card__details {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.35;
}
.event-card__details li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.event-card__details span {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--color-gold);
}
.event-card__details span svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.event-card__link {
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 850;
}
.event-card__link span {
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.event-card__title {
  font-family: var(--font-heading);
}

.events-calendar-card {
  min-height: 100%;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(36, 119, 184, 0.1);
  border-radius: 22px;
  background: radial-gradient(circle at 90% 10%, rgba(36, 119, 184, 0.13), transparent 36%), linear-gradient(145deg, rgb(238, 247, 255), rgb(249, 252, 255));
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.07);
}
.events-calendar-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  color: var(--color-blue);
  background: rgba(36, 119, 184, 0.1);
}
.events-calendar-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.events-calendar-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 25px;
  line-height: 1.15;
}
.events-calendar-card p {
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}
.events-calendar-card .btn {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 1120px) {
  .upcoming-events__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .events-calendar-card {
    min-height: 340px;
  }
}
@media (max-width: 720px) {
  .upcoming-events {
    padding: var(--space-7) 14px var(--space-8);
  }
  .upcoming-events__header {
    margin-bottom: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-4);
  }
  .upcoming-events__all {
    margin-bottom: 0;
    font-size: 14px;
  }
  .upcoming-events__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .event-card {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  .event-card__image {
    height: 210px;
  }
  .event-card__content {
    padding: 22px 20px 20px;
  }
  .event-card__title {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .event-card__details {
    gap: 8px;
    font-size: 13px;
  }
  .event-card__link {
    padding-top: 20px;
  }
  .event-card:hover {
    transform: none;
  }
  .events-calendar-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  .events-calendar-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 16px;
  }
  .events-calendar-card__icon svg {
    width: 29px;
    height: 29px;
  }
  .events-calendar-card h3 {
    margin-bottom: 12px;
    font-size: 23px;
  }
  .events-calendar-card p {
    margin-bottom: 22px;
    font-size: 14px;
  }
  .events-calendar-card .btn {
    width: auto;
    min-width: 210px;
  }
}
@media (max-width: 420px) {
  .upcoming-events {
    padding-inline: 14px;
  }
  .event-card__image {
    height: 190px;
  }
  .event-card__date {
    top: 13px;
    left: 13px;
    width: 54px;
    min-height: 60px;
  }
  .event-card__date strong {
    font-size: 20px;
  }
  .event-card__category {
    right: 12px;
    bottom: 12px;
  }
  .event-card__content {
    padding: 20px 18px 18px;
  }
  .event-card__title {
    font-size: 21px;
  }
  .events-calendar-card {
    padding: 24px 20px;
  }
  .events-calendar-card .btn {
    width: 100%;
    min-width: 0;
  }
}
.support-section {
  padding: 0 0 86px;
}
.support-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.9fr);
  gap: 26px;
}

.volunteer-banner {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.25fr);
  border-radius: 24px;
  background: linear-gradient(135deg, #d39227, #b87512);
  box-shadow: 0 22px 58px rgba(7, 31, 61, 0.12);
}
.volunteer-banner__content {
  position: relative;
  z-index: 2;
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-white);
}
.volunteer-banner__eyebrow {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.volunteer-banner__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.volunteer-banner__text {
  margin: 20px 0 30px;
  max-width: 430px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.volunteer-banner__image {
  position: relative;
  min-height: 100%;
}
.volunteer-banner__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #bd7d18 0%, rgba(189, 125, 24, 0.58) 20%, transparent 58%);
}
.volunteer-banner__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.five-per-thousand {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 38px 34px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(201, 154, 61, 0.18);
  border-radius: 24px;
  background: radial-gradient(circle at 100% 100%, rgba(201, 154, 61, 0.2), transparent 38%), linear-gradient(145deg, rgb(251, 248, 241), rgb(255, 255, 255));
  box-shadow: 0 22px 58px rgba(7, 31, 61, 0.08);
}
.five-per-thousand__icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  color: var(--color-gold-dark);
  background: rgba(201, 154, 61, 0.13);
}
.five-per-thousand__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.five-per-thousand__content {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.five-per-thousand__eyebrow {
  margin-bottom: 2px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.five-per-thousand__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 45px;
  line-height: 1;
}
.five-per-thousand__text {
  margin: 16px 0 26px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}
.five-per-thousand__fiscal-code {
  margin-bottom: 28px;
}
.five-per-thousand__fiscal-code small {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.five-per-thousand__fiscal-code strong {
  color: var(--color-navy);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}
.five-per-thousand__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-top: 4px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
}
.five-per-thousand__link span {
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 0.2s ease;
}
.five-per-thousand__link:hover span {
  transform: translateX(5px);
}

@media (max-width: 1050px) {
  .support-section {
    padding-bottom: var(--space-8);
  }
  .support-section__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .volunteer-banner {
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.2fr);
  }
  .five-per-thousand {
    min-height: 280px;
  }
}
@media (max-width: 760px) {
  .support-section {
    padding: 0 14px var(--space-7);
  }
  .volunteer-banner {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  .volunteer-banner__image {
    order: -1;
    min-height: 250px;
  }
  .volunteer-banner__image::before {
    background: linear-gradient(180deg, transparent 42%, rgba(189, 125, 24, 0.78) 100%);
  }
  .volunteer-banner__content {
    padding: 30px 24px 32px;
  }
  .volunteer-banner__eyebrow {
    margin-bottom: 9px;
    font-size: 12px;
  }
  .volunteer-banner__title {
    font-size: 42px;
  }
  .volunteer-banner__text {
    margin: 16px 0 24px;
    max-width: none;
    font-size: 16px;
  }
  .five-per-thousand {
    min-height: 0;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  .five-per-thousand__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
  .five-per-thousand__icon svg {
    width: 29px;
    height: 29px;
  }
  .five-per-thousand__title {
    font-family: var(--font-heading);
    font-size: 40px;
  }
  .five-per-thousand__text {
    margin: 14px 0 22px;
  }
  .five-per-thousand__fiscal-code {
    margin-bottom: 24px;
  }
  .five-per-thousand__fiscal-code strong {
    font-size: 30px;
  }
  .five-per-thousand__link {
    margin-top: 0;
  }
}
@media (max-width: 520px) {
  .volunteer-banner__image {
    min-height: 220px;
  }
  .volunteer-banner__content {
    padding: 26px 20px 28px;
  }
  .volunteer-banner__title {
    font-size: 38px;
  }
  .volunteer-banner__text {
    font-size: 15px;
  }
  .volunteer-banner .btn {
    width: 100%;
  }
  .five-per-thousand {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
  .five-per-thousand__content {
    width: 100%;
  }
  .five-per-thousand__title {
    font-size: 38px;
  }
  .five-per-thousand__fiscal-code strong {
    display: block;
    max-width: 100%;
    font-size: clamp(25px, 8vw, 30px);
    overflow-wrap: anywhere;
  }
  .five-per-thousand__link {
    margin-top: 4px;
  }
}
.footer {
  padding: 68px 0 0;
  color: rgba(255, 255, 255, 0.84);
  background: radial-gradient(circle at 10% 0%, rgba(201, 154, 61, 0.16), transparent 28%), linear-gradient(145deg, var(--color-navy), var(--color-navy-dark));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr 0.9fr 1.15fr;
  gap: 42px;
  padding-bottom: 52px;
}
.footer__brand {
  padding-right: 24px;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 28px;
}
.footer__logo img {
  width: 270px;
  display: block;
  /* Il file principale contiene testo nero.
     Per il momento lo lasciamo così; in seguito useremo
     una versione bianca/oro specifica per il footer. */
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}
.footer__tagline {
  margin: 0;
  max-width: 260px;
  font-size: 16px;
  line-height: 1.55;
}
.footer__socials {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer__socials a:hover {
  color: var(--color-navy);
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}
.footer__socials a svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer__title {
  margin: 0 0 22px;
  color: var(--color-white);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}
.footer__list, .footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__list {
  display: grid;
  gap: 15px;
}
.footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  line-height: 1.5;
}
.footer__list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer__list a {
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__list a::after {
  content: "→";
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer__list a:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}
.footer__list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.footer__hours {
  display: grid;
  gap: 22px;
}
.footer__hours p {
  margin: 0;
}
.footer__hours strong,
.footer__hours span {
  display: block;
}
.footer__hours strong {
  margin-bottom: 7px;
  color: var(--color-white);
  font-size: 14px;
}
.footer__hours span {
  font-size: 14px;
  line-height: 1.55;
}
.footer__links {
  display: grid;
  gap: 13px;
}
.footer__links a {
  font-size: 14px;
  line-height: 1.35;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer__links a:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}
.footer__map {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}
.footer__map iframe {
  width: 100%;
  height: 140px;
  display: block;
  border: 0;
}
.footer__map-link {
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}
.footer__map-link > span {
  color: var(--color-gold);
  font-size: 18px;
  transition: transform 0.2s ease;
}
.footer__map-link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.footer__map-link:hover > span {
  transform: translateX(4px);
}
.footer__bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 13px;
}
.footer__bottom p {
  margin: 0;
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer__legal a {
  transition: color 0.2s ease;
}
.footer__legal a:hover {
  color: var(--color-gold);
}

@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__brand {
    grid-column: span 2;
  }
  .footer__column--map {
    grid-column: span 2;
  }
}
@media (max-width: 760px) {
  .footer {
    padding-top: 54px;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 28px;
  }
  .footer__brand, .footer__column--map {
    grid-column: 1/-1;
  }
  .footer__bottom {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__brand, .footer__column--map {
    grid-column: auto;
  }
  .footer__brand {
    text-align: center;
  }
  .footer__logo {
    display: flex;
    justify-content: center;
  }
  .footer__logo img {
    width: 230px;
  }
  .footer__tagline {
    margin-inline: auto;
  }
  .footer__socials {
    justify-content: center;
  }
  .footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.home-alert {
  background: var(--color-gold);
  color: var(--color-navy);
}
.home-alert__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 22px;
  text-align: center;
}
.home-alert__text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  animation: alert-color 3.5s ease-in-out infinite;
}
.home-alert__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-navy);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}
.home-alert__link:hover {
  gap: 13px;
}

@keyframes alert-color {
  0%, 100% {
    color: var(--color-navy);
  }
  50% {
    color: #fff;
  }
}
@media (max-width: 700px) {
  .home-alert__inner {
    min-height: auto;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
  }
  .home-alert__text {
    font-size: 16px;
  }
  .home-alert__link {
    font-size: 15px;
  }
}
.about-intro {
  padding: var(--space-10) 0;
}
.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}
.about-intro__content {
  max-width: 650px;
}
.about-intro__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-intro__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}
.about-intro__title span {
  color: var(--color-gold);
}
.about-intro__lead {
  margin: var(--space-6) 0 var(--space-4);
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}
.about-intro__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}
.about-intro__text + .about-intro__text {
  margin-top: var(--space-4);
}
.about-intro__visual {
  position: relative;
}
.about-intro__image {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-intro__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.about-intro__image:hover img {
  transform: scale(1.025);
}
.about-intro__badge {
  position: absolute;
  left: -18px;
  bottom: 34px;
  width: 165px;
  padding: 22px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}
.about-intro__badge strong,
.about-intro__badge span {
  display: block;
}
.about-intro__badge strong {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.about-intro__badge span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .about-intro__content {
    max-width: 720px;
  }
  .about-intro__visual {
    max-width: 760px;
  }
  .about-intro__badge {
    left: 24px;
  }
}
@media (max-width: 720px) {
  .about-intro {
    padding: var(--space-8) 14px;
  }
  .about-intro__title {
    font-size: clamp(38px, 10vw, 50px);
  }
  .about-intro__lead {
    font-size: 18px;
  }
  .about-intro__image {
    min-height: 400px;
  }
  .about-intro__image img {
    min-height: 400px;
  }
  .about-intro__badge {
    left: 18px;
    bottom: 18px;
    width: 145px;
    padding: 18px;
  }
  .about-intro__badge strong {
    font-size: 42px;
  }
}
@media (max-width: 420px) {
  .about-intro {
    padding-top: var(--space-7);
  }
  .about-intro__title {
    font-size: 38px;
  }
  .about-intro__lead {
    font-size: 17px;
  }
  .about-intro__text {
    font-size: 15px;
  }
  .about-intro__image {
    min-height: 330px;
  }
  .about-intro__image img {
    min-height: 330px;
  }
  .about-intro__badge {
    width: 132px;
  }
  .about-intro__badge strong {
    font-size: 38px;
  }
  .about-intro__badge span {
    font-size: 13px;
  }
}
.about-values {
  padding: 90px 0 100px;
  background: radial-gradient(circle at 10% 20%, rgba(201, 154, 61, 0.08), transparent 28%), linear-gradient(180deg, rgba(251, 248, 241, 0.7), rgb(255, 255, 255));
}
.about-values__heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}
.about-values__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-values__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-values__intro {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.6;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  padding: 34px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(7, 31, 61, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(7, 31, 61, 0.12);
}
.value-card__number {
  position: absolute;
  top: 25px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1;
  color: rgba(14, 47, 86, 0.1);
}
.value-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}
.value-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.1;
}
.value-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.value-card--gold .value-card__icon {
  color: var(--color-gold-dark);
  background: rgba(201, 154, 61, 0.13);
}
.value-card--green .value-card__icon {
  color: var(--color-green);
  background: rgba(33, 134, 91, 0.1);
}
.value-card--blue .value-card__icon {
  color: var(--color-blue);
  background: rgba(36, 119, 184, 0.1);
}

@media (max-width: 900px) {
  .about-values__grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }
  .value-card {
    min-height: auto;
  }
}
@media (max-width: 520px) {
  .about-values {
    padding: 70px 0 76px;
  }
  .about-values__heading {
    margin-bottom: 36px;
    text-align: left;
  }
  .about-values__intro {
    margin-left: 0;
  }
  .value-card {
    padding: 28px 26px;
  }
  .value-card__icon {
    margin-bottom: 24px;
  }
  .value-card h3 {
    font-size: 27px;
  }
}
.about-links {
  padding: 0 0 70px;
}
.about-links__box {
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(550px, 1.2fr);
  align-items: center;
  gap: 60px;
  border-radius: 28px;
  background: radial-gradient(circle at 0% 0%, rgba(201, 154, 61, 0.12), transparent 35%), var(--color-navy);
  box-shadow: 0 24px 65px rgba(7, 31, 61, 0.14);
}
.about-links__heading {
  max-width: 470px;
}
.about-links__heading p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}
.about-links__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-links__title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.about-links__title span {
  color: var(--color-gold);
}
.about-links__items {
  display: grid;
  gap: 14px;
}

.about-link-card {
  min-height: 145px;
  padding: 24px;
  display: grid;
  grid-template-columns: 58px 1fr 30px;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.about-link-card:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.about-link-card:hover .about-link-card__arrow {
  transform: translateX(5px);
}
.about-link-card__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
}
.about-link-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-link-card__content {
  min-width: 0;
}
.about-link-card__content small,
.about-link-card__content strong,
.about-link-card__content > span {
  display: block;
}
.about-link-card__content small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-link-card__content strong {
  margin-bottom: 7px;
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.25;
}
.about-link-card__content > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}
.about-link-card__arrow {
  color: var(--color-white);
  font-size: 24px;
  transition: transform 0.2s ease;
}
.about-link-card--blue .about-link-card__icon {
  color: #75bced;
  background: rgba(47, 143, 210, 0.16);
}
.about-link-card--gold .about-link-card__icon {
  color: var(--color-gold);
  background: rgba(201, 154, 61, 0.16);
}

@media (max-width: 1000px) {
  .about-links__box {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .about-links__heading {
    max-width: 650px;
  }
}
@media (max-width: 620px) {
  .about-links {
    padding-bottom: 70px;
  }
  .about-links__box {
    padding: 34px 22px;
    border-radius: 24px;
  }
  .about-link-card {
    grid-template-columns: 50px 1fr 20px;
    gap: 15px;
    padding: 20px;
    min-height: 125px;
  }
  .about-link-card__icon {
    width: 50px;
    height: 50px;
  }
  .about-link-card__icon svg {
    width: 25px;
    height: 25px;
  }
  .about-link-card__content > span {
    display: none;
  }
  .about-link-card__content strong {
    margin-bottom: 0;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .about-links__box {
    padding: 30px 18px;
  }
  .about-links__title {
    font-size: 36px;
  }
  .about-link-card {
    grid-template-columns: 44px 1fr 18px;
    padding: 18px 16px;
  }
  .about-link-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
  .about-link-card__content small {
    font-size: 10px;
  }
}
.organization-intro {
  padding: var(--space-10) 0 var(--space-9);
}
.organization-intro__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(60px, 7vw, 100px);
}
.organization-intro__heading {
  max-width: 570px;
}
.organization-intro__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.organization-intro__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.organization-intro__title span {
  color: var(--color-gold);
}
.organization-intro__content {
  max-width: 650px;
}
.organization-intro__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}
.organization-intro__content p + p {
  margin-top: var(--space-4);
}
.organization-intro__lead {
  color: var(--color-navy) !important;
  font-size: 20px !important;
  font-weight: 600;
  line-height: 1.6 !important;
}

@media (max-width: 800px) {
  .organization-intro {
    padding: var(--space-8) 14px;
  }
  .organization-intro__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .organization-intro__content {
    max-width: 700px;
  }
}
@media (max-width: 420px) {
  .organization-intro {
    padding-top: var(--space-7);
  }
  .organization-intro__title {
    font-size: 38px;
  }
  .organization-intro__lead {
    font-size: 18px !important;
  }
  .organization-intro__content p {
    font-size: 15px;
  }
}
.organization-map {
  padding: var(--space-9) 0 var(--space-10);
  background: linear-gradient(180deg, rgba(251, 248, 241, 0.55), rgb(255, 255, 255));
}
.organization-map__heading {
  max-width: 760px;
  margin: 0 auto var(--space-7);
  text-align: center;
}
.organization-map__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.organization-map__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.organization-map__title span {
  color: var(--color-gold);
}
.organization-map__intro {
  max-width: 620px;
  margin: var(--space-4) auto 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.6;
}
.organization-map__structure {
  max-width: 1080px;
  margin: 0 auto;
}
.organization-map__connector {
  width: 2px;
  height: 34px;
  margin: 0 auto;
  background: rgba(201, 154, 61, 0.28);
}
.organization-map__connector--wide {
  height: 44px;
}
.organization-map__areas {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.organization-node {
  max-width: 720px;
  margin: 0 auto;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  text-align: center;
}
.organization-node strong,
.organization-node span {
  display: block;
}
.organization-node__label {
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.organization-node strong {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.1;
}
.organization-node > span:last-child {
  max-width: 540px;
  margin: 10px auto 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}
.organization-node--primary {
  border: 1px solid rgba(201, 154, 61, 0.18);
  background: linear-gradient(145deg, rgb(251, 248, 241), rgb(255, 255, 255));
  box-shadow: var(--shadow-sm);
}
.organization-node--primary .organization-node__label {
  color: var(--color-gold-dark);
}
.organization-node--secondary {
  border: 1px solid rgba(14, 47, 86, 0.08);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.organization-node--secondary .organization-node__label {
  color: var(--color-blue);
}

.organization-area {
  position: relative;
  min-height: 190px;
  padding: 25px 22px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.organization-area__number {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 34px;
  color: rgba(14, 47, 86, 0.07);
}
.organization-area h3 {
  margin: 26px 0 10px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 25px;
}
.organization-area p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}
.organization-area--green {
  border-top: 3px solid var(--color-green);
}
.organization-area--gold {
  border-top: 3px solid var(--color-gold);
}
.organization-area--red {
  border-top: 3px solid var(--color-red);
}
.organization-area--blue {
  border-top: 3px solid var(--color-blue);
}

@media (max-width: 900px) {
  .organization-map__areas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .organization-map {
    padding: var(--space-8) 14px;
  }
  .organization-map__heading {
    text-align: left;
    margin-bottom: var(--space-6);
  }
  .organization-map__intro {
    margin-left: 0;
  }
  .organization-map__areas {
    grid-template-columns: 1fr;
  }
  .organization-map__connector {
    height: 26px;
  }
  .organization-node {
    padding: 23px 20px;
  }
  .organization-node strong {
    font-size: 24px;
  }
  .organization-area {
    min-height: 0;
    padding: 22px 22px;
  }
  h3 {
    margin-top: 18px;
  }
}
.organization-transparency {
  padding: 0 0 var(--space-10);
}
.organization-transparency__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-7);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 90% 20%, rgba(201, 154, 61, 0.18), transparent 32%), linear-gradient(135deg, var(--color-navy), var(--color-navy-dark));
  box-shadow: var(--shadow-md);
}
.organization-transparency__content {
  max-width: 700px;
}
.organization-transparency__content p {
  max-width: 600px;
  margin: var(--space-4) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}
.organization-transparency__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.organization-transparency__title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1;
}
.organization-transparency__title span {
  color: var(--color-gold);
}
.organization-transparency .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .organization-transparency {
    padding: 0 14px var(--space-8);
  }
  .organization-transparency__inner {
    padding: 32px 26px;
    flex-direction: column;
    align-items: flex-start;
  }
  .organization-transparency .btn {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .organization-transparency__inner {
    padding: 28px 20px;
  }
  .organization-transparency__title {
    font-size: 36px;
  }
  .organization-transparency__content p {
    font-size: 15px;
  }
}
.board {
  padding: var(--space-8) 0 var(--space-9);
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.6), rgb(255, 255, 255));
}
.board__heading {
  max-width: 720px;
  margin: 0 auto var(--space-8);
  margin-bottom: var(--space-7);
  text-align: center;
}
.board__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.board__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.board__intro {
  max-width: 620px;
  margin: var(--space-4) auto 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.6;
}
.board__president {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto var(--space-5);
  padding: 42px 44px;
  border: 1px solid rgba(201, 154, 61, 0.18);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 100% 0%, rgba(201, 154, 61, 0.15), transparent 35%), linear-gradient(145deg, rgb(251, 248, 241), rgb(255, 255, 255));
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.board__president:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.board__number {
  position: absolute;
  top: 24px;
  right: 30px;
  color: rgba(201, 154, 61, 0.14);
  font-family: var(--font-heading);
  font-size: 76px;
  line-height: 1;
}
.board__role {
  margin-bottom: 10px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.board__name {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1;
}
.board__description {
  max-width: 720px;
  margin: var(--space-4) 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}
.board__grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.board-member {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 30px 28px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.board-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.board-member__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(14, 47, 86, 0.07);
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
}
.board-member__role {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.board-member__name {
  margin: 0 0 16px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
}
.board-member__description {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.board__grid {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.board__grid + .board__grid {
  margin-top: 28px;
}

.board-member {
  flex: 0 1 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}

@media (max-width: 900px) {
  .board__grid {
    max-width: 720px;
  }
  .board__president {
    max-width: 720px;
  }
  .board-member {
    flex-basis: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    min-height: 0;
  }
}
@media (max-width: 620px) {
  .board {
    padding: var(--space-8) 14px;
  }
  .board__heading {
    margin-bottom: var(--space-5);
    text-align: left;
  }
  .board__intro {
    margin-left: 0;
  }
  .board__president {
    padding: 30px 24px;
    border-radius: var(--radius-md);
  }
  .board__number {
    top: 18px;
    right: 20px;
    font-size: 58px;
  }
  .board__name {
    font-size: 36px;
  }
  .board__description {
    font-size: 15px;
  }
  .board-member {
    padding: 26px 22px;
    flex-basis: 100%;
    max-width: 100%;
    padding: 26px 22px;
  }
  .board-member__name {
    font-size: 26px;
  }
  .board-member__name {
    font-size: 26px;
  }
}
@media (max-width: 420px) {
  .board__president {
    padding: 27px 20px;
  }
  .board__number {
    font-size: 50px;
  }
  .board__name {
    padding-right: 50px;
    font-size: 32px;
  }
  .board-member {
    padding: 24px 20px;
  }
}
.transparency-intro {
  padding: var(--space-10) 0 var(--space-9);
}
.transparency-intro__heading {
  max-width: 760px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.transparency-intro__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.transparency-intro__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.transparency-intro__title span {
  color: var(--color-gold);
}
.transparency-intro__text {
  max-width: 620px;
  margin: var(--space-4) auto 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.6;
}

.transparency-categories {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.transparency-category {
  position: relative;
  min-height: 240px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.transparency-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.transparency-category:hover .transparency-category__arrow {
  transform: translateX(5px);
}
.transparency-category__number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(14, 47, 86, 0.07);
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1;
}
.transparency-category__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 24px;
}
.transparency-category strong {
  margin-bottom: 10px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.05;
}
.transparency-category > span:not(.transparency-category__number,
.transparency-category__icon,
.transparency-category__arrow) {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}
.transparency-category__arrow {
  margin-top: auto;
  padding-top: 20px;
  color: var(--color-navy);
  font-size: 22px;
  transition: transform 0.2s ease;
}
.transparency-category--gold {
  border-top: 3px solid var(--color-gold);
}
.transparency-category--gold .transparency-category__icon {
  background: rgba(201, 154, 61, 0.12);
}
.transparency-category--green {
  border-top: 3px solid var(--color-green);
}
.transparency-category--green .transparency-category__icon {
  background: rgba(33, 134, 91, 0.1);
}
.transparency-category--blue {
  border-top: 3px solid var(--color-blue);
}
.transparency-category--blue .transparency-category__icon {
  background: rgba(36, 119, 184, 0.1);
}
.transparency-category--red {
  border-top: 3px solid var(--color-red);
}
.transparency-category--red .transparency-category__icon {
  background: rgba(233, 80, 79, 0.1);
}

/* =========================
   DOCUMENTS SECTION
========================= */
.documents-section {
  padding: 30px 0 100px;
}

.documents-group {
  max-width: 1080px;
  margin: 0 auto;
}
.documents-group + .documents-group {
  margin-top: 110px;
}
.documents-group__header {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: end;
  gap: 70px;
}
.documents-group__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.documents-group__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.documents-group__title span {
  color: var(--color-gold);
}
.documents-group__intro {
  margin: 0;
  padding-bottom: 5px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* =========================
   DOCUMENT LIST
========================= */
.document-list {
  overflow: hidden;
  border: 1px solid rgba(14, 47, 86, 0.1);
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 18px 45px rgba(7, 31, 61, 0.07);
}

.document-item {
  min-height: 106px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}
.document-item + .document-item {
  border-top: 1px solid rgba(14, 47, 86, 0.08);
}
.document-item:hover, .document-item:focus-visible {
  background: rgba(201, 154, 61, 0.055);
}
.document-item:hover .document-item__action, .document-item:focus-visible .document-item__action {
  color: var(--color-gold-dark);
}
.document-item:hover .document-item__action span, .document-item:focus-visible .document-item__action span {
  transform: translateX(5px);
}
.document-item:hover .document-item__icon, .document-item:focus-visible .document-item__icon {
  color: var(--color-white);
  background: var(--color-gold);
}
.document-item__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--color-gold-dark);
  background: rgba(201, 154, 61, 0.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease;
}
.document-item__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.document-item__type {
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.document-item__title {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.15;
}
.document-item__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.document-item__action span {
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 0.2s ease;
}

/* =========================
   YEARS
========================= */
.document-year {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}
.document-year + .document-year {
  margin-top: 30px;
}
.document-year__heading {
  padding-top: 19px;
}
.document-year__heading span,
.document-year__heading strong {
  display: block;
}
.document-year__heading span {
  margin-bottom: 3px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.document-year__heading strong {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .transparency-categories {
    grid-template-columns: 1fr;
  }
  .documents-group__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .documents-group__intro {
    max-width: 620px;
  }
  .document-year {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .document-year__heading {
    padding-top: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
}
@media (max-width: 780px) {
  .transparency-intro {
    padding: var(--space-8) 14px;
  }
  .transparency-intro__heading {
    margin-bottom: var(--space-6);
    text-align: left;
  }
  .transparency-intro__text {
    margin-left: 0;
  }
  .transparency-category {
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .documents-section {
    padding: 20px 14px 76px;
  }
  .documents-group + .documents-group {
    margin-top: 82px;
  }
  .documents-group__header {
    margin-bottom: 28px;
  }
  .documents-group__title {
    font-size: clamp(34px, 10vw, 44px);
  }
  .documents-group__intro {
    font-size: 15px;
  }
  .document-item {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
  }
  .document-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .document-item__title {
    font-size: 22px;
  }
  .document-item__action {
    grid-column: 2;
    margin-top: -2px;
    justify-self: start;
  }
  .document-year + .document-year {
    margin-top: 34px;
  }
  .document-year__heading strong {
    font-size: 30px;
  }
}
/* =========================
   SERVICES INTRO
========================= */
.services-intro {
  padding: 92px 0 80px;
}
.services-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: end;
  gap: 90px;
}
.services-intro__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.services-intro__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.services-intro__title span {
  color: var(--color-gold);
}
.services-intro__content {
  max-width: 600px;
}
.services-intro__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}
.services-intro__content p + p {
  margin-top: 18px;
}
.services-intro__lead {
  color: var(--color-navy) !important;
  font-size: 19px !important;
  font-weight: 700;
}

/* =========================
   SERVICES LIST
========================= */
.services-list {
  padding: 35px 0 110px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 85px;
}
.service-feature + .service-feature {
  margin-top: 120px;
}
.service-feature--reverse .service-feature__image {
  order: 2;
}
.service-feature--reverse .service-feature__content {
  order: 1;
}
.service-feature__image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--color-light);
  box-shadow: 0 22px 55px rgba(7, 31, 61, 0.11);
}
.service-feature__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}
.service-feature__number {
  position: absolute;
  right: 24px;
  top: 22px;
  min-width: 58px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 23px;
}
.service-feature__content {
  max-width: 560px;
}
.service-feature__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
}
.service-feature__title {
  margin: 0 0 22px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 57px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.service-feature__title span {
  color: var(--color-gold);
}
.service-feature__lead {
  margin: 0 0 17px;
  color: var(--color-navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}
.service-feature__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}
.service-feature__tags {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.service-feature__tags span {
  padding: 8px 13px;
  border: 1px solid rgba(14, 47, 86, 0.09);
  border-radius: 999px;
  color: var(--color-navy);
  background: rgba(14, 47, 86, 0.035);
  font-size: 12px;
  font-weight: 750;
}
.service-feature__link {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}
.service-feature__link span {
  color: var(--color-gold);
  font-size: 21px;
  transition: transform 0.2s ease;
}
.service-feature__link:hover, .service-feature__link:focus-visible {
  color: var(--color-gold-dark);
}
.service-feature__link:hover span, .service-feature__link:focus-visible span {
  transform: translateX(5px);
}

/* =========================
   CTA
========================= */
.services-cta {
  padding: 0 0 100px;
}
.services-cta__inner {
  padding: 52px 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  border-radius: 28px;
  color: var(--color-white);
  background: radial-gradient(circle at 85% 20%, rgba(201, 154, 61, 0.2), transparent 32%), linear-gradient(135deg, var(--color-navy), var(--color-navy-dark));
  box-shadow: 0 22px 55px rgba(7, 31, 61, 0.14);
}
.services-cta__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
}
.services-cta__title {
  margin: 0 0 15px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.04;
}
.services-cta__title span {
  color: var(--color-gold);
}
.services-cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
}
.services-cta .btn {
  flex: 0 0 auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .services-intro {
    padding: 75px 0 60px;
  }
  .services-intro__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-feature {
    gap: 45px;
  }
  .service-feature__image {
    min-height: 390px;
  }
  .services-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 700px) {
  .services-intro {
    padding: 65px 0 50px;
  }
  .services-list {
    padding: 25px 0 80px;
  }
  .service-feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-feature + .service-feature {
    margin-top: 85px;
  }
  .service-feature--reverse .service-feature__image,
  .service-feature--reverse .service-feature__content {
    order: initial;
  }
  .service-feature__image {
    min-height: 330px;
    border-radius: 22px;
  }
  .service-feature__content {
    max-width: none;
  }
  .service-feature__title {
    font-size: clamp(38px, 11vw, 48px);
  }
  .service-feature__lead {
    font-size: 18px;
  }
  .services-cta {
    padding-bottom: 75px;
  }
  .services-cta__inner {
    padding: 38px 30px;
    border-radius: 24px;
  }
  .services-cta .btn {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .service-feature__image {
    min-height: 285px;
  }
  .services-cta__inner {
    padding: 34px 24px;
  }
}
.activities-events {
  padding: 92px 0 105px;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.45), rgb(255, 255, 255));
}
.activities-events__header {
  margin-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
.activities-events__header > div {
  max-width: 700px;
}
.activities-events__header p {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.6;
}
.activities-events__eyebrow {
  display: block;
  margin-bottom: 11px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.activities-events__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.activities-events__calendar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
}
.activities-events__calendar span {
  color: var(--color-gold);
  font-size: 21px;
  transition: transform 0.2s ease;
}
.activities-events__calendar:hover span {
  transform: translateX(5px);
}
.activities-events__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.activity-event-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.activity-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 62px rgba(7, 31, 61, 0.13);
}
.activity-event-card:hover .activity-event-card__image img {
  transform: scale(1.04);
}
.activity-event-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
  display: block;
  background: var(--color-light);
}
.activity-event-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.activity-event-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60px;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}
.activity-event-card__date strong {
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}
.activity-event-card__date small {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.activity-event-card__category {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.activity-event-card__content {
  flex: 1;
  padding: 26px 25px 25px;
  display: flex;
  flex-direction: column;
}
.activity-event-card__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.activity-event-card h3 {
  margin: 0 0 13px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.08;
}
.activity-event-card h3 a {
  transition: color 0.2s ease;
}
.activity-event-card h3 a:hover {
  color: var(--color-gold-dark);
}
.activity-event-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}
.activity-event-card__link {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.activity-event-card__link span {
  color: var(--color-gold);
  font-size: 19px;
  transition: transform 0.2s ease;
}
.activity-event-card__link:hover span {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .activities-events__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .activities-events {
    padding: 70px 14px 80px;
  }
  .activities-events__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .activities-events__grid {
    grid-template-columns: 1fr;
  }
  .activity-event-card__image {
    height: 225px;
  }
}
/* =========================
   SENIOR HOLIDAYS
========================= */
.senior-holidays {
  padding: 30px 0 100px;
}
.senior-holidays__card {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  overflow: hidden;
  border-radius: 30px;
  background: var(--color-navy);
  box-shadow: 0 24px 60px rgba(7, 31, 61, 0.12);
}
.senior-holidays__content {
  padding: 68px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.senior-holidays__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.senior-holidays__title {
  max-width: 560px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.senior-holidays__title span {
  display: block;
  color: var(--color-gold);
}
.senior-holidays__lead {
  max-width: 530px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}
.senior-holidays__tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.senior-holidays__tags span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 750;
}
.senior-holidays__link {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}
.senior-holidays__link span {
  color: var(--color-gold);
  font-size: 21px;
  transition: transform 0.2s ease;
}
.senior-holidays__link:hover span, .senior-holidays__link:focus-visible span {
  transform: translateX(6px);
}
.senior-holidays__visual {
  position: relative;
  min-height: 500px;
}
.senior-holidays__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.senior-holidays__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 47, 86, 0.18) 0%, transparent 30%);
  pointer-events: none;
}
.senior-holidays__year {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  min-width: 145px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 14px 35px rgba(7, 31, 61, 0.18);
}
.senior-holidays__year strong,
.senior-holidays__year span {
  display: block;
}
.senior-holidays__year strong {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}
.senior-holidays__year span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .senior-holidays__card {
    grid-template-columns: 1fr 1fr;
  }
  .senior-holidays__content {
    padding: 54px 42px;
  }
}
@media (max-width: 760px) {
  .senior-holidays {
    padding: 20px 0 76px;
  }
  .senior-holidays__card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .senior-holidays__content {
    padding: 42px 30px 46px;
  }
  .senior-holidays__title {
    font-size: clamp(38px, 11vw, 50px);
  }
  .senior-holidays__lead {
    margin-top: 20px;
    font-size: 16px;
  }
  .senior-holidays__tags {
    margin-top: 24px;
  }
  .senior-holidays__link {
    margin-top: 30px;
  }
  .senior-holidays__visual {
    min-height: 360px;
    order: -1;
  }
  .senior-holidays__visual::after {
    background: linear-gradient(180deg, transparent 60%, rgba(14, 47, 86, 0.12) 100%);
  }
  .senior-holidays__year {
    right: 20px;
    bottom: 20px;
    min-width: 125px;
    padding: 15px 18px;
  }
  .senior-holidays__year strong {
    font-size: 31px;
  }
}
@media (max-width: 420px) {
  .senior-holidays__content {
    padding: 36px 24px 40px;
  }
  .senior-holidays__visual {
    min-height: 300px;
  }
  .senior-holidays__tags {
    gap: 7px;
  }
  .senior-holidays__tags span {
    padding: 7px 11px;
    font-size: 11px;
  }
}
.event-single {
  padding: 85px 0 110px;
}
.event-single__header {
  max-width: 950px;
  margin: 0 auto 55px;
  text-align: center;
}
.event-single__back {
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}
.event-single__back:hover {
  color: var(--color-gold-dark);
  transform: translateX(-3px);
}
.event-single__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-single__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.event-single {
  /* =========================
     LAYOUT PRINCIPALE
  ========================= */
}
.event-single__layout {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 55px;
}
.event-single {
  /* =========================
     IMMAGINE
  ========================= */
}
.event-single__media {
  position: sticky;
  top: 110px;
}
.event-single__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(7, 31, 61, 0.12);
}
.event-single {
  /* =========================
     CONTENUTO DESTRO
  ========================= */
}
.event-single__body {
  min-width: 0;
}
.event-single {
  /* =========================
     DETTAGLI
  ========================= */
}
.event-single__details {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.event-single__detail {
  padding: 24px 25px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(7, 31, 61, 0.05);
}
.event-single__detail strong {
  display: block;
  margin-top: 8px;
  color: var(--color-navy);
  font-size: 17px;
  line-height: 1.4;
}
.event-single__detail p {
  margin: 7px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}
.event-single__detail-label {
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.event-single {
  /* =========================
     DESCRIZIONE
  ========================= */
}
.event-single__content {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.8;
}
.event-single__content p {
  margin: 0 0 22px;
}
.event-single__content h2,
.event-single__content h3,
.event-single__content h4 {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
}
.event-single__content h2 {
  margin: 40px 0 18px;
  font-size: 34px;
}
.event-single__content h3 {
  margin: 32px 0 15px;
  font-size: 28px;
}
.event-single__content h4 {
  margin: 27px 0 12px;
  font-size: 23px;
}
.event-single__content strong {
  color: var(--color-navy);
  font-weight: 700;
}
.event-single__content a {
  color: var(--color-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.event-single__content ul,
.event-single__content ol {
  margin: 20px 0;
  padding-left: 25px;
}
.event-single__content li + li {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .event-single__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .event-single__media {
    position: static;
    max-width: 650px;
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
  .event-single {
    padding: 65px 14px 85px;
  }
  .event-single__header {
    margin-bottom: 40px;
    text-align: left;
  }
  .event-single__layout {
    gap: 32px;
  }
  .event-single__details {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .event-single__detail {
    padding: 20px;
  }
  .event-single__content {
    font-size: 16px;
    line-height: 1.75;
  }
}
.holidays-intro {
  padding: 92px 0 82px;
}
.holidays-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}
.holidays-intro__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.holidays-intro__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.3vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.holidays-intro__title span {
  color: var(--color-gold);
}
.holidays-intro__content {
  max-width: 650px;
}
.holidays-intro__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}
.holidays-intro__content p + p {
  margin-top: 18px;
}
.holidays-intro__lead {
  color: var(--color-navy) !important;
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.6 !important;
}

/* =========================
   HOLIDAY TYPES
========================= */
.holiday-types {
  padding: 20px 0 100px;
}
.holiday-types__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.holiday-type {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px 30px;
  display: flex;
  align-items: flex-end;
  border-radius: 24px;
  color: var(--color-white);
  box-shadow: 0 20px 52px rgba(7, 31, 61, 0.12);
}
.holiday-type::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 61, 0.08), rgba(7, 31, 61, 0.78));
}
.holiday-type > * {
  position: relative;
  z-index: 1;
}
.holiday-type__number {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.35);
}
.holiday-type__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.holiday-type h3 {
  margin: 0 0 13px;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
}
.holiday-type p {
  margin: 0;
  max-width: 330px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}
.holiday-type--sea {
  background: linear-gradient(135deg, #237db2, #15547e);
}
.holiday-type--mountain {
  background: linear-gradient(135deg, #33785d, #1d5742);
}
.holiday-type--trips {
  background: linear-gradient(135deg, #d49a32, #b77715);
}

@media (max-width: 900px) {
  .holidays-intro__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .holiday-types__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }
  .holiday-type {
    min-height: 240px;
  }
}
@media (max-width: 620px) {
  .holidays-intro {
    padding: 68px 14px 58px;
  }
  .holidays-intro__title {
    font-size: clamp(38px, 10vw, 48px);
  }
  .holidays-intro__lead {
    font-size: 18px !important;
  }
  .holiday-types {
    padding: 10px 14px 76px;
  }
  .holiday-type {
    min-height: 220px;
    padding: 28px 24px;
  }
  .holiday-type h3 {
    font-size: 30px;
  }
}
/* =========================
   HOLIDAY PROPOSALS
========================= */
.holiday-proposals {
  padding: 110px 0 55px;
  background: linear-gradient(180deg, rgba(14, 47, 86, 0.025) 0%, rgba(255, 255, 255, 0) 100%);
}
.holiday-proposals__header {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 80px;
}
.holiday-proposals__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.holiday-proposals__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.holiday-proposals__title span {
  color: var(--color-gold);
}
.holiday-proposals__intro {
  max-width: 520px;
  margin: 0;
  padding-bottom: 5px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}
.holiday-proposals__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

/* =========================
   PROPOSAL CARD
========================= */
.holiday-proposal {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(14, 47, 86, 0.1);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 20px 55px rgba(7, 31, 61, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.holiday-proposal:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 65px rgba(7, 31, 61, 0.12);
}
.holiday-proposal:hover .holiday-proposal__link span {
  transform: translateX(5px);
}
.holiday-proposal__top {
  min-height: 105px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--color-navy), #174b78);
}
.holiday-proposal:nth-child(2) .holiday-proposal__top {
  background: linear-gradient(135deg, #1d6555, #103c45);
}
.holiday-proposal__number {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
}
.holiday-proposal__type {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.holiday-proposal__content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.holiday-proposal__title {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}
.holiday-proposal__description {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}
.holiday-proposal__details {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.holiday-proposal__details div {
  padding: 15px 17px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 14px;
  background: rgba(14, 47, 86, 0.025);
}
.holiday-proposal__details span,
.holiday-proposal__details strong {
  display: block;
}
.holiday-proposal__details span {
  margin-bottom: 4px;
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.holiday-proposal__details strong {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 750;
}
.holiday-proposal__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 850;
}
.holiday-proposal__link span {
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 0.2s ease;
}

/* =========================
   HOW TO PARTICIPATE
========================= */
.holiday-steps {
  padding: 55px 0 115px;
}
.holiday-steps__header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}
.holiday-steps__header > p {
  max-width: 590px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.holiday-steps__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.holiday-steps__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}
.holiday-steps__title span {
  color: var(--color-gold);
}
.holiday-steps__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.holiday-steps__grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  background: rgba(201, 154, 61, 0.35);
}
.holiday-steps__button {
  width: fit-content;
  margin: 48px auto 0;
  display: flex;
}

.holiday-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.holiday-step__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 154, 61, 0.3);
  border-radius: 50%;
  color: var(--color-gold-dark);
  background: var(--color-white);
  font-family: var(--font-heading);
  font-size: 20px;
}
.holiday-step h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
}
.holiday-step p {
  max-width: 320px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .holiday-proposals {
    padding: 80px 0;
  }
  .holiday-proposals__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .holiday-proposals__grid {
    grid-template-columns: 1fr;
  }
  .holiday-steps {
    padding: 40px 0 90px;
  }
  .holiday-steps__header {
    margin-bottom: 45px;
    text-align: left;
  }
  .holiday-steps__header > p {
    margin-left: 0;
  }
  .holiday-steps__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .holiday-steps__grid::before {
    top: 28px;
    bottom: 28px;
    left: 27px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .holiday-step {
    min-height: 130px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 22px;
    text-align: left;
  }
  .holiday-step__number {
    margin: 0;
  }
  .holiday-step h3 {
    font-size: 25px;
  }
  .holiday-step p {
    max-width: none;
    margin: 0;
  }
}
@media (max-width: 520px) {
  .holiday-proposals {
    padding: 70px 0 35px;
  }
  .holiday-proposals__title {
    font-size: 40px;
  }
  .holiday-proposal {
    min-height: 0;
  }
  .holiday-proposal__top {
    min-height: 90px;
    padding: 24px;
  }
  .holiday-proposal__content {
    padding: 26px 24px 28px;
  }
  .holiday-proposal__title {
    font-size: 29px;
  }
  .holiday-proposal__details {
    grid-template-columns: 1fr;
  }
  .holiday-steps__title {
    font-size: 40px;
  }
  .holiday-steps__button {
    width: 100%;
  }
}
/* =========================
   VOLUNTEER HERO
========================= */
.volunteer-hero {
  padding: 70px 0 105px;
  background: radial-gradient(circle at 85% 20%, rgba(201, 154, 61, 0.09), transparent 28%), linear-gradient(180deg, rgba(14, 47, 86, 0.025), transparent);
}
.volunteer-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 90px;
}
.volunteer-hero__content {
  max-width: 620px;
}
.volunteer-hero__eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
}
.volunteer-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.volunteer-hero__title span {
  color: var(--color-gold);
}
.volunteer-hero__lead {
  max-width: 570px;
  margin: 28px 0 32px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}
.volunteer-hero__visual {
  position: relative;
  min-height: 510px;
}
.volunteer-hero__visual img {
  width: 100%;
  height: 510px;
  display: block;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(7, 31, 61, 0.14);
}
.volunteer-hero__badge {
  position: absolute;
  right: -22px;
  bottom: 32px;
  min-width: 175px;
  padding: 21px 24px;
  border-radius: 18px;
  color: var(--color-white);
  background: var(--color-gold);
  box-shadow: 0 18px 40px rgba(7, 31, 61, 0.18);
}
.volunteer-hero__badge strong,
.volunteer-hero__badge span {
  display: block;
}
.volunteer-hero__badge strong {
  margin-bottom: 3px;
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 500;
}
.volunteer-hero__badge span {
  font-size: 12px;
  font-weight: 700;
}

/* =========================
   VOLUNTEER INTRO
========================= */
.volunteer-intro {
  padding: 105px 0;
  border-top: 1px solid rgba(14, 47, 86, 0.07);
}
.volunteer-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: start;
  gap: 110px;
}
.volunteer-intro__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.volunteer-intro__heading h2 {
  max-width: 600px;
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.025em;
}
.volunteer-intro__heading h2 span {
  color: var(--color-gold);
}
.volunteer-intro__text {
  max-width: 650px;
}
.volunteer-intro__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}
.volunteer-intro__text p + p {
  margin-top: 20px;
}
.volunteer-intro__lead {
  color: var(--color-navy) !important;
  font-size: 19px !important;
  font-weight: 750;
  line-height: 1.55 !important;
}

/* =========================
   VOLUNTEER AREAS
========================= */
.volunteer-areas {
  padding: 100px 0 115px;
  background: rgba(14, 47, 86, 0.025);
}
.volunteer-areas__header {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}
.volunteer-areas__header > p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.volunteer-areas__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.volunteer-areas__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.volunteer-areas__title span {
  color: var(--color-gold);
}
.volunteer-areas__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* =========================
   VOLUNTEER AREA CARD
========================= */
.volunteer-area {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  color: var(--color-white);
  background: linear-gradient(145deg, #173f69, #08294f);
  box-shadow: 0 22px 50px rgba(7, 31, 61, 0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.volunteer-area:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(7, 31, 61, 0.18);
}
.volunteer-area--listening {
  background: linear-gradient(145deg, #226553, #103f43);
}
.volunteer-area--digital {
  background: linear-gradient(145deg, #236fa2, #123e68);
}
.volunteer-area--events {
  background: linear-gradient(145deg, #a97820, #574318);
}
.volunteer-area__number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1;
}
.volunteer-area__eyebrow {
  margin-bottom: 10px;
  color: #e4b552;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.volunteer-area h3 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}
.volunteer-area p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .volunteer-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .volunteer-hero__visual, .volunteer-hero__visual img {
    height: 450px;
    min-height: 450px;
  }
  .volunteer-hero__badge {
    right: 20px;
  }
  .volunteer-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .volunteer-hero {
    padding: 50px 0 75px;
  }
  .volunteer-hero__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .volunteer-hero__content {
    max-width: 650px;
  }
  .volunteer-hero__visual {
    order: -1;
  }
  .volunteer-hero__visual, .volunteer-hero__visual img {
    height: 420px;
    min-height: 420px;
  }
  .volunteer-intro {
    padding: 80px 0;
  }
  .volunteer-intro__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .volunteer-areas {
    padding: 80px 0 90px;
  }
  .volunteer-areas__header {
    margin-left: 0;
    text-align: left;
  }
  .volunteer-areas__header > p {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .volunteer-hero {
    padding-top: 24px;
  }
  .volunteer-hero__title {
    font-size: clamp(44px, 13vw, 58px);
  }
  .volunteer-hero__lead {
    margin: 22px 0 28px;
    font-size: 16px;
  }
  .volunteer-hero__visual, .volunteer-hero__visual img {
    height: 330px;
    min-height: 330px;
  }
  .volunteer-hero__visual img {
    border-radius: 22px;
  }
  .volunteer-hero__badge {
    right: 16px;
    bottom: 16px;
    min-width: 150px;
    padding: 17px 20px;
  }
  .volunteer-hero__badge strong {
    font-size: 23px;
  }
  .volunteer-intro__heading h2 {
    font-size: 40px;
  }
  .volunteer-areas__title {
    font-size: 40px;
  }
  .volunteer-areas__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .volunteer-area {
    min-height: 280px;
  }
}
.volunteer-time {
  padding: 110px 0 120px;
  background: var(--color-white);
}
.volunteer-time__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 120px;
  align-items: center;
}
.volunteer-time__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.volunteer-time__title {
  max-width: 560px;
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(44px, 4.3vw, 66px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.025em;
}
.volunteer-time__title span {
  display: block;
  color: var(--color-gold);
}
.volunteer-time__content {
  max-width: 610px;
}
.volunteer-time__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
}
.volunteer-time__content p + p {
  margin-top: 20px;
}
.volunteer-time__lead {
  color: var(--color-navy) !important;
  font-size: 20px !important;
  font-weight: 750;
  line-height: 1.5 !important;
}

.volunteer-steps {
  padding: 105px 0 120px;
  background: rgba(14, 47, 86, 0.025);
}
.volunteer-steps__header {
  max-width: 720px;
  margin: 0 auto 75px;
  text-align: center;
}
.volunteer-steps__header > p {
  max-width: 580px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.volunteer-steps__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.volunteer-steps__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(44px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1.05;
}
.volunteer-steps__title span {
  color: var(--color-gold);
}
.volunteer-steps__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.volunteer-steps__grid::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: rgba(201, 154, 61, 0.35);
}

.volunteer-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.volunteer-step__number {
  width: 64px;
  height: 64px;
  margin: 0 auto 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 154, 61, 0.45);
  border-radius: 50%;
  color: var(--color-gold-dark);
  background: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
}
.volunteer-step h3 {
  margin: 0 0 13px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 500;
}
.volunteer-step p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.volunteer-cta {
  padding: 105px 0 115px;
}
.volunteer-cta__inner {
  padding: 58px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
  border-radius: 28px;
  background: linear-gradient(110deg, var(--color-navy) 0%, #173b61 100%);
  box-shadow: 0 24px 55px rgba(7, 31, 61, 0.13);
}
.volunteer-cta__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.volunteer-cta h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.05;
}
.volunteer-cta h2 span {
  color: var(--color-gold);
}
.volunteer-cta p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}
.volunteer-cta__button {
  min-width: 190px;
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  color: var(--color-navy);
  background: var(--color-white);
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.volunteer-cta__button span {
  color: var(--color-gold);
  transition: transform 0.2s ease;
}
.volunteer-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.volunteer-cta__button:hover span {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .volunteer-time__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .volunteer-steps__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .volunteer-steps__grid::before {
    top: 30px;
    bottom: 30px;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
  }
  .volunteer-steps .volunteer-step__number {
    position: relative;
  }
  .volunteer-steps .volunteer-step h3,
  .volunteer-steps .volunteer-step p {
    position: relative;
    background: rgba(248, 249, 250, 0.96);
  }
  .volunteer-cta__inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .volunteer-cta__button {
    justify-self: start;
  }
}
@media (max-width: 600px) {
  .volunteer-time {
    padding: 78px 0 85px;
  }
  .volunteer-time__title {
    font-size: clamp(38px, 11vw, 48px);
  }
  .volunteer-time__content p {
    font-size: 16px;
  }
  .volunteer-time__lead {
    font-size: 18px !important;
  }
  .volunteer-steps {
    padding: 78px 0 88px;
  }
  .volunteer-steps__header {
    margin-bottom: 55px;
    text-align: left;
  }
  .volunteer-steps__header > p {
    margin-left: 0;
  }
  .volunteer-steps__title {
    font-size: clamp(38px, 11vw, 48px);
  }
  .volunteer-cta {
    padding: 75px 0 90px;
  }
  .volunteer-cta__inner {
    padding: 38px 26px;
    border-radius: 22px;
  }
  .volunteer-cta h2 {
    font-size: 40px;
  }
  .volunteer-cta__button {
    width: 100%;
  }
}
/* =========================
   VOLUNTEER OPENINGS
========================= */
.volunteer-openings {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, rgba(14, 47, 86, 0.025), transparent);
}
.volunteer-openings__header {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 70px;
}
.volunteer-openings__header > p {
  max-width: 500px;
  margin: 0 0 4px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.volunteer-openings__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.volunteer-openings__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.02;
}
.volunteer-openings__title span {
  color: var(--color-gold);
}
.volunteer-openings__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.volunteer-opening {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.volunteer-opening:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(7, 31, 61, 0.12);
}
.volunteer-opening:hover img {
  transform: scale(1.035);
}
.volunteer-opening__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--color-light);
}
.volunteer-opening__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.volunteer-opening__location {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.volunteer-opening__content {
  flex: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.volunteer-opening__content h3 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}
.volunteer-opening__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}
.volunteer-opening__link {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.volunteer-opening__link span {
  color: var(--color-gold);
  font-size: 18px;
  transition: transform 0.2s ease;
}
.volunteer-opening__link:hover span {
  transform: translateX(5px);
}

@media (max-width: 950px) {
  .volunteer-openings__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .volunteer-openings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .volunteer-openings {
    padding: 70px 14px 80px;
  }
  .volunteer-openings__grid {
    grid-template-columns: 1fr;
  }
  .volunteer-opening__image {
    height: 240px;
  }
}
/* =========================
   CONTACT HERO
========================= */
.contact-hero {
  padding: 88px 0 70px;
  background: radial-gradient(circle at 85% 15%, rgba(201, 154, 61, 0.08), transparent 28%), linear-gradient(180deg, rgba(14, 47, 86, 0.025), transparent);
}
.contact-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-hero__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.contact-hero__title span {
  color: var(--color-gold);
}
.contact-hero__text {
  max-width: 650px;
  margin: 26px auto 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

/* =========================
   CONTACT REASONS
========================= */
.contact-reasons {
  padding: 30px 0 105px;
}
.contact-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-reason {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 24px;
  background: linear-gradient(145deg, rgb(255, 255, 255), rgb(247, 249, 251));
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(7, 31, 61, 0.12);
}
.contact-reason__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(14, 47, 86, 0.08);
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1;
}
.contact-reason__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-reason__title {
  margin: 0 0 13px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.08;
}
.contact-reason__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}
.contact-reason--green {
  border-top: 3px solid var(--color-green);
}
.contact-reason--green .contact-reason__eyebrow {
  color: var(--color-green);
}
.contact-reason--gold {
  border-top: 3px solid var(--color-gold);
}
.contact-reason--gold .contact-reason__eyebrow {
  color: var(--color-gold-dark);
}
.contact-reason:not(.contact-reason--green):not(.contact-reason--gold) {
  border-top: 3px solid var(--color-blue);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact-reasons__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }
  .contact-reason {
    min-height: 220px;
  }
}
@media (max-width: 620px) {
  .contact-hero {
    padding: 68px 14px 50px;
  }
  .contact-hero__inner {
    text-align: left;
  }
  .contact-hero__title {
    font-size: clamp(42px, 12vw, 56px);
  }
  .contact-hero__text {
    margin-left: 0;
    font-size: 16px;
  }
  .contact-reasons {
    padding: 20px 14px 78px;
  }
  .contact-reason {
    min-height: 210px;
    padding: 28px 24px;
  }
  .contact-reason__title {
    font-size: 27px;
  }
}
/* =========================
   CONTACT MAIN
========================= */
.contact-main {
  padding: 105px 0 115px;
  background: rgba(14, 47, 86, 0.025);
}
.contact-main__header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}
.contact-main__header > p {
  max-width: 590px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.contact-main__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.contact-main__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.contact-main__title span {
  color: var(--color-gold);
}
.contact-main__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: stretch;
}

/* =========================
   DETAILS
========================= */
.contact-details {
  padding: 38px 36px;
  display: grid;
  gap: 0;
  border-radius: 24px;
  color: var(--color-white);
  background: linear-gradient(145deg, var(--color-navy), #173b61);
  box-shadow: 0 22px 55px rgba(7, 31, 61, 0.12);
}

.contact-detail {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.contact-detail:first-child {
  padding-top: 0;
}
.contact-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-detail__label {
  display: block;
  margin-bottom: 9px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.contact-detail__value {
  margin: 0;
  display: inline-block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 25px;
  font-style: normal;
  line-height: 1.3;
}
.contact-detail p {
  max-width: 330px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.contact-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.contact-hours strong,
.contact-hours span {
  display: block;
}
.contact-hours strong {
  margin-bottom: 7px;
  font-size: 14px;
}
.contact-hours span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   FORM
========================= */
.contact-form {
  padding: 42px 40px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 22px 55px rgba(7, 31, 61, 0.08);
}
.contact-form__heading {
  margin-bottom: 30px;
}
.contact-form__heading > span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.contact-form__heading h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
}
.contact-form__heading p {
  margin: 9px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form__field {
  margin-bottom: 19px;
}
.contact-form__field label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 750;
}
.contact-form__field label span {
  color: var(--color-muted);
  font-weight: 500;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(14, 47, 86, 0.14);
  border-radius: 12px;
  color: var(--color-navy);
  background: rgba(247, 249, 251, 0.75);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201, 154, 61, 0.12);
}
.contact-form__field input,
.contact-form__field select {
  height: 50px;
  padding: 0 15px;
}
.contact-form__field textarea {
  min-height: 145px;
  padding: 14px 15px;
  resize: vertical;
}
.contact-form__privacy {
  margin: 4px 0 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}
.contact-form__privacy input {
  flex: 0 0 auto;
  margin-top: 2px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact-main__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .contact-main {
    padding: 78px 14px 88px;
  }
  .contact-main__header {
    margin-bottom: 42px;
    text-align: left;
  }
  .contact-main__header > p {
    margin-left: 0;
  }
  .contact-details {
    padding: 32px 26px;
  }
  .contact-hours {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 32px 24px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form .btn {
    width: 100%;
  }
}
/* =========================
   LOCATION
========================= */
.contact-location {
  padding: 110px 0 120px;
}
.contact-location__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 80px;
}
.contact-location__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.contact-location__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}
.contact-location__title span {
  color: var(--color-gold);
}
.contact-location__text {
  max-width: 440px;
  margin: 24px 0 32px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}
.contact-location__address {
  margin-bottom: 28px;
}
.contact-location__address > span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.contact-location__address address {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 23px;
  font-style: normal;
  line-height: 1.4;
}
.contact-location__link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 800;
}
.contact-location__link span {
  color: var(--color-gold);
  font-size: 19px;
  transition: transform 0.2s ease;
}
.contact-location__link:hover span {
  transform: translateX(5px);
}
.contact-location__map {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 26px;
  background: rgba(14, 47, 86, 0.035);
  box-shadow: 0 22px 55px rgba(7, 31, 61, 0.09);
}
.contact-location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  border: 0;
}
.contact-location__placeholder {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}
.contact-location__placeholder span {
  font-family: var(--font-heading);
  font-size: 28px;
}
.contact-location__placeholder small {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .contact-location__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 620px) {
  .contact-location {
    padding: 78px 14px 88px;
  }
  .contact-location__map, .contact-location__placeholder, .contact-location__map iframe {
    min-height: 330px;
  }
}
.contact-location__map {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(14, 47, 86, 0.1);
  border-radius: 24px;
  background: #f5f7f8;
  box-shadow: 0 20px 55px rgba(7, 31, 61, 0.07);
}
.contact-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

@media (max-width: 760px) {
  .contact-location__map {
    min-height: 320px;
  }
  .contact-location__map iframe {
    min-height: 320px;
  }
}
.contact-form .fluentform {
  margin: 0;
}
.contact-form .ff-el-group {
  margin-bottom: 20px;
}
.contact-form .ff-el-input--label {
  margin-bottom: 8px;
}
.contact-form .ff-el-input--label label {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
}
.contact-form .ff-el-form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 47, 82, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--color-navy);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .ff-el-form-control:focus {
  border-color: rgba(205, 153, 47, 0.7);
  box-shadow: 0 0 0 3px rgba(205, 153, 47, 0.1);
  outline: none;
}
.contact-form textarea.ff-el-form-control {
  min-height: 150px;
  resize: vertical;
}
.contact-form select.ff-el-form-control {
  cursor: pointer;
}
.contact-form .ff-el-form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contact-form .ff-el-form-check input {
  margin-top: 4px;
}
.contact-form .ff-el-form-check label {
  font-size: 14px;
  line-height: 1.5;
}
.contact-form .ff-btn-submit {
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .ff-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.contact-form .ff-el-is-error .ff-el-form-control {
  border-color: #c64747;
}
.contact-form .error {
  margin-top: 6px;
  font-size: 13px;
}
.contact-form .ff-message-success {
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(46, 125, 50, 0.08);
  font-size: 14px;
}

.gallery-section {
  padding: 95px 0 115px;
}
.gallery-section__header {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 80px;
}
.gallery-section__header > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.gallery-section__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-section__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1;
}
.gallery-section__title span {
  color: var(--color-gold);
}

/* =========================
   FILTERS
========================= */
.gallery-filters {
  margin-bottom: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.gallery-filter {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(14, 47, 86, 0.1);
  border-radius: 999px;
  color: var(--color-navy);
  background: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.gallery-filter:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 61, 0.35);
  color: var(--color-gold-dark);
}
.gallery-filter.is-active {
  color: var(--color-white);
  background: var(--color-navy);
  border-color: var(--color-navy);
}

/* =========================
   GRID
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.gallery-album {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) minmax(0, 1.15fr);
  min-height: 330px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.gallery-album:hover {
  transform: translateY(-5px);
  box-shadow: 0 27px 62px rgba(7, 31, 61, 0.12);
}
.gallery-album:hover .gallery-album__image img {
  transform: scale(1.035);
}
.gallery-album--large {
  grid-column: span 2;
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
  min-height: 390px;
}
.gallery-album__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  display: block;
  background: var(--color-light);
}
.gallery-album__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-album__count {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 800;
}
.gallery-album__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.gallery-album__meta {
  display: block;
  margin-bottom: 10px;
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.gallery-album h2 {
  margin: 0 0 13px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.08;
}
.gallery-album h2 a {
  transition: color 0.2s ease;
}
.gallery-album h2 a:hover {
  color: var(--color-gold-dark);
}
.gallery-album p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}
.gallery-album__link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.gallery-album__link span {
  color: var(--color-gold);
  font-size: 19px;
  transition: transform 0.2s ease;
}
.gallery-album__link:hover span {
  transform: translateX(5px);
}
.gallery-album.is-hidden {
  display: none;
}

@media (max-width: 1000px) {
  .gallery-section__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-album,
  .gallery-album--large {
    grid-column: auto;
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: 330px;
  }
}
@media (max-width: 700px) {
  .gallery-section {
    padding: 72px 14px 88px;
  }
  .gallery-filters {
    margin-bottom: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar {
    display: none;
  }
  .gallery-filter {
    flex: 0 0 auto;
  }
  .gallery-album,
  .gallery-album--large {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .gallery-album__image,
  .gallery-album--large__image {
    min-height: 270px;
  }
  .gallery-album__content,
  .gallery-album--large__content {
    padding: 26px 24px 28px;
  }
}
@media (max-width: 420px) {
  .gallery-album__image {
    min-height: 230px;
  }
  .gallery-album h2 {
    font-size: 27px;
  }
}
/* =========================
   SINGLE GALLERY
========================= */
.gallery-album-page {
  padding: 90px 0 115px;
}
.gallery-album-page__header {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}
.gallery-album-page__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-album-page__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.gallery-album-page__title span {
  color: var(--color-gold);
}
.gallery-album-page__intro {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}
.gallery-album-page__back {
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}
.gallery-album-page__back:hover {
  color: var(--color-gold-dark);
  transform: translateX(-3px);
}

/* =========================
   PHOTO GRID
========================= */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 18px;
}
.photo-gallery__item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--color-light);
  cursor: zoom-in;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.photo-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 61, 0);
  transition: background 0.25s ease;
}
.photo-gallery__item:hover img {
  transform: scale(1.035);
}
.photo-gallery__item:hover::after {
  background: rgba(7, 31, 61, 0.08);
}
.photo-gallery__item:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}
.photo-gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.photo-gallery__item--wide {
  grid-column: span 2;
}

/* =========================
   LIGHTBOX
========================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 16, 31, 0.94);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.gallery-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox__content {
  max-width: min(1100px, 82vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-lightbox__image {
  max-width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.gallery-lightbox__caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.gallery-lightbox__close, .gallery-lightbox__nav {
  position: absolute;
  border: 0;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-lightbox__close:hover, .gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.15);
}
.gallery-lightbox__close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
}
.gallery-lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}
.gallery-lightbox__nav--prev {
  left: 24px;
}
.gallery-lightbox__nav--next {
  right: 24px;
}

@media (max-width: 800px) {
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
  .photo-gallery__item--large {
    grid-column: span 2;
  }
  .photo-gallery__item--wide {
    grid-column: span 2;
  }
  .gallery-lightbox {
    padding: 20px 60px;
  }
  .gallery-lightbox__content {
    max-width: 100%;
  }
  .gallery-lightbox__nav {
    width: 46px;
    height: 46px;
  }
  .gallery-lightbox__nav--prev {
    left: 8px;
  }
  .gallery-lightbox__nav--next {
    right: 8px;
  }
}
@media (max-width: 520px) {
  .gallery-album-page {
    padding: 70px 14px 88px;
  }
  .gallery-album-page__header {
    text-align: left;
  }
  .gallery-album-page__intro {
    margin-left: 0;
  }
  .photo-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .photo-gallery__item, .photo-gallery__item--large, .photo-gallery__item--wide {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-lightbox {
    padding: 70px 14px 85px;
  }
  .gallery-lightbox__image {
    max-height: 68vh;
  }
  .gallery-lightbox__close {
    top: 14px;
    right: 14px;
  }
  .gallery-lightbox__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
  .gallery-lightbox__nav--prev {
    left: calc(50% - 58px);
  }
  .gallery-lightbox__nav--next {
    right: calc(50% - 58px);
  }
}
.gallery-album-description {
  max-width: 820px;
  margin: 55px auto 70px;
}
.gallery-album-description__content {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.8;
}
.gallery-album-description__content p {
  margin: 0 0 22px;
}
.gallery-album-description__content p:last-child {
  margin-bottom: 0;
}
.gallery-album-description__content h2,
.gallery-album-description__content h3 {
  margin: 38px 0 16px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 500;
}
.gallery-album-description__content h2 {
  font-size: 34px;
}
.gallery-album-description__content h3 {
  font-size: 27px;
}
.gallery-album-description__content strong {
  color: var(--color-navy);
  font-weight: 700;
}
.gallery-album-description__content a {
  color: var(--color-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gallery-album-description__content ul,
.gallery-album-description__content ol {
  margin: 22px 0;
  padding-left: 26px;
}

/* =========================
   MEMBERSHIP HERO
========================= */
.membership-hero {
  padding: 85px 0 105px;
  background: radial-gradient(circle at 85% 18%, rgba(201, 154, 61, 0.11), transparent 28%), linear-gradient(180deg, rgba(14, 47, 86, 0.025), transparent);
}
.membership-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.68fr);
  align-items: center;
  gap: 100px;
}
.membership-hero__content {
  max-width: 680px;
}
.membership-hero__eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
}
.membership-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.membership-hero__title span {
  color: var(--color-gold);
}
.membership-hero__lead {
  max-width: 610px;
  margin: 28px 0 32px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}
.membership-hero {
  /* CARD QUOTA */
}
.membership-hero__card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  color: var(--color-white);
  background: radial-gradient(circle at 100% 0%, rgba(201, 154, 61, 0.2), transparent 35%), linear-gradient(145deg, var(--color-navy), #173e68);
  box-shadow: 0 28px 65px rgba(7, 31, 61, 0.16);
}
.membership-hero__card-eyebrow {
  display: block;
  margin-bottom: 28px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
}
.membership-hero__price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.membership-hero__price strong {
  font-family: var(--font-heading);
  font-size: clamp(88px, 8vw, 120px);
  font-weight: 500;
  line-height: 0.8;
}
.membership-hero__price > div {
  padding-top: 8px;
}
.membership-hero__price span,
.membership-hero__price small {
  display: block;
}
.membership-hero__price span {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 37px;
  line-height: 1;
}
.membership-hero__price small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  font-weight: 700;
}
.membership-hero__card > p {
  max-width: 330px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 15px;
  line-height: 1.65;
}
.membership-hero__card-bottom {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}
.membership-hero__card-bottom span:last-child {
  color: var(--color-gold);
  font-size: 19px;
}

/* =========================
   MEMBERSHIP BENEFITS
========================= */
.membership-benefits {
  padding: 105px 0 120px;
  background: rgba(14, 47, 86, 0.025);
}
.membership-benefits__header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.membership-benefits__header > p {
  max-width: 590px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.membership-benefits__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.membership-benefits__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.membership-benefits__title span {
  color: var(--color-gold);
}
.membership-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* =========================
   BENEFIT CARD
========================= */
.membership-benefit {
  position: relative;
  min-height: 315px;
  padding: 31px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-top: 3px solid var(--color-red);
  border-radius: 23px;
  background: var(--color-white);
  box-shadow: 0 18px 46px rgba(7, 31, 61, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.membership-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 27px 60px rgba(7, 31, 61, 0.11);
}
.membership-benefit__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(14, 47, 86, 0.08);
  font-family: var(--font-heading);
  font-size: 43px;
  line-height: 1;
}
.membership-benefit__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--color-red);
  background: rgba(233, 80, 79, 0.09);
  font-size: 23px;
}
.membership-benefit__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--color-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.membership-benefit h3 {
  margin: 0 0 13px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.06;
}
.membership-benefit p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}
.membership-benefit {
  /* GREEN */
}
.membership-benefit--green {
  border-top-color: var(--color-green);
}
.membership-benefit--green .membership-benefit__icon {
  color: var(--color-green);
  background: rgba(33, 134, 91, 0.09);
}
.membership-benefit--green .membership-benefit__eyebrow {
  color: var(--color-green);
}
.membership-benefit {
  /* BLUE */
}
.membership-benefit--blue {
  border-top-color: var(--color-blue);
}
.membership-benefit--blue .membership-benefit__icon {
  color: var(--color-blue);
  background: rgba(36, 119, 184, 0.09);
}
.membership-benefit--blue .membership-benefit__eyebrow {
  color: var(--color-blue);
}
.membership-benefit {
  /* GOLD */
}
.membership-benefit--gold {
  border-top-color: var(--color-gold);
}
.membership-benefit--gold .membership-benefit__icon {
  color: var(--color-gold-dark);
  background: rgba(201, 154, 61, 0.11);
}
.membership-benefit--gold .membership-benefit__eyebrow {
  color: var(--color-gold-dark);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .membership-hero__inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 55px;
  }
  .membership-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .membership-hero {
    padding: 60px 0 80px;
  }
  .membership-hero__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .membership-hero__content {
    max-width: 650px;
  }
  .membership-hero__card {
    max-width: 520px;
    width: 100%;
  }
  .membership-benefits {
    padding: 82px 0 92px;
  }
  .membership-benefits__header {
    margin-left: 0;
    text-align: left;
  }
  .membership-benefits__header > p {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .membership-hero {
    padding: 52px 14px 72px;
  }
  .membership-hero__title {
    font-size: clamp(44px, 13vw, 58px);
  }
  .membership-hero__lead {
    margin: 23px 0 28px;
    font-size: 16px;
  }
  .membership-hero__card {
    min-height: 360px;
    padding: 35px 28px;
    border-radius: 23px;
  }
  .membership-hero__price strong {
    font-size: 90px;
  }
  .membership-benefits {
    padding: 75px 14px 85px;
  }
  .membership-benefits__title {
    font-size: 40px;
  }
  .membership-benefits__grid {
    grid-template-columns: 1fr;
  }
  .membership-benefit {
    min-height: 270px;
  }
}
/* =========================
   COME TESSERARSI
========================= */
.membership-join {
  padding: 105px 0 115px;
}
.membership-join__header {
  max-width: 740px;
  margin: 0 auto 58px;
  text-align: center;
}
.membership-join__header > p {
  max-width: 610px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.membership-join__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.membership-join__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.membership-join__title span {
  color: var(--color-gold);
}
.membership-join__grid {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.membership-join-card {
  position: relative;
  min-height: 300px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-top: 3px solid var(--color-navy);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.07);
}
.membership-join-card--gold {
  border-top-color: var(--color-gold);
}
.membership-join-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(14, 47, 86, 0.08);
  font-family: var(--font-heading);
  font-size: 43px;
}
.membership-join-card__eyebrow {
  margin-bottom: 12px;
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.membership-join-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 500;
}
.membership-join-card p {
  max-width: 360px;
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}
.membership-join-card address {
  margin-top: 18px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  line-height: 1.4;
}
.membership-join-card__link {
  margin-top: auto;
  padding-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 800;
}
.membership-join-card__link span {
  color: var(--color-gold);
  font-size: 19px;
  transition: transform 0.2s ease;
}
.membership-join-card__link:hover span {
  transform: translateX(5px);
}

@media (max-width: 700px) {
  .membership-join {
    padding: 78px 14px 88px;
  }
  .membership-join__header {
    margin-left: 0;
    margin-bottom: 42px;
    text-align: left;
  }
  .membership-join__header > p {
    margin-left: 0;
  }
  .membership-join__grid {
    grid-template-columns: 1fr;
  }
  .membership-join-card {
    min-height: 270px;
    padding: 30px 26px;
  }
}
/* =========================
   5X1000 HERO
========================= */
.five-hero {
  padding: 85px 0 105px;
  background: radial-gradient(circle at 84% 18%, rgba(201, 154, 61, 0.11), transparent 30%), linear-gradient(180deg, rgba(14, 47, 86, 0.025), transparent);
}
.five-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: 95px;
}
.five-hero__content {
  max-width: 700px;
}
.five-hero .eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.five-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.five-hero__title span {
  color: var(--color-gold);
}
.five-hero__text {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}
.five-hero {
  /* =========================
     CODE CARD
  ========================= */
}
.five-hero__code-card {
  min-height: 410px;
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  color: var(--color-white);
  background: radial-gradient(circle at 100% 0%, rgba(201, 154, 61, 0.2), transparent 35%), linear-gradient(145deg, var(--color-navy), #173e68);
  box-shadow: 0 28px 65px rgba(7, 31, 61, 0.16);
}
.five-hero__code-label {
  display: block;
  margin-bottom: 32px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.five-hero__code {
  margin-bottom: 14px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(46px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.015em;
}
.five-hero__code-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}
.five-hero__copy {
  margin-top: auto;
  padding: 18px 0 0;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 11px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease;
}
.five-hero__copy span {
  color: var(--color-gold);
  font-size: 19px;
  transition: transform 0.2s ease;
}
.five-hero__copy:hover span, .five-hero__copy:focus-visible span {
  transform: translateX(5px);
}
.five-hero__copy.is-copied {
  color: var(--color-gold);
}
.five-hero__copy.is-copied span {
  transform: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .five-hero__inner {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 55px;
  }
}
@media (max-width: 780px) {
  .five-hero {
    padding: 60px 0 80px;
  }
  .five-hero__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .five-hero__content {
    max-width: 650px;
  }
  .five-hero__code-card {
    max-width: 540px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .five-hero {
    padding: 52px 14px 72px;
  }
  .five-hero__title {
    font-size: clamp(44px, 13vw, 58px);
  }
  .five-hero__text {
    margin-top: 23px;
    font-size: 16px;
  }
  .five-hero__code-card {
    min-height: 350px;
    padding: 35px 28px;
    border-radius: 23px;
  }
  .five-hero__code {
    font-size: clamp(38px, 11vw, 48px);
    word-break: break-all;
  }
}
/* =========================
   5X1000 REASONS
========================= */
.five-reasons {
  padding: 105px 0 120px;
  background: rgba(14, 47, 86, 0.025);
}
.five-reasons__header {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}
.five-reasons__header .eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.five-reasons__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.five-reasons__title span {
  color: var(--color-gold);
}
.five-reasons__intro {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.five-reasons__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

/* =========================
   REASON CARD
========================= */
.five-reason {
  position: relative;
  min-height: 285px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: span 2;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 23px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.five-reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 27px 60px rgba(7, 31, 61, 0.11);
}
.five-reason:nth-child(4) {
  grid-column: 2/span 2;
}
.five-reason:nth-child(5) {
  grid-column: 4/span 2;
}
.five-reason::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 23px 23px 0 0;
  background: var(--color-gold);
}
.five-reason__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(14, 47, 86, 0.08);
  font-family: var(--font-heading);
  font-size: 43px;
  line-height: 1;
}
.five-reason__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.five-reason__title {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}
.five-reason p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}
.five-reason {
  /* VARIANTI */
}
.five-reason--health::before {
  background: #d85353;
}
.five-reason--health .five-reason__eyebrow {
  color: #b74141;
}
.five-reason--social::before {
  background: #2f8c66;
}
.five-reason--social .five-reason__eyebrow {
  color: #277556;
}
.five-reason--culture::before {
  background: #c99a3d;
}
.five-reason--culture .five-reason__eyebrow {
  color: var(--color-gold-dark);
}
.five-reason--digital::before {
  background: #2477b8;
}
.five-reason--digital .five-reason__eyebrow {
  color: #1c659e;
}
.five-reason--growth::before {
  background: #815da6;
}
.five-reason--growth .five-reason__eyebrow {
  color: #6f4d93;
}

@media (max-width: 900px) {
  .five-reasons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .five-reason {
    grid-column: auto;
  }
  .five-reason:nth-child(4), .five-reason:nth-child(5) {
    grid-column: auto;
  }
}
@media (max-width: 600px) {
  .five-reasons {
    padding: 78px 14px 88px;
  }
  .five-reasons__header {
    margin-left: 0;
    margin-bottom: 42px;
    text-align: left;
  }
  .five-reasons__intro {
    margin-left: 0;
  }
  .five-reasons__title {
    font-size: 40px;
  }
  .five-reasons__grid {
    grid-template-columns: 1fr;
  }
  .five-reason {
    min-height: 260px;
    padding: 30px 25px;
  }
}
/* =========================
   HOW TO
========================= */
.five-how {
  padding: 105px 0 120px;
}
.five-how__header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.five-how__header .eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.five-how__header > p {
  max-width: 590px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.five-how__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.five-how__title span {
  color: var(--color-gold);
}
.five-how__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px;
}
.five-how__steps::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  background: rgba(201, 154, 61, 0.35);
}

.five-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.five-step__number {
  width: 64px;
  height: 64px;
  margin: 0 auto 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 154, 61, 0.45);
  border-radius: 50%;
  color: var(--color-gold-dark);
  background: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
}
.five-step h3 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 500;
}
.five-step p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}
.five-step__code {
  display: inline-block;
  margin-top: 15px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =========================
   CONTACT
========================= */
.five-contact {
  padding: 0 0 115px;
}
.five-contact__inner {
  padding: 48px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 70px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgb(251, 248, 241), rgb(255, 255, 255));
  border: 1px solid rgba(201, 154, 61, 0.18);
  box-shadow: 0 20px 52px rgba(7, 31, 61, 0.07);
}
.five-contact .eyebrow {
  display: block;
  margin-bottom: 11px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.five-contact h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(36px, 3.7vw, 50px);
  font-weight: 500;
  line-height: 1.03;
}
.five-contact h2 span {
  color: var(--color-gold);
}
.five-contact__content p {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}
.five-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
}
.five-contact__link span {
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 0.2s ease;
}
.five-contact__link:hover span {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .five-how__steps {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .five-how__steps::before {
    top: 30px;
    bottom: 30px;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
  }
  .five-contact__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .five-how {
    padding: 78px 14px 88px;
  }
  .five-how__header {
    margin-left: 0;
    margin-bottom: 52px;
    text-align: left;
  }
  .five-how__header > p {
    margin-left: 0;
  }
  .five-how__title {
    font-size: 40px;
  }
  .five-contact {
    padding: 0 14px 88px;
  }
  .five-contact__inner {
    padding: 34px 26px;
    border-radius: 22px;
  }
  .five-contact h2 {
    font-size: 38px;
  }
}
/* =========================
   PROJECTS HERO
========================= */
.projects-hero {
  padding: 90px 0 82px;
  background: radial-gradient(circle at 82% 15%, rgba(201, 154, 61, 0.09), transparent 28%), linear-gradient(180deg, rgba(14, 47, 86, 0.025), transparent);
}
.projects-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.projects-hero__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.projects-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.projects-hero__title span {
  display: block;
  color: var(--color-gold);
}
.projects-hero__text {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

/* =========================
   PROJECT LIST
========================= */
.projects-list {
  padding: 80px 0 115px;
}
.projects-list__header {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 80px;
}
.projects-list__header > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.projects-list__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.projects-list__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.projects-list__title span {
  color: var(--color-gold);
}

/* =========================
   PROJECT GRID
========================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 27px 62px rgba(7, 31, 61, 0.12);
}
.project-card:hover .project-card__image img {
  transform: scale(1.035);
}
.project-card__image {
  position: relative;
  height: 215px;
  overflow: hidden;
  display: block;
  background: var(--color-light);
}
.project-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card__status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(7, 31, 61, 0.12);
}
.project-card__status--active {
  color: var(--color-white);
  background: var(--color-gold);
}
.project-card__status--ended {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.92);
}
.project-card__number {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-size: 16px;
}
.project-card__content {
  flex: 1;
  padding: 28px 26px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.project-card__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-card h3 {
  margin: 0 0 13px;
  min-height: 2.2em;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}
.project-card h3 a {
  transition: color 0.2s ease;
}
.project-card h3 a:hover {
  color: var(--color-gold-dark);
}
.project-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}
.project-card__link {
  margin-top: auto;
  padding-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.project-card__link span {
  color: var(--color-gold);
  font-size: 19px;
  transition: transform 0.2s ease;
}
.project-card__link:hover span {
  transform: translateX(5px);
}

/* =========================
   ARCHIVE
========================= */
.projects-archive {
  margin-top: 80px;
  padding: 42px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  border: 1px solid rgba(201, 154, 61, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgb(251, 248, 241), var(--color-white));
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.06);
}
.projects-archive__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.projects-archive h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 500;
}
.projects-archive h2 span {
  color: var(--color-gold);
}
.projects-archive > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.projects-archive > a span {
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 0.2s ease;
}
.projects-archive > a:hover span {
  transform: translateX(5px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .projects-list__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .projects-hero {
    padding: 68px 14px 62px;
  }
  .projects-hero__inner {
    text-align: left;
  }
  .projects-hero__title {
    font-size: clamp(44px, 12vw, 56px);
  }
  .projects-hero__text {
    margin-left: 0;
    font-size: 16px;
  }
  .projects-list {
    padding: 65px 14px 88px;
  }
  .projects-list__title {
    font-size: 40px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card__image {
    height: 245px;
  }
  .projects-archive {
    margin-top: 58px;
    padding: 32px 27px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .projects-archive h2 {
    font-size: 30px;
  }
  .projects-archive > a {
    justify-self: start;
  }
}
/* =========================
   SINGLE PROJECT HERO
========================= */
.project-single-hero {
  padding: 82px 0 105px;
  background: radial-gradient(circle at 85% 18%, rgba(201, 154, 61, 0.09), transparent 28%), linear-gradient(180deg, rgba(14, 47, 86, 0.025), transparent);
}
.project-single-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 90px;
}
.project-single-hero__content {
  max-width: 650px;
}
.project-single-hero__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-single-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.project-single-hero__title span {
  color: var(--color-gold);
}
.project-single-hero__lead {
  max-width: 580px;
  margin: 27px 0 32px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}
.project-single-hero__visual {
  position: relative;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  display: flex;
  justify-content: center;
}
.project-single-hero__visual img {
  width: auto;
  max-width: 100%;
  max-height: 620px;
  display: block;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 28px 65px rgba(7, 31, 61, 0.14);
}
.project-single-hero__badge {
  position: absolute;
  min-width: 175px;
  padding: 18px 22px;
  border-radius: 17px;
  color: var(--color-white);
  background: var(--color-gold);
  box-shadow: 0 16px 35px rgba(7, 31, 61, 0.18);
}
.project-single-hero__badge span,
.project-single-hero__badge strong {
  display: block;
}
.project-single-hero__badge span {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.project-single-hero__badge strong {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 500;
}
.project-single-hero__badge--basso_destra {
  right: -18px;
  bottom: 26px;
}
.project-single-hero__badge--basso_sinistra {
  left: -18px;
  bottom: 26px;
}
.project-single-hero__badge--alto_destra {
  top: 26px;
  right: -18px;
}
.project-single-hero__badge--alto_sinistra {
  top: 26px;
  left: -18px;
}

/* =========================
   PROJECT INTRO
========================= */
.project-single-intro {
  padding: 105px 0;
}
.project-single-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 105px;
}
.project-single-intro__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-single-intro__heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.2vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.project-single-intro__heading h2 span {
  color: var(--color-gold);
}
.project-single-intro__content {
  max-width: 650px;
}
.project-single-intro__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}
.project-single-intro__content p + p {
  margin-top: 20px;
}
.project-single-intro__lead {
  color: var(--color-navy) !important;
  font-size: 20px !important;
  font-weight: 750;
  line-height: 1.55 !important;
}

/* =========================
   PROJECT DUTIES
========================= */
.project-duties {
  padding: 100px 0 75px;
  background: rgba(14, 47, 86, 0.025);
}
.project-duties__header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}
.project-duties__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-duties__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.project-duties__title span {
  color: var(--color-gold);
}
.project-duties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  justify-content: center;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.project-duties__grid:has(> :only-child) {
  grid-template-columns: minmax(0, 350px);
}
.project-duties__grid:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 350px));
}

.project-duty {
  position: relative;
  min-height: 270px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 23px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project-duty:hover {
  transform: translateY(-5px);
  box-shadow: 0 27px 60px rgba(7, 31, 61, 0.11);
}
.project-duty__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(14, 47, 86, 0.08);
  font-family: var(--font-heading);
  font-size: 43px;
  line-height: 1;
}
.project-duty__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-duty__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.project-duty__link span {
  font-size: 17px;
  line-height: 1;
}
.project-duty__link:hover {
  gap: 12px;
  color: var(--color-gold);
}
.project-duty__links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.project-duty h3 {
  margin: 0 0 13px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}
.project-duty p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   REQUIREMENTS
========================= */
.project-requirements {
  padding: 110px 0;
}
.project-requirements__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: start;
}
.project-requirements__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-requirements__heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.03;
}
.project-requirements__heading h2 span {
  color: var(--color-gold);
}
.project-requirements__list {
  display: grid;
  gap: 0;
}
.project-requirements__list > div {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid rgba(14, 47, 86, 0.09);
}
.project-requirements__list > div:first-child {
  padding-top: 0;
}
.project-requirements__list > div:last-child {
  border-bottom: 0;
}
.project-requirements__list > div > span {
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 20px;
}
.project-requirements__list > div p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================
   AREAS
========================= */
.project-areas {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.project-areas.is-active {
  animation: project-area-enter 0.35s ease both;
}
@keyframes project-area-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.project-areas__application {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid rgba(14, 47, 86, 0.1);
}
.project-areas h4.project-area__application-title {
  margin-top: 42px;
  margin-bottom: 12px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}
.project-areas__application-text {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}
.project-areas__application-text p {
  margin: 0;
}
.project-areas__application-text p + p {
  margin-top: 10px;
}
.project-areas__application-text strong {
  color: var(--color-navy);
  font-weight: 700;
}
.project-areas__application-text a {
  color: var(--color-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.project-areas {
  padding: 75px 0 110px;
  background: rgba(14, 47, 86, 0.025);
}
.project-areas__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.project-areas__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-areas__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}
.project-areas__title span {
  color: var(--color-gold);
}
.project-areas__grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.project-areas__grid span {
  padding: 11px 16px;
  border: 1px solid rgba(14, 47, 86, 0.1);
  border-radius: 999px;
  color: var(--color-navy);
  background: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(7, 31, 61, 0.04);
}

/* =========================
   JOIN PROJECT
========================= */
.project-join {
  padding: 100px 0 115px;
}
.project-join__inner {
  padding: 52px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 70px;
  border-radius: 28px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-navy), #173d66);
  box-shadow: 0 24px 55px rgba(7, 31, 61, 0.13);
}
.project-join__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-join h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.04;
}
.project-join h2 span {
  color: var(--color-gold);
}
.project-join p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}
.project-join__contacts {
  display: grid;
  gap: 12px;
}
.project-join__contacts a, .project-join__contacts > div {
  padding: 17px 19px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}
.project-join__contacts a small,
.project-join__contacts a strong, .project-join__contacts > div small,
.project-join__contacts > div strong {
  display: block;
}
.project-join__contacts a small, .project-join__contacts > div small {
  margin-bottom: 4px;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-join__contacts a strong, .project-join__contacts > div strong {
  color: var(--color-white);
  font-size: 15px;
}
.project-join a {
  transition: background 0.2s ease, transform 0.2s ease;
}
.project-join a a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .project-single-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .project-single-hero__badge--basso_destra, .project-single-hero__badge--alto_destra {
    right: 18px;
  }
  .project-single-hero__badge--basso_sinistra, .project-single-hero__badge--alto_sinistra {
    left: 18px;
  }
  .project-duties__grid, .project-duties__grid:has(> :only-child), .project-duties__grid:has(> :nth-child(2):last-child) {
    grid-template-columns: minmax(0, 600px);
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .project-single-hero__inner {
    grid-template-columns: 1fr;
  }
  .project-single-hero__visual {
    order: -1;
  }
  .project-single-intro__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .project-requirements__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .project-join__inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 600px) {
  .project-single-hero {
    padding: 45px 14px 75px;
  }
  .project-single-hero__title {
    font-size: clamp(44px, 13vw, 58px);
  }
  .project-single-hero__lead {
    font-size: 16px;
  }
  .project-single-hero__visual img {
    border-radius: 22px;
  }
  .project-single-hero__badge--basso_destra {
    right: 16px;
    bottom: 16px;
  }
  .project-single-hero__badge--basso_sinistra {
    left: 16px;
    bottom: 16px;
  }
  .project-single-hero__badge--alto_destra {
    top: 16px;
    right: 16px;
  }
  .project-single-hero__badge--alto_sinistra {
    top: 16px;
    left: 16px;
  }
  .project-single-intro,
  .project-requirements {
    padding: 78px 14px;
  }
  .project-duties,
  .project-areas {
    padding: 78px 14px 88px;
  }
  .project-duties__header,
  .project-areas__header {
    text-align: left;
    margin-left: 0;
  }
  .project-areas__grid {
    justify-content: flex-start;
  }
  .project-join {
    padding: 75px 14px 88px;
  }
  .project-join__inner {
    padding: 36px 26px;
    border-radius: 22px;
  }
}
/* =========================
   PROJECT EDITORIAL INTRO
========================= */
.project-editorial-intro {
  padding: 105px 0;
}
.project-editorial-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 105px;
}
.project-editorial-intro__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-editorial-intro__heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.2vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.project-editorial-intro__heading h2 span {
  display: block;
  color: var(--color-gold);
}
.project-editorial-intro__content {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}
.project-editorial-intro__content p {
  margin: 0;
}
.project-editorial-intro__content p + p {
  margin-top: 20px;
}
.project-editorial-intro__content strong {
  color: var(--color-navy);
}

/* =========================
   EDITORIAL SECTIONS
========================= */
.project-editorial-sections {
  background: rgba(14, 47, 86, 0.025);
}

.project-editorial-section {
  padding: 100px 0;
}
.project-editorial-section + .project-editorial-section {
  border-top: 1px solid rgba(14, 47, 86, 0.07);
}
.project-editorial-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 90px;
}
.project-editorial-section__content {
  position: relative;
}
.project-editorial-section__number {
  display: block;
  margin-bottom: 22px;
  color: rgba(14, 47, 86, 0.13);
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
}
.project-editorial-section h2 {
  margin: 0 0 24px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}
.project-editorial-section h2 span {
  color: var(--color-gold);
}
.project-editorial-section__text {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}
.project-editorial-section__text p {
  margin: 0;
}
.project-editorial-section__text p + p {
  margin-top: 18px;
}
.project-editorial-section__text strong {
  color: var(--color-navy);
}
.project-editorial-section__text ul,
.project-editorial-section__text ol {
  margin: 20px 0 0;
  padding-left: 22px;
}
.project-editorial-section__text li + li {
  margin-top: 8px;
}
.project-editorial-section__visual {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(7, 31, 61, 0.11);
}
.project-editorial-section__visual img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
}
.project-editorial-section {
  /* IMMAGINE A SINISTRA */
}
.project-editorial-section--image-sinistra .project-editorial-section__visual {
  grid-column: 1;
  grid-row: 1;
}
.project-editorial-section--image-sinistra .project-editorial-section__content {
  grid-column: 2;
  grid-row: 1;
}
.project-editorial-section {
  /* SOLO TESTO */
}
.project-editorial-section--text-only .project-editorial-section__grid {
  grid-template-columns: minmax(0, 850px);
  justify-content: center;
}
.project-editorial-section--text-only .project-editorial-section__content {
  text-align: left;
}

/* =========================
   PROPOSALS
========================= */
.project-proposals {
  padding: 110px 0 120px;
}
.project-proposals__header {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
}
.project-proposals__header > p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}
.project-proposals__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-proposals__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}
.project-proposals__title span {
  color: var(--color-gold);
}
.project-proposals__list {
  max-width: 980px;
  margin: 0 auto;
}

.project-proposal {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(14, 47, 86, 0.1);
}
.project-proposal:last-child {
  border-bottom: 1px solid rgba(14, 47, 86, 0.1);
}
.project-proposal__number {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1;
}
.project-proposal__content h3 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}
.project-proposal__text {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}
.project-proposal__text p {
  margin: 0;
}
.project-proposal__text p + p {
  margin-top: 16px;
}
.project-proposal__text strong {
  color: var(--color-navy);
}

/* =========================
   EDITORIAL RESPONSIVE
========================= */
@media (max-width: 900px) {
  .project-editorial-intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .project-editorial-section__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .project-editorial-section--image-sinistra .project-editorial-section__visual,
  .project-editorial-section--image-sinistra .project-editorial-section__content {
    grid-column: auto;
    grid-row: auto;
  }
  .project-editorial-section--image-sinistra .project-editorial-section__visual {
    order: -1;
  }
  .project-editorial-section__visual img {
    height: 390px;
  }
}
@media (max-width: 600px) {
  .project-editorial-intro {
    padding: 78px 14px;
  }
  .project-editorial-section {
    padding: 76px 14px;
  }
  .project-editorial-section h2 {
    font-size: 40px;
  }
  .project-editorial-section__number {
    font-size: 34px;
  }
  .project-editorial-section__visual {
    border-radius: 22px;
  }
  .project-editorial-section__visual img {
    height: 300px;
  }
  .project-proposals {
    padding: 82px 14px 92px;
  }
  .project-proposals__header {
    margin-left: 0;
    margin-bottom: 45px;
    text-align: left;
  }
  .project-proposals__header > p {
    margin-left: 0;
  }
  .project-proposals__title {
    font-size: 40px;
  }
  .project-proposal {
    padding: 27px 0;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }
  .project-proposal__number {
    font-size: 29px;
  }
  .project-proposal__content h3 {
    font-size: 24px;
  }
  .project-proposal__text {
    font-size: 14px;
  }
}
.project-single-hero__image-link {
  display: block;
  cursor: zoom-in;
}
.project-single-hero__image-link img {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project-single-hero__image-link:hover img {
  transform: scale(1.015);
  box-shadow: 0 32px 75px rgba(7, 31, 61, 0.18);
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 16, 32, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.project-lightbox__inner {
  max-width: min(1100px, 95vw);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-lightbox__image {
  width: auto;
  max-width: 100%;
  max-height: 92vh;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}
.project-lightbox__close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.project-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}

.project-longform {
  padding: 90px 0 110px;
  background: var(--color-white);
}
.project-longform__content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--color-navy);
  font-size: 17px;
  line-height: 1.8;
}
.project-longform__content p {
  margin: 0 0 24px;
}
.project-longform__content p:last-child {
  margin-bottom: 0;
}
.project-longform__content h2 {
  margin: 58px 0 22px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}
.project-longform__content h2:first-child {
  margin-top: 0;
}
.project-longform__content h3 {
  margin: 42px 0 16px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}
.project-longform__content h4 {
  margin: 32px 0 12px;
  color: var(--color-gold-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.project-longform__content strong {
  font-weight: 800;
}
.project-longform__content a {
  color: var(--color-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.project-longform__content a:hover {
  color: var(--color-gold);
}
.project-longform__content ul,
.project-longform__content ol {
  margin: 26px 0;
  padding-left: 28px;
}
.project-longform__content ul li,
.project-longform__content ol li {
  margin-bottom: 10px;
  padding-left: 5px;
}
.project-longform__content ul li:last-child,
.project-longform__content ol li:last-child {
  margin-bottom: 0;
}
.project-longform__content li::marker {
  color: var(--color-gold);
  font-weight: 700;
}
.project-longform__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 42px auto;
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(7, 31, 61, 0.12);
}
.project-longform__content .wp-caption {
  max-width: 100%;
  margin: 42px auto;
}
.project-longform__content .wp-caption img {
  margin: 0;
}
.project-longform__content .wp-caption-text {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.project-longform__content blockquote {
  margin: 42px 0;
  padding: 8px 0 8px 28px;
  border-left: 4px solid var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.4;
}
.project-longform__content blockquote p {
  margin: 0;
}
.project-longform__content hr {
  margin: 55px 0;
  border: 0;
  border-top: 1px solid rgba(7, 31, 61, 0.12);
}

@media (max-width: 760px) {
  .project-longform {
    padding: 65px 0 80px;
  }
  .project-longform__content {
    font-size: 16px;
    line-height: 1.75;
  }
  .project-longform__content h2 {
    margin-top: 45px;
  }
  .project-longform__content h3 {
    margin-top: 35px;
    font-size: 25px;
  }
  .project-longform__content img {
    margin: 32px auto;
    border-radius: 16px;
  }
  .project-longform__content blockquote {
    margin: 32px 0;
    padding-left: 20px;
    font-size: 22px;
  }
}
.project-in-depth .project-single-hero {
  padding: 80px 0 95px;
}
.project-in-depth .project-single-hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}
.project-in-depth .project-single-hero__content {
  width: 100%;
  max-width: 820px;
  text-align: center;
}
.project-in-depth .project-single-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.project-in-depth .project-single-hero__title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.project-in-depth .project-single-hero__excerpt {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
}
.project-in-depth .project-single-hero__visual {
  width: fit-content;
  max-width: 100%;
  justify-self: auto;
}
.project-in-depth .project-single-hero__visual img {
  width: auto;
  max-width: 100%;
  max-height: 620px;
}

@media (max-width: 1000px) {
  .project-in-depth .project-single-hero {
    padding: 70px 0 80px;
  }
  .project-in-depth .project-single-hero__grid {
    gap: 40px;
  }
  .project-in-depth .project-single-hero__content {
    max-width: 720px;
  }
  .project-in-depth .project-single-hero__visual img {
    max-height: 560px;
  }
}
@media (max-width: 600px) {
  .project-in-depth .project-single-hero {
    padding: 55px 0 65px;
  }
  .project-in-depth .project-single-hero__grid {
    gap: 32px;
  }
  .project-in-depth .project-single-hero__content {
    text-align: center;
  }
  .project-in-depth .project-single-hero__excerpt {
    margin-top: 14px;
  }
  .project-in-depth .project-single-hero__visual {
    width: 100%;
  }
  .project-in-depth .project-single-hero__visual img {
    width: auto;
    max-width: 100%;
    max-height: 480px;
    margin: 0 auto;
  }
}
.project-attachments {
  padding: 90px 0 105px;
  background: rgba(14, 47, 86, 0.025);
}
.project-attachments__header {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}
.project-attachments__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-attachments__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}
.project-attachments__title span {
  color: var(--color-gold);
}
.project-attachments__list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.project-attachment {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(14, 47, 86, 0.09);
  border-radius: 16px;
  color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(7, 31, 61, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-attachment:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(7, 31, 61, 0.09);
}
.project-attachment__content {
  display: grid;
  gap: 4px;
}
.project-attachment__label {
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-attachment strong {
  font-size: 16px;
}
.project-attachment small {
  color: var(--color-muted);
  font-size: 12px;
}
.project-attachment__icon {
  color: var(--color-gold);
  font-size: 24px;
  font-weight: 700;
}

/* =========================
   PROJECT AREAS - LOCAL DETAILS
========================= */
.project-areas__tabs {
  max-width: 980px;
  margin: 0 auto 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.project-areas__tab {
  padding: 11px 16px;
  border: 1px solid rgba(14, 47, 86, 0.1);
  border-radius: 999px;
  color: var(--color-navy);
  background: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(7, 31, 61, 0.04);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.project-areas__tab:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 61, 0.35);
}
.project-areas__tab.is-active {
  color: var(--color-white);
  background: var(--color-navy);
  border-color: var(--color-navy);
}
.project-areas__panels {
  max-width: 1100px;
  margin: 0 auto;
}

.project-area__grid {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 50px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 20px 50px rgba(7, 31, 61, 0.07);
}
.project-area__image-link {
  display: block;
  cursor: zoom-in;
}
.project-area__image-link img {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project-area__image-link:hover img {
  transform: scale(1.015);
  box-shadow: 0 24px 55px rgba(7, 31, 61, 0.16);
}
.project-area__visual {
  display: flex;
  justify-content: center;
}
.project-area__visual a {
  display: block;
  width: fit-content;
  max-width: 100%;
}
.project-area__visual img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  display: block;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(7, 31, 61, 0.12);
}
.project-area__content {
  min-width: 0;
}
.project-area__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-area h3 {
  margin: 0 0 18px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.05;
}
.project-area__text {
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}
.project-area__text p {
  margin: 0;
}
.project-area__text p + p {
  margin-top: 14px;
}
.project-area__downloads {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.project-area__downloads-title {
  margin-bottom: 2px;
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-area__download {
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 14px;
  color: var(--color-navy);
  background: rgba(14, 47, 86, 0.025);
  transition: transform 0.2s ease, background 0.2s ease;
}
.project-area__download > span:first-child {
  display: grid;
  gap: 3px;
}
.project-area__download small {
  color: var(--color-gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-area__download strong {
  font-size: 14px;
  line-height: 1.35;
}
.project-area__download > span:last-child {
  color: var(--color-gold);
  font-size: 22px;
  line-height: 1;
}
.project-area__download:hover {
  transform: translateY(-2px);
  background: rgba(14, 47, 86, 0.05);
}
.project-area__cta {
  margin-top: 24px;
}

@media (max-width: 850px) {
  .project-area__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .project-area__visual img {
    max-height: 460px;
  }
}
@media (max-width: 600px) {
  .project-areas__tabs {
    justify-content: flex-start;
  }
  .project-area__grid {
    padding: 22px;
    border-radius: 20px;
  }
  .project-area h3 {
    font-size: 30px;
  }
  .project-area__visual img {
    max-height: 420px;
  }
}
.events-calendar-page {
  padding: 85px 0 110px;
}
.events-calendar-page__header {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.events-calendar-page__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.events-calendar-page__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
}
.events-calendar-page__back {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}
.events-calendar-page__back:hover {
  color: var(--color-gold-dark);
  transform: translateX(-3px);
}
.events-calendar-page__calendar {
  padding: 30px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(7, 31, 61, 0.07);
}

@media (max-width: 700px) {
  .events-calendar-page {
    padding: 65px 14px 85px;
  }
  .events-calendar-page__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .events-calendar-page__calendar {
    padding: 16px;
    overflow-x: auto;
  }
}
/* =========================
   EVENT THUMBNAILS
========================= */
.em.em-calendar .em-cal-day {
  position: relative;
}
.em.em-calendar .em-cal-day-date {
  width: 100%;
  height: 100%;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.em.em-calendar {
  /*
   * Numero del giorno
   */
}
.em.em-calendar .em-cal-day-date > a:first-child {
  flex: 0 0 auto;
}
.em.em-calendar {
  /*
   * Contenitore delle miniature
   */
}
.em.em-calendar .em-cal-day-date .sv-calendar-events {
  width: 100% !important;
  margin-top: 10px !important;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.em.em-calendar {
  /*
   * Singolo evento
   */
}
.em.em-calendar .em-cal-day-date .sv-calendar-event {
  width: 105px !important;
  height: 120px !important;
  min-width: 105px !important;
  min-height: 120px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  overflow: hidden;
  border: 1px solid rgba(14, 47, 86, 0.1) !important;
  border-radius: 12px !important;
  background: var(--color-white) !important;
  box-shadow: 0 7px 18px rgba(7, 31, 61, 0.1);
  line-height: normal !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.em.em-calendar .em-cal-day-date .sv-calendar-event img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain;
  background: var(--color-white);
}
.em.em-calendar .em-cal-day-date .sv-calendar-event:hover {
  transform: translateY(-3px);
  box-shadow: 0 11px 25px rgba(7, 31, 61, 0.16);
}
.em.em-calendar {
  /*
   * Evento senza immagine
   */
}
.em.em-calendar .em-cal-day-date .sv-calendar-event--no-image {
  padding: 8px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 10px !important;
  color: var(--color-navy) !important;
  background: rgba(201, 154, 61, 0.13) !important;
  font-size: 10px !important;
  font-weight: 700;
  line-height: 1.25 !important;
  text-align: center;
}
.em.em-calendar .em-cal-day-date .sv-calendar-event--no-image span {
  display: block;
  color: inherit !important;
  line-height: inherit !important;
}
.em.em-calendar {
  /*
   * "+ altri eventi"
   */
}
.em.em-calendar .sv-calendar-event-more {
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-navy);
  background: rgba(201, 154, 61, 0.15);
  font-size: 11px;
  font-weight: 800;
}

.sv-calendar-event-more {
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-navy);
  background: rgba(201, 154, 61, 0.15);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .em.em-calendar .em-cal-day-date .sv-calendar-event {
    width: 70px !important;
    height: 80px !important;
    min-width: 70px !important;
    min-height: 80px !important;
  }
}
@media (max-width: 700px) {
  .sv-calendar-event {
    width: 52px;
  }
}
.em-cal-day-dots {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.event-single__image-link {
  display: block;
  cursor: zoom-in;
}
.event-single__image-link img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-single__image-link:hover img {
  transform: scale(1.02);
  box-shadow: 0 28px 65px rgba(7, 31, 61, 0.16);
}

.event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(5, 18, 34, 0.88);
  backdrop-filter: blur(7px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.event-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.event-lightbox__content {
  max-width: 1100px;
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  display: block;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.event-lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--color-white);
  background: transparent;
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.event-lightbox__close:hover {
  transform: scale(1.1);
}

@media (max-width: 650px) {
  .event-lightbox {
    padding: 18px;
  }
  .event-lightbox__content {
    max-height: calc(100vh - 50px);
  }
  .event-lightbox__image {
    max-height: calc(100vh - 50px);
  }
  .event-lightbox__close {
    top: 10px;
    right: 10px;
  }
}
.volunteer-opening-single {
  padding: 85px 0 110px;
}
.volunteer-opening-single__header {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}
.volunteer-opening-single__back {
  margin-bottom: 28px;
  display: inline-flex;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}
.volunteer-opening-single__back:hover {
  color: var(--color-gold-dark);
  transform: translateX(-3px);
}
.volunteer-opening-single__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.volunteer-opening-single__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.volunteer-opening-single__intro {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}
.volunteer-opening-single__layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 55px;
}
.volunteer-opening-single__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(7, 31, 61, 0.12);
}
.volunteer-opening-single__body {
  min-width: 0;
}
.volunteer-opening-single__content {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.8;
}
.volunteer-opening-single__content p {
  margin: 0 0 22px;
}
.volunteer-opening-single__content h2,
.volunteer-opening-single__content h3,
.volunteer-opening-single__content h4 {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
}
.volunteer-opening-single__content h2 {
  margin: 0 0 18px;
  font-size: 34px;
}
.volunteer-opening-single__content h3 {
  margin: 32px 0 15px;
  font-size: 28px;
}
.volunteer-opening-single__content h4 {
  margin: 26px 0 12px;
  font-size: 23px;
}
.volunteer-opening-single__content strong {
  color: var(--color-navy);
  font-weight: 700;
}
.volunteer-opening-single__content a {
  color: var(--color-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.volunteer-opening-single__content ul,
.volunteer-opening-single__content ol {
  margin: 20px 0;
  padding-left: 25px;
}
.volunteer-opening-single__application {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid rgba(14, 47, 86, 0.1);
}
.volunteer-opening-single__application h2 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
}
.volunteer-opening-single__application > div {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}
.volunteer-opening-single__application > div p {
  margin: 0;
}
.volunteer-opening-single__application > div p + p {
  margin-top: 10px;
}
.volunteer-opening-single__application > div a {
  color: var(--color-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================
   ALLEGATI
========================= */
.volunteer-opening-files {
  max-width: 1180px;
  margin: 80px auto 0;
  padding-top: 55px;
  border-top: 1px solid rgba(14, 47, 86, 0.09);
}
.volunteer-opening-files__header {
  margin-bottom: 25px;
}
.volunteer-opening-files__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.volunteer-opening-files h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
}
.volunteer-opening-files__list {
  display: grid;
  gap: 12px;
}

.volunteer-opening-file {
  min-height: 70px;
  padding: 15px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(14, 47, 86, 0.08);
  border-radius: 15px;
  background: var(--color-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.volunteer-opening-file:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 61, 0.3);
  box-shadow: 0 10px 25px rgba(7, 31, 61, 0.08);
}
.volunteer-opening-file__type {
  min-width: 44px;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--color-gold-dark);
  background: rgba(201, 154, 61, 0.11);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}
.volunteer-opening-file__title {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
}
.volunteer-opening-file__icon {
  color: var(--color-gold);
  font-size: 21px;
}

@media (max-width: 900px) {
  .volunteer-opening-single__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .volunteer-opening-single__media {
    max-width: 650px;
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
  .volunteer-opening-single {
    padding: 65px 14px 85px;
  }
  .volunteer-opening-single__header {
    text-align: left;
  }
  .volunteer-opening-single__intro {
    margin-left: 0;
  }
  .volunteer-opening-files {
    margin-top: 60px;
  }
}
.volunteer-opening-single__image-link {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  cursor: zoom-in;
}
.volunteer-opening-single__image-link img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.volunteer-opening-single__image-link:hover img {
  transform: scale(1.025);
}

/* =========================
   VOLUNTEER LIGHTBOX
========================= */
.volunteer-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(5, 18, 34, 0.88);
  backdrop-filter: blur(7px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.volunteer-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.volunteer-lightbox__content {
  max-width: 1100px;
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.volunteer-lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  display: block;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.volunteer-lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--color-white);
  background: transparent;
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.volunteer-lightbox__close:hover {
  transform: scale(1.1);
}

@media (max-width: 650px) {
  .volunteer-lightbox {
    padding: 18px;
  }
  .volunteer-lightbox__content, .volunteer-lightbox__image {
    max-height: calc(100vh - 50px);
  }
  .volunteer-lightbox__close {
    top: 10px;
    right: 10px;
  }
}
/* =========================
   SINGLE SERVICE
========================= */
.service-single {
  padding: 90px 0 70px;
}
.service-single__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}
.service-single__image {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 47, 82, 0.1);
}
.service-single__image a {
  display: block;
}
.service-single__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}
.service-single__content {
  min-width: 0;
}
.service-single__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
}
.service-single__text p {
  margin: 0 0 20px;
}
.service-single__text p:last-child {
  margin-bottom: 0;
}
.service-single__text h2,
.service-single__text h3 {
  color: var(--color-navy);
  font-family: var(--font-heading);
}
.service-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.service-single__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(205, 153, 47, 0.1);
  border: 1px solid rgba(205, 153, 47, 0.25);
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
}

/* =========================
   ACCESSO AL SERVIZIO
========================= */
.service-single-access {
  padding: 20px 0 70px;
}
.service-single-access__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
  padding: 52px 58px;
  background: var(--color-navy);
  border-radius: 28px;
  color: #fff;
}
.service-single-access__content {
  max-width: 720px;
}
.service-single-access__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-single-access__title {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}
.service-single-access__text {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.7;
}
.service-single-access__text p {
  margin: 0;
}
.service-single-access__text a {
  color: #fff;
  font-weight: 700;
}
.service-single-access .btn {
  white-space: nowrap;
}

.service-single-back {
  padding: 28px 0 0;
}
.service-single-back__inner {
  display: flex;
  justify-content: center;
}
.service-single-back__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.service-single-back__link:hover {
  gap: 12px;
  opacity: 0.8;
}

.service-single__image a {
  display: block;
  cursor: zoom-in;
}
.service-single__image img {
  transition: transform 0.3s ease;
}
.service-single__image a:hover img {
  transform: scale(1.02);
}

.service-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  visibility: hidden;
  opacity: 0;
  background: rgba(5, 18, 34, 0.9);
  backdrop-filter: blur(7px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.service-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.service-lightbox__content {
  max-width: 1100px;
  max-height: calc(100vh - 80px);
}
.service-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.service-lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 650px) {
  .service-lightbox {
    padding: 18px;
  }
  .service-lightbox__content, .service-lightbox__image {
    max-height: calc(100vh - 50px);
  }
  .service-lightbox__close {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 900px) {
  .service-single {
    padding-top: 60px;
  }
  .service-single__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .service-single__image {
    max-width: 650px;
  }
  .service-single-access__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 30px;
  }
  .service-single-access .btn {
    width: fit-content;
  }
}
@media (max-width: 600px) {
  .service-single {
    padding: 45px 0 55px;
  }
  .service-single__grid {
    gap: 32px;
  }
  .service-single__image {
    border-radius: 18px;
  }
  .service-single__text {
    font-size: 16px;
  }
  .service-single-access {
    padding-bottom: 50px;
  }
  .service-single-access__inner {
    padding: 30px 24px;
    border-radius: 18px;
  }
  .service-single-back {
    padding-bottom: 60px;
  }
}

/*# sourceMappingURL=main.css.map */
