/* ============================================
   BeoHome Protect — Shared Stylesheet
   Mobile-first, responsive
   Matches original premium design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --navy:        #0D2B4E;
  --navy-mid:    #1A3A63;
  --navy-deep:   #081d35;
  --white:       #FFFFFF;
  --off-white:   #F8F5F0;
  --gray-line:   #E2E6ED;
  --gray-mid:    #8A9BB0;
  --gray-text:   #4A5568;
  --gold:        #B8973E;
  --gold-lt:     #D4AF5A;
  --text:        #1E2B3C;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', sans-serif;
  --r:           5px;
  --max-width:   1120px;
  --card-shadow: 0 4px 24px rgba(13,43,78,0.08);
  --transition:  0.22s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
p { color: var(--gray-text); font-size: 1rem; line-height: 1.75; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before { display: none; }
.eyebrow.no-dash::before { display: none; }

.subheading {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--gray-text);
  font-style: italic;
  margin-top: 14px;
  line-height: 1.65;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
section.tight { padding: 56px 0; }

.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-primary:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--gray-line); }
.btn-outline-navy:hover { color: var(--gold); border-color: var(--gold); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.28); }
.btn-outline-white:hover { color: var(--gold); border-color: var(--gold); }
.btn-full { width: 100%; justify-content: center; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 20px;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; }
.nav-center { display: none; align-items: center; justify-content: center; gap: 52px; list-style: none; }
.nav-center a {
  font-size: 10.5px; font-weight: 400;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-center a:hover, .nav-center a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }

.lang-switch {
  display: none;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  overflow: hidden;
}
.lang-btn {
  background: transparent; border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.28);
  font-family: var(--sans); font-size: 8px; font-weight: 500;
  letter-spacing: 0.06em; padding: 4px 8px;
  cursor: pointer; transition: all 0.18s; text-transform: uppercase;
  position: relative;
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }
.lang-btn.active { background: var(--gold); color: var(--navy-deep) !important; font-weight: 600; }
.lang-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--white);
  font-size: 9px; padding: 4px 8px;
  border-radius: 3px; white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
}
.lang-btn:hover .lang-tooltip { display: block; }

.nav-cta {
  display: none;
  background: transparent;
  border: 1px solid rgba(184,151,62,0.45);
  color: var(--gold);
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 7px 20px; border-radius: var(--r);
  cursor: pointer; transition: all 0.22s; white-space: nowrap;
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold-lt); }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px; gap: 0;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-cta {
  margin-top: 16px; padding: 10px 20px; text-align: center;
  border: 1px solid rgba(184,151,62,0.4); border-radius: var(--r);
  color: var(--gold) !important; letter-spacing: 0.1em !important;
  border-bottom: 1px solid rgba(184,151,62,0.4) !important;
}
.mobile-lang {
  display: flex; gap: 0; margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r);
  overflow: hidden; width: fit-content;
}

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; margin-top: 68px;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,29,53,0.92) 0%, rgba(8,29,53,0.75) 45%, rgba(8,29,53,0.32) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max-width); margin: 0 auto;
  padding: 60px 24px;
  display: flex; flex-direction: column; gap: 40px;
  align-items: flex-start;
}
/* Inner pages: pin hero content from top so h1 sits at consistent height on all pages */
.hero:not(:has(.hero-features-card)) { align-items: flex-start; }
.hero:not(:has(.hero-features-card)) .hero-inner { padding-top: 180px; }
.hero-text { max-width: 520px; text-align: left; }
.hero-text .eyebrow { color: var(--gold); margin-bottom: 20px; }
.hero-text h1 { color: var(--white); margin-bottom: 16px; }
.hero-text .subheading { color: rgba(255,255,255,0.72); }
.hero-body {
  color: rgba(255,255,255,0.6); font-size: 0.95rem;
  margin-top: 18px; line-height: 1.8; display: none;
}

/* Hero features card */
.hero-features-card {
  display: none;
  background: rgba(8,29,53,0.62);
  border: 1px solid rgba(184,151,62,0.18);
  border-radius: var(--r);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
  width: 100%;
}
.feat-eyebrow {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,151,62,0.15);
  display: block;
}
.hero-features-card ul { display: flex; flex-direction: column; gap: 0; }
.hero-features-card li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.82); font-size: 0.84rem; line-height: 1.4;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-features-card li:last-child { border-bottom: none; }
.feat-check {
  width: 16px; height: 16px;
  border: 1px solid rgba(184,151,62,0.4); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-check svg { width: 9px; height: 9px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Testimonials */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.testimonial-card {
  background: var(--white); border-radius: var(--r);
  padding: 28px 24px; box-shadow: var(--card-shadow);
  border: 1px solid rgba(184,151,62,0.12);
  border-top: 2px solid rgba(184,151,62,0.35);
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: var(--gold); font-size: 14px; }
.testimonial-card blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--navy); margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.04em;
  border: 1.5px solid rgba(184,151,62,0.5);
}
.author-name {
  font-size: 0.75rem; font-weight: 500; color: var(--navy);
  letter-spacing: 0.06em; text-transform: uppercase; display: block; line-height: 1.3;
}
.author-location { font-size: 0.72rem; color: var(--gray-mid); display: block; margin-top: 2px; }
.testimonials-link { text-align: center; margin-top: 36px; }
.testimonials-link a {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase;
  border-bottom: 1px solid rgba(184,151,62,0.3); padding-bottom: 3px;
  transition: color var(--transition);
}
.testimonials-link a:hover { color: var(--gold-lt); }

/* Feature Cards (How We Work) */
.feature-cards { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
.feature-card {
  background: var(--white); border-radius: var(--r);
  padding: 32px 28px; box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-line);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover { border-color: rgba(184,151,62,0.3); box-shadow: 0 8px 32px rgba(13,43,78,0.12); }
.feature-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(184,151,62,0.3);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; line-height: 1.7; }

/* CTA Section */
.cta-section { background: var(--navy-deep); text-align: center; padding: 80px 24px; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.55); }
.cta-section .btn-group { justify-content: center; }

/* Accountability Bar */
.accountability-bar { background: var(--off-white); padding: 80px 24px; text-align: center; }
.accountability-bar .eyebrow { justify-content: center; margin-bottom: 20px; }
.accountability-bar .eyebrow::before { display: none; }
.accountability-bar p { color: var(--gray-text); max-width: 680px; margin: 0 auto; font-size: 1rem; line-height: 1.85; }

/* Bridge bars — serbia-bar, trust-bar, closing-bar, discretion-bar: all match homepage accountability-bar style */
.serbia-bar,
.trust-bar,
.closing-bar,
.discretion-bar { background: var(--off-white); padding: 72px 24px; text-align: center; border-top: 1px solid var(--gray-line); }
.serbia-bar .eyebrow,
.trust-bar .eyebrow,
.closing-bar .eyebrow,
.discretion-bar .eyebrow { justify-content: center; margin-bottom: 20px; }
.serbia-bar .eyebrow::before,
.trust-bar .eyebrow::before,
.closing-bar .eyebrow::before,
.discretion-bar .eyebrow::before { display: none; }
.serbia-bar p,
.trust-bar p,
.closing-bar p,
.discretion-bar p { font-family: var(--serif); font-style: normal; font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--gray-text); max-width: 640px; margin: 0 auto; line-height: 1.9; }

/* Principles */
.principles-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.principle-card {
  background: var(--white); border-radius: var(--r);
  padding: 32px 28px; box-shadow: var(--card-shadow);
  border-left: 3px solid var(--gold);
}
.principle-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.principle-card p { font-size: 0.9rem; }

/* Stats */
.stats-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--gray-line);
}
.stat-item { text-align: center; }
.stat-number { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem); color: var(--navy); font-weight: 300; display: block; line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-top: 6px; display: block; }

/* Comparison Table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); box-shadow: var(--card-shadow); border: 1px solid var(--gray-line); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 500px; }
.compare-table thead tr { background: var(--navy-deep); }
.compare-table th { padding: 20px 16px; text-align: center; font-family: var(--serif); font-weight: 400; font-size: 1.1rem; color: var(--white); border-right: 1px solid rgba(255,255,255,0.08); }
.compare-table th:first-child { background: var(--navy); text-align: left; font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.compare-table th .plan-price { display: block; font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--gold); margin-top: 4px; letter-spacing: 0.06em; }
.compare-table td { padding: 13px 16px; text-align: center; border-right: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); color: var(--gray-text); font-size: 0.85rem; }
.compare-table td:first-child { text-align: left; color: var(--text); background: rgba(248,245,240,0.4); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--navy); font-weight: 600; }
.compare-table .dash { color: var(--gray-line); }
.compare-table .cta-row td { padding: 16px; background: var(--white); border-top: 2px solid var(--gray-line); }

/* Visit Checklists */
.visit-cols { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
.visit-col h3 { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-line); }
.visit-col ul { display: flex; flex-direction: column; gap: 12px; }
.visit-col li { font-size: 0.9rem; color: var(--gray-text); padding-left: 18px; position: relative; line-height: 1.5; }
.visit-col li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.6; }

/* Add-ons */
.addons-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.addon-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--white); border-radius: var(--r); border: 1px solid var(--gray-line); gap: 12px; transition: border-color var(--transition); }
.addon-item:hover { border-color: rgba(184,151,62,0.3); }
.addon-name { font-weight: 500; font-size: 0.9rem; color: var(--navy); }
.addon-price { font-size: 0.82rem; font-weight: 500; color: var(--gold); white-space: nowrap; flex-shrink: 0; }

/* Privacy */
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.privacy-card { background: var(--white); border-radius: var(--r); padding: 24px; border: 1px solid var(--gray-line); box-shadow: var(--card-shadow); }
.privacy-card h4 { font-size: 1rem; margin-bottom: 8px; }
.privacy-card p { font-size: 0.85rem; }

/* About / Founder */
.founder-layout { display: flex; flex-direction: column; gap: 48px; }
.founder-image { width: 100%; max-width: 380px; }
.founder-image img { width: 100%; border-radius: var(--r); box-shadow: var(--card-shadow); }
.founder-text p { margin-bottom: 22px; font-size: 0.97rem; line-height: 1.85; }
.founder-text p:last-child { margin-bottom: 0; }
.boutique-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
.boutique-card { background: var(--white); border-radius: var(--r); padding: 28px; border: 1px solid var(--gray-line); box-shadow: var(--card-shadow); }
.boutique-card h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 56px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 9px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--gray-line); border-radius: var(--r); font-family: var(--sans); font-size: 0.9rem; color: var(--text); background: var(--white); transition: border-color var(--transition); appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D2B4E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-disclaimer { font-size: 0.75rem; color: var(--gray-mid); margin-top: 14px; line-height: 1.5; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-line); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { width: 36px; height: 36px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { font-size: 9px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); display: block; margin-bottom: 2px; }
.contact-value { font-size: 0.9rem; color: var(--text); }
.contact-value a { transition: color var(--transition); }
.contact-value a:hover { color: var(--gold); }
.map-embed { margin-top: 32px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--gray-line); }
.map-embed iframe { width: 100%; height: 260px; border: none; display: block; }

/* Footer */
.footer { background: var(--navy-deep); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-brand .eyebrow { color: var(--gold); font-size: 9px; margin-bottom: 10px; }
.footer-brand .eyebrow::before { display: none; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col li a:hover { color: var(--white); }
/* Mobile: cols in 2-column grid — Services top-left, Contact top-right, Company bottom-left */
.footer-cols-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
.footer-bottom { padding-top: 24px; display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-tagline { font-size: 9px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; opacity: 0.65; }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; height: 46px; width: 46px; background: #1ea952; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0,0,0,0.18); transition: transform var(--transition), box-shadow var(--transition); text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.07); box-shadow: 0 4px 20px rgba(0,0,0,0.25); background: #22bc5c; }
.whatsapp-float svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.whatsapp-float-label { display: none; }

.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy-deep); }

/* ============ TABLET 768px+ ============ */
@media (min-width: 768px) {
  .container { padding: 0 40px; }
  nav { padding: 0 40px; }
  .nav-center { display: flex; }
  .lang-switch { display: flex; }
  .nav-cta { display: inline-block; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .visit-cols { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .boutique-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-cols-grid { display: contents; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
  .founder-layout { flex-direction: row; align-items: flex-start; }
  .founder-image { width: 320px; flex-shrink: 0; }
  .hero-inner { padding: 80px 40px; }
}

/* ============ DESKTOP 1024px+ ============ */
@media (min-width: 1024px) {
  .container { padding: 0 64px; }
  nav { padding: 0 56px; }
  .hero-inner { padding: 100px 64px; flex-direction: row; align-items: center; gap: 0; justify-content: space-between; }
  .hero-text { max-width: 440px; flex-shrink: 0; }
  .hero-body { display: block; }
  .hero-features-card { display: block; width: 340px; flex-shrink: 0; }
  .feature-cards { grid-template-columns: repeat(4, 1fr); }
  .boutique-grid { grid-template-columns: repeat(4, 1fr); }
  .founder-image { width: 340px; }
}

/* ── Floating bottom nav — desktop only ── */
.float-nav {
  display: none;
}
@media (min-width: 1024px) {
  .float-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-deep);
    border-radius: 100px;
    padding: 14px 40px;
    box-shadow: 0 8px 32px rgba(8,29,53,0.35), 0 2px 8px rgba(0,0,0,0.2);
    z-index: 900;
    white-space: nowrap;
  }
  .float-nav a {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }
  .float-nav a:hover { color: rgba(255,255,255,0.9); }
  .float-nav a.active { color: var(--gold); }
}
