/* ============================================================
   MAJSTOR ZA LEĐA — Tesla Medical design (close match)
   Colors: Navy #1f3a31 | Gold #C9A84C | BG #eef1ea
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:        #1f3a31;
  --navy-dark:   #15291f;
  --navy-mid:    #2c5043;
  --gold:        #C9A84C;
  --gold-dark:   #b0922d;
  --gold-light:  #e0c070;
  --white:       #ffffff;
  --bg:          #eef1ea;
  --bg-section:  #e7ebe1;
  --text-body:   #41524b;
  --text-head:   #1f3a31;
  --text-muted:  #6f7d74;
  --border:      #d7ddd4;
  --shadow:      0 2px 16px rgba(20,42,32,0.10);
  --shadow-lg:   0 6px 32px rgba(20,42,32,0.15);
  --radius:      12px;
  --radius-lg:   24px;
  --whatsapp:    #25d366;
  --success:     #059669;
  --gold-text:   #8f7420;
  --font:        'Montserrat', sans-serif;
  --transition:  0.3s ease;
  --max-w:       1200px;
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TOP INFO BAR (dark navy, like Tesla Medical)
   ============================================================ */
.top-bar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 0.78rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  white-space: nowrap;
}

.top-bar-item i { color: var(--gold); font-size: 0.85rem; }
.top-bar-item a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.top-bar-item a:hover { color: var(--gold); }



.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-socials a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.top-bar-socials a:hover { color: var(--gold); }

/* ============================================================
   NAVBAR (white, logo L + hamburger R — Tesla Medical style)
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: 0 2px 18px rgba(20,42,32,0.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  background: transparent;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav links — shown on large desktops only */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--bg); }

/* Nav right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-toggle:hover { background: var(--navy); color: white; border-color: var(--navy); }

.lang-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
  display: inline-block;
}
.lang-dropdown.open .lang-arrow { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20,42,32,0.12);
  overflow: hidden;
  min-width: 130px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
  background: none;
  width: 100%;
  font-family: var(--font);
}
.lang-option:hover { background: var(--bg); }
.lang-option.active { color: var(--gold); background: rgba(201,168,76,0.07); }
.lang-option .flag { font-size: 1.1rem; }

/* Hamburger — hidden on desktop, shown ≤1000px */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger:hover span { background: var(--gold); }

/* Mobile menu — animated slide-down */
.mobile-menu {
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 2px;
  /* Animation: max-height sliding */
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease, visibility 0s linear 0.38s;
  padding: 0 28px;
  display: flex; /* always flex, controlled by max-height */
}
.mobile-menu.open {
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  visibility: visible;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 12px 28px 32px;
}

.mobile-link {
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  transition: background var(--transition), transform 0.2s ease;
  opacity: 0;
  transform: translateX(-10px);
}
.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open .mobile-link { transition-delay: 0.08s; }
.mobile-link:hover { background: var(--bg); color: var(--gold); }

.mobile-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: white;
  padding: 13px 24px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease 0.35s, transform 0.25s ease 0.35s, background 0.2s ease;
}
.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-cta:hover { background: var(--gold-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 0.14em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
  text-transform: uppercase;
  position: relative;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(201,168,76,0.28);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-lg { padding: 13px 32px; font-size: 0.92rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-instagram {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.btn-instagram:hover { background: var(--navy-mid); }

/* Nav CTA */
.nav-cta { font-size: 0.8rem; padding: 8px 18px; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg);
  min-height: 440px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-dark);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge i { font-size: 0.8rem; }

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.hero-title .accent-word { font-style: italic; }

/* Gold underline below hero title — Tesla Medical style */
.hero-gold-line {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0 18px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stats row below hero */
.hero-stats-bar {
  background: var(--navy);
  padding: 36px 0 30px;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-align: center;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Quiet trust line inside the stats band */
.stats-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.stats-trust span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section { padding: clamp(80px, 9vw, 120px) 0; }
.section-white { background: var(--white); }
.section-bg { background: var(--bg); }

.section-header { text-align: center; margin-bottom: clamp(48px, 6vw, 72px); }

/* Editorial serif section title */
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  text-transform: none;
  font-weight: 400;
  line-height: 1.7;
}

/* Print-style kicker with gold hairlines */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before,
.section-tag::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-tag--left::after { display: none; }

/* Thin gold hairline rule */
.rule-gold {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}
.rule-gold--left { margin: 20px 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-content { display: flex; flex-direction: column; gap: 16px; }

.about-text { color: var(--text-body); font-size: 1rem; line-height: 1.75; }

.about-features { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 8px; }

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
}
.about-feature i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   INSTAGRAM / VIDEO SECTION
   ============================================================ */
.video-cta { text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-summary span { color: var(--text-muted); font-size: 0.9rem; }

.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
  /* Small breathing room so box-shadow on cards isn't clipped */
  margin: 0 -4px;
  padding: 0 4px;
}

/* Flex row — each card is exactly 1/1 of the wrapper (on mobile)
   or shrunk to show multiple cards on wider screens */
.testimonials-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  /* will-change for smooth GPU composite */
  will-change: transform;
}

/* Each card: fixed width = full wrap width on mobile,
   or calc for multi-column on desktop */
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px); /* 3 visible on desktop */
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 2px 12px rgba(20,42,32,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: grab;
  user-select: none;
}
.testimonial-card:active { cursor: grabbing; }

.quote-icon { color: var(--gold); font-size: 1.4rem; }
.testimonial-text { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; flex: 1; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info { display: flex; flex-direction: column; flex: 1; }
.author-info strong { font-size: 0.85rem; color: var(--navy); }
.author-info span { font-size: 0.73rem; color: var(--text-muted); }
.author-stars { color: var(--gold); font-size: 0.68rem; letter-spacing: 1px; }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

/* Prev / Next arrow buttons */
.testimonials-arrow {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.8rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.testimonials-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.testimonials-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.testimonials-nav button.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   CONTACT SECTION — Tesla style bottom-border inputs
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 8px rgba(20,42,32,0.06);
  border-left: 3px solid var(--gold);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-icon.whatsapp { background: #25d366; color: white; }
.contact-icon.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.contact-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}

.contact-card a, .contact-card span { font-size: 0.9rem; color: var(--text-body); }
.contact-card a:hover { color: var(--gold); }

.hours-grid { display: flex; flex-direction: column; gap: 2px; }

/* Form — Tesla Medical style: no border, except bottom line */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Bottom-border-only inputs — Tesla Medical signature */
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  padding: 8px 2px;
  font-size: 0.92rem;
  font-family: var(--font);
  color: var(--text-body);
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: #059669;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(5,150,105,0.08);
  border-radius: 8px;
  padding: 12px 16px;
}
.form-success.show { display: flex; }

/* ============================================================
   FOOTER — Deep navy, Tesla Medical style
   ============================================================ */
.footer { background: var(--navy-dark); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 56px 28px 44px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

/* Footer logo in white */
.footer-brand .logo-icon { border-color: rgba(201,168,76,0.5); color: var(--gold); }
.footer-brand .logo-main { color: var(--white); }

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.social-links { display: flex; gap: 10px; margin-top: 4px; }

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: white; transform: translateY(-2px); }

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-services a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover, .footer-services a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

/* Footer EKG decorative element */
.footer-pulse {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.2;
  margin: 16px 0 0;
}
.footer-pulse svg { width: 160px; height: 50px; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   MOBILE FAB — single gold booking button
   ============================================================ */
.mobile-fab-wrap {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 998;
  display: block; /* always visible on all screen sizes */
}

.fab-book-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
  animation: fabPulse 2.8s ease-in-out infinite;
}

.fab-book-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.55);
  animation: none;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.18); }
  50% { box-shadow: 0 4px 28px rgba(201,168,76,0.70), 0 0 0 8px rgba(201,168,76,0.12); }
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,46,0.72);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal {
  background: var(--white);
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 520px;
  padding: 32px 28px 36px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.20, 0.64, 1);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
}

.booking-modal-overlay.open .booking-modal {
  transform: translateY(0);
}

/* Drag handle */
.modal-handle {
  width: 44px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.modal-pulse {
  display: flex;
  justify-content: center;
  margin: 0 0 18px;
}
.modal-pulse svg { width: 56px; height: 22px; color: var(--gold); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--bg);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: var(--navy); color: white; }

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-form .form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  padding: 8px 2px;
  font-size: 0.92rem;
  font-family: var(--font);
  color: var(--text-body);
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
}
.modal-form .form-group input:focus,
.modal-form .form-group select:focus,
.modal-form .form-group textarea:focus { border-bottom-color: var(--gold); }

/* Date/time row */
.modal-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-submit {
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: background 0.25s ease, transform 0.2s ease;
}
.modal-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  text-align: center;
}
.modal-success.show { display: flex; }
.modal-success i { font-size: 2.5rem; color: #22c55e; }
.modal-success h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.modal-success p { font-size: 0.88rem; color: var(--text-muted); }

/* Also show WhatsApp quick link in footer of modal */
.modal-wa-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.modal-wa-alt a {
  color: #25d366;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.modal-wa-alt a:hover { text-decoration: underline; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 86px;
  right: 20px;
  z-index: 997;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: white; }

.cursor-spotlight { display: none; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-slide-right {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-slide-left {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-fade-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-fade-up.visible,
.animate-slide-right.visible,
.animate-slide-left.visible,
.animate-fade-scale.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img { height: 340px; }
  .about-badge { right: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  /* Top bar mobile: compact single row — phone + email, no extras */
  .top-bar { padding: 7px 0; }
  .top-bar-inner { flex-wrap: nowrap; justify-content: space-between; gap: 0; }
  .top-bar-left { gap: 0; flex-wrap: nowrap; }
  .top-bar-item.hide-mobile { display: none; }
  .top-bar-socials { display: none; }

  /* Navbar: hide links on mobile */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hamburger animated when open */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero: stack vertically + center single CTA */
  .hero { min-height: auto; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-text-col { padding: 40px 24px 36px; align-items: center; text-align: center; }
  .hero-text-inner { max-width: 100%; }
  .hero-text-col::after { display: none; }
  .hero-img-col { min-height: 240px; }
  .hero-gold-line { margin: 12px auto 16px; }
  .hero-btns { justify-content: center; }

  /* Stats */
  .hero-stats-inner { flex-wrap: wrap; gap: 12px; padding: 8px 0; }
  .stat { padding: 0 12px; }
  .stat-num { font-size: 1.4rem; }
  .stat-divider { display: none; }

  /* Trust bar: wrap nicely */
  .trust-inner { gap: 10px; justify-content: center; }
  .trust-item { font-size: 0.72rem; gap: 5px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-photo { aspect-ratio: 16/9; }

  /* Instagram */
  .ig-embed-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 100%; min-width: 100%; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 40px 20px 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }

  /* Show FAB */
  /* FAB always visible — no change needed here */

  .section { padding: 52px 0; }
  .container { padding: 0 18px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.65rem; }
  .hero-badge { font-size: 0.65rem; }
  .trust-inner { gap: 8px; }
  .trust-item span { display: none; } /* icon only on very small screens */
  .trust-item i { opacity: 1; font-size: 1.1rem; }
  .modal-datetime { grid-template-columns: 1fr; }
  .nav-inner { height: 64px; }
  .logo-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .logo-main { font-size: 0.95rem; }
  .logo-sub { font-size: 0.58rem; }
}

/* Hide hamburger on large screens */
@media (min-width: 1001px) {
  .hamburger { display: none; }
  .nav-cta { display: inline-flex; }
}


/* ============================================================
   ADDED — logo image, outline btn, team, concepts, reels, locations
   ============================================================ */

/* Logo as image (gold monogram) */
.logo-icon img { width: 30px; height: auto; }
.navbar .logo-icon { background: var(--navy); border-color: var(--navy); }
.footer-brand .logo-icon { background: transparent; }
.footer-brand .logo-icon img { filter: none; }

/* Outline button on light panels (hero secondary) */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,168,76,0.06);
}

/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 12px rgba(20,42,32,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--navy); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 16px 18px 20px; border-top: 3px solid var(--gold); }
.team-info strong { display: block; color: var(--navy); font-size: 1.02rem; font-weight: 700; }
.team-info span { display: block; color: var(--text-muted); font-size: 0.82rem; margin-top: 3px; }

/* ---------- SERVICE CONCEPTS (3 pillars) ---------- */
.concepts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 56px; }
.concept-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 14px rgba(20,42,32,0.08); display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.concept-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.concept-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.concept-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.concept-card:hover .concept-img img { transform: scale(1.06); }
.concept-num {
  position: absolute; top: 14px; left: 14px; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: #fff; font-weight: 800; border-radius: 10px;
  font-size: 1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.22);
}
.concept-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.concept-body h3 { color: var(--navy); font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.concept-body p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 14px; }
.concept-list { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.concept-list li { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; color: var(--navy); font-weight: 500; }
.concept-list li i { color: var(--gold); font-size: 0.8rem; }
.treat-subtitle {
  text-align: center; font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 800;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 36px;
}

/* ---------- REELS + COMMENTS ---------- */
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.reel-item { display: flex; flex-direction: column; gap: 16px; }
.ig-embed-wrap {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 14px rgba(20,42,32,0.08); min-height: 430px;
}
.reel-comment {
  margin: 0; background: var(--white); border-radius: var(--radius);
  border-left: 4px solid var(--gold); padding: 18px 20px; box-shadow: 0 2px 12px rgba(20,42,32,0.06);
}
.reel-stars { color: var(--gold); font-size: 0.78rem; margin-bottom: 8px; display: flex; gap: 2px; }
.reel-comment blockquote { font-size: 0.9rem; color: var(--text-body); font-style: italic; line-height: 1.6; margin-bottom: 10px; }
.reel-comment figcaption { font-size: 0.76rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- LOCATIONS ---------- */
.locations-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: stretch; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; background: var(--navy); }
.location-map iframe { display: block; width: 100%; height: 100%; min-height: 380px; }
.location-cards { display: flex; flex-direction: column; gap: 20px; }
.location-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: 0 2px 12px rgba(20,42,32,0.07); display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--border); transition: box-shadow var(--transition), transform var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.location-icon {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px;
  background: rgba(201,168,76,0.12); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.location-body { display: flex; flex-direction: column; gap: 5px; }
.location-body strong { color: var(--navy); font-size: 1.05rem; font-weight: 700; }
.location-body span { color: var(--text-body); font-size: 0.9rem; }
.location-body .loc-hours { color: var(--text-muted); font-size: 0.82rem; }
.loc-link {
  color: var(--gold-dark); font-weight: 700; font-size: 0.84rem; text-transform: uppercase;
  letter-spacing: 0.04em; margin-top: 6px; display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--transition);
}
.loc-link:hover { color: var(--gold); }

/* ---------- RESPONSIVE (added sections) ---------- */
@media (max-width: 1000px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .concepts-grid { grid-template-columns: 1fr; gap: 22px; }
  .reels-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-info { padding: 12px 12px 16px; }
  .team-info strong { font-size: 0.88rem; }
  .team-info span { font-size: 0.72rem; }
  .concept-body { padding: 18px 18px 22px; }
}


/* ---------- BLOG ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: 0 2px 12px rgba(20,42,32,0.07); border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-cat { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); margin-bottom: 14px; }
.post-card h2 { font-size: 1.16rem; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.post-card p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 20px; }
.post-soon { margin-top: auto; align-self: flex-start; background: rgba(201,168,76,0.12); color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.3); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 50px; }
@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SEO INNER PAGES + DROPDOWN NAV + EDITORIAL (hybrid)
   ============================================================ */

/* ---- Dropdown nav ---- */
.nav-dd { position: relative; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; font: inherit; }
.nav-dd-toggle i { font-size: 0.66rem; transition: transform 0.2s ease; }
.nav-dd:hover .nav-dd-toggle i { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: 100%; left: 0; min-width: 232px; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; z-index: 1100; }
.nav-dd-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu a { display: block; padding: 10px 13px; border-radius: 9px; font-size: 0.85rem; font-weight: 500; color: var(--navy); white-space: nowrap; }
.nav-dd-menu a:hover { background: rgba(201,168,76,0.1); color: var(--gold-dark); }

/* mobile menu section headers + sub items */
.mobile-head { display: block; padding: 14px 0 4px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dark); }
.mobile-sub { padding-left: 14px; font-size: 0.92rem; opacity: 0.92; }

/* ---- Page hero (inner pages) ---- */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; padding: 66px 0 58px; position: relative; }
.page-hero .container { max-width: 920px; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.45); }
.page-hero h1 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(2rem, 4.4vw, 3.05rem); font-weight: 600; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.01em; }
.page-lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: rgba(255,255,255,0.85); max-width: 660px; margin-bottom: 26px; line-height: 1.6; }
.page-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Prose content ---- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 600; color: var(--navy); margin: 40px 0 14px; line-height: 1.22; }
.prose > h2:first-child { margin-top: 0; }
.prose p { font-size: 1.02rem; color: var(--text-body); margin-bottom: 16px; line-height: 1.75; }
.prose-list { margin: 6px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.prose-list li { position: relative; padding-left: 30px; color: var(--text-body); font-size: 1rem; line-height: 1.6; list-style: none; }
.prose-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--gold); position: absolute; left: 0; top: 3px; font-size: 0.8rem; }

/* ---- FAQ accordion ---- */
.faq { margin-top: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; background: #fff; }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "\2b"; color: var(--gold); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 22px 20px; }
.faq-a p { color: var(--text-body); line-height: 1.7; margin: 0; }

/* ---- Related ---- */
.related-sec { padding: 56px 0; }
.related-title { text-align: center; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.5rem; color: var(--navy); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.related-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; font-weight: 600; color: var(--navy); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.related-card:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
.related-card i { color: var(--gold); }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: #fff; padding: 52px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.82); }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Price table ---- */
.price-table { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin: 8px 0 16px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: #fafbfc; }
.price-row span { color: var(--navy); font-weight: 600; }
.price-row strong { color: var(--gold-dark); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.04em; }
.price-note { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25); border-radius: 12px; padding: 14px 18px; font-size: 0.92rem; color: var(--text-body); margin-top: 6px; }
.price-note i { color: var(--gold-dark); margin-right: 6px; }

@media (max-width: 760px) {
  .related-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Homepage: concept link, problems grid, editorial serif ---- */
.concept-link { margin-top: 14px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-dark); font-weight: 700; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.04em; }
.concept-link i { transition: transform 0.2s ease; }
.concept-link:hover { color: var(--gold); }
.concept-link:hover i { transform: translateX(4px); }

.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.problem-link { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; color: var(--navy); font-weight: 600; font-size: 1.02rem; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.problem-link > i:first-child { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(201,168,76,0.12); color: var(--gold-dark); border-radius: 11px; font-size: 1.05rem; }
.problem-link span { flex: 1; }
.problem-link .arr { color: var(--gold); font-size: 0.85rem; transition: transform 0.2s ease; }
.problem-link:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.problem-link:hover .arr { transform: translateX(4px); }
@media (max-width: 900px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .problems-grid { grid-template-columns: 1fr; } }

/* Editorial hybrid: serif display headings */
.hero-title, .section-title, .services-section-title, .gallery-hero h1 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }

/* ============================================================
   3-PILLAR HUBS + dropdown hub link + premium spacing
   ============================================================ */
.dd-hub { display: block; padding: 9px 13px; margin-bottom: 6px; border-radius: 9px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gold-dark); border-bottom: 1px solid var(--border); }
.dd-hub:hover { background: rgba(201,168,76,0.1); }
.mobile-pillar { font-weight: 800 !important; color: var(--gold-dark) !important; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem !important; padding-top: 16px !important; }

.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 10px 0 8px; }
.hub-card { display: flex; flex-direction: column; justify-content: space-between; gap: 18px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; min-height: 118px; }
.hub-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.2rem; color: var(--navy); }
.hub-card-cta { color: var(--gold-dark); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 8px; }
.hub-card-cta i { transition: transform 0.2s ease; }
.hub-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hub-card:hover .hub-card-cta i { transform: translateX(4px); }
.hub-cond-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 10px 0; }
.hub-cond { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 11px; padding: 15px 18px; color: var(--navy); font-weight: 600; transition: 0.2s ease; }
.hub-cond i { color: var(--gold); transition: transform 0.2s ease; }
.hub-cond:hover { border-color: var(--gold); color: var(--gold-dark); }
.hub-cond:hover i { transform: translateX(4px); }
@media (max-width: 700px) { .hub-grid, .hub-cond-grid { grid-template-columns: 1fr; } }

/* Premium spacing: more breathing room */
.section { padding: 104px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* nav fit with 3 long pillar labels */
.nav-link { white-space: nowrap; }
@media (max-width: 1240px) { .nav-links { gap: 0; } .nav-link { padding: 8px 10px; font-size: 0.8rem; } }

/* ============================================================
   CINEMATIC HERO + FULL-WIDTH CONCEPT ROWS
   ============================================================ */
.hero--cinematic {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.hero--cinematic .hero-inner { max-width: 720px; padding: 90px 0; }
.hero--cinematic .hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28);
  color: #fff; padding: 8px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 26px;
}
.hero--cinematic .hero-badge i { color: var(--gold-light); }
.hero--cinematic .hero-title { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.08; margin-bottom: 4px; }
.hero--cinematic .hero-title .accent-word { color: var(--gold-light); }
.hero--cinematic .hero-gold-line { width: 80px; height: 3px; background: var(--gold); border-radius: 3px; margin: 22px 0; }
.hero--cinematic .hero-desc { color: rgba(255,255,255,0.88); font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.7; max-width: 560px; margin-bottom: 32px; }
.hero--cinematic .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 768px) { .hero--cinematic { min-height: auto; padding: 40px 0; } .hero--cinematic .hero-inner { padding: 60px 0; } }

/* full-width concept rows */
.services-concepts { padding: 104px 0 0; background: #fff; }
.services-concepts .section-header { margin-bottom: 60px; }
.concept-row { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: #fff; }
.concept-row.reverse { background: var(--bg); }
.concept-row-img { min-height: 480px; background-size: cover; background-position: center; }
.concept-row.reverse .concept-row-img { order: 2; }
.concept-row-text { padding: 76px clamp(28px, 6vw, 92px); display: flex; flex-direction: column; justify-content: center; }
.concept-row-num { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.concept-row-text h3 { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
.concept-row-text p { color: var(--text-body); font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; }
.concept-row-text .concept-list { margin: 0 0 28px; }
.concept-row-text .btn { align-self: flex-start; }
@media (max-width: 880px) {
  .concept-row { grid-template-columns: 1fr; }
  .concept-row.reverse .concept-row-img { order: 0; }
  .concept-row-img { min-height: 260px; }
  .concept-row-text { padding: 48px 24px; }
}


/* ============================================================
   LOGO IMAGE + iPHONE DOUBLE-TAP FIX + FOUNDER SECTION
   ============================================================ */
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 46px; width: auto; display: block; }
.footer .logo-img { height: 54px; }
@media (max-width: 600px) { .logo-img { height: 38px; } }

/* iPhone: stop double-tap zoom (keeps pinch-zoom) */
html { -webkit-text-size-adjust: 100%; }
body { touch-action: manipulation; }

/* Founder / Instagram */
.founder-grid { display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.founder-photo { position: relative; }
.founder-photo img { width: 100%; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-lg); }
.founder-ig-badge { position: absolute; bottom: 16px; left: 16px; background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%); color: #fff; font-weight: 700; padding: 9px 16px; border-radius: 50px; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 6px 18px rgba(214,41,118,0.35); }
.founder-ig-badge i { font-size: 1.05rem; }
.founder-text p { font-size: 1.06rem; line-height: 1.8; color: var(--text-body); margin-bottom: 26px; }
.founder-cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 820px) { .founder-grid { grid-template-columns: 1fr; } .founder-photo img { max-height: 440px; object-fit: cover; object-position: center top; } }

/* ===== Mobile nav accordion (collapsible categories) ===== */
.mobile-pillar-toggle { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.mobile-chev { font-size: .7rem; opacity: .55; transition: transform .3s ease; margin-left: auto; }
.mobile-pillar-toggle.open .mobile-chev { transform: rotate(180deg); }
.mobile-menu .mobile-sub { display: none; }
.mobile-menu .mobile-sub.show { display: block; }
