/*
Theme Name: Thu Mua Nước Hoa
Theme URI: https://thumuanuochoavn.com
Author: Ken
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thumua
*/

/* ════════════════════════════════
   BASE RESET
════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: #111111;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

/* ─── CSS VARIABLES ─── */
:root {
  --gold: #D4AF37;
  --gold-light: #E8C670;
  --bg: #111111;
  --text: #F5F5F5;
  --text-secondary: #AAAAAA;
  --accent: #00C4B4;
  --border: rgba(212,175,55,0.25);
  --card: #1F1F1F;
  --bg-secondary: #1A1A1A;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #111111; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── TYPOGRAPHY HELPERS ─── */
.font-display { font-family: 'Playfair Display', serif; }
.font-body    { font-family: 'Inter', sans-serif; }

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  display: block;
}

/* ─── LAYOUT ─── */
.site-container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .site-container { padding: 0 2.5rem; } }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 1.5rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
@media (min-width: 768px) { #navbar { padding: 1.25rem 2.5rem; } }
#navbar.scrolled,
#navbar.menu-open {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.site-logo-link .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-logo-link .logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: #AAAAAA;
  text-transform: uppercase;
  -webkit-text-fill-color: #AAAAAA;
}
/* Custom logo image */
.site-logo-link img.custom-logo {
  max-height: 48px;
  width: auto;
  -webkit-text-fill-color: unset;
}

/* Desktop nav */
.desktop-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #AAAAAA;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--gold-light); }

/* WordPress menu integration */
#primary-menu { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
#primary-menu li a { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: #AAAAAA; text-decoration: none; transition: color 0.2s ease; }
#primary-menu li a:hover { color: var(--gold-light); }
#primary-menu li.current-menu-item a { color: var(--gold-light); }

/* Hamburger */
.hamburger-wrap { display: flex; align-items: center; gap: 1rem; }
.btn-cta-nav { display: none; }
@media (min-width: 768px) { .btn-cta-nav { display: inline-flex; } }

#hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) { #hamburger { display: none; } }

.ham-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
#hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open .ham-line:nth-child(2) { opacity: 0; }
#hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  border-radius: 0 0 1rem 1rem;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-top: none;
  overflow: hidden;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-nav { display: flex; flex-direction: column; padding: 0.5rem 0; list-style: none; margin: 0; }
.mobile-menu-nav li a {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #AAAAAA;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  transition: color 0.2s;
}
.mobile-menu-nav li:last-child a { border-bottom: none; }
.mobile-menu-nav li a:hover { color: var(--gold-light); }
.mobile-cta-wrap { padding: 1rem 1.5rem; }

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #D4AF37;
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: filter 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(212,175,55,0.25);
}
.btn-gold:hover {
  background:#E8C670;
  filter: brightness(1.02);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.4);
  color: #111111;
  text-decoration: none;
}
.btn-gold-lg { padding: 1rem 2.5rem; font-size: 0.875rem; }
.btn-gold-full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  transform: translateY(-2px);
  color: var(--gold-light);
  text-decoration: none;
}

/* ════════════════════════════════
   DIVIDERS
════════════════════════════════ */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.section-divider { margin: 0 2rem; opacity: 0.5; }
@media (min-width: 768px) { .section-divider { margin: 0 6rem; } }

/* ════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.15s; }

/* ════════════════════════════════
   HERO SECTION
════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-ambient-center {
  width: 600px; height: 600px;
  background: rgba(212,175,55,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hero-ambient-top {
  width: 300px; height: 300px;
  background: rgba(212,175,55,0.08);
  top: 5rem; right: 2.5rem;
}
.hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
@media (min-width: 768px) { .hero-inner { padding: 0 2.5rem; } }
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
.hero-content { flex: 1; text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }

.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-title {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 2rem 0;
}
@media (min-width: 640px)  { .hero-title { font-size: 3rem; } }
@media (min-width: 768px)  { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.5rem; } }

.hero-sub {
  color: #AAAAAA;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  max-width: 32rem;
}
@media (max-width: 1023px) { .hero-sub { margin-left: auto; margin-right: auto; } }
.hero-sub span { color: var(--gold-light); font-weight: 600; }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-badges { justify-content: flex-start; } }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #AAAAAA;
  font-size: 0.75rem;
}
.hero-badge-icon {
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { color: var(--gold); }

/* Hero image */
.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap { position: relative; width: 100%; max-width: 28rem; }
@media (min-width: 1024px) { .hero-img-wrap { max-width: 100%; } }
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(212,175,55,0.5) 0%, rgba(212,175,55,0.05) 50%, rgba(212,175,55,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.hero-img {
  border-radius: 1.5rem;
  width: 100%;
  height: 32rem;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 0 60px rgba(212,175,55,0.12), 0 0 120px rgba(212,175,55,0.06);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.4) 0%, transparent 60%);
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(18,18,18,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1rem;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.float-card-1 {
  bottom: -1.5rem;
  left: -1rem;
  padding: 1rem 1.25rem;
  min-width: 210px;
  animation: float 5s ease-in-out infinite;
}
@media (min-width: 768px) { .float-card-1 { left: -2rem; } }
.float-card-2 {
  top: -1rem;
  right: -1rem;
  padding: 0.75rem 1rem;
  min-width: 160px;
  animation: float 5s ease-in-out infinite;
  animation-delay: 2.5s;
}
@media (min-width: 768px) { .float-card-2 { right: -2rem; } }

.float-card-stars { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.25rem; }
.float-card-stars span { color: var(--gold); font-size: 0.875rem; }
.float-card-label { color: #fff; font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 500; margin: 0; }
.float-card-count { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin: 0; }
.float-card-sub { color: #AAAAAA; font-size: 0.625rem; margin: 0.125rem 0 0 0; }
.float-card-icon-row { display: flex; align-items: center; gap: 0.5rem; }
.float-card-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card-icon svg { color: var(--gold); }
.float-card-text-main { color: #fff; font-size: 0.75rem; font-weight: 600; margin: 0; }
.float-card-text-sub  { color: #AAAAAA; font-size: 0.625rem; margin: 0; }

/* ════════════════════════════════
   TRUST SECTION
════════════════════════════════ */
.trust-section { padding: 5rem 1.5rem; }
@media (min-width: 768px) { .trust-section { padding: 5rem 2.5rem; } }
.trust-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }

.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-card:hover {
  border-color: rgba(212,175,55,0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.1);
}
.trust-card:last-child { grid-column: span 2; }
@media (min-width: 768px) { .trust-card:last-child { grid-column: span 1; } }

.trust-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { color: var(--gold); width: 1.25rem; height: 1.25rem; }
.trust-card-title { font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 500; color: #fff; margin: 0; }
.trust-card-desc  { color: #AAAAAA; font-size: 0.75rem; line-height: 1.6; margin: 0; }

/* ════════════════════════════════
   BRANDS SECTION
════════════════════════════════ */
.brands-section {
  padding: 5rem 1.5rem;
  background: var(--bg-secondary);
}
@media (min-width: 768px) { .brands-section { padding: 5rem 2.5rem; } }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0.5rem 0 0 0;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-desc { color: #AAAAAA; margin: 1rem 0 0 0; max-width: 36rem; margin-left: auto; margin-right: auto; }

.brands-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .brands-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .brands-grid { grid-template-columns: repeat(6, 1fr); } }

.brand-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.brand-card:hover {
  border-color: var(--gold);
  background: #1e1a0e;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(212,175,55,0.15);
}
.brand-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.125rem;
}
/* Brand logo images (optional) */
.brand-logo-img { max-height: 2rem; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.brand-card:hover .brand-logo-img { opacity: 1; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 500; color: #fff; text-align: center; margin: 0; }
.brands-note { text-align: center; color: #AAAAAA; font-size: 0.75rem; margin-top: 2rem; }

/* ════════════════════════════════
   HOW IT WORKS
════════════════════════════════ */
.process-section { padding: 6rem 1.5rem; }
@media (min-width: 768px) { .process-section { padding: 6rem 2.5rem; } }
.process-inner { max-width: 56rem; margin: 0 auto; }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.timeline-left { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(212,175,55,0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.step-connector {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.1));
  min-height: 3rem;
}
.timeline-body { flex: 1; padding-bottom: 2.5rem; padding-top: 0.5rem; }
.timeline-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}
.timeline-card:hover { border-color: rgba(212,175,55,0.5); background: #141410; }
.timeline-card-inner { display: flex; align-items: flex-start; gap: 1rem; }
.timeline-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-icon svg { color: var(--gold); width: 1.25rem; height: 1.25rem; }
.timeline-card-title { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 600; color: #fff; margin: 0 0 0.25rem 0; }
.timeline-card-desc  { color: #AAAAAA; font-size: 0.875rem; line-height: 1.6; margin: 0; }
/* Last step highlight */
.timeline-step.last .timeline-card { border-color: rgba(212,175,55,0.35); }
.timeline-step.last .timeline-card-title { color: var(--gold-light); }

/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
.why-section { padding: 5rem 1.5rem; background: var(--bg-secondary); }
@media (min-width: 768px) { .why-section { padding: 5rem 2.5rem; } }
.why-grid {
  max-width: 80rem; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-image-wrap { position: relative; }
.why-image {
  border-radius: 1.5rem;
  width: 100%;
  height: 33rem;
  object-fit: cover;
  display: block;
}
.why-image-overlay {
  position: absolute; inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(10,10,10,0.2) 0%, transparent 50%);
}
.why-stat-card {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: rgba(18,18,18,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}
.why-stat-label { color: #AAAAAA; font-size: 0.75rem; margin: 0; }
.why-stat-value { font-family: 'Playfair Display', serif; font-size: 1.875rem; font-weight: 700; margin: 0; }
.why-stat-sub   { color: #AAAAAA; font-size: 0.75rem; margin: 0.125rem 0 0 0; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.3s, background 0.3s;
}
.feature-card:hover { border-color: rgba(212,175,55,0.5); background: #141410; }
.feature-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { color: var(--gold); width: 1.125rem; height: 1.125rem; }
.feature-title { font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 600; color: #fff; margin: 0 0 0.25rem 0; }
.feature-desc  { color: #AAAAAA; font-size: 0.75rem; line-height: 1.6; margin: 0; }

/* ════════════════════════════════
   GALLERY
════════════════════════════════ */
.gallery-section { padding: 5rem 1.5rem; }
@media (min-width: 768px) { .gallery-section { padding: 5rem 2.5rem; } }
.gallery-grid {
  max-width: 80rem; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: 1fr 1fr 1fr; } }

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  height: 20rem;
}
.gallery-item.tall { height: auto; min-height: 20rem; }
@media (min-width: 640px) {
  .gallery-item.tall { grid-row: span 2; height: 100%; }
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-section { padding: 5rem 1.5rem; background: var(--bg-secondary); }
@media (min-width: 768px) { .faq-section { padding: 5rem 2.5rem; } }
.faq-inner { max-width: 48rem; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 0;
  color: #fff;
}
.faq-question { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; margin: 0; }
@media (min-width: 768px) { .faq-question { font-size: 1.125rem; } }
.faq-icon { color: var(--gold); font-size: 1.25rem; flex-shrink: 0; transition: transform 0.3s ease; line-height: 1; }
.faq-icon.open { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { color: #AAAAAA; font-size: 0.875rem; line-height: 1.7; padding: 0 2rem 1.5rem 0; margin: 0; }

/* ════════════════════════════════
   FINAL CTA
════════════════════════════════ */
.cta-section {
  padding: 7rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-section { padding: 7rem 2.5rem; } }
.cta-glow {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.cta-glow-inner { width: 31rem; height: 18rem; border-radius: 50%; background: rgba(212,175,55,0.06); filter: blur(100px); }
.cta-inner { max-width: 48rem; margin: 0 auto; text-align: center; position: relative; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0.75rem 0 1.5rem 0;
}
@media (min-width: 768px)  { .cta-title { font-size: 3rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 3.75rem; } }
.cta-desc { color: #AAAAAA; font-size: 1.125rem; margin: 0 auto 3rem; max-width: 36rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3.5rem;
}
.cta-contact-link {
  display: flex; align-items: center; gap: 0.5rem;
  color: #AAAAAA;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.cta-contact-link:hover { color: var(--gold-light); }
.cta-contact-link svg { color: var(--gold); width: 1rem; height: 1rem; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) { .site-footer { padding: 3rem 2.5rem; } }
.footer-inner { max-width: 80rem; margin: 0 auto; }
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-top { flex-direction: row; justify-content: space-between; } }

.footer-brand { max-width: 20rem; }
.footer-brand-desc { color: #AAAAAA; font-size: 0.875rem; line-height: 1.6; margin: 1rem 0 0 0; }

.footer-cols { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 640px) { .footer-cols { flex-direction: row; } }
.footer-col-title { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin: 0 0 1rem 0; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: #AAAAAA; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
/* WordPress menu in footer */
#footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
#footer-menu li a { color: #AAAAAA; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
#footer-menu li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  color: #AAAAAA;
  font-size: 0.75rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ════════════════════════════════
   WORDPRESS ADMIN BAR FIX
════════════════════════════════ */
.admin-bar #navbar { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #navbar { top: 46px; } }

/* ════════════════════════════════
   ACCESSIBILITY
════════════════════════════════ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
