:root {
  --navy: #101725;
  --navy-2: #172235;
  --ink: #243044;
  --muted: #6d7481;
  --line: #e8dfd1;
  --paper: #fffaf3;
  --soft: #f4ecdf;
  --white: #ffffff;
  --gold: #c89a45;
  --gold-2: #a87522;
  --wine: #7b3f4a;
  --green: #356859;
  --shadow: 0 18px 48px rgba(16, 23, 37, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf3 0%, #ffffff 42%, #f8f3eb 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 21px;
  height: 2px;
  display: block;
  position: relative;
  content: "";
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button span::before {
  position: absolute;
  top: -7px;
}

.menu-button span::after {
  position: absolute;
  top: 7px;
}

.menu-button[aria-expanded="true"] span {
  background: transparent;
}

.menu-button[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 72px 1rem auto 1rem;
  display: none;
  flex-direction: column;
  gap: .75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  color: var(--navy);
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--gold-2);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--navy);
  padding: .65rem 1rem;
  border-radius: 999px;
  text-align: center;
}

.language-switcher {
  position: relative;
  color: var(--navy);
  font-weight: 900;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 42px;
  padding: .45rem .7rem;
  cursor: pointer;
  list-style: none;
  border-radius: 999px;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  width: .48rem;
  height: .48rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  content: "";
}

.language-switcher[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + .45rem);
  z-index: 70;
  min-width: 180px;
  padding: .45rem;
  background: #12020a;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .65rem;
  color: #fff1d7;
  border-radius: 6px;
  white-space: nowrap;
}

.language-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.site-footer .language-switcher {
  color: #fff1d7;
}

.footer-language {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.footer-language summary {
  min-height: auto;
  padding: 0;
  background: transparent;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #0b1220;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(200, 154, 69, .16);
  content: "";
}

.hero::after {
  position: absolute;
  right: clamp(1rem, 7vw, 8rem);
  bottom: -90px;
  z-index: -1;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(200, 154, 69, .32);
  border-radius: 50%;
  content: "";
}

.hero-inner,
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.hero-inner {
  min-height: clamp(660px, 84vh, 860px);
  padding-top: clamp(5rem, 9vh, 7rem);
  padding-bottom: clamp(4.5rem, 8vh, 6.5rem);
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  margin-bottom: .7rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4.7rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.18rem;
}

.hero h1 {
  max-width: 780px;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 14px 38px rgba(0, 0, 0, .28);
}

.hero p {
  max-width: 720px;
  color: #fff4e4;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.9;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .32);
}

.section-head {
  max-width: 830px;
  margin-bottom: 2rem;
}

.section > .section-inner > .section-head:only-child {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section > .section-inner > .section-head:only-child p {
  margin-right: auto;
  margin-left: auto;
}

.section-head p,
.muted {
  color: var(--muted);
}

.cta-row,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.35rem;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #e0b35b, var(--gold));
  box-shadow: 0 16px 34px rgba(200, 154, 69, .28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: .38rem .72rem;
  color: #fff4e2;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  font-size: .9rem;
}

.hero-panel {
  position: relative;
  padding: .78rem;
  color: var(--ink);
  background: rgba(255, 250, 243, .94);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.hero-panel::before {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(200, 154, 69, .28);
  border-radius: 14px;
  content: "";
}

.hero-panel img,
.image-card img,
.profile-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-panel img {
  aspect-ratio: 16 / 11;
  border-radius: 8px;
}

.panel-caption {
  padding: 1rem .65rem .45rem;
}

.panel-caption strong {
  color: var(--navy);
}

.panel-caption p {
  color: var(--ink);
  font-size: .95rem;
}

.section {
  background: var(--paper);
}

.section-alt {
  background: var(--white);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.definition-section .section-inner {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.definition-row {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.definition-copy {
  max-width: 650px;
}

.definition-copy p {
  color: #344054;
  font-size: 1.02rem;
}

.definition-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(16, 23, 37, .12);
}

.definition-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.clean-list {
  display: grid;
  gap: .55rem;
  margin-top: 1.2rem;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--navy-2);
  font-weight: 700;
}

.clean-list li::before {
  position: absolute;
  top: .63rem;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.city-grid {
  display: grid;
  gap: 1.2rem;
}

.card {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(16, 23, 37, .07);
}

.section-alt .card {
  background: var(--paper);
}

.card h3 a,
.city-link {
  color: var(--gold-2);
  font-weight: 900;
}

.wide-card {
  grid-column: 1 / -1;
}

.city-card {
  overflow: hidden;
  padding: 0;
  background: #fffdf9;
}

.city-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.city-card h3,
.city-card p {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
}

.city-card h3 {
  margin-top: 1rem;
}

.city-card p {
  padding-bottom: 1.2rem;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: .8rem;
  color: var(--gold-2);
  background: #fff1d7;
  border-radius: 50%;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.steps,
.step-grid {
  counter-reset: step;
}

.step-grid {
  align-items: stretch;
}

.step-card {
  position: relative;
  padding-left: 4.5rem;
}

.step-card::before {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
  counter-increment: step;
  content: counter(step);
}

.message-card {
  background: linear-gradient(180deg, #fffdf9, #fff4e4);
}

.message-list {
  display: grid;
  gap: .8rem;
}

.message-list p {
  margin: 0;
  padding: .85rem;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.bio-examples {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.bio-examples .card {
  background: linear-gradient(180deg, #fffdf9, #fff6e9);
}

.photo-rules {
  display: grid;
  gap: .7rem;
}

.photo-rules p {
  position: relative;
  margin: 0;
  padding: .82rem .9rem .82rem 2.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.photo-rules p::before {
  position: absolute;
  left: .9rem;
  top: .95rem;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.flag-grid {
  display: grid;
  gap: 1rem;
}

.flag-card {
  border-top: 5px solid var(--gold);
}

.green-flag {
  background: #f6fbf8;
  border-top-color: var(--green);
}

.red-flag {
  background: #fff7f2;
  border-top-color: var(--wine);
}

.feature-card {
  min-height: 100%;
}

.table-note {
  margin-top: 1rem;
}

.profile-meta {
  margin: .75rem 0 .45rem;
  color: var(--gold-2);
  font-weight: 900;
}

.profile-card {
  overflow: hidden;
  padding: 0;
  background: #fffdf9;
}

.profile-card img {
  border-radius: 0;
}

.profile-card h3,
.profile-card p,
.profile-card .profile-meta,
.profile-card .profile-tags {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
}

.profile-card h3 {
  margin-top: 1rem;
}

.profile-card p {
  color: #344054;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding-bottom: 1.2rem;
}

.profile-tags span {
  padding: .25rem .55rem;
  color: var(--green);
  background: #e8f1ed;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}

.card-link {
  display: block;
  height: 100%;
}

.stories-head {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.stories-grid {
  display: grid;
  gap: 1.4rem;
}

.story-card {
  padding: 2rem 1.4rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(16, 23, 37, .09);
}

.story-card img {
  width: 168px;
  height: 168px;
  margin: 0 auto 1.6rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(16, 23, 37, .14);
}

.story-card p {
  max-width: 520px;
  margin: 0 auto 1.3rem;
  color: var(--navy-2);
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.9;
}

.story-card strong {
  color: #e5483f;
  font-size: 1.05rem;
}

.cta-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cta-center p {
  margin-right: auto;
  margin-left: auto;
}

.cta-center .cta-row {
  justify-content: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  margin-top: .4rem;
  padding: .28rem .58rem;
  color: var(--green);
  background: #e8f1ed;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
}

.comparison {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--white);
  background: var(--navy);
}

.notice {
  padding: 1rem;
  background: #fff3dd;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
}

.faq {
  display: grid;
  gap: .85rem;
}

.faq details {
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.faq-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.faq-hero-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.faq-hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.faq-hero-card div {
  padding: 1rem;
}

.quick-help {
  display: grid;
  gap: .75rem;
  margin-top: 1.6rem;
}

.quick-help a {
  padding: .75rem .9rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 23, 37, .06);
}

.quick-help a:hover {
  color: var(--gold-2);
  border-color: rgba(200, 154, 69, .55);
}

.faq-section {
  scroll-margin-top: 96px;
}

.faq-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.faq-side-card {
  padding: 1rem;
  background: linear-gradient(180deg, #fffdf9, #fff4e4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-side-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.faq-side-card p {
  margin: .85rem 0 0;
  color: #344054;
}

.faq-tip-list {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.faq-tip-list li {
  padding: .8rem .9rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.faq-cta-card {
  padding: 2rem 1.25rem;
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius);
}

.faq-cta-card h2,
.faq-cta-card p {
  color: var(--white);
}

.faq-cta-card p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.faq-cta-card .cta-row {
  justify-content: center;
}

.page-hero {
  color: var(--white);
  background: #101725;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  max-width: 820px;
  color: #f2e8da;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: .35rem;
  color: var(--navy);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  padding: .8rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

textarea {
  min-height: 150px;
}

.site-footer {
  color: #d7deea;
  background: #0b1220;
}

.site-footer .brand {
  color: #fff8ea;
}

.site-footer .brand-mark {
  background: rgba(255, 255, 255, .08);
  color: var(--gold);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.15rem;
}

.footer-links a {
  color: #fff1d7;
}

.footer-links a:hover {
  color: var(--gold);
}

.legal-small {
  color: #aeb7c6;
  font-size: .92rem;
}

.blog-card {
  overflow: hidden;
  padding: 0;
  background: #fffdf9;
}

.blog-card img {
  border-radius: 0;
}

.blog-card h3,
.blog-card p {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
}

.blog-card h3 {
  margin-top: 1rem;
}

.blog-card p {
  padding-bottom: 1.2rem;
}

@media (min-width: 780px) {
  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .main-nav .language-switcher {
    margin-left: .2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  }

  .hero-panel {
    max-width: 520px;
    justify-self: end;
    transform: translateY(12px);
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .definition-row {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  }

  .definition-row-reverse {
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  }

  .quick-help {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .36fr);
  }

  .bio-examples,
  .flag-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bio-examples .card:first-child {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr 2fr;
  }
}

@media (max-width: 520px) {
  .hero-inner,
  .section-inner {
    padding: 3rem 1rem;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 3.75rem;
    padding-bottom: 3.5rem;
  }

  .hero {
    background: #0b1220;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.65rem);
  }

  .hero-panel {
    padding: .65rem;
  }

  .brand {
    font-size: .95rem;
  }

  .btn {
    width: 100%;
  }

  .step-card {
    padding-left: 1.2rem;
    padding-top: 4.4rem;
  }

  .language-switcher summary {
    justify-content: space-between;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    background: #fff7eb;
  }

  .language-menu {
    position: static;
    width: 100%;
    margin-top: .35rem;
  }

  .footer-language {
    width: auto;
  }

  .footer-language summary {
    width: auto;
    justify-content: flex-start;
    padding: 0;
    background: transparent;
  }

  .footer-language .language-menu {
    position: absolute;
    right: auto;
    left: 0;
    width: max-content;
    min-width: 180px;
  }
}
