:root {
  --ink: #102c38;
  --deep: #082b36;
  --paper: #fffdf8;
  --sand: #f4efe5;
  --line: #dce6e4;
  --muted: #5d737b;
  --accent: #087f8c;
  --accent2: #e96b54;
  --white: #fff;
  --shadow: 0 22px 60px rgba(5, 43, 54, .14);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
}
.notice {
  padding: 8px 20px;
  background: #052631;
  color: #d9f0ef;
  text-align: center;
  font-size: 12px;
  letter-spacing: .01em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(8, 43, 54, .09);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.025em;
  white-space: nowrap;
}
.brand-mark {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent) 60%, white));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .2);
  font-size: 24px;
  font-style: italic;
}
.brand small {
  display: block;
  margin-top: -3px;
  color: var(--accent);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 750; }
.nav-links a { text-decoration: none; }
.nav-links a:not(.button):hover { color: var(--accent); }
.lang {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
}
.menu { display: none; border: 0; background: none; color: var(--ink); font-size: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent2);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(8, 43, 54, .16); }
.button.light { border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .94); color: var(--ink); }
.button.outline { border-color: rgba(8, 43, 54, .18); background: #fff; color: var(--ink); }
.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}
.hero-media, .landmark-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 32, 41, .94) 0%, rgba(3, 32, 41, .72) 50%, rgba(3, 32, 41, .2) 100%),
    linear-gradient(0deg, rgba(3, 32, 41, .35), transparent 60%);
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 68px;
  background: var(--paper);
  clip-path: polygon(0 82%, 10% 62%, 20% 76%, 31% 47%, 42% 68%, 53% 52%, 64% 78%, 77% 48%, 89% 72%, 100% 52%, 100% 100%, 0 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 810px; padding: 112px 0 125px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero .eyebrow {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  background: rgba(6, 47, 59, .44);
  color: #fff;
}
h1 {
  max-width: 900px;
  margin: 19px 0 20px;
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.hero-lede { max-width: 720px; margin: 0 0 29px; color: #e3f2f1; font-size: clamp(18px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 28px; color: #d9f2ef; font-size: 14px; font-weight: 750; }
.hero-proof span:before { content: "✓"; margin-right: 7px; color: var(--accent2); font-weight: 900; }
.jurisdiction {
  position: relative;
  z-index: 5;
  margin-top: -30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 27px;
  border-top: 4px solid var(--accent2);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.jurisdiction-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent2) 18%, white);
  font-size: 23px;
}
.jurisdiction strong { display: block; font-size: 18px; }
.jurisdiction p { margin: 2px 0 0; color: var(--muted); }
.section { padding: 90px 0; }
.section-heading { max-width: 820px; }
h2 { margin: 9px 0 17px; font-size: clamp(32px, 4.2vw, 52px); line-height: 1.12; letter-spacing: -.045em; }
.lead { margin: 0; color: var(--muted); font-size: 18px; }
.areas-section { position: relative; overflow: hidden; background: var(--sand); }
.areas-section:before {
  content: attr(data-city);
  position: absolute;
  right: -20px;
  top: 8px;
  color: color-mix(in srgb, var(--accent) 8%, transparent);
  font-size: clamp(78px, 15vw, 220px);
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: 1;
  white-space: nowrap;
}
.area-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 39px; }
.area-card {
  min-height: 180px;
  padding: 23px;
  border: 1px solid rgba(8, 43, 54, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.area-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 42%, transparent); box-shadow: 0 16px 34px rgba(8, 43, 54, .1); }
.area-card:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 58%, white); outline-offset: 3px; }
.area-code { color: var(--accent); font-size: 10px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.area-card h3 { margin: 11px 0 8px; font-size: 20px; line-height: 1.25; }
.area-card p { margin: 0; color: var(--muted); font-size: 14px; }
.coverage-note { margin: 22px 0 0; color: var(--muted); font-size: 14px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; margin-top: 40px; }
.step { min-height: 252px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.step-no {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 13%, white);
  color: var(--accent);
  font-weight: 950;
}
.step h3 { margin: 19px 0 8px; font-size: 20px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: start; }
.check-list { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.check-list i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 15%, white);
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}
.service-card { padding: 34px; border-radius: 27px; background: var(--deep); color: #fff; box-shadow: var(--shadow); }
.service-card h3 { margin: 0 0 10px; font-size: 28px; }
.service-card p, .service-card li { color: #cce1e1; }
.service-card ul { padding-left: 20px; }
.service-card .button { margin-top: 10px; }
.visa-section { background: #f6f9f8; }
.visa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 36px; }
.visa { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.visa b { color: var(--accent); font-size: 28px; }
.visa h3 { margin: 3px 0 5px; }
.visa p { margin: 0; color: var(--muted); font-size: 14px; }
.landmark { position: relative; min-height: 520px; overflow: hidden; background: var(--deep); }
.faq { max-width: 900px; margin: 36px auto 0; }
.faq details { padding: 20px 4px; border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 850; }
.faq summary:after { content: "+"; color: var(--accent); }
.faq details[open] summary:after { content: "−"; }
.faq details p { margin: 11px 0 0; color: var(--muted); }
.sources { padding: 28px 0; background: #edf3f2; color: var(--muted); font-size: 13px; }
.sources a { color: var(--accent); font-weight: 750; }
.cta { position: relative; overflow: hidden; padding: 76px 0; background: var(--deep); color: #fff; }
.cta:after { content: ""; position: absolute; width: 340px; height: 340px; right: -130px; top: -150px; border: 70px solid color-mix(in srgb, var(--accent) 20%, transparent); border-radius: 50%; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta h2 { margin: 0 0 11px; }
.cta p { max-width: 690px; margin: 0; color: #c9e1e0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 11px; flex-shrink: 0; }
.site-footer { padding: 44px 0 95px; background: #04242d; color: #c6dbdc; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid h3 { margin-top: 0; color: #fff; }
.footer-grid a { display: block; margin: 7px 0; color: #c6dbdc; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.fine { margin-top: 31px; padding-top: 19px; border-top: 1px solid rgba(255, 255, 255, .12); color: #99b7b9; font-size: 12px; }
.mobile-cta { display: none; }

@media (max-width: 940px) {
  .nav-links a:not(.lang):not(.nav-apply) { display: none; }
  .area-grid, .visa-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .jurisdiction { grid-template-columns: auto 1fr; }
  .jurisdiction > .button { grid-column: 1 / -1; }
  .cta-inner { display: block; }
  .cta-actions { margin-top: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .notice { padding: 7px 10px; font-size: 10px; }
  .nav { min-height: 66px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 36px; height: 36px; font-size: 21px; }
  .nav-apply { display: none; }
  .lang { padding: 7px 10px; font-size: 12px; }
  .hero { min-height: 690px; }
  .hero-shade { background: linear-gradient(180deg, rgba(3, 32, 41, .43), rgba(3, 32, 41, .94) 72%); }
  .hero-media { object-position: 58% center; }
  .hero-inner { padding: 90px 0 120px; }
  h1 { font-size: 43px; }
  .hero-lede { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .jurisdiction { display: block; margin-top: -36px; padding: 20px; }
  .jurisdiction-icon { margin-bottom: 10px; }
  .jurisdiction .button { width: 100%; margin-top: 13px; }
  .section { padding: 68px 0; }
  .area-grid, .visa-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .area-card, .step { min-height: auto; }
  .service-card { padding: 26px; }
  .landmark { min-height: 420px; }
  .landmark-media { object-position: center; }
  .cta { padding: 62px 0 82px; }
  .cta-actions .button { width: 100%; }
  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 253, 248, .96);
    box-shadow: 0 12px 36px rgba(3, 31, 40, .28);
    backdrop-filter: blur(12px);
  }
  .mobile-cta .button { min-height: 43px; padding: 9px 8px; font-size: 12px; }
  .site-footer { padding-bottom: 110px; }
}
