:root {
  --navy: #071e3d;
  --navy-2: #0c2b52;
  --gold: #b8893e;
  --gold-2: #d4a85a;
  --ocean: #0878b9;
  --paper: #f7f7f4;
  --paper-2: #fff;
  --ink: #20252b;
  --ink-soft: #4a515a;
  --line: rgba(7, 30, 61, 0.1);
  --line-strong: rgba(7, 30, 61, 0.18);
  --head: 78px;
  --max: 1180px;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(7, 30, 61, 0.08);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 10px;
  z-index: 80;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--head);
  background: rgba(247, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-head.is-scrolled {
  box-shadow: 0 8px 24px rgba(7, 30, 61, 0.06);
}

.head-inner {
  height: var(--head);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img,
.brand svg,
.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(184, 137, 62, 0.35);
}

.hero-logo {
  width: 156px;
  height: 156px;
  margin: 0 auto 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(184, 137, 62, 0.45);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.brand-copy span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-desk {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-desk a:not(.btn) {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 8px;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}

.nav-desk a:not(.btn):hover,
.nav-desk a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  margin-left: 10px;
}

.btn-gold:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #f7f7f4;
}

.btn-navy {
  background: var(--navy);
  color: var(--paper);
}

.btn-navy:hover { background: var(--navy-2); }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247, 247, 244, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
}

.btn-line {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}

.btn-line:hover { border-color: var(--navy); }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  color: var(--navy);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--head);
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 8px 20px 22px;
  box-shadow: var(--shadow);
}

.nav-mobile:not([hidden]) {
  display: grid;
}

.nav-mobile a {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
}

.nav-mobile .btn { margin-top: 14px; width: 100%; }

.hero {
  position: relative;
  min-height: calc(100vh - var(--head));
  display: grid;
  place-items: center;
  color: var(--paper);
  overflow: hidden;
  background: var(--navy);
  text-align: center;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.82) contrast(1.05);
  animation: ken 32s ease-in-out infinite alternate;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.12);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 30, 61, 0.22) 0%, rgba(7, 30, 61, 0.18) 42%, rgba(7, 30, 61, 0.7) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 96px;
  max-width: 820px;
}

.gold-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 22px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(7, 30, 61, 0.55);
}

.hero-lead {
  margin-top: 22px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 500;
  color: #f3ead8;
}

.hero p.hero-text {
  margin: 18px auto 0;
  max-width: 52ch;
  color: rgba(247, 247, 244, 0.82);
  font-size: 1.05rem;
}

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

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  color: var(--paper);
}

.stat-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-grid div {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.stat-grid b {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
}

.stat-grid span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.stat-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}

.section { padding: 88px 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px 48px;
  margin-bottom: 40px;
  align-items: end;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean);
  font-weight: 700;
  margin-bottom: 10px;
}

h1, h2, h3 {
  font-family: var(--display);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 16ch;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 58ch;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  padding: 72px 0 64px;
  background: var(--navy);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 61, 0.55), rgba(7, 30, 61, 0.88));
}

.page-hero .wrap { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 16ch;
}

.page-hero p {
  margin-top: 16px;
  max-width: 62ch;
  color: rgba(247, 247, 244, 0.78);
}

.page-hero .gold-line { margin: 0 0 18px; }

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 137, 62, 0.45);
  box-shadow: var(--shadow);
}

.card small {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.card h3 {
  font-size: 1.28rem;
  margin: 12px 0 8px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  flex: 1;
}

.card em {
  margin-top: 16px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
  font-weight: 700;
}

.band {
  background: var(--navy);
  color: var(--paper);
  padding: 48px 0;
}

.band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.band h2 {
  color: var(--paper);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 18ch;
}

.triad {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}

.triad article {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.triad article span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.arrow {
  align-self: center;
  color: var(--gold);
  font-size: 22px;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-strong);
}

.vision-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
}

.vision-item:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.vision-item b {
  font-family: var(--display);
  color: var(--gold);
  font-size: 1.2rem;
}

.vision-item h3 { font-size: 1.5rem; margin-bottom: 8px; }
.vision-item p { color: var(--ink-soft); }

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.news-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.news-card:first-child {
  background: var(--navy);
  color: var(--paper);
}

.news-card:first-child h3,
.news-card:first-child .news-meta { color: var(--paper); }
.news-card:first-child p { color: rgba(247, 247, 244, 0.72); }

.news-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  font-weight: 700;
  margin-bottom: 14px;
}

.news-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.news-card p { color: var(--ink-soft); flex: 1; }
.news-card span {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter {
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink-soft);
}

.filter.is-on,
.filter:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 650;
  color: var(--navy);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 12px;
}

textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(8, 120, 185, 0.28);
  border-color: var(--ocean);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 14px;
}

.check input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 3px;
}

.form-note, .muted { font-size: 13px; color: var(--ink-soft); }

.success {
  background: #e8f4fb;
  border: 1px solid rgba(8, 120, 185, 0.25);
  border-radius: 16px;
  padding: 24px;
}

.prose {
  display: grid;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 70ch;
}

.prose h2 { font-size: 2rem; margin-top: 8px; }
.prose a { color: var(--ocean); text-decoration: underline; }

.timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline b {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--navy);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.identity-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.identity-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.identity-card span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.alabanda-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.alabanda-hero img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.principles article {
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
}

.principles h3 { color: var(--gold-2); font-size: 1.3rem; margin-bottom: 8px; }
.principles p { color: rgba(247, 247, 244, 0.75); }

.desk {
  display: grid;
  gap: 14px;
}

.desk-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  align-items: start;
}

.desk-row h3 { font-size: 1.25rem; }
.desk-row p { color: var(--ink-soft); font-size: 0.92rem; }
.desk-head {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.status {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.contact-card {
  background: var(--navy);
  color: var(--paper);
  border-radius: 22px;
  padding: 28px;
}

.contact-card a {
  display: block;
  margin-top: 10px;
  color: var(--gold-2);
}

.share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.share button,
.share a {
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.article { padding: 28px 0 88px; }
.article .prose { margin-top: 24px; }

.site-foot {
  background: var(--navy);
  color: var(--paper);
  padding: 52px 0 24px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(184, 137, 62, 0.22);
}

.site-foot .brand-copy strong,
.site-foot .brand-copy span { color: var(--paper); }
.site-foot .brand-copy span { color: var(--gold-2); }

.foot-note {
  margin-top: 16px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(247, 247, 244, 0.78);
  max-width: 36ch;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-content: start;
}

.foot-links a {
  color: rgba(247, 247, 244, 0.72);
  font-size: 14px;
}

.foot-links a:hover { color: var(--gold-2); }

.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  font-size: 13px;
  color: rgba(247, 247, 244, 0.55);
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  background: var(--navy);
  color: var(--paper);
  border: 1px solid rgba(184, 137, 62, 0.3);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}

.cookie.is-on { display: flex; gap: 16px; align-items: center; justify-content: space-between; }
.cookie p { font-size: 13px; color: rgba(247, 247, 244, 0.8); }
.cookie a { color: var(--gold-2); text-decoration: underline; }

@media (max-width: 1320px) {
  .nav-desk { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .section-head, .split, .contact-grid, .foot-grid, .vision-grid, .alabanda-hero, .desk-row {
    grid-template-columns: 1fr;
  }
  .vision-item, .vision-item:nth-child(odd) { border-right: 0; padding-right: 0; }
  .triad { grid-template-columns: 1fr; }
  .arrow { display: none; }
  .identity-grid, .principles, .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .stat-grid, .form-row, .band-inner, .legal, .identity-grid, .principles, .news-grid, .cards, .cookie.is-on {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .stat-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 64px 0; }
  .hero h1 { letter-spacing: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .page-hero-media img, .card:hover { animation: none; transform: none; }
  .hero-media video { display: none; }
}

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
