﻿:root {
  --brand-deep: #0a3a56;
  --brand-sea: #147c90;
  --brand-sand: #f4e3c1;
  --brand-sun: #ff9f4a;
  --brand-mint: #dff3ed;
  --brand-ink: #10222f;
  --surface: #f7fbfc;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1120px, 92vw);
  --shadow: 0 14px 30px rgba(10, 58, 86, 0.12);
  --shadow-soft: 0 8px 20px rgba(10, 58, 86, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(20, 124, 144, 0.12), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(255, 159, 74, 0.12), transparent 34%),
    var(--surface);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.5rem;
  font-family: "Playfair Display", "Georgia", serif;
  color: var(--brand-deep);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.05rem, 4vw, 3.3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--brand-deep);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-header p {
  max-width: 700px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 251, 252, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10, 58, 86, 0.1);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-deep);
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav a {
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(20, 124, 144, 0.13);
}

.nav-cta {
  border: 1px solid rgba(10, 58, 86, 0.16);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(10, 58, 86, 0.2);
  background: var(--white);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 3rem;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
  background: linear-gradient(140deg, var(--brand-deep), #125476);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 4vw, 3.5rem);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -100px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 159, 74, 0.18);
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-sun);
  color: #2d1e09;
  box-shadow: 0 8px 20px rgba(255, 159, 74, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-outline {
  border: 1px solid rgba(10, 58, 86, 0.2);
  color: var(--brand-deep);
  background: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

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

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

.card {
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(10, 58, 86, 0.08);
  box-shadow: var(--shadow-soft);
}

.card strong {
  color: var(--brand-deep);
}

.card .meta {
  font-size: 0.9rem;
  color: rgba(16, 34, 47, 0.8);
}

.icon-pill {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: var(--brand-mint);
  color: var(--brand-sea);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.notice {
  background: #fff4e8;
  color: #6b3e0f;
  border: 1px solid #f7d8b5;
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
}

.band {
  background: var(--brand-mint);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.filter-group button {
  border: 1px solid rgba(10, 58, 86, 0.2);
  background: var(--white);
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-group button[aria-pressed="true"] {
  background: var(--brand-deep);
  color: var(--white);
}

.card.is-hidden {
  display: none;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
}

.contact-item {
  background: var(--white);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 58, 86, 0.08);
}

form {
  display: grid;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--brand-deep);
}

input,
select,
textarea {
  font: inherit;
  border: 1px solid rgba(10, 58, 86, 0.2);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  background: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(16, 34, 47, 0.8);
}

.form-feedback {
  margin: 0;
  font-weight: 700;
}

.form-feedback.success {
  color: #176338;
}

.form-feedback.error {
  color: #871d1d;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 58, 86, 0.08);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 1.4rem;
}

.site-footer {
  margin-top: 2rem;
  background: #082a3d;
  color: var(--white);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  padding: 2.2rem 0;
}

.site-footer a {
  color: #daf5ff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 0 1.5rem;
  color: #c6e8f2;
  font-size: 0.92rem;
}

.newsletter-form {
  display: flex;
  gap: 0.45rem;
}

.newsletter-form input {
  flex: 1;
}

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

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

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 70;
  background: var(--white);
  max-width: min(550px, calc(100vw - 2rem));
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 58, 86, 0.18);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.cookie-banner h3 {
  margin-bottom: 0.4rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal-panel {
  width: min(660px, 100%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.cookie-option {
  border: 1px solid rgba(10, 58, 86, 0.14);
  border-radius: 10px;
  padding: 0.7rem;
  margin-bottom: 0.6rem;
}

.cookie-option label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.small {
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-panel,
  .grid-3,
  .grid-2,
  .contact-shell,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 1rem;
    width: min(300px, calc(100vw - 2rem));
    display: none;
    background: var(--white);
    border: 1px solid rgba(10, 58, 86, 0.12);
    border-radius: 14px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav[data-open="true"] {
    display: flex;
  }

  .main-nav a {
    border-radius: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 42px;
  border: 1px solid rgba(10, 58, 86, 0.2);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  background: var(--white);
  color: var(--brand-deep);
}

.lang-switch:hover {
  background: rgba(20, 124, 144, 0.1);
}

.hero-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.link-list {
  display: grid;
  gap: 0.75rem;
}

.link-list a {
  color: var(--brand-deep);
  font-weight: 700;
}

.external-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.external-links .card p {
  margin-bottom: 0.6rem;
}

.external-links .card a {
  color: var(--brand-sea);
  font-weight: 700;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.photo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(10, 58, 86, 0.1);
  box-shadow: var(--shadow-soft);
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 0.7rem 0.85rem 0.9rem;
  font-size: 0.9rem;
}

.photo-credit {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--brand-sea);
  font-weight: 700;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kpi {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 58, 86, 0.1);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.kpi strong {
  display: block;
  color: var(--brand-deep);
  font-size: 1.45rem;
}

.table-like {
  display: grid;
  gap: 0.7rem;
}

.table-row {
  background: var(--white);
  border: 1px solid rgba(10, 58, 86, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.table-row strong {
  color: var(--brand-deep);
}

.small-muted {
  font-size: 0.85rem;
  color: rgba(16, 34, 47, 0.75);
}

@media (max-width: 980px) {
  .image-grid,
  .external-links,
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}
