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

:root {
  --cream: #faf9f6;
  --black: #111111;
  --gold: #c8a45c;
  --gold-light: #d4b76a;
  --gold-dark: #b8943f;
  --gray-100: #f5f4f1;
  --gray-200: #e8e6e1;
  --gray-300: #d1cfc9;
  --gray-400: #a09e97;
  --gray-500: #6b6963;
  --gray-600: #4a4845;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Source Sans 3', 'Segoe UI', Roboto, sans-serif;
  --nav-height: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: min(1200px, 90vw);
  --container-wide: min(1400px, 94vw);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; border: none; outline: none; background: none; }
ul, ol { list-style: none; }

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }

.section-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-500);
  font-weight: 300;
  max-width: 600px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(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; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  width: var(--container-wide);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
  transition: color 0.4s;
}

.nav.scrolled .nav-brand { color: var(--black); }

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav.scrolled .nav-links a { color: var(--gray-500); }
.nav.scrolled .nav-links a:hover { color: var(--black); }

.nav-cta {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  transition: all 0.3s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold);
  color: var(--white) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav.scrolled .nav-hamburger span { background: var(--black); }

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background: var(--white); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); background: var(--white); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 42px);
  color: var(--white);
  padding: 16px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

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

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Ensure no gap at bottom */
  margin-bottom: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-yt { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-fade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

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

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 21px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,164,92,0.3); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  animation: float 2s ease-in-out infinite;
}
.hero-scroll-hint:hover { color: rgba(255,255,255,1); }

.hero-scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0.2));
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================
   MARQUEE
   ============================================ */
/* === MARQUEE — Double Row Opposite === */
.marquee-3 {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-3 .row {
  display: flex;
  gap: 0;
  width: max-content;
  margin-bottom: 8px;
}

.marquee-3 .row:last-child { margin-bottom: 0; }

.marquee-3 .row-left {
  animation: marquee-left 35s linear infinite;
}

.marquee-3 .row-right {
  animation: marquee-right 28s linear infinite;
}

.marquee-3 .row span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  color: rgba(255,255,255,0.5);
}

.marquee-3 .row-left span.highlight {
  color: var(--gold);
  background: rgba(200,164,92,0.08);
  border: 1px solid rgba(200,164,92,0.15);
}

.marquee-3 .row-right span {
  font-weight: 400;
  letter-spacing: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.marquee-3 .row-right span.highlight {
  color: rgba(200,164,92,0.6);
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  padding: var(--section-pad) 0;
  padding-top: 32px;
  background: var(--cream);
  scroll-margin-top: var(--nav-height);
}

.problem-container {
  width: var(--container);
  margin: 0 auto;
}

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

.problem-intro {
  max-width: 700px;
  margin: 30px auto 0;
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.8;
}

.problem-intro .drop-cap {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  float: left;
  line-height: 0.82;
  margin-top: 6px;
  margin-right: 2px;
  color: var(--gold);
  display: inline-block;
  width: 0.62em;
  overflow: visible;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.problem-card {
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.4s;
  background: var(--white);
}

.problem-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.problem-card-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}

.problem-card:hover .problem-card-num { color: var(--gold); }

.problem-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

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

/* ============================================
   SERVICES JOURNEY
   ============================================ */
.services {
  padding: clamp(30px, 4vw, 50px) 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--nav-height);
}

.services::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,164,92,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-container {
  width: var(--container);
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 32px;
}

.services-header .section-subtitle {
  color: rgba(255,255,255,0.5);
  margin: 0 auto;
}

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

.package-card {
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.02);
}

.package-card:hover {
  border-color: rgba(200,164,92,0.3);
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: var(--gold);
  background: rgba(200,164,92,0.06);
}

.package-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
}

.package-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.package-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.package-price-hint {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.trust-note {
  max-width: 700px;
  margin: 60px auto 0;
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(200,164,92,0.2);
}

.trust-note p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.trust-note strong {
  color: var(--gold);
}

.package-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 32px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.package-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.package-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

.package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
}

.package-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.package-cta.featured-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.package-cta.featured-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ============================================
   CASE STUDY
   ============================================ */
.case-study {
  padding: clamp(40px, 5vw, 60px) 0;
  background: var(--cream);
  overflow: hidden;
  scroll-margin-top: var(--nav-height);
}

.case-container {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.case-image {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460, #533483);
  overflow: hidden;
}

.case-image::after {
  content: 'ZARA VOLT';
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  letter-spacing: 4px;
}

.case-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.case-floating-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 2;
}

.case-floating-card .eng-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.case-floating-card .eng-value {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}

.case-floating-card .eng-bar {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.case-floating-card .eng-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 87%;
  height: 100%;
  background: var(--gold);
}

.case-content {
  padding: 20px 0;
}

.case-content .section-label { color: var(--gold); }

.case-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
  line-height: 1.1;
}

.case-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.case-text {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.case-stat {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.case-stat-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.case-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .case-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .case-image { max-height: 400px; }
}

/* ============================================
   WHY SKYWARD
   ============================================ */
.why {
  padding: clamp(30px, 4vw, 50px) 0;
  background: var(--gray-100);
  scroll-margin-top: var(--nav-height);
}

.why-container {
  width: var(--container);
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 32px;
}

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

.why-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.4s;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.why-card-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.5;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

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

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-container {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--gold);
}

.contact-info-text {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
}

.contact-detail-text .value {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 16px;
  color: var(--black);
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

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

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

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

.form-submit {
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  width: 100%;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,164,92,0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  border-radius: 50%;
}

.form-success h3 {
  font-size: 24px;
}

.form-success p {
  font-size: 16px;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .contact-container { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 40px;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(200,164,92,0.25);
}

.footer-container {
  width: var(--container);
  margin: 0 auto;
}

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

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

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

.footer-col ul li a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

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

.footer-newsletter p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 14px;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.footer-newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
  white-space: nowrap;
}

.footer-newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.site-bottom {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-bottom-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-sans);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .site-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* === SCROLL SNAP === */

/* === CONTACT MODAL — Glassmorphism Popup === */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 680px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}

.modal-close:hover {
  color: #fff;
}

.modal-card h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: #fff;
  margin-bottom: 8px;
}

.modal-card h2 em {
  font-style: italic;
  color: var(--gold);
}

.modal-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  line-height: 1.6;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.modal-field input,
.modal-field select,
.modal-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s;
  box-sizing: border-box;
  outline: none;
}

.modal-field input::placeholder,
.modal-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.modal-field select {
  appearance: none;
  cursor: pointer;
}

.modal-field select option {
  background: #1a1a1a;
  color: #fff;
}

.modal-field textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 300px;
}

.modal-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  border-radius: 12px;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 8px;
}

.modal-submit:hover {
  background: var(--gold-light, #d4b06a);
  transform: translateY(-1px);
}

.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.modal-success.show {
  display: block;
}

.modal-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-success h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.modal-success p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 600px) {
  .modal-card { padding: 32px 24px; }
  .modal-row { grid-template-columns: 1fr; }
}

/* Footer Social Row — horizontal */
.footer-social-row {
  display: flex;
  gap: 24px;
}

.footer-social-row a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.3s;
}

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