:root {
  --ink: #15110d;
  --charcoal: #221b17;
  --coffee: #3a2b22;
  --cream: #f8f2e8;
  --paper: #fffaf1;
  --muted: #776c61;
  --gold: #c99648;
  --gold-soft: #ead1a4;
  --line: rgba(64, 47, 34, 0.18);
  --dark-line: rgba(255, 244, 225, 0.18);
  --shadow: rgba(29, 18, 8, 0.18);
  --max: 1180px;
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --country-picker-height: 52px;
  --country-picker-radius: var(--radius);
  --country-picker-bg: var(--paper);
  --country-picker-dropdown-bg: var(--paper);
  --country-picker-search-bg: rgba(201, 150, 72, 0.08);
  --country-picker-text: var(--ink);
  --country-picker-dropdown-text: var(--ink);
  --country-picker-placeholder: var(--muted);
  --country-picker-muted: var(--muted);
  --country-picker-border: var(--line);
  --country-picker-focus: var(--gold);
  --country-picker-highlight: rgba(201, 150, 72, 0.16);
  --country-picker-highlight-text: var(--ink);
  --country-picker-shadow: rgba(29, 18, 8, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.nav {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: 0.25s ease;
}
.nav.scrolled, .nav.open {
  background: rgba(33, 26, 20, 0.82);
  border-color: var(--dark-line);
  color: var(--paper);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}
.logo {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.5px;
  color: var(--paper);
}
.logo b { color: var(--gold-soft); font-style: italic; }
.links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 14px;
}
.link-cta, .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 241, 0.25);
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}
.link-cta, .btn.primary {
  color: #271a10;
  background: linear-gradient(135deg, #f7dba6, var(--gold));
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(201, 150, 72, 0.32);
}
.btn.ghost {
  color: var(--paper);
  background: rgba(255, 250, 241, 0.08);
}
.menu-btn {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
}
.menu-btn span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}
.hero-bg, .payment-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img, .payment-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 13, 8, 0.84), rgba(20, 13, 8, 0.32) 58%, rgba(20, 13, 8, 0.08)),
    linear-gradient(0deg, rgba(20, 13, 8, 0.75), transparent 45%);
}
.hero-content {
  width: min(800px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-top: 74px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}
.hero h1, .section-head h2, .staff-copy h2, .payment h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  font-size: clamp(42px, 7vw, 90px);
}
.subtitle {
  max-width: 660px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 18px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 46px;
}
.hero-stats div {
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(12px);
}
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
}
.hero-stats span {
  color: rgba(255, 250, 241, 0.72);
  font-size: 13px;
}

.trust, .regions, .process, .testimonials, .contact {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 0;
}
.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p:not(.eyebrow), .staff-copy > p {
  color: var(--muted);
  font-size: 18px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card, .region-panel, .person-card, .step, .contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 22px 70px var(--shadow);
}
.card {
  min-height: 250px;
  padding: 24px;
}
.icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 850;
}
.card h3, .person-card h3, .step h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}
.card p, .person-card p, .step p, .fine-print {
  color: var(--muted);
}

.region-panel {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  overflow: hidden;
}
.region-tabs {
  display: grid;
  gap: 0;
  background: var(--charcoal);
}
.region-tabs button {
  min-height: 72px;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  color: rgba(255, 250, 241, 0.72);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.region-tabs button.active {
  color: #271a10;
  background: linear-gradient(135deg, #f5d99f, var(--gold));
}
.region-detail {
  padding: 36px;
}
.region-detail > p:first-child {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
}
.region-detail h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}
.region-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.region-metrics span {
  flex: 1 1 180px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(201, 150, 72, 0.1);
}
.region-metrics b { display: block; font-size: 28px; }

.staff {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding-top: 76px;
}
.staff-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: center;
}
.staff-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px var(--shadow);
}
.staff-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 14px 16px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(32, 23, 16, 0.72);
  backdrop-filter: blur(14px);
}
.image-badge span {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  text-transform: uppercase;
}
.staff-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.staff-summary div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
}
.staff-summary strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
}
.staff-summary span {
  color: var(--muted);
  font-size: 13px;
}
.staff-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.person-card {
  overflow: hidden;
  background: var(--paper);
}
.person-photo {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.person-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  aspect-ratio: 1;
  background: url("assets/staff-profiles.png") 0 0 / 100% 100% no-repeat;
}
.photo-care::before { transform: translateX(-50%); }
.photo-chef::before { transform: translateY(-50%); }
.photo-driver::before { transform: translate(-50%, -50%); }
.person-info {
  padding: 18px;
}
.person-tier {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #3c2917;
  background: rgba(201, 150, 72, 0.18);
  font-size: 12px;
  font-weight: 800;
}
.person-card h3 {
  font-size: 25px;
}
.person-info div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.person-info div span {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  background: rgba(201, 150, 72, 0.1);
}

.payment {
  position: relative;
  margin-top: 76px;
  padding: 82px max(16px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  overflow: hidden;
}
.payment::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 13, 8, 0.92), rgba(20, 13, 8, 0.72));
}
.section-head.light p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.75);
}
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: min(var(--max), 100%);
}
.crypto {
  padding: 22px 14px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
  text-align: center;
}
.crypto strong {
  display: block;
  color: var(--gold-soft);
  font-size: 28px;
}
.crypto span {
  color: rgba(255, 250, 241, 0.72);
  font-size: 13px;
}
.payment-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(var(--max), 100%);
  margin-top: 22px;
}
.payment-notes span {
  padding: 10px 14px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.82);
  background: rgba(255, 250, 241, 0.06);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step { padding: 24px; }
.step span {
  color: var(--gold);
  font-weight: 850;
}
.testimonials .section-head h2,
.contact-card h2 {
  font-size: clamp(32px, 4vw, 48px);
}
.testimonial-slider {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 34px 40px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 24px 80px var(--shadow);
}
.testimonial-track {
  position: relative;
  min-height: 252px;
}
.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 8px;
  text-align: center;
  opacity: 0;
  transform: translateX(34px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.testimonial-card.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.testimonial-quote {
  margin-bottom: -18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
  opacity: 0.5;
}
.testimonial-text {
  margin: 0 auto 30px;
  max-width: 680px;
  color: var(--ink);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.9;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-info h4 {
  margin: 0 0 4px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}
.author-info span {
  color: var(--muted);
  font-size: 13px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--gold);
  background: transparent;
  transform: rotate(45deg);
  transition: 0.25s ease;
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  transform: rotate(45deg) scale(1.22);
}

.contact-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 44px;
  text-align: center;
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
input, select {
  min-height: 52px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}
form button { grid-column: span 2; }
.fine-print {
  margin: 16px 0 0;
  font-size: 13px;
}
.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.footer p {
  margin: 6px 0 0;
  color: var(--muted);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  transform: translate(-50%, 24px);
  opacity: 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(35, 27, 20, 0.95);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  transition: 0.24s ease;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.hidden-service-frame {
  position: fixed;
  top: 0;
  left: -1000px;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.65s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; }
  .menu-btn { display: block; }
  .links { display: none; }
  .nav.open .links {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 8px;
    color: var(--paper);
  }
  .nav.open .links a {
    padding: 12px;
    border: 1px solid var(--dark-line);
    border-radius: var(--radius);
    background: rgba(255, 250, 241, 0.07);
  }
  .trust-grid, .timeline, .staff-card-grid { grid-template-columns: repeat(2, 1fr); }
  .region-panel, .staff-intro { grid-template-columns: 1fr; }
  .crypto-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .nav {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 12px;
  }
  .logo {
    font-size: 22px;
  }
  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding-top: 92px;
  }
  .hero h1, .section-head h2, .staff-copy h2, .payment h2, .contact h2 {
    font-size: 38px;
  }
  .subtitle,
  .section-head p:not(.eyebrow),
  .staff-copy > p {
    font-size: 16px;
  }
  .actions .btn {
    width: 100%;
  }
  .hero-stats, .trust-grid, .timeline, .crypto-grid, form, .staff-summary, .staff-card-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats { margin-top: 32px; }
  .trust, .regions, .process, .testimonials, .contact, .staff {
    width: calc(100% - 24px);
    padding-top: 58px;
  }
  .payment {
    margin-top: 58px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .region-detail, .contact-card { padding: 24px; }
  .region-tabs button { min-height: 58px; }
  .staff-image img { height: 330px; }
  .person-photo { height: 300px; }
  .testimonials .section-head h2,
  .contact-card h2 {
    font-size: 32px;
  }
  .testimonial-slider {
    padding: 26px 18px 26px;
  }
  .testimonial-track {
    min-height: 0;
  }
  .testimonial-quote {
    font-size: 70px;
    margin-bottom: -14px;
  }
  .testimonial-text {
    font-size: 16px;
    line-height: 1.75;
  }
  .testimonial-card {
    padding: 0;
    transform: translateX(18px);
  }
  form button { grid-column: auto; }
  .footer { display: grid; }
}
