/* ============================================================
   DRONAGRAND — LUXURY COMING SOON
   style.css | Ultra Premium Dark Gold Theme
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --black:        #050505;
  --deep:         #0a0a0a;
  --surface:      #111111;
  --surface2:     #161616;
  --border:       #2a2a2a;
  --gold:         #c9a84c;
  --gold-light:   #e0c170;
  --gold-dark:    #9e7c2f;
  --gold-faint:   rgba(201,168,76,0.08);
  --white:        #ffffff;
  --off-white:    #f5f0e8;
  --text:         #d4cfc6;
  --text-muted:   #7a7570;
  --error:        #e05050;
  --success:      #5aab6e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;

  --nav-h:        80px;
  --radius:       4px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background-color: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

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

strong { color: var(--gold-light); font-weight: 500; }

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== SHARED SECTION STYLING ===== */
section { padding: 100px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-title.centered { text-align: center; }
.section-title.white { color: var(--white); }

.gold-bar {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 32px;
}
.gold-bar.centered-bar { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
.btn-gold.full-width { width: 100%; justify-content: center; font-size: 0.8rem; padding: 18px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-crown {
  font-size: 1.4rem;
  color: var(--gold);
  animation: pulse-gold 3s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.15em;
  line-height: 1;
}
.logo-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  padding: 10px 22px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: var(--radius);
  color: var(--gold-light);
}
.nav-links .nav-cta:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
}
.nav-links .nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(5,5,5,0.97);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 20px 40px 30px;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(201,168,76,0.04) 0%, transparent 60%),
    linear-gradient(170deg, #0d0b08 0%, #050505 50%, #080600 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.02) 80px,
      rgba(201,168,76,0.02) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.02) 80px,
      rgba(201,168,76,0.02) 81px
    );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 40px 80px;
  max-width: 900px;
  animation: hero-reveal 1.2s ease both;
}
@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: hero-reveal 1s 0.2s ease both;
}
.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  animation: hero-reveal 1s 0.3s ease both;
}
.title-line { display: block; }
.title-line.italic {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.7);
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  animation: hero-reveal 1s 0.4s ease both;
}

.hero-divider {
  margin: 8px auto 24px;
  color: var(--gold);
  font-size: 0.8rem;
  animation: hero-reveal 1s 0.45s ease both;
}

.hero-desc {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  animation: hero-reveal 1s 0.5s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-reveal 1s 0.65s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: hero-reveal 1s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ===== ABOUT ===== */
.about { background: var(--deep); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.visual-frame {
  position: relative;
  height: 480px;
}
.visual-inner {
  position: absolute;
  inset: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.visual-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.06) 0%, transparent 60%),
    repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(201,168,76,0.04) 1deg, transparent 2deg, transparent 60deg);
}
.visual-text-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}
.visual-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.visual-attr {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
}
.frame-corner.tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.frame-corner.tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.frame-corner.bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.frame-corner.br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* ===== FEATURES ===== */
.features {
  background: var(--black);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.feature-card {
  background: var(--deep);
  padding: 44px 36px;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: var(--surface); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  filter: saturate(0.8);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.feature-card p strong { color: var(--gold-light); }

/* ===== COUNTDOWN ===== */
.countdown-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.countdown-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #060500 0%, #0a0900 100%);
}
.countdown-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201,168,76,0.015) 40px, rgba(201,168,76,0.015) 41px);
}
.countdown-inner {
  position: relative;
  z-index: 2;
}
.countdown-desc {
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 0.95rem;
  color: rgba(212,207,198,0.7);
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}
.time-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
  letter-spacing: -0.02em;
}
.time-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}
.time-sep {
  font-size: 1.2rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
  opacity: 0.7;
}

/* ===== LOCATION ===== */
.location { background: var(--deep); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 16px;
}

.address-block {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.address-block:last-of-type {
  border-bottom: none;
  margin-bottom: 28px;
}
.loc-icon { font-size: 1.4rem; line-height: 1.4; flex-shrink: 0; }
.address-block h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 6px;
}
.address-block p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.address-block p strong { color: var(--gold-light); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1a8a2e, #25a83a);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-top: 8px;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,168,58,0.35);
  color: var(--white);
}
.wa-icon { font-size: 1.1rem; }

.map-wrapper { position: relative; }
.map-frame {
  height: 480px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
}
.map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201,168,76,0.15);
  z-index: 2;
  pointer-events: none;
  border-radius: var(--radius);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.6) brightness(0.85);
}

/* ===== NOTIFY / FORM ===== */
.notify {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.notify-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(180deg, #050505 0%, #090800 100%);
}
.notify-inner {
  position: relative;
  z-index: 2;
}
.notify-desc {
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
  color: rgba(212,207,198,0.75);
  line-height: 1.85;
}
.notify-desc strong { color: var(--gold-light); }

.lead-form {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

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

.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.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 16px center;
  cursor: pointer;
  color: var(--text-muted);
}
.form-group select option { background: var(--surface2); color: var(--off-white); }
.form-group select.selected { color: var(--off-white); }

.field-error {
  display: block;
  font-size: 0.72rem;
  color: var(--error);
  margin-top: 5px;
  min-height: 16px;
  letter-spacing: 0.05em;
}

.form-group input.error { border-color: var(--error); }
.form-group input.valid { border-color: var(--success); }

.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

.btn-gold .btn-icon { font-size: 0.9rem; transition: transform 0.3s; }
.btn-gold:hover .btn-icon { transform: rotate(90deg); }

.success-message {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(201,168,76,0.3);
  background: var(--gold-faint);
}
.success-message.visible { display: block; animation: fade-in 0.5s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.success-icon { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 16px; }
.success-message h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 12px;
}
.success-message p { font-size: 0.9rem; color: var(--text); line-height: 1.75; }

/* ===== FOOTER ===== */
.footer { background: var(--deep); border-top: 1px solid rgba(201,168,76,0.12); }

.footer-top { padding: 80px 0 60px; }

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.logo-crown.large { font-size: 1.5rem; color: var(--gold); }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.15em;
}
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 340px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-links-col a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.footer-contact-col a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact-col a:hover { color: var(--gold); }
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 20px;
  background: rgba(37,168,58,0.15);
  border: 1px solid rgba(37,168,58,0.3);
  border-radius: var(--radius);
  color: #5adb6e;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all var(--transition);
}
.footer-wa:hover {
  background: rgba(37,168,58,0.25);
  border-color: #25a83a;
  color: #7ae88a;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-seo-note {
  font-size: 0.67rem !important;
  color: rgba(122,117,112,0.5) !important;
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 24px; }
  section { padding: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
  .mobile-menu { padding: 20px 24px 28px; }

  .hero-content { padding: 110px 24px 60px; }
  .hero-title { font-size: clamp(3.5rem, 18vw, 6rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 32px 28px; }

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

  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-frame { height: 320px; }

  .about-stats { flex-direction: column; gap: 24px; }

  .countdown-timer { gap: 16px; }
  .time-block { min-width: 70px; }
  .time-sep { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 20vw, 4.5rem); }
  .section-title { font-size: 1.8rem; }
  .time-num { font-size: 2.5rem; }
}
