/* ============================================
   JOIA HORIZON — Main Stylesheet
   ============================================ */

:root {
  --navy:        #1D2D3E;
  --navy-light:  #263547;
  --gold:        #C4952A;
  --gold-light:  #D4A840;
  --gold-pale:   #EDD9A3;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE8DF;
  --white:       #FFFFFF;
  --text-dark:   #1A1A1A;
  --text-muted:  #6B7280;
  --border:      rgba(196,149,42,0.25);
  --shadow:      0 4px 30px rgba(29,45,62,0.12);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --radius:      4px;
  --max-width:   1180px;
}

/* ── SVG Favicon (inline via link) ─────────── */

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}
.gold-line {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}
.gold-line.center { margin: 1.25rem auto 2rem; }

/* ── Layout ─────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,149,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  padding: 0.9rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.nav-logo .sub {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { margin-left: 0.5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy) url('../img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
/* Dark overlay para que el texto sea legible sobre la foto */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(29,45,62,0.92) 0%,
    rgba(29,45,62,0.78) 60%,
    rgba(29,45,62,0.55) 100%
  );
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
/* Geometric decoration */
.hero-geo {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}
.hero-geo .circle-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(196,149,42,0.2);
}
.hero-geo .circle-mid {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(196,149,42,0.15);
}
.hero-geo .circle-fill {
  position: absolute;
  inset: 180px;
  border-radius: 50%;
  background: rgba(196,149,42,0.04);
  border: 1px solid rgba(196,149,42,0.1);
}
.hero-geo .arc {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 2px solid rgba(196,149,42,0.12);
  clip-path: polygon(50% 0%, 100% 0%, 100% 50%);
}
.hero-gold-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 1.75rem;
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(196,149,42,0.6), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-box {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem;
  position: relative;
}
.about-box::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 1.5px solid var(--gold);
  pointer-events: none;
}
.about-box .vision-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-box blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.about-text p strong { color: var(--text-dark); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-item {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}
.stat-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ============================================
   PHILOSOPHY — J.O.I.A.
   ============================================ */
.philosophy { background: var(--navy); }
.philosophy-header { text-align: center; margin-bottom: 4rem; }
.philosophy-header h2 { color: var(--white); }
.philosophy-header p {
  color: rgba(255,255,255,0.55);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.phil-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,149,42,0.2);
  padding: 2.8rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.phil-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.phil-card:hover { background: rgba(255,255,255,0.08); }
.phil-card:hover::after { transform: scaleX(1); }
.phil-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.phil-word {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.phil-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--cream);
  padding: 2.8rem 2.2rem;
  position: relative;
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.75rem;
  color: var(--gold);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.service-card p { color: var(--text-muted); font-size: 0.97rem; }

/* ============================================
   WHY US
   ============================================ */
.why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text h2 { margin-bottom: 0; }
.why-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.75rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  min-width: 2rem;
}
.why-item h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.35rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.why-item p { color: var(--text-muted); font-size: 0.93rem; }
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.why-box {
  background: var(--navy);
  color: var(--white);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
.why-box:nth-child(2) { background: var(--gold); margin-top: 2rem; }
.why-box:nth-child(3) { background: var(--cream-dark); }
.why-box:nth-child(3) .box-label, .why-box:nth-child(3) .box-val { color: var(--navy); }
.why-box .box-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.why-box:nth-child(2) .box-val { color: var(--navy); }
.why-box .box-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.4rem;
}
.why-box:nth-child(2) .box-label { color: rgba(29,45,62,0.7); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.65); margin: 1rem 0 2.5rem; font-size: 1rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1.2rem; }
.c-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.c-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,149,42,0.15);
  border: 1px solid rgba(196,149,42,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.c-detail-icon svg { width: 18px; height: 18px; }
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,149,42,0.15);
  padding: 3rem;
}
.form-row { margin-bottom: 1.5rem; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,149,42,0.2);
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold); }
.form-row select { cursor: pointer; }
.form-row select option { background: var(--navy); color: var(--white); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.form-check label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0;
  text-transform: none;
}
.form-check a { color: var(--gold); text-decoration: underline; }
.form-submit { width: 100%; padding: 1rem; font-size: 0.82rem; }
.form-msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-msg.success { background: rgba(34,197,94,0.15); color: #86efac; border: 1px solid rgba(34,197,94,0.3); display: block; }
.form-msg.error { background: rgba(239,68,68,0.15); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111B25;
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.footer-brand .tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-top: 0.25rem;
  display: block;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 1.25rem; }
.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  z-index: 9999;
  padding: 1.5rem 2rem;
  display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.show { display: block; }
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.65rem 1.5rem; font-size: 0.72rem; }
.btn-cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
}
.btn-cookie-reject:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); }
.legal-hero p { color: rgba(255,255,255,0.55); font-style: italic; margin-top: 0.75rem; }
.legal-content { padding: 5rem 0; }
.legal-content .container { max-width: 820px; }
.legal-content h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 2.5rem 0 0.85rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.legal-content h3 { font-size: 1.05rem; color: var(--navy); margin: 1.5rem 0 0.5rem; font-family: 'Inter', sans-serif; }
.legal-content p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.97rem; }
.legal-content ul { margin-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.legal-content ul li { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 0.4rem; }
.legal-content a { color: var(--gold); }
.legal-content .update-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  transition: gap var(--transition);
}
.back-link:hover { gap: 0.75rem; }

/* ============================================
   ABOUT — image variant
   ============================================ */
.about-img-wrap {
  position: relative;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: transform 0.7s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(29,45,62,0.35), transparent);
  pointer-events: none;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-group {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 800;
}
.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.float-btn svg { width: 20px; height: 20px; }
.float-email {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
}
.float-email:hover { background: var(--gold-light); transform: translateY(-3px) scale(1.05); }
.float-top {
  background: var(--navy);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.float-top.visible { opacity: 1; pointer-events: auto; }
.float-top:hover { background: var(--navy-light); transform: translateY(-3px); }

/* Tooltip on hover */
.float-btn[data-tip] {
  position: relative;
}
.float-btn[data-tip]::before {
  content: attr(data-tip);
  position: absolute;
  right: 58px;
  background: rgba(29,45,62,0.92);
  color: var(--white);
  font-size: 0.72rem;
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0.05em;
}
.float-btn[data-tip]:hover::before { opacity: 1; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 700;
}
.preloader-line {
  width: 0;
  height: 1.5px;
  background: var(--gold);
  animation: loadLine 1.2s ease forwards;
}
@keyframes loadLine {
  to { width: 120px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-cards, .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-geo { width: 380px; height: 380px; right: -60px; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    width: 280px;
    transform: translateX(100%);
    transition: var(--transition);
    padding: 2rem;
    gap: 1.75rem;
    z-index: 999;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .hero-geo { display: none; }
  .contact-form { padding: 2rem 1.5rem; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr; }
  .why-box:nth-child(2) { margin-top: 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
