/*
Theme Name: AP Real Estate
Theme URI: https://aprealty.gr
Author: AP Real Estate
Description: Premium luxury real estate theme for AP Real Estate
Version: 2.0
*/

/* Fonts are self-hosted (GDPR) — see ap-fonts.css, enqueued in functions.php.
   Greek glyphs fall back to Georgia / system sans (these families ship no greek subset). */

:root {
  --navy: #1a2744;
  --navy-deep: #0f1a30;
  --gold: #b8975a;
  --gold-light: #d4af71;
  --gold-text: #8a6a2f; /* darker gold — WCAG-legible for small text on light bg */
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --white: #ffffff;
  --gray-light: #f8f6f2;
  --text-dark: #1a1a1a;
  --text-muted: #6b6560;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card: 0 20px 60px rgba(26,39,68,0.12);
  --shadow-hover: 0 30px 80px rgba(26,39,68,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-body); background: var(--white); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; max-width: 100%; }
body.splash-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   COVER SPLASH
   ============================================= */
.cover-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Subtle radial glow behind the logo */
.cover-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(184,151,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated shimmer lines */
.cover-shimmer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 40%, rgba(184,151,90,0.04) 50%, transparent 60%),
    linear-gradient(75deg,  transparent 40%, rgba(184,151,90,0.03) 50%, transparent 60%);
  background-size: 300% 300%;
  animation: shimmer-move 6s ease infinite;
  pointer-events: none;
}
@keyframes shimmer-move {
  0%   { background-position: 200% 50%, -100% 50%; }
  100% { background-position: -100% 50%, 200% 50%; }
}

.cover-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: cover-fade-in 1.2s ease 0.2s both;
}

@keyframes cover-fade-in {
  from { opacity: 0; transform: scale(0.96) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.cover-logo {
  width: min(420px, 72vw);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(184,151,90,0.35)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: logo-float 4s ease-in-out infinite;
}
.cover-monogram { width: min(220px, 45vw); }

.cover-brand { text-align: center; animation: cover-fade-in 1.2s ease 0.4s both; }
.cover-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  text-indent: 0.32em; /* balance letter-spacing on last char */
}

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

.cover-tagline {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  animation: cover-fade-in 1.2s ease 0.6s both;
}

.cover-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.cover-tagline .cover-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.cover-tagline span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  white-space: nowrap;
}

/* Enter button */
.cover-scroll-btn {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  animation: cover-fade-in 1s ease 1.2s both;
  z-index: 2;
}
.cover-scroll-btn:hover { color: var(--gold); }

.cover-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,151,90,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce-arrow 2s ease infinite;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.cover-scroll-btn:hover .cover-arrow {
  border-color: var(--gold);
  background: rgba(184,151,90,0.1);
}
.cover-arrow svg { width: 16px; height: 16px; }

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* Exit animation */
.cover-splash.cover-exit {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 30px rgba(26,39,68,0.1); backdrop-filter: blur(10px); }
.site-header.hero-mode { background: transparent; }
.header-logo img { height: 56px; width: auto; }
.header-nav { display: flex; gap: 2.5rem; align-items: center; }
.header-nav a { font-family: var(--font-display); font-size: 1.12rem; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.9); transition: color var(--transition); position: relative; }
.header-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }
.header-nav a.active { color: var(--gold); }
.site-header.scrolled .header-nav a { color: var(--navy); }
.site-header.scrolled .header-nav a.active { color: var(--gold-text); }

/* Header phone */
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; }
.header-phone svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.header-phone::after { display: none !important; }
.header-phone:hover { color: var(--gold) !important; }

/* Language switch (desktop nav) */
.lang-switch { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; }
.lang-switch a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.lang-switch a.active { color: var(--gold); }
.lang-switch a:hover { color: var(--gold-light); }
.lang-switch .lang-sep { color: rgba(255,255,255,0.25); font-size: 0.7rem; }
.site-header.scrolled .lang-switch a { color: var(--text-muted); }
.site-header.scrolled .lang-switch a.active { color: var(--gold-text); }
.site-header.scrolled .lang-switch .lang-sep { color: var(--cream-dark); }

/* Language switch (mobile menu) */
.mobile-lang-switch { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; margin-top: -0.5rem; }
.mobile-lang-switch a { color: rgba(255,255,255,0.45); }
.mobile-lang-switch a.active { color: var(--gold); }
.mobile-lang-switch .lang-sep { color: rgba(255,255,255,0.2); }

.nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 8px 26px !important; border-radius: 2px; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.site-header.scrolled .hamburger span { background: var(--navy); }

/* =============================================
   HERO
   ============================================= */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; background: var(--navy-deep); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,18,40,0.85) 0%, rgba(26,39,68,0.7) 50%, rgba(10,18,40,0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M10 0L0 0 0 10" fill="none" stroke="rgba(184,151,90,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
  background-size: cover, 60px 60px;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; opacity: 0.4; animation: float-particle linear infinite; }
@keyframes float-particle { 0%{transform:translateY(100vh) rotate(0deg);opacity:0} 10%{opacity:0.4} 90%{opacity:0.4} 100%{transform:translateY(-10vh) rotate(360deg);opacity:0} }
.hero-content { position: relative; z-index: 2; padding: 0 8%; max-width: 92%; margin-top: 80px; }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; opacity: 0; animation: slideUp 1s ease 0.5s forwards; }
.hero-eyebrow .line { width: 50px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-eyebrow span { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; white-space: nowrap; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 6rem); font-weight: 300; line-height: 1.12; color: var(--white); margin-bottom: 1.4rem; opacity: 0; animation: slideUp 1s ease 0.7s forwards; white-space: nowrap; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 1.02rem; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 560px; margin-bottom: 2.5rem; opacity: 0; animation: slideUp 1s ease 0.9s forwards; }
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; opacity: 0; animation: slideUp 1s ease 1.1s forwards; }
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; animation: pulse-scroll 2s ease infinite; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: extend-line 2s ease infinite; }
@keyframes pulse-scroll { 0%,100%{opacity:0.5} 50%{opacity:1} }
@keyframes extend-line { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-block; padding: 14px 36px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; border: none; transition: var(--transition); position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); transform: translateX(-100%); transition: transform 0.4s ease; }
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }

/* Sliding arrow on CTA buttons */
.btn--arrow::after { content: '→'; display: inline-block; margin-left: 0.6em; transition: transform 0.3s ease; }
.btn--arrow:hover::after { transform: translateX(6px); }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: var(--navy); padding: 2.5rem 5%; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 500; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 6rem 5%; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--navy-deep); color: var(--white); }
.section-header { margin-bottom: 4rem; }
.section-eyebrow { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.section-eyebrow .line { width: 40px; height: 1px; background: var(--gold); }
.section-eyebrow span { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; }
.section-dark .section-eyebrow span { color: var(--gold); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; line-height: 1.2; color: var(--navy); }
.section-dark .section-title { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle { margin-top: 1rem; color: var(--text-muted); font-size: 1rem; font-weight: 300; max-width: 520px; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* =============================================
   SERVICES
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--cream-dark); }
.service-card { background: var(--white); padding: 3rem 2.5rem; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: width 0.5s ease; }
.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-icon { width: 56px; height: 56px; margin-bottom: 1.8rem; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 0.8rem; }
.service-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

/* =============================================
   ABOUT
   ============================================= */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-frame { position: relative; z-index: 1; }
.about-image-frame > img { width: 100%; object-fit: cover; aspect-ratio: 3/4; object-position: center top; }
.about-image-deco { position: absolute; bottom: -2rem; right: -2rem; width: 60%; height: 60%; border: 2px solid var(--gold); opacity: 0.3; z-index: 0; }
.about-badge { position: absolute; bottom: 2rem; left: -2rem; background: var(--navy); color: var(--white); padding: 1.5rem; z-index: 2; text-align: center; min-width: 140px; }
.about-badge .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.about-badge .lbl { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }
.about-content .section-header { margin-bottom: 2rem; }
.about-text { color: var(--text-muted); font-weight: 300; margin-bottom: 1.2rem; line-height: 1.8; }
.about-values { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.about-value { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--cream-dark); }
.value-dot { width: 8px; height: 8px; min-width: 8px; background: var(--gold); border-radius: 50%; margin-top: 0.45rem; }
.value-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.value-text span { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }

/* =============================================
   ABOUT — ART PANEL (Athens skyline illustration)
   ============================================= */
.about-art-panel { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--navy-deep); }
.about-art { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.about-art-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 5rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(to top, rgba(15,26,48,0.96) 0%, rgba(15,26,48,0.75) 55%, transparent 100%);
  display: flex; flex-direction: column; gap: 0.9rem; align-items: center;
}
.about-brand-quote { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 1.15rem; line-height: 1.6; color: rgba(255,255,255,0.88); }
.about-brand-sign { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* =============================================
   AREAS
   ============================================= */
.areas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.area-card {
  position: relative;
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(184,151,90,0.18);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  overflow: hidden;
}
.area-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.5s ease; }
.area-card:hover::before { width: 100%; }
.area-card:hover { border-color: rgba(184,151,90,0.45); background: rgba(184,151,90,0.05); transform: translateY(-5px); }
.area-num { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; opacity: 0.7; }
.area-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; color: var(--white); margin-bottom: 0.7rem; }
.area-desc { font-size: 0.87rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); }
.areas-cta { text-align: center; margin-top: 3rem; }

/* =============================================
   FAQ
   ============================================= */
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500; color: var(--navy);
  cursor: pointer; list-style: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }
.faq-toggle { position: relative; width: 14px; height: 14px; min-width: 14px; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.35s ease; }
.faq-toggle::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-toggle::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .faq-toggle::after { transform: translateX(-50%) scaleY(0); }
.faq-answer { padding: 0 0.2rem 1.6rem; font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--text-muted); max-width: 620px; }

/* =============================================
   CONTACT CTA PANEL
   ============================================= */
.contact-cta-panel {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 3.5rem 3rem;
  overflow: hidden;
}
.contact-cta-glow { position: absolute; top: -40%; right: -20%; width: 70%; aspect-ratio: 1; background: radial-gradient(circle, rgba(184,151,90,0.18) 0%, transparent 70%); pointer-events: none; }
.contact-cta-title { font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 300; line-height: 1.25; color: var(--white); margin: 1rem 0 1.2rem; }
.contact-cta-title em { font-style: italic; color: var(--gold-light); }
.contact-cta-text { color: rgba(255,255,255,0.6); font-size: 0.95rem; font-weight: 300; line-height: 1.8; margin-bottom: 1.8rem; max-width: 420px; }
.contact-cta-points { margin: 0 0 2.2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.contact-cta-points li { position: relative; padding-left: 1.6rem; color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 300; }
.contact-cta-points li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 600; }

/* =============================================
   CONTACT WIZARD MODAL
   ============================================= */
.wiz-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(15,26,48,0.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.wiz-overlay.open { opacity: 1; pointer-events: all; }

.wiz-modal {
  position: relative;
  width: min(680px, 100%);
  background: var(--white);
  padding: 3rem 3.2rem 2.5rem;
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 92vh;
  overflow-y: auto;
}
.wiz-overlay.open .wiz-modal { transform: translateY(0) scale(1); }

.wiz-close {
  position: absolute; top: 1.1rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--text-muted);
  padding: 0.5rem; line-height: 1;
  transition: color var(--transition);
}
.wiz-close:hover { color: var(--navy); }

.wiz-head { margin-bottom: 2.2rem; }
.wiz-step-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; margin-bottom: 0.8rem; }
.wiz-progress { height: 2px; background: var(--cream-dark); }
.wiz-progress-bar { height: 100%; background: linear-gradient(to right, var(--gold), var(--gold-light)); transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1); }

.wiz-track { position: relative; }
.wiz-step { display: none; animation: wiz-in 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.wiz-step.active { display: block; }
@keyframes wiz-in { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }

.wiz-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 400; color: var(--navy); margin-bottom: 1.6rem; line-height: 1.25; }
.wiz-title em { font-style: italic; color: var(--gold); }
.wiz-hint { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; margin: -0.8rem 0 1.4rem; }

.wiz-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.9rem; }
.wiz-option {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  padding: 1.6rem 1rem 1.3rem;
  background: var(--gray-light);
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; color: var(--navy);
  transition: var(--transition);
  text-align: center;
}
.wiz-option svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: var(--transition); }
.wiz-option:hover { border-color: var(--gold); background: var(--white); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26,39,68,0.1); }
.wiz-option.selected { border-color: var(--gold); background: var(--navy); color: var(--white); }
.wiz-option.selected svg { stroke: var(--gold-light); }

.wiz-input { width: 100%; }
.wiz-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }
.wiz-chip {
  padding: 8px 18px;
  background: none; border: 1px solid var(--cream-dark); border-radius: 30px;
  font-family: var(--font-body); font-size: 0.8rem; color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.wiz-chip:hover { border-color: var(--gold); color: var(--gold); }

.wiz-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.wiz-error {
  display: none;
  margin-top: 1.2rem; padding: 12px 18px;
  background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb;
  font-size: 0.85rem; font-weight: 500;
}
.wiz-error.show { display: block; }

.wiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2.2rem; }
.wiz-back {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  padding: 0.6rem 0.4rem;
  transition: color var(--transition);
}
.wiz-back:hover { color: var(--navy); }
.wiz-next { font-size: 0.78rem !important; padding: 14px 34px !important; }

.wiz-consent { display: flex; align-items: flex-start; gap: 0.7rem; margin-top: 1.3rem; cursor: pointer; }
.wiz-consent input { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.wiz-consent span { font-size: 0.82rem; font-weight: 300; line-height: 1.6; color: var(--text-muted); }
.wiz-consent a { color: var(--gold-text); text-decoration: underline; }
.wiz-consent a:hover { color: var(--navy); }

/* Privacy / info modal (reuses the wizard overlay pattern) */
.info-overlay {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(15,26,48,0.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.info-overlay.open { opacity: 1; pointer-events: all; }
.info-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: 88vh; overflow-y: auto;
  background: var(--white);
  padding: 3rem 3.2rem 2.5rem;
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.info-overlay.open .info-modal { transform: translateY(0) scale(1); }
.info-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 400; color: var(--navy); margin: 0.8rem 0 1.6rem; }
.info-body h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.info-body p { font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--text-muted); margin-bottom: 0.5rem; }
.info-body a { color: var(--gold-text); text-decoration: underline; }

.wiz-step-success { padding: 1.5rem 0 0.5rem; }
.wiz-success-icon {
  width: 84px; height: 84px; margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  animation: wiz-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wiz-success-icon svg { width: 38px; height: 38px; stroke: var(--white); fill: none; stroke-width: 2.5; }
@keyframes wiz-pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* =============================================
   PROCESS
   ============================================= */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 2.5rem; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent); opacity: 0.3; }
.step { text-align: center; padding: 3rem 2rem; }
.step-num { width: 5rem; height: 5rem; border-radius: 50%; border: 1px solid rgba(184,151,90,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; margin: 0 auto 1.5rem; position: relative; z-index: 1; transition: var(--transition); }
.step-num-light { background: var(--white); color: var(--gold); border-color: rgba(184,151,90,0.4); }
.step-light:hover .step-num-light { background: var(--gold); color: var(--white); border-color: var(--gold); }
.step-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 0.8rem; }
.step-title-light { color: var(--navy); }
.step-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.7; }
.step-desc-light { color: var(--text-muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info-item { display: flex; gap: 1.2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--cream-dark); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; min-width: 44px; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-info-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; margin-bottom: 0.3rem; }
.contact-info-value { font-size: 0.95rem; color: var(--text-dark); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.form-control { padding: 14px 16px; border: 1px solid var(--cream-dark); background: var(--white); font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark); outline: none; transition: border-color var(--transition); border-radius: 0; -webkit-appearance: none; appearance: none; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,151,90,0.08); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-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='%23b8975a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 56px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-title { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.3rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 300; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.75rem; transition: var(--transition); }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--navy-deep); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; padding: 2rem; }
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-logo { height: 64px; width: auto; margin-bottom: 0.5rem; }
.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.mobile-link { font-family: var(--font-display); font-size: 2rem; color: var(--white); font-weight: 300; }
.mobile-link:hover { color: var(--gold); }
.mobile-contact { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 300px; margin-top: 0.5rem; }
.mobile-phone { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; color: var(--white); font-size: 1.15rem; font-weight: 400; }
.mobile-phone svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.mobile-wa { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; background: #25d366; color: #fff; padding: 13px; border-radius: 2px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: var(--transition); }
.mobile-wa svg { width: 18px; height: 18px; }
.mobile-wa:hover { background: #20ba5a; }
.mobile-close { position: absolute; top: 2rem; right: 5%; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.5rem; cursor: pointer; padding: 0.5rem; z-index: 2; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 990;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
body.splash-open .wa-float { opacity: 0; pointer-events: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero-title { font-size: clamp(2.4rem, 4vw, 3.6rem); }
}
@media (max-width: 1150px) {
  .header-phone { display: none; } /* keep nav uncrowded; phone lives in the mobile menu + floating button */
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .cover-logo { width: min(280px, 80vw); }
  .cover-monogram { width: min(160px, 42vw); }
  .cover-brand-name { letter-spacing: 0.22em; text-indent: 0.22em; }
  .cover-tagline span { font-size: 0.62rem; letter-spacing: 0.18em; }
  .areas-grid { grid-template-columns: 1fr; }
  .about-brand-quote { font-size: 1.05rem; }
  .faq-question { font-size: 1.05rem; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 6%; margin-top: 0; max-width: 100%; }
  .hero-title { font-size: clamp(2.1rem, 7.5vw, 2.9rem); white-space: normal; }
  .hero-eyebrow span { font-size: 0.65rem; letter-spacing: 0.15em; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { top: 1.5rem; bottom: auto; left: 1rem; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cta-panel { padding: 2.5rem 1.8rem; }
  .wiz-overlay { padding: 0; align-items: flex-end; }
  .wiz-modal { width: 100%; max-height: 96vh; padding: 2.2rem 1.6rem 2rem; }
  .wiz-fields { grid-template-columns: 1fr; }
  .wiz-options { grid-template-columns: 1fr 1fr; }
  .info-overlay { padding: 0; align-items: flex-end; }
  .info-modal { width: 100%; max-height: 92vh; padding: 2.2rem 1.6rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
