:root {
  --ink: #17213d;
  --blue: #253b83;
  --accent: #e8a844;
  --paper: #f7f6f2;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.65; }
a { color: inherit; }
.site-header { position: sticky; z-index: 10; top: 0; display: flex; align-items: center; justify-content: space-between; padding: 16px clamp(22px, 6vw, 90px); color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 2px 14px rgba(18,31,69,.09); }
.brand { display: flex; gap: 12px; align-items: center; color: inherit; font-size: 11px; line-height: 1.25; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.brand-mark { display: grid; width: 55px; height: 55px; place-items: center; color: #fff; background: var(--blue); font-weight: 800; letter-spacing: .03em; border-radius: 50%; }
nav { display: flex; gap: 28px; }
nav a { font-size: 12px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: .12em; }
nav a:hover { color: var(--accent); }
.hero { min-height: 78vh; display: grid; place-items: center; text-align: center; color: #fff; background: linear-gradient(rgba(12,19,57,.43),rgba(12,19,57,.62)), url("assets/hero.jpg") center/cover; }
.hero-content { padding: 40px 20px; }
.hero h1 { margin: 0; font-size: clamp(72px, 13vw, 170px); line-height: .9; letter-spacing: .05em; }
.hero p:not(.eyebrow) { margin: 22px 0 34px; font-size: clamp(18px, 2.2vw, 28px); }
.eyebrow { margin: 0 0 10px; color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .22em; }
.eyebrow.light { color: #f6c66e; }
.button { display: inline-block; padding: 13px 22px; border: 2px solid #fff; color: #fff; font-size: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .13em; }
.button:hover { color: var(--ink); background: #fff; }
.button.dark { border-color: var(--ink); color: var(--ink); }
.button.dark:hover { color: #fff; background: var(--ink); }
.section { width: min(1080px, calc(100% - 44px)); margin: auto; padding: clamp(70px, 10vw, 130px) 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.15; }
h2 { margin: 0 0 28px; font-size: clamp(38px, 6vw, 68px); }
.intro { max-width: 860px; text-align: center; }
.lead { font-family: Georgia, "Times New Roman", serif; font-size: clamp(21px, 3vw, 30px); }
.text-link { display: inline-block; margin-top: 16px; color: var(--blue); font-weight: 800; text-decoration: none; }
.values { color: #fff; background: linear-gradient(rgba(21,29,65,.86),rgba(21,29,65,.9)), url("assets/values.jpg") center/cover fixed; }
.values .section > p { max-width: 760px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 55px; }
.value-grid article { border-top: 1px solid rgba(255,255,255,.45); padding-top: 22px; }
.value-grid span { color: var(--accent); font-size: 12px; font-weight: 800; }
.value-grid h3 { margin: 10px 0; font-size: 30px; }
.quote { max-width: 800px; text-align: center; }
.quote img { width: 92px; height: 92px; object-fit: cover; border-radius: 50%; }
.quote blockquote { margin: 28px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(22px, 3.2vw, 34px); font-style: italic; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards a { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; color: #fff; background: var(--blue); text-decoration: none; }
.cards a:nth-child(2) { background: #314d9f; }
.cards a:nth-child(3) { background: #c98a2b; }
.cards strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; }
.cards span { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-page { min-height: 70vh; background: linear-gradient(90deg,rgba(247,246,242,.97),rgba(247,246,242,.7)), url("assets/parallax.jpg") center/cover; }
.contact-page .section { max-width: 760px; margin-left: clamp(22px, 12vw, 180px); }
.contact-page h1 { margin: 0; font-size: clamp(55px, 10vw, 110px); }
footer { display: flex; justify-content: space-between; gap: 30px; padding: 45px clamp(22px, 6vw, 90px); color: #fff; background: #101932; font-size: 12px; }

@media (max-width: 720px) {
  .site-header { position: static; align-items: flex-start; }
  .brand span:last-child { display: none; }
  nav { flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
  nav a { font-size: 10px; }
  .value-grid, .cards { grid-template-columns: 1fr; }
  .values { background-attachment: scroll; }
  footer { flex-direction: column; }
}
