/* ═══════════════════════════════════════════════════
   BESPOKE MYSTERIES — LUXURY WEBSITE STYLES
   ═══════════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --bg:           #07090F;
  --bg-2:         #0C1018;
  --bg-3:         #111827;
  --bg-card:      #0E1420;
  --gold:         #C9A84C;
  --gold-light:   #E4CA85;
  --gold-dim:     #8B6D2A;
  --gold-glow:    rgba(201, 168, 76, 0.15);
  --cream:        #F5F0E8;
  --white:        #FFFFFF;
  --muted:        #6B7A8D;
  --muted-light:  #8A9BB0;
  --border:       rgba(201, 168, 76, 0.18);
  --border-subtle:rgba(255, 255, 255, 0.06);

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Montserrat', system-ui, sans-serif;

  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold:  0 0 40px rgba(201, 168, 76, 0.12);
  --max-width:    1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

input, select, textarea {
  font-family: var(--font-sans);
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

/* ─── Layout Utilities ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--muted-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.ornament {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-top: 1.25rem;
}

.ornament-left {
  text-align: left;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #07090F;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

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

.btn-outline:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.7rem;
}

/* ─── Accessibility: Visually Hidden ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Scroll Reveal Animations ─── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-28px);
}

[data-animate="fade-left"] {
  transform: translateX(28px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 9, 15, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color var(--transition);
}

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

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--border);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* Mobile nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-backdrop.active {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(7, 9, 15, 0.2) 0%,
    rgba(7, 9, 15, 0.7) 60%,
    rgba(7, 9, 15, 0.95) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero-logo {
  width: auto;
  max-width: min(460px, 80vw);
  height: auto;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-logo.loaded {
  opacity: 1;
  transform: none;
}

.hero-ornament {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

.hero-sub {
  font-family: var(--font-elegant);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted-light);
  max-width: 600px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}


/* ═══════════════════════════════════════════════════
   PILLARS SECTION
   ═══════════════════════════════════════════════════ */
.section-pillars {
  padding: 8rem 0;
  background: var(--bg-2);
}

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

.pillar {
  padding: 3rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar:hover {
  background: #0F1520;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.75rem;
  color: var(--gold);
  opacity: 0.85;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.pillar p {
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.75;
}


/* ═══════════════════════════════════════════════════
   CIPHER & SOIRÉE SECTION
   ═══════════════════════════════════════════════════ */
.section-cipher {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cipher-bg-wrap {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 130% 100% at 75% 50%,
    #0D1E3A 0%, #080C14 55%, #050709 100%);
}

.cipher-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.section-cipher:hover .cipher-bg-img {
  transform: scale(1);
}

.cipher-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 9, 15, 0.92) 0%,
    rgba(7, 9, 15, 0.75) 50%,
    rgba(7, 9, 15, 0.4) 100%
  );
}

.section-cipher .container {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.cipher-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

/* Button inside cipher section should not stretch full width */
.cipher-content .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.cipher-logo {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius);
}

.cipher-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.cipher-desc {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--muted-light);
  line-height: 1.8;
  font-weight: 300;
}


/* ═══════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════ */
.section-process {
  padding: 8rem 0;
  background: var(--bg);
}

.process-timeline {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 0.5rem 0;
  opacity: 0.4;
  min-height: 3rem;
}

.step-content {
  padding-bottom: 3.5rem;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
  padding-top: 0.65rem; /* vertically aligns with the center of the number circle */
  line-height: 1.15;
}

.step-content p {
  color: var(--muted-light);
  font-size: 0.97rem;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════════
   PACKAGES
   ═══════════════════════════════════════════════════ */
.section-packages {
  padding: 8rem 0;
  background: var(--bg-2);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch; /* all cards same height so buttons line up */
}

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: var(--transition);
  min-width: 0; /* allow grid item to shrink below content min-width */
}

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

.pkg-featured {
  background: linear-gradient(160deg, #0E1525 0%, #0A1020 100%);
  border-color: rgba(201, 168, 76, 0.4) !important;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.08);
}

.pkg-featured:hover {
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.2);
  transform: translateY(-6px);
}

.pkg-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--gold);
  color: #07090F;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.pkg-tier-label {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
}

.pkg-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
  font-weight: 500;
}

.pkg-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  word-break: break-word;
  overflow-wrap: break-word;
}

.pkg-price span {
  font-size: 1.15rem;
  color: var(--muted-light);
  font-weight: 400;
}

.pkg-desc {
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

.pkg-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pkg-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  flex-shrink: 0;
  margin-top: 0.45em;
  opacity: 0.8;
}

.pkg-footer {
  padding-top: 0.5rem;
  margin-top: auto;
}

.pkg-footer .btn {
  width: 100%;
  justify-content: center;
  white-space: normal;      /* allow text to wrap if column is narrow */
  text-align: center;
  letter-spacing: 0.12em;   /* slightly tighter than default 0.18em */
  line-height: 1.4;
  padding: 0.9rem 1.25rem;
}


/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.section-testimonials {
  padding: 8rem 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial:hover {
  border-color: var(--border);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 1.25rem;
  height: 40px;
  overflow: hidden;
}

.testimonial p {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 2rem;
  font-weight: 300;
}

.testimonial-author {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  margin-top: auto;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.author-title {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}


/* ═══════════════════════════════════════════════════
   ABOUT / WHO WE SERVE
   ═══════════════════════════════════════════════════ */
.section-about {
  padding: 8rem 0;
  background: var(--bg-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-left p {
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.8;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
}

.about-stat {
  background: var(--bg-card);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.corporate-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.callout-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.8;
}

.callout-icon svg {
  width: 100%;
  height: 100%;
}

.corporate-callout h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.corporate-callout p {
  font-size: 0.88rem;
  color: var(--muted-light);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════
   PLATFORM TEASER
   ═══════════════════════════════════════════════════ */
.section-platform {
  padding: 4rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.platform-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.platform-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.75;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
}

.platform-text {
  flex: 1;
}

.platform-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.platform-text p {
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.7;
}

.platform-badge {
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
}


/* ═══════════════════════════════════════════════════
   CONSULTATION SECTION
   ═══════════════════════════════════════════════════ */
.section-consultation {
  padding: 8rem 0;
  background: var(--bg-2);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.consult-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6rem;
}

.consult-left p {
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.8;
}

.consult-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

.consult-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.detail-icon svg {
  width: 100%;
  height: 100%;
}

.consult-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.1rem;
}

.consult-detail span {
  font-size: 0.9rem;
  color: var(--muted-light);
}

/* Form */
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.85rem 1.1rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 168, 76, 0.35);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

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

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(3) hue-rotate(5deg);
  opacity: 0.6;
  cursor: pointer;
}

.form-success {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.9rem;
  border-radius: var(--radius);
  display: none;
}

.form-success.visible {
  display: block;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  color: var(--gold-light);
}

/* Inline field validation error */
.field-error {
  color: #e87070;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  display: block;
  font-family: var(--font-sans);
}

/* Consultation section email link */
.consult-email {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.consult-email:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: #050709;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  padding: 5rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-location {
  margin-top: 0.5rem;
  font-size: 0.8rem !important;
  color: var(--muted) !important;
  opacity: 0.7;
}

.footer-links-group h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-group a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  color: var(--gold);
  border-color: var(--border);
  background: var(--gold-glow);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--cream);
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* Mid-range — single column below 900px */
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .consult-left {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-backdrop {
    display: block;
    pointer-events: none;
  }

  .nav-backdrop.active {
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 280px;
    background: rgba(7, 9, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
    transition: right var(--transition);
    border-left: 1px solid var(--border-subtle);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .process-step {
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
  }

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

  .about-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .platform-inner {
    flex-direction: column;
    text-align: center;
  }

  .platform-badge {
    align-self: center;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section-pillars,
  .section-process,
  .section-packages,
  .section-testimonials,
  .section-about,
  .section-consultation {
    padding: 5rem 0;
  }

  .pkg-card {
    padding: 2rem 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}
