/* ============================================================
   Velvet Route Travel — Global Stylesheet
   Local prototype only. Not for production deployment.
   ============================================================ */

/* ---- Reset & Normalization ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-cream);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input, textarea, select {
  font: inherit;
}

/* ---- CSS Variables ---- */
:root {
  --color-bg: #080808;
  --color-surface: #121212;
  --color-surface-2: #1a1a1a;
  --color-cream: #f4efe6;
  --color-muted: #b7aa9a;
  --color-gold: #c8a45d;
  --color-gold-light: #debb7a;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-line-gold: rgba(200, 164, 93, 0.3);

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 24px rgba(200, 164, 93, 0.18);

  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 68ch;
}

.text-gold { color: var(--color-gold); }
.text-cream { color: var(--color-cream); }
.text-muted { color: var(--color-muted); }
.text-center { text-align: center; }

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 52px 0;
}

.section-lg {
  padding: 120px 0;
}

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 20px 0;
}

.divider-center {
  margin: 20px auto;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-cream);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  color: var(--color-gold);
}

.main-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}

.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero Sections ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-sm {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(18,18,18,0.7) 100%);
}

.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
  display: block;
}

.hero h1 {
  margin-bottom: 10px;
  color: var(--color-cream);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--color-gold);
  margin-bottom: 22px;
  font-style: italic;
}

.hero p {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 36px;
  max-width: 56ch;
}

.hero-sm h1 {
  color: var(--color-cream);
  margin-bottom: 14px;
}

.hero-sm p {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 56ch;
}

/* Hero image placeholder (CSS gradient fallback) */
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0f18 0%, #1a1822 40%, #12100e 100%);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--color-gold);
  color: #0d0d0d;
  border: 1px solid var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- Cards ---- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #181520 0%, #1f1c2c 50%, #1a1410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-placeholder .placeholder-icon {
  font-size: 2rem;
  color: var(--color-gold);
  opacity: 0.4;
}

.card-body {
  padding: 28px;
}

.card-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
  display: block;
}

.card h3 {
  color: var(--color-cream);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.card-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

.card-link::after {
  content: '→';
}

/* ---- Service Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-line-gold);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Different gradients for each service type */
.grad-corporate { background: linear-gradient(135deg, #0f1520 0%, #1a2035 100%); }
.grad-airport { background: linear-gradient(135deg, #10181a 0%, #1a2a2e 100%); }
.grad-wedding { background: linear-gradient(135deg, #1a1318 0%, #2a1f22 100%); }
.grad-family { background: linear-gradient(135deg, #111a14 0%, #1c2a1e 100%); }
.grad-student { background: linear-gradient(135deg, #151a1a 0%, #1e2828 100%); }
.grad-hotel { background: linear-gradient(135deg, #18140f 0%, #2a2014 100%); }
.grad-tours { background: linear-gradient(135deg, #14101a 0%, #20182a 100%); }
.grad-events { background: linear-gradient(135deg, #1a1014 0%, #2a1820 100%); }
.grad-resort { background: linear-gradient(135deg, #141018 0%, #221a28 100%); }
.grad-jackpot { background: linear-gradient(135deg, #181208 0%, #281e10 100%); }
.grad-vegas { background: linear-gradient(135deg, #10060e 0%, #201018 100%); }
.grad-poker { background: linear-gradient(135deg, #060e10 0%, #101e22 100%); }
.grad-blackjack { background: linear-gradient(135deg, #0a0810 0%, #181420 100%); }
.grad-paragon { background: linear-gradient(135deg, #0c1018 0%, #1a2030 100%); }
.grad-default { background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%); }

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 18px;
}

/* ---- Stats Block ---- */
.stats-block {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 60px 0;
}

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

.stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--color-line);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-gold);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ---- Trust Cards ---- */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition);
}

.trust-card:hover {
  border-color: var(--color-line-gold);
}

.trust-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
  color: var(--color-gold);
}

.trust-card h3 {
  color: var(--color-cream);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  max-width: none;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  opacity: 0.5;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-muted);
  font-size: 0.96rem;
  margin-bottom: 24px;
  max-width: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-surface-2) 0%, #252525 100%);
  border: 1px solid var(--color-line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  color: var(--color-cream);
  display: block;
}

.testimonial-role {
  font-size: 0.76rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--color-surface) 0%, #18130d 100%);
  border-top: 1px solid var(--color-line-gold);
  border-bottom: 1px solid var(--color-line-gold);
  text-align: center;
  padding: 90px 0;
}

.cta-section h2 {
  color: var(--color-cream);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--color-muted);
  margin: 0 auto 36px;
}

/* ---- Section Intro ---- */
.section-intro {
  text-align: center;
  margin-bottom: 56px;
}

.section-intro h2 {
  color: var(--color-cream);
  margin-bottom: 16px;
}

.section-intro p {
  color: var(--color-muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* ---- Page Image Block ---- */
.img-block {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
}

.img-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.img-block-placeholder {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  overflow: hidden;
}

/* ---- Two-Column Layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col-text h2 {
  color: var(--color-cream);
  margin-bottom: 16px;
}

.two-col-text p {
  margin-bottom: 20px;
}

.two-col-text p:last-child {
  margin-bottom: 0;
}

/* ---- Bullet Lists ---- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.feature-list li::before {
  content: '—';
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Service Page Sections ---- */
.service-detail-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--color-line);
}

.service-detail-section:last-of-type {
  border-bottom: none;
}

.service-detail-section h2 {
  color: var(--color-cream);
  margin-bottom: 24px;
}

.service-detail-section p {
  margin-bottom: 16px;
}

/* ---- Related Services ---- */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.related-service-link {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: block;
  transition: border-color var(--transition), background var(--transition);
}

.related-service-link:hover {
  border-color: var(--color-line-gold);
  background: var(--color-surface-2);
}

.related-service-link span {
  display: block;
}

.related-service-link .rs-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.related-service-link .rs-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-cream);
}

/* ---- Forms ---- */
.form-section {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--color-cream);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select option {
  background: var(--color-surface);
  color: var(--color-cream);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-message {
  display: none;
  background: rgba(200, 164, 93, 0.1);
  border: 1px solid var(--color-line-gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--color-gold);
  font-size: 0.92rem;
  margin-top: 18px;
  text-align: center;
}

.form-message.visible {
  display: block;
}

/* ---- Info Blocks ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.info-card h3 {
  color: var(--color-cream);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  max-width: none;
}

/* ---- Story Cards ---- */
.story-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.story-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-card-img-placeholder {
  width: 100%;
  height: 200px;
}

.story-card-body {
  padding: 28px;
}

.story-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
  display: block;
}

.story-card h3 {
  color: var(--color-cream);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.story-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  max-width: none;
}

/* ---- Contact Details ---- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
}

.contact-info-icon {
  font-size: 1.2rem;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 4px;
}

.contact-info-value {
  color: var(--color-cream);
  font-size: 0.96rem;
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-line);
}

.faq-q {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--color-muted);
  max-width: none;
}

/* ---- Prose (Policy / Terms) ---- */
.prose {
  max-width: 72ch;
  margin: 0 auto;
}

.prose h2 {
  color: var(--color-cream);
  margin: 40px 0 14px;
  font-size: 1.4rem;
}

.prose h3 {
  color: var(--color-cream);
  margin: 28px 0 10px;
  font-size: 1.1rem;
}

.prose p {
  color: var(--color-muted);
  margin-bottom: 16px;
  max-width: none;
}

.prose ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}

.prose ul li {
  color: var(--color-muted);
  font-size: 0.96rem;
  margin-bottom: 6px;
}

.prose .last-updated {
  font-size: 0.8rem;
  color: var(--color-muted);
  opacity: 0.6;
  margin-bottom: 36px;
}

/* ---- Back Link ---- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 28px;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--color-gold);
}

.back-link::before {
  content: '←';
}

/* ---- Page header breadcrumb ---- */
.page-header {
  padding: calc(var(--header-height) + 60px) 0 60px;
  border-bottom: 1px solid var(--color-line);
}

.page-header h1 {
  color: var(--color-cream);
  margin-bottom: 14px;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--color-muted);
}

/* ---- Client Type Cards ---- */
.client-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-left: 3px solid var(--color-gold);
}

.client-card h3 {
  color: var(--color-cream);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.client-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  max-width: none;
}

/* ---- Value Pillars ---- */
.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-line-gold);
  border-radius: 40px;
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.06em;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  margin-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 18px;
  max-width: 38ch;
}

.footer-contact {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 4px;
  max-width: none;
}

.footer-addresses p {
  font-size: 0.86rem;
  color: var(--color-muted);
  margin-bottom: 16px;
  max-width: none;
  line-height: 1.6;
}

.footer-addresses strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.84rem;
  color: var(--color-muted);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}

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

.footer-bottom {
  border-top: 1px solid var(--color-line);
  padding: 20px 24px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-disclaimer {
  font-size: 0.76rem;
  color: var(--color-muted);
  opacity: 0.55;
  text-align: center;
  max-width: none;
}

/* ---- Page top padding ---- */
.page-top {
  padding-top: var(--header-height);
}

/* ---- Highlight Box ---- */
.highlight-box {
  background: linear-gradient(135deg, rgba(200,164,93,0.07) 0%, rgba(200,164,93,0.03) 100%);
  border: 1px solid var(--color-line-gold);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 32px 0;
}

.highlight-box h3 {
  color: var(--color-gold);
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}

.highlight-box p {
  font-size: 0.96rem;
  max-width: none;
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

@media (max-width: 1024px) {
  .grid-4,
  .trust-cards,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(3) { border-right: 1px solid var(--color-line); }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .two-col.reverse {
    direction: ltr;
  }

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

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

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

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 20px 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    padding: 0 24px;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-sm {
    min-height: 44vh;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .trust-cards,
  .services-grid,
  .testimonials-grid,
  .related-services,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(3) { border-right: 1px solid var(--color-line); }
  .stats-grid .stat-item:nth-child(4) { border-right: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 32px 24px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .section-lg {
    padding: 72px 0;
  }

  .cta-section {
    padding: 64px 0;
  }

  .highlight-box {
    padding: 24px 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-line);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
