:root {
  --bg: #141414;
  --surface: #1c1c1c;
  --surface-2: #242320;
  --line: #3a352c;
  --line-strong: #524a3c;
  --text: #f0ece0;
  --muted: #a8a094;
  --gold: #d4af37;
  --gold-light: #f0d878;
  --gold-dark: #a67c1e;
  --success: #34d399;
  --danger: #f87171;
  --warning: #fb923c;
  --info: #60a5fa;
  /* Back-compat aliases: platform.css / tailadmin-dashboard.css reference these
     old token names extensively. Aliasing them lets the admin/portal chrome
     retheme automatically via the cascade for the majority of uses; the
     remaining text-on-color / gradient exceptions are patched directly in
     platform.css. */
  --navy: var(--text);
  --white: var(--surface);
  --royal: var(--gold);
  --sky: var(--surface-2);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.1rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 760px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #141414;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.btn-primary {
  background: var(--gold);
  color: #141414;
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-light {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-light:hover,
.btn-light:focus-visible,
.contact-panel .btn-light,
.cta-band .btn-light {
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-primary,
.contact-panel .btn-primary {
  color: #141414;
}

.contact-panel .btn-secondary {
  color: var(--text);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 240px;
}

.brand-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  color: var(--text);
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.brand-subtitle {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  margin-top: 5px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 850;
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.searchable-country {
  position: relative;
}

.country-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 10;
  display: none;
  max-height: 240px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.country-results.open {
  display: block;
}

.country-results button {
  display: flex;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  gap: 10px;
  padding: 10px 12px;
  text-align: left;
}

.country-results button:hover {
  background: var(--surface-2);
}