:root {
  --navy: #003b73;
  --blue: #006fb9;
  --cyan: #39a6d8;
  --deep-blue: #012c56;
  --midnight: #071b34;
  --red: #d8212a;
  --ink: #142033;
  --muted: #68788d;
  --line: #dbe5ef;
  --soft: #f2f6fa;
  --white: #fff;
  --shadow: 0 22px 55px rgba(5, 30, 60, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  background: var(--white);
}

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

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.header-ribbon {
  color: rgba(255, 255, 255, 0.9);
  background: var(--midnight);
  font-size: 12px;
  font-weight: 700;
}

.top-strip__inner {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 7px 0;
}

.top-strip__inner span:first-child {
  margin-right: auto;
  color: #b9dfff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(1, 44, 86, 0.12);
  backdrop-filter: blur(16px);
}

.masthead {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 285px;
}

.brand__mark {
  width: 52px;
  height: 52px;
}

.brand__text {
  display: grid;
  gap: 2px;
  color: var(--deep-blue);
  line-height: 1.1;
}

.brand__text strong {
  font-size: 19px;
  font-weight: 900;
}

.brand__text small {
  max-width: 250px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-ataturk {
  width: 113px;
  height: 93px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-left: 4px;
}

.nav-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding: 5px;
  color: var(--deep-blue);
  font-size: 13px;
  font-weight: 850;
  background: rgba(0, 59, 115, 0.06);
  border: 1px solid rgba(0, 59, 115, 0.08);
  border-radius: 999px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--white);
  background: var(--navy);
}

.online-menu {
  position: relative;
  flex: 0 0 auto;
}

.online-menu__button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.online-menu__button,
.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #b3121b);
  box-shadow: 0 12px 24px rgba(216, 33, 42, 0.24);
}

.button--secondary {
  color: var(--deep-blue);
  background: var(--white);
}

.online-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  display: none;
  width: 290px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.online-menu:hover .online-menu__panel,
.online-menu:focus-within .online-menu__panel {
  display: grid;
}

.online-menu__panel a {
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--deep-blue);
  font-weight: 800;
}

.online-menu__panel a:hover {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--midnight);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 52, 0.94) 0%, rgba(0, 59, 115, 0.72) 46%, rgba(7, 27, 52, 0.22) 100%),
    url("/static/img/hero-ceremony-2200.d3447c951feb.jpg") no-repeat center / cover;
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: end;
  padding: 108px 0 128px;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffccd0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 0;
  color: var(--deep-blue);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

h3 {
  color: var(--deep-blue);
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 22px;
  background: rgba(1, 44, 86, 0.46);
}

.hero-panel span {
  display: block;
  margin-bottom: 10px;
  color: #ffccd0;
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  line-height: 1.35;
}

.quick-access {
  margin-top: -74px;
  position: relative;
  z-index: 2;
}

.quick-access__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(0, 59, 115, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-access a {
  min-height: 142px;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease;
}

.quick-access a:hover {
  background: var(--soft);
  transform: translateY(-2px);
}

.quick-access a:last-child {
  border-right: 0;
}

.quick-access span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.quick-access strong {
  color: var(--deep-blue);
  font-size: 19px;
  line-height: 1.3;
}

.section {
  padding: 92px 0;
}

.section--muted {
  background: linear-gradient(180deg, var(--soft), #fff);
}

.section__header {
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 30, 60, 0.06);
}

.info-card p {
  color: var(--muted);
  font-weight: 800;
}

.info-card a {
  color: var(--blue);
  font-weight: 900;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 40px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(5, 30, 60, 0.08);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-list a {
  min-height: 86px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  background: var(--soft);
  color: var(--deep-blue);
  font-weight: 900;
}

.page-hero {
  padding: 82px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--midnight), var(--blue));
}

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

.content-page {
  max-width: 900px;
  padding: 58px 0 90px;
  line-height: 1.8;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.86);
  background: var(--midnight);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

@media (max-width: 1120px) {
  .masthead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 16px;
    padding: 14px 0;
  }

  .header-ataturk {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .nav-cluster {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .main-nav {
    overflow-x: auto;
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 920px) {
  .hero__layout {
    grid-template-columns: 1fr;
    padding: 76px 0 100px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .quick-access {
    margin-top: 0;
  }

  .quick-access__grid,
  .card-grid,
  .feature-band,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-strip__inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px 14px;
  }

  .top-strip__inner span:first-child {
    flex-basis: 100%;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text small {
    max-width: 210px;
    font-size: 10px;
  }

  .header-ataturk {
    width: 92px;
    height: 76px;
    margin: 0;
  }

  .nav-cluster {
    align-items: stretch;
    flex-direction: column;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    overflow: visible;
    border-radius: 14px;
  }

  .main-nav a {
    justify-content: center;
    padding: 0 8px;
    font-size: 13px;
  }

  .online-menu__button {
    width: 100%;
  }

  .online-menu__panel {
    left: 0;
    right: auto;
    width: 100%;
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    min-height: 620px;
  }

  .hero__lead {
    font-size: 18px;
  }
}
