:root {
  --awz-blue: #123b63;
  --blue-soft: #e7eef4;
  --ink: #1d2b36;
  --muted: #63727c;
  --paper: #fbf8ef;
  --white: #ffffff;
  --cream: #f6efe2;
  --sage: #dfe9df;
  --sage-deep: #6f8f7a;
  --gold: #b8873a;
  --gold-soft: #f2dfbd;
  --rose: #efe3dc;
  --line: #ded7ca;
  --error: #9f3028;
  --success: #2c6c50;
  --shadow: 0 22px 52px rgba(73, 61, 42, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: 0;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.09; letter-spacing: 0; }
h1, h2, h3, p, a, strong { overflow-wrap: break-word; }

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

.skip-link, .sr-only, .hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--white);
  font-weight: 900;
}

:focus-visible { outline: 3px solid rgba(184, 135, 58, 0.42); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(222, 215, 202, 0.9);
  background: rgba(251, 248, 239, 0.96);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled { box-shadow: 0 14px 36px rgba(73, 61, 42, 0.1); }

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-wrap > * { min-width: 0; }

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: var(--radius);
  background: var(--awz-blue);
  color: var(--white);
  font-weight: 900;
}

.brand-text { display: grid; gap: 1px; min-width: 0; line-height: 1.1; }
.brand-text strong { color: var(--ink); font-size: 20px; font-weight: 900; }
.brand-text small { color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 4px; }

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover, .primary-nav a:focus-visible { background: var(--cream); outline: none; }
.primary-nav .nav-cta { margin-left: 6px; background: var(--awz-blue); color: var(--white); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--awz-blue); }

.hero { background: linear-gradient(115deg, rgba(251, 248, 239, 0.98), rgba(246, 239, 226, 0.94) 48%, rgba(223, 233, 223, 0.92)); }

.hero-layout {
  min-height: min(650px, calc(100vh - 132px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 44px;
  align-items: center;
  padding: 56px 0 30px;
}

.hero-copy { max-width: 690px; }
.hero-copy, .hero-visual { min-width: 0; }

.eyebrow, .section-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
}

.hero-text { max-width: 650px; margin-bottom: 24px; color: #43515b; font-size: 19px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary { background: var(--gold); color: var(--white); }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, 0.72); color: var(--awz-blue); }

.trust-line {
  display: inline-flex;
  max-width: 680px;
  margin-bottom: 0;
  padding: 12px 14px;
  border: 1px solid rgba(184, 135, 58, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-weight: 800;
}

.hero-visual {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual img { width: 100%; height: 430px; object-fit: cover; }

.quick-entries { border-top: 1px solid rgba(222, 215, 202, 0.8); background: rgba(255, 255, 255, 0.58); }
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 18px 0; }

.quick-grid a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
}

.quick-grid span { color: var(--gold); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.quick-grid strong { color: var(--ink); font-size: 18px; }

.section { padding: 86px 0; }
.section-soft { background: #f4f0e7; }
.section-warm { background: var(--cream); }

h2 { margin-bottom: 16px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 46px; }
h3 { margin-bottom: 10px; color: var(--ink); font-size: 22px; }
.section-text { max-width: 760px; color: var(--muted); font-size: 19px; }

.intro-grid, .split-layout, .country-panel, .process-layout, .trust-panel, .faq-layout, .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.intro-grid .prose { padding-top: 8px; }
.prose p:last-child, .section-text:last-child { margin-bottom: 0; }
.reverse { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); }

.motive-list { display: grid; gap: 14px; }
.motive-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 5px 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.motive-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--sage);
  color: var(--awz-blue);
  font-weight: 900;
}

.motive-list p { margin-bottom: 0; color: var(--muted); }

.search-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 223, 189, 0.48)), var(--white);
  box-shadow: var(--shadow);
}

.search-card > span { display: inline-flex; margin-bottom: 14px; color: var(--gold); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.search-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 34px; }
.search-card dl { display: grid; gap: 10px; margin: 20px 0 0; }
.search-card dl div { display: flex; justify-content: space-between; gap: 16px; padding-top: 10px; border-top: 1px solid var(--line); }
.search-card dt { color: var(--muted); font-weight: 900; }
.search-card dd { margin: 0; color: var(--ink); font-weight: 900; text-align: right; }

.check-list { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 14px 13px 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); font-weight: 800; }
.check-list li::before { content: ""; position: absolute; left: 17px; top: 20px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }

.section-head { max-width: 850px; margin-bottom: 34px; }
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.type-grid article { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.type-grid p { margin-bottom: 0; color: var(--muted); }

.country-notes, .trust-points { display: grid; gap: 14px; }
.country-notes article, .trust-points p { margin: 0; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.country-notes strong { display: block; margin-bottom: 8px; color: var(--awz-blue); font-size: 20px; }
.country-notes p, .trust-points p { color: var(--muted); }

.process-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 4px 18px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.72); }
.process-list span { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--radius); background: var(--gold); color: var(--white); font-weight: 900; }
.process-list p { margin-bottom: 0; color: var(--muted); }

.trust-panel { align-items: center; padding: 34px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.trust-points p { color: var(--ink); font-weight: 850; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.faq-list summary { cursor: pointer; padding: 18px 20px; color: var(--ink); font-weight: 900; }
.faq-list p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.contact-section { padding: 88px 0; background: linear-gradient(135deg, rgba(223, 233, 223, 0.7), rgba(246, 239, 226, 0.82)), var(--sage); }
.contact-layout { align-items: start; }
.contact-copy address { display: grid; gap: 6px; margin-top: 24px; font-style: normal; }
.contact-copy address strong { color: var(--ink); }
.contact-copy address a { color: var(--awz-blue); font-weight: 900; text-decoration: none; }

.contact-form { display: grid; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: #fffdf8; color: var(--ink); padding: 12px 13px; }
.contact-form textarea { resize: vertical; }
.privacy-check { grid-template-columns: 20px 1fr; align-items: start; gap: 10px; font-weight: 700; }
.privacy-check input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--awz-blue); }
.privacy-check a { color: var(--awz-blue); font-weight: 900; }
.contact-form [aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(159, 48, 40, 0.18); }
.form-error, .form-success { min-height: 24px; margin: 0; font-weight: 900; }
.form-error { color: var(--error); }
.form-success { color: var(--success); }

.site-footer { padding: 34px 0 42px; background: var(--cream); color: var(--muted); }
.footer-grid, .legal-grid { display: flex; justify-content: space-between; gap: 24px; }
.site-footer strong { display: block; margin-bottom: 6px; color: var(--ink); }
.site-footer p { margin-bottom: 0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 12px; align-content: start; }
.site-footer a { color: var(--awz-blue); font-weight: 900; text-decoration: none; }
.legal-grid { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.legal-grid section { max-width: 520px; }
.legal-grid h2 { margin-bottom: 8px; font-family: Arial, Helvetica, sans-serif; font-size: 18px; }

@media (max-width: 1040px) {
  .primary-nav { position: fixed; left: 18px; right: 18px; top: 84px; display: none; flex-direction: column; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav a, .primary-nav .nav-cta { margin: 0; justify-content: center; }
  .nav-toggle { display: block; }
  .hero-layout, .intro-grid, .split-layout, .reverse, .country-panel, .process-layout, .trust-panel, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-layout { min-height: auto; padding: 44px 0 24px; }
  .hero h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .hero-visual img { height: 320px; }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: min(100% - 28px, var(--container)); }
  .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 10px; }
  .hero-layout { gap: 24px; padding: 34px 0 18px; }
  .hero h1 { margin-bottom: 18px; font-size: 34px; }
  .hero-text, .section-text { font-size: 16px; }
  .hero-actions, .quick-grid, .form-grid, .footer-grid, .legal-grid { grid-template-columns: 1fr; display: grid; }
  .button { width: 100%; }
  .trust-line { display: block; }
  .hero-visual img { height: 190px; }
  .section, .contact-section { padding: 62px 0; }
  h2 { font-size: 31px; }
  h3, .search-card h3 { font-size: 22px; }
  .motive-list article, .process-list li { grid-template-columns: 1fr; }
  .motive-list span, .process-list span { grid-row: auto; }
  .type-grid { grid-template-columns: 1fr; }
  .search-card { padding: 22px; }
  .search-card dl div { display: grid; gap: 2px; }
  .search-card dd { text-align: left; }
  .trust-panel { padding: 22px; }
  .contact-form { padding: 18px; }
}
