/* ─────────────────────────────────────────
   THE AURA CONCIERGE — Dark Luxury Theme
   ───────────────────────────────────────── */

:root {
  --bg:          #100b04;
  --bg-card:     #1a1208;
  --bg-section:  #140e05;
  --bg-alt:      #0e0a03;

  --gold:        #d4b85a;
  --gold-light:  #ecd880;
  --gold-pale:   #f5eab8;
  --gold-dim:    #9a8040;
  --gold-muted:  rgba(212, 184, 90, 0.12);
  --gold-border: rgba(212, 184, 90, 0.30);
  --gold-glow:   rgba(212, 184, 90, 0.18);

  --text:        #f5eed8;
  --text-muted:  #b8a880;
  --text-dim:    #6b5840;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --radius:    3px;
  --radius-lg: 6px;
  --shadow:    0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 40px rgba(212, 184, 90, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h4 { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.75rem; }

em { font-style: italic; color: var(--gold-light); }
strong { color: var(--gold-light); font-weight: 600; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.72rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION SHARED ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-head { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-light); margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-top: 16px; }

.ornament-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px auto;
  max-width: 240px;
}
.ornament-line span:first-child,
.ornament-line span:last-child {
  flex: 1;
  height: 1px;
  background: var(--gold-border);
}
.ornament-line span:nth-child(2) { color: var(--gold); font-size: 12px; flex-shrink: 0; }
.ornament-line-left { max-width: 240px; margin-left: 0; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(16, 11, 4, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--gold-border);
  padding: 14px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark { width: 36px; height: 36px; color: var(--gold); }
.nav-logo-mark svg { width: 100%; height: 100%; }
.nav-logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold-border);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-muted);
  border-color: var(--gold) !important;
}
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-ornament {
  position: absolute;
  color: var(--gold-dim);
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.hero-ornament-tl { top: 80px; left: 40px; }
.hero-ornament-tr { top: 80px; right: 40px; }
.hero-ornament-bl { bottom: 60px; left: 40px; }
.hero-ornament-br { bottom: 60px; right: 40px; }

/* Decorative border lines on hero */
#hero::before {
  content: '';
  position: absolute;
  top: 60px; left: 60px; right: 60px; bottom: 60px;
  border: 1px solid var(--gold-border);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-logo-mark { width: 80px; height: 80px; color: var(--gold); margin: 0 auto 32px; }
.hero-logo-mark svg { width: 100%; height: 100%; }
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 400;
}
.hero-align {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--gold-dim);
  margin-bottom: 28px;
  margin-top: 6px;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 28px;
  max-width: 280px;
}
.hero-divider span:first-child,
.hero-divider span:last-child {
  flex: 1;
  height: 1px;
  background: var(--gold-border);
}
.hero-divider-diamond { color: var(--gold); font-size: 13px; }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}
.hero-sub {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 11px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── ABOUT ─── */
#about {
  background: var(--bg-section);
  padding: 120px 24px;
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.about-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card {
  position: relative;
  aspect-ratio: 1;
  max-width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px;
}
/* Corner ornaments */
.about-card-corner {
  position: absolute;
  width: 20px;
  height: 20px;
}
.about-card-corner-tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.about-card-corner-tr { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.about-card-corner-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.about-card-corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.about-symbol { color: var(--gold); animation: float 6s ease-in-out infinite; }
.about-card-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.about-stat {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  padding: 16px 20px;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.about-stat span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-stat-1 { bottom: -24px; right: -24px; }
.about-stat-2 { top: -24px; left: -24px; }

.about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 10px; color: var(--gold-light); }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-text p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; line-height: 1.8; }
.about-text .btn { margin-top: 10px; }

/* ─── PRODUCTS ─── */
#products {
  background: var(--bg);
  padding: 120px 24px;
  position: relative;
}
#products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}
.product-card {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card:hover { background: #201608; }
.product-card:hover .product-hover-overlay { opacity: 1; }

.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Product image backgrounds */
.pimg-1 { background: linear-gradient(145deg, #2a1a06 0%, #1a0f03 100%); }
.pimg-2 { background: linear-gradient(145deg, #221508 0%, #160e04 100%); }
.pimg-3 { background: linear-gradient(145deg, #2a1e04 0%, #1a1203 100%); }
.pimg-4 { background: linear-gradient(145deg, #080c1a 0%, #060810 100%); }
.pimg-5 { background: linear-gradient(145deg, #041a1a 0%, #030e10 100%); }
.pimg-6 { background: linear-gradient(145deg, #1a0d06 0%, #100803 100%); }

/* Product art drops */
.pimg-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pimg-drop {
  width: 100px;
  height: 130px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.5;
  transition: all var(--transition);
}
.product-card:hover .pimg-drop { transform: scale(1.05); opacity: 0.7; }
.pimg-drop-gold    { background: radial-gradient(ellipse, #c9a84c 0%, #8a6820 60%, transparent 100%); }
.pimg-drop-cream   { background: radial-gradient(ellipse, #e8d4b0 0%, #c4a068 60%, transparent 100%); }
.pimg-drop-citrus  { background: radial-gradient(ellipse, #e0a020 0%, #c07010 60%, transparent 100%); }
.pimg-drop-midnight{ background: radial-gradient(ellipse, #4060c0 0%, #203060 60%, transparent 100%); }
.pimg-drop-sky     { background: radial-gradient(ellipse, #40c0c0 0%, #208080 60%, transparent 100%); }
.pimg-drop-terra   { background: radial-gradient(ellipse, #c06040 0%, #804020 60%, transparent 100%); }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}
.product-badge-new { background: var(--text); color: var(--bg); }

.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 11, 4, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 3;
}
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.product-body h3 {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
}
.product-body p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gold-border);
}
.price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
}
.stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; }

/* ─── CONSULTATION ─── */
#consult {
  background: var(--bg-section);
  padding: 120px 24px;
  position: relative;
}
#consult::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.consult-inner { max-width: 1100px; margin: 0 auto; }
.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-bottom: 24px;
}
.consult-step {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background var(--transition);
}
.consult-step:hover { background: #1e1608; }
.consult-step-featured {
  background: linear-gradient(160deg, #1e1608 0%, #150f05 100%);
  border-top: 2px solid var(--gold);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold-border);
  line-height: 1;
  font-weight: 700;
  position: absolute;
  top: 24px;
  right: 24px;
}
.step-icon { font-size: 2rem; }
.consult-step h3 {
  font-size: 1.2rem;
  color: var(--text);
  font-family: var(--font-display);
}
.consult-step > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.step-payment {
  background: var(--bg-alt);
  border: 1px solid var(--gold-border);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.payment-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.payment-val {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.photo-list { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.photo-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.photo-icon { color: var(--gold); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
.regimen-list { display: flex; flex-direction: column; gap: 8px; padding-left: 0; }
.regimen-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
  list-style: none;
}
.consult-note {
  text-align: center;
  padding: 20px 24px;
  border: 1px solid var(--gold-border);
  background: var(--gold-muted);
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--bg-alt);
  padding: 120px 24px;
  position: relative;
}
#testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.tcard:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.tcard-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #201608 0%, #150f05 100%);
}
/* Corner ornaments for featured */
.tcard-corner {
  position: absolute;
  width: 12px;
  height: 12px;
}
.tcard-corner-tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.tcard-corner-tr { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.tcard-corner-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.tcard-corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.tcard-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.3;
  margin-bottom: 8px;
}
.tcard > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; flex: 1; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
}
.tav-1 { background: rgba(201,168,76,0.15); color: var(--gold); }
.tav-2 { background: rgba(201,168,76,0.25); color: var(--gold-light); }
.tav-3 { background: rgba(201,168,76,0.1); color: var(--gold); }
.tcard-author strong { display: block; font-size: 0.88rem; color: var(--text); font-family: var(--font-body); font-weight: 600; }
.tcard-author span { font-size: 0.72rem; color: var(--text-dim); }
.tcard-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; }

/* ─── CONTACT ─── */
#contact {
  background: var(--bg-section);
  padding: 120px 24px;
  position: relative;
}
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--gold-light); margin-bottom: 10px; }
.contact-intro { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-row strong { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 3px; font-family: var(--font-body); }
.contact-row span, .contact-row a { font-size: 0.92rem; color: var(--text-muted); }
.contact-row a:hover { color: var(--gold); }

.contact-payment {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  padding: 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.social-btn:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-muted); }
.social-btn-light { border-color: rgba(201,168,76,0.2); color: var(--text-dim); }
.social-btn-light:hover { color: var(--gold); border-color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  padding: 40px;
  position: relative;
}
.contact-form-wrap::before { content: ''; position: absolute; top: -1px; left: -1px; width: 20px; height: 20px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.contact-form-wrap::after { content: ''; position: absolute; bottom: -1px; right: -1px; width: 20px; height: 20px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-success {
  display: none;
  text-align: center;
  color: var(--gold);
  font-size: 0.85rem;
  padding: 14px;
  border: 1px solid var(--gold-border);
  background: var(--gold-muted);
  letter-spacing: 0.05em;
}
.form-success.visible { display: block; }

/* ─── FOOTER ─── */
#footer {
  background: var(--bg-alt);
  position: relative;
}
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.footer-ornament-top {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 0;
}
.footer-ornament-top span:first-child,
.footer-ornament-top span:last-child { flex: 1; height: 1px; background: var(--gold-border); }
.footer-ornament-top span:nth-child(2) {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  white-space: nowrap;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-mark { color: var(--gold); }
.footer-logo > div span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 600;
}
.footer-logo > div small {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}
.footer-brand > p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; max-width: 340px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { color: var(--text-dim); margin-bottom: 16px; font-size: 0.68rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.82rem; color: var(--text-dim); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-payment { gap: 8px !important; }
.footer-payment li { font-size: 0.8rem !important; color: var(--text-dim) !important; display: flex; justify-content: space-between; align-items: center; }
.footer-payment li span { color: var(--text-dim); font-size: 0.68rem; }
.footer-payment li strong { color: var(--gold); font-size: 0.82rem; white-space: nowrap; }
.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding: 20px 32px;
  text-align: center;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.05em; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: white;
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid transparent;
  border-left-color: var(--gold-border);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-wrap { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { display: flex; justify-content: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .consult-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  #hero::before { inset: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(16, 11, 4, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 1000; }
  .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::before { display: none; }
  .hero-ornament { display: none; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }

  .products-grid { grid-template-columns: 1fr; }
  .consult-step { padding: 32px 24px; }
  .step-num { font-size: 2.5rem; top: 16px; right: 16px; }

  .about-stat-1 { right: 0; }
  .about-stat-2 { left: 0; }

  .contact-form-wrap { padding: 28px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-top { padding: 32px 24px; }
  .nav-container { padding: 0 20px; }

  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  #about, #products, #consult, #testimonials, #contact { padding: 80px 20px; }
  .section-head { margin-bottom: 40px; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 260px; justify-content: center; }
  .payment-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .footer-payment li { flex-direction: column; align-items: flex-start; gap: 2px; }
}
