:root {
  color-scheme: light;
  --ink: #10202f;
  --muted: #617286;
  --paper: #fffdf9;
  --panel: #ffffff;
  --line: rgba(16, 32, 47, 0.12);
  --blue: #07357f;
  --blue-dark: #061d52;
  --red: #e21b16;
  --gold: #ffd33f;
  --green: #146b33;
  --shadow: 0 22px 70px rgba(16, 32, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 211, 63, 0.2), transparent 32%),
    radial-gradient(circle at 86% 8%, rgba(226, 27, 22, 0.12), transparent 26%),
    var(--paper);
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 27, 75, 0.92);
  color: white;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: white;
  padding: 3px;
}

.brand strong {
  display: block;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: white;
}

.hero {
  color: white;
  background:
    linear-gradient(125deg, rgba(3, 19, 60, 0.96), rgba(6, 58, 137, 0.92), rgba(178, 21, 15, 0.86)),
    url("sabiny-logo.png") center / min(72vw, 760px) no-repeat;
}

.hero-inner,
.content,
.footer-inner {
  width: min(1020px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: clamp(58px, 9vw, 112px) 0 clamp(48px, 8vw, 82px);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.content {
  padding: clamp(38px, 7vw, 76px) 0;
}

.summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.summary-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 32, 47, 0.07);
}

.summary-card {
  padding: 18px;
}

.summary-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
}

.summary-card p {
  margin: 0;
  color: var(--muted);
}

.policy-card {
  overflow: hidden;
}

.policy-section {
  padding: clamp(24px, 4vw, 38px);
  border-top: 1px solid var(--line);
}

.policy-section:first-child {
  border-top: 0;
}

h2 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.1;
}

h3 {
  margin: 22px 0 8px;
  color: var(--ink);
}

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

p {
  margin: 0 0 14px;
}

ul {
  margin: 10px 0 0;
  padding-left: 1.25rem;
}

.notice {
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  border-radius: 8px;
  background: #fff8dd;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.contact-card {
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(16, 32, 47, 0.07);
}

.contact-card small {
  display: block;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 10px;
  color: var(--blue-dark);
  overflow-wrap: anywhere;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.button.alt {
  background: #eef5ff;
  color: var(--blue-dark);
}

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .summary,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
