/* ============================================================
   DESERT LIGHT CATERING SERVICES LLC
   Global CSS Design System — global.css
   ============================================================ */

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

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

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

a {
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

/* ─── CSS VARIABLES ─── */
:root {
  --navy: #1F3363;
  --navy-deep: #0d1a35;
  --navy-mid: #162a52;
  --gold: #D6B685;
  --gold-light: #e8cfa0;
  --gold-dark: #b8955e;
  --cream: #f5f0e8;
  --dark-bg: #0a0e1a;
  --card-bg: #111827;
  --text: #e8e2d6;
  --text-muted: #8a8070;
  --border: rgba(214, 182, 133, 0.15);
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --transition: 0.3s ease;
  --radius: 0px;
  /* Brand uses sharp corners — no border radius */
}

/* ─── BASE ─── */
body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark-bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

h1 {
  font-size: clamp(42px, 6vw, 80px);
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  font-size: clamp(22px, 2.5vw, 32px);
}

h4 {
  font-size: 18px;
  font-weight: 400;
}

em {
  font-style: italic;
  color: var(--gold);
}

p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(232, 226, 214, 0.65);
  font-weight: 300;
}

p+p {
  margin-top: 16px;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(214, 182, 133, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(2.2);
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: rgba(214, 182, 133, 0.6);
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

section {
  position: relative;
  z-index: 2;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: linear-gradient(to bottom, rgba(10, 14, 26, 0.98) 0%, transparent 100%);
  transition: background var(--transition);
}

nav.scrolled {
  background: rgba(10, 14, 26, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  display: block;
  line-height: 1;
}

.nav-logo-text .sub {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(232, 226, 214, 0.7);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 24px;
  font-size: 11px !important;
  letter-spacing: 2px;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 80px 0 0;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 40px;
  z-index: 99;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 1px;
  transition: color var(--transition);
}

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

.nav-mobile .nav-cta-mobile {
  margin-top: 24px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  text-align: center;
  padding: 16px;
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none !important;
}

/* ─── HERO (Homepage) ─── */
#hero {
  height: 100vh;
  min-height: 800px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #0d1a35 0%, #0a0e1a 50%, #111420 100%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 182, 133, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 182, 133, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
  z-index: 2;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
  z-index: 3;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -50px;
  background: radial-gradient(circle, rgba(31, 51, 99, 0.5) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -50px;
  left: -50px;
  background: radial-gradient(circle, rgba(214, 182, 133, 0.08) 0%, transparent 70%);
  animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-logomark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
  z-index: 4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 24px;
  max-width: 1100px;
  margin-top: -40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 0;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-h1-line2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.7);
  max-width: 680px;
  margin: 0 auto 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

/* Glassmorphism Trust Cards */
.hero-trust {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1300px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  z-index: 10;
}

.hero-trust .trust-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-trust .trust-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(214, 182, 133, 0.3);
  transform: translateY(-8px);
}

.hero-trust .trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 182, 133, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 16px;
}

.hero-trust .trust-text .t1 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-trust .trust-text .t2 {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1200px) {
  .hero-trust {
    grid-template-columns: repeat(3, 1fr);
    bottom: 40px;
    position: relative;
    transform: none;
    left: 0;
    margin: 60px auto 0;
  }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 160px 0 90px;
  background: linear-gradient(135deg, #0d1a35 0%, var(--dark-bg) 60%, #111420 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 182, 133, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 182, 133, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 51, 99, 0.5) 0%, transparent 70%);
  filter: blur(60px);
}

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

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.page-hero-eyebrow span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.page-hero-eyebrow-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  max-width: 700px;
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 15px;
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.6);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.breadcrumb span {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--gold);
}

/* ─── SECTION UTILITY ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-label span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-label-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-header-center {
  text-align: center;
  margin-bottom: 70px;
}

.section-label-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-label-center span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
  color: var(--navy-deep);
}

.btn-primary:hover {
  color: var(--navy-deep);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(232, 226, 214, 0.7);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: none;
  transition: color var(--transition);
}

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

.btn-ghost svg {
  transition: transform var(--transition);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ─── CARDS ─── */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 51, 99, 0.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover::after {
  transform: scaleX(1);
}

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

/* ─── SERVICES SNAPSHOT ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 60px 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(214, 182, 133, 0.3);
  transform: translateY(-10px);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-num {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 30px;
  font-weight: 600;
  opacity: 0.6;
}

.service-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(232, 226, 214, 0.6);
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.service-tags .tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid rgba(214, 182, 133, 0.2);
  color: var(--gold);
  opacity: 0.8;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
  margin-top: auto;
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(5px);
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 40px 30px;
  }
}

/* ─── TAGS ─── */
.tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(214, 182, 133, 0.25);
  padding: 4px 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── DIVIDERS ─── */
.divider-gold {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

.divider-full {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

hr.gold {
  border: none;
  border-top: 1px solid var(--border);
  margin: 60px 0;
}

/* ─── CERTIFICATION BADGE ─── */
.cert-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 20px;
  transition: border-color var(--transition);
}

.cert-badge:hover {
  border-color: rgba(214, 182, 133, 0.4);
}

.cert-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(214, 182, 133, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 11px;
  margin-top: 2px;
}

.cert-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}

.cert-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  background: rgba(10, 14, 26, 0.8);
}

.trust-strip-item {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

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

.trust-strip-item:hover {
  background: rgba(31, 51, 99, 0.2);
}

.trust-strip-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(214, 182, 133, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
}

.trust-strip-text .t1 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.trust-strip-text .t2 {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(214, 182, 133, 0.2);
  border-bottom: 1px solid rgba(214, 182, 133, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 182, 133, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 182, 133, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  max-width: 600px;
  margin: 0 auto 16px;
}

.cta-banner p {
  max-width: 440px;
  margin: 0 auto 40px;
}

.cta-banner .btn-primary {
  font-size: 13px;
}

/* ─── FORM ELEMENTS ─── */
.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(214, 182, 133, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

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

.form-group select option {
  background: #111827;
}

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

.form-group.full {
  grid-column: 1/-1;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition: background var(--transition);
}

.form-submit:hover {
  background: var(--gold-light);
}

.form-submit.success {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* ─── FOOTER ─── */
footer {
  background: #060911;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 3px;
  display: block;
}

.footer-brand .logo-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
  cursor: none;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--text-muted);
}

.footer-bottom .agency {
  color: rgba(214, 182, 133, 0.5);
}

.footer-bottom .agency span {
  color: var(--gold);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ─── UTILITY ─── */
.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--text-muted);
}

.text-white {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 32px;
}

.mt-lg {
  margin-top: 60px;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 32px;
}

.mb-lg {
  margin-bottom: 60px;
}

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

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

.gap-sm {
  gap: 12px;
}

.gap-md {
  gap: 24px;
}

.gap-lg {
  gap: 40px;
}

.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;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  nav {
    padding: 0 40px;
  }

  .nav-links {
    gap: 24px;
  }

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

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

  .trust-strip {
    flex-wrap: wrap;
  }

  .trust-strip-item {
    min-width: 50%;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .container {
    padding: 0 24px;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .trust-strip {
    flex-direction: column;
  }

  .trust-strip-item {
    border-right: none;
  }

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

  h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 44px);
  }
}

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

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}