@charset "utf-8";
:root {
  --navy: #0c203d;
  --navy-2: #142f54;
  --gold: #b99659;
  --gold-soft: #d6bd88;
  --ink: #17243a;
  --muted: #667085;
  --line: #e5e9f0;
  --surface: #f7f8fa;
  --white: #ffffff;
  --success: #197653;
  --danger: #a33a45;
  --shadow: 0 20px 60px rgba(12, 32, 61, .12);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.topbar { background: var(--navy); color: rgba(255,255,255,.75); font-size: 12px; letter-spacing: .03em; }
.topbar .container { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; }
.header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(12,32,61,.08); backdrop-filter: blur(12px); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand img { width: 122px; max-height: 70px; object-fit: contain; }
.brand-copy { display: grid; gap: 0; }
.brand-copy strong { color: var(--navy); font-family: Georgia, serif; font-size: 18px; letter-spacing: .09em; }
.brand-copy span { color: var(--gold); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 25px; color: var(--navy); font-size: 14px; font-weight: 700; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold); transition: right .2s ease; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 999px; padding: 13px 20px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.nav-cta, .button-primary { color: var(--white); background: var(--navy); box-shadow: 0 10px 22px rgba(12,32,61,.18); }
.button-gold { color: var(--navy); background: var(--gold-soft); }
.button-ghost { color: var(--navy); background: transparent; border: 1px solid rgba(12,32,61,.18); }
.button:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(12,32,61,.22); }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: 12px; padding: 9px 12px; color: var(--navy); font-size: 20px; }
.hero { position: relative; overflow: hidden; background: linear-gradient(115deg, var(--navy) 0%, #173c69 56%, #244d7a 100%); color: var(--white); }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -170px; top: -170px; border: 1px solid rgba(214,189,136,.35); border-radius: 50%; box-shadow: 0 0 0 42px rgba(214,189,136,.04), 0 0 0 85px rgba(214,189,136,.035); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; min-height: 600px; padding: 86px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-soft); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: block; width: 34px; height: 1px; background: currentColor; }
.hero h1 { max-width: 680px; margin: 22px 0 20px; font-family: Georgia, serif; font-size: clamp(42px, 6vw, 76px); line-height: 1.02; letter-spacing: -.04em; }
.hero p { max-width: 560px; margin: 0; color: rgba(255,255,255,.78); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero .button-primary { color: var(--navy); background: var(--gold-soft); }
.hero .button-ghost { color: var(--white); border-color: rgba(255,255,255,.34); }
.hero-panel { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(255,255,255,.1); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-panel img { display: block; width: 100%; max-width: 245px; margin: 0 auto 18px; filter: drop-shadow(0 15px 18px rgba(0,0,0,.2)); }
.hero-panel h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 28px; }
.hero-panel p { font-size: 14px; }
.hero-stat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.hero-stat div { padding: 15px 10px; border-top: 1px solid rgba(255,255,255,.22); }
.hero-stat strong { display: block; color: var(--gold-soft); font-size: 22px; }
.hero-stat span { color: rgba(255,255,255,.7); font-size: 11px; }
.section { padding: 100px 0; }
.section-soft { background: var(--surface); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 42px; }
.section-head h2 { max-width: 650px; margin: 10px 0 0; color: var(--navy); font-family: Georgia, serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.08; letter-spacing: -.03em; }
.section-head p { max-width: 430px; color: var(--muted); margin: 0; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; }
.about-card { position: relative; padding: 42px; color: var(--white); background: var(--navy); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -110px; bottom: -110px; border: 1px solid rgba(214,189,136,.5); border-radius: 50%; }
.about-card strong { color: var(--gold-soft); font-size: 54px; font-family: Georgia, serif; }
.about-card h3 { margin: 2px 0 20px; font-family: Georgia, serif; font-size: 30px; }
.about-card p { color: rgba(255,255,255,.72); }
.about-copy h3 { margin: 0 0 18px; color: var(--navy); font-family: Georgia, serif; font-size: 34px; }
.about-copy p { color: var(--muted); font-size: 17px; }
.about-copy .quote { padding-left: 20px; border-left: 3px solid var(--gold); color: var(--navy); font-family: Georgia, serif; font-size: 23px; font-style: italic; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 24px; color: var(--navy); background: #f1eadc; border-radius: 14px; font-size: 22px; }
.card h3 { margin: 0 0 12px; color: var(--navy); font-family: Georgia, serif; font-size: 26px; line-height: 1.1; }
.card p { color: var(--muted); }
.card a { display: inline-flex; margin-top: 8px; color: var(--navy); font-size: 13px; font-weight: 800; }
.process-banner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 25px; padding: 48px; border-radius: var(--radius); background: linear-gradient(110deg, #f2eadb, #fbfaf7); }
.process-banner h2 { margin: 0 0 10px; color: var(--navy); font-family: Georgia, serif; font-size: 36px; }
.process-banner p { max-width: 650px; margin: 0; color: var(--muted); }
.page-hero { padding: 76px 0; color: var(--white); background: linear-gradient(110deg, var(--navy), #224a76); }
.page-hero h1 { margin: 18px 0 0; font-family: Georgia, serif; font-size: clamp(42px, 6vw, 68px); line-height: 1; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.72); font-size: 17px; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.profile { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.profile h3 { margin: 0 0 4px; color: var(--navy); font-family: Georgia, serif; font-size: 25px; }
.profile small { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.profile p { margin-bottom: 0; color: var(--muted); }
.process-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 35px rgba(12,32,61,.06); }
.process-table { width: 100%; border-collapse: collapse; min-width: 690px; }
.process-table th, .process-table td { padding: 17px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.process-table th { color: var(--navy); background: #faf8f3; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.process-table tr:last-child td { border-bottom: 0; }
.process-table td { color: #475467; font-size: 14px; }
.status { display: inline-flex; padding: 5px 10px; border-radius: 999px; background: #eaf6ef; color: var(--success); font-size: 12px; font-weight: 800; }
.download-link { display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; border: 1px solid rgba(12,32,61,.16); border-radius: 999px; color: var(--navy); background: #f5f0e6; font-size: 11px; font-weight: 900; letter-spacing: .04em; white-space: nowrap; transition: transform .2s ease, background .2s ease, color .2s ease; }
.download-link:hover { color: var(--white); background: var(--navy); transform: translateY(-1px); }
.download-empty { color: #a6adba; font-size: 13px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-card { padding: 34px; border-radius: var(--radius); background: var(--navy); color: var(--white); }
.contact-card h2 { margin: 0 0 18px; font-family: Georgia, serif; font-size: 32px; }
.contact-card p { color: rgba(255,255,255,.74); }
.contact-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-item:last-child { border-bottom: 0; }
.contact-item span { display: block; color: var(--gold-soft); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-item strong { display: block; margin-top: 3px; font-size: 16px; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #d9dee8; border-radius: 12px; color: var(--ink); background: #fbfcfe; font: inherit; }
.field textarea { min-height: 130px; resize: vertical; }
.alert { margin-bottom: 22px; padding: 14px 16px; border-radius: 12px; font-size: 14px; }
.alert-success { color: #135d43; background: #e8f6ef; }
.alert-error { color: #7f2531; background: #fdecee; }
.footer { padding: 52px 0 25px; color: rgba(255,255,255,.7); background: #08182f; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; padding-bottom: 38px; }
.footer h3 { margin: 0 0 12px; color: var(--white); font-family: Georgia, serif; font-size: 22px; }
.footer p { margin: 0; font-size: 14px; }
.footer-links { display: grid; gap: 7px; font-size: 14px; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.admin-body { min-height: 100vh; background: #f5f7fa; }
.admin-header { color: var(--white); background: var(--navy); }
.admin-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.admin-brand { display: flex; align-items: center; gap: 12px; font-family: Georgia, serif; font-size: 20px; }
.admin-brand img { width: 78px; height: 50px; object-fit: contain; background: var(--white); border-radius: 8px; }
.admin-links { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 800; }
.admin-links a:hover { color: var(--gold-soft); }
.admin-main { padding: 42px 0 70px; }
.admin-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.admin-title h1 { margin: 0; color: var(--navy); font-family: Georgia, serif; font-size: 40px; }
.admin-title p { margin: 5px 0 0; color: var(--muted); }
.admin-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 10px 30px rgba(12,32,61,.06); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; }
.admin-table th { color: var(--navy); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.admin-table td { color: #475467; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-actions a { padding: 7px 10px; border-radius: 8px; color: var(--navy); background: #f1f3f7; font-size: 12px; font-weight: 800; }
.admin-actions a.danger { color: var(--danger); background: #fff0f1; }
.check { display: inline-flex; align-items: center; gap: 8px; }
.check input { width: 17px; height: 17px; }
.login-shell { display: grid; place-items: center; min-height: 100vh; padding: 24px; background: linear-gradient(135deg, var(--navy), #234d79); }
.login-card { width: min(460px, 100%); padding: 38px; border-radius: 24px; background: var(--white); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.login-logo { display: block; width: 155px; height: 88px; margin: 0 auto 22px; object-fit: contain; }
.login-card h1 { margin: 0 0 7px; color: var(--navy); text-align: center; font-family: Georgia, serif; font-size: 32px; }
.login-card > p { margin: 0 0 25px; color: var(--muted); text-align: center; }
.pagination { display: flex; gap: 7px; margin-top: 24px; }
.pagination a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--navy); font-size: 12px; font-weight: 800; }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav { min-height: 72px; }
  .mobile-open .nav-links { position: absolute; top: 72px; left: 0; right: 0; display: grid; gap: 0; padding: 14px 24px 20px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 30px rgba(12,32,61,.1); }
  .mobile-open .nav-links a { padding: 11px 0; }
  .mobile-open .nav-cta { display: inline-flex; position: absolute; top: 273px; left: 24px; right: 24px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-grid { min-height: auto; padding: 72px 0; }
  .cards { grid-template-columns: 1fr 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 32px, 1160px); }
  .topbar .container { flex-direction: column; gap: 2px; }
  .brand-copy { display: none; }
  .hero h1 { font-size: 46px; }
  .hero-panel { padding: 23px; }
  .hero-stat { gap: 4px; }
  .section { padding: 68px 0; }
  .cards, .profile-grid, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .process-banner { grid-template-columns: 1fr; padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .admin-nav { align-items: start; flex-direction: column; padding: 14px 0; }
  .admin-links { flex-wrap: wrap; }
  .admin-title { align-items: start; flex-direction: column; }
  .admin-card { padding: 15px; overflow-x: auto; }
}
