*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8892B;
  --gold-light: #D4A94A;
  --gold-pale: #F5EDD7;
  --navy: #1A2340;
  --navy-mid: #243058;
  --navy-light: #2E3E6E;
  --cream: #FAF8F4;
  --off-white: #F2EFE9;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --border: rgba(184,137,43,0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

html { font-size: 100%; }


/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(26,35,64,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,137,43,0.25);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.nav-logo span:first-child {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.nav-logo span:last-child {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 12px !important;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s;
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ── MOBILE MENU IMPROVEMENTS ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy);
  padding: 24px 5%;
  z-index: 999;
  border-top: 1px solid rgba(184,137,43,0.2);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu a:last-child { border-bottom: none; }

/* Touch-friendly targets for mobile */
@media (max-width: 768px) {
  /* Ensure min 44x44 touch targets */
  .btn-primary,
  .btn-outline,
  .btn-form,
  .mobile-menu a,
  .nav-links a,
  a[href*="wa.me"],
  .social-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Improve mobile menu spacing */
  .mobile-menu {
    top: 64px;
    padding: 20px 4%;
  }
  .mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
  }
  
  /* Better input targets */
  .form-row input,
  .form-row select,
  .form-row textarea {
    min-height: 44px;
  }
  
  /* Hamburger menu touch target */
  .hamburger {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,137,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-ornament {
  position: absolute;
  top: 120px; right: 5%;
  width: 380px; height: 380px;
  border: 2px solid rgba(184,137,43,0.12);
  border-radius: 50%;
  pointer-events: none;
  background-image: url("IMAGENS/logo aberlado.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90% auto;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 5px solid rgba(184,137,43,0.08);
  border-radius: 50%;
}

.hero-content { max-width: 700px; position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 36px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: nowrap;
}

.stat-item { }
.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--gold-light);
  line-height: 1;
  font-weight: 600;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── SECTION BASE ── */
section { padding: 100px 5%; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 48px;
}

.pillar p {
  font-size: 15px;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}
.about-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--off-white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  text-align: center;
}
.about-img-placeholder svg { opacity: 0.3; }

.about-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,35,64,0.2);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.about-text .section-title { color: var(--navy); }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.pillar {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--cream);
}
.pillar-icon {
  font-size: 22px;
  margin-bottom: 8px;
}
.pillar h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.pillar p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FOUNDER ── */
.founder {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background: rgba(184,137,43,0.03);
}

.founder-inner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,137,43,0.15);
  overflow: hidden;
  position: relative;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.founder-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.2);
  text-align: center;
}
.founder-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

.founder-content .section-eyebrow { }
.founder-content .section-title { color: var(--white); }

.founder-name {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.founder-title {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.founder-bio {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 32px;
}

.founder-inner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.founder-bio {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 32px;
}

.founder-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(184,137,43,0.15);
  border-radius: 2px;
  background: rgba(255,255,255,0.05);
  min-height: 110px;
}
.credential-icon {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.credential-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.credential-text strong { color: var(--white); font-weight: 600; }

.hero-note {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 18px 20px;
}

.about-advantage {
  margin-top: 32px;
  padding: 24px 22px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.94);
  font-size: 1rem;
  line-height: 1.7;
}

.about-advantage strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

/* ── SERVICES ── */
.services { background: var(--cream); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(184,137,43,0.2);
  transform: translateY(-4px);
}

.service-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: -10px;
  font-weight: 600;
}
.service-icon { font-size: 28px; margin-bottom: 16px; }
.service-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── SOCIAL PROOF ── */
.proof { background: var(--white); }
.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 64px;
}
.proof-num-item {
  background: var(--cream);
  padding: 40px 32px;
  text-align: center;
}
.proof-num-value {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-num-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.testimonial-card {
  background: var(--cream);
  padding: 32px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.video-thumb {
  aspect-ratio: 16/9;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s;
}
.video-thumb:hover { opacity: 0.85; }
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-thumb-large {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.video-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.award-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gold-pale);
  border: 1px solid rgba(184,137,43,0.3);
  border-radius: 2px;
  margin-top: 16px;
}
.award-icon { font-size: 28px; flex-shrink: 0; }
.award-text { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.award-text strong { color: var(--navy); display: block; font-size: 14px; margin-bottom: 2px; }

.contact { background: var(--navy); }
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact .section-title { color: var(--white); }
.contact .section-lead { color: rgba(255,255,255,0.5); }

.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(184,137,43,0.15);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(184,137,43,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* Icon colors: vivid brand tones */
.contact-item-icon svg { display:block; width:28px; height:28px; }
.icon-location { color: var(--gold); }
.icon-whatsapp { color: #25D366; }
.icon-email { color: var(--gold); }
.icon-instagram { color: #E1306C; }

.contact-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.contact-item-value a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.contact-item-value a:hover { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,137,43,0.2);
  padding: 60px 5% 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 16px;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold-light); }

.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ── TEAM ── */
.team { background: var(--off-white); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
}
.team-card {
  background: var(--white);
  padding: 32px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 20px;
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-light);
  flex-shrink: 0;
  border: 2px solid rgba(184,137,43,0.2);
}
.team-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.team-oab {
  font-size: 12px;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 500;
}

/* ── RESPONSIVE ── */

/* Tablets: 1024px and below */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; max-width: 420px; }
  .about-badge { right: 0; }
  .founder-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo { max-width: 360px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .proof-numbers { grid-template-columns: repeat(2, 1fr); }
  .proof-content { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* Landscape tablets: 768px to 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  section { padding: 80px 5%; }
  .hero { padding: 100px 5% 60px; }
}

/* Tablets and large phones: 768px and below */
@media (max-width: 768px) {
  section { padding: 60px 5%; }
  
  /* Navigation */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  /* Hero section */
  .hero { 
    padding: 80px 5% 50px;
    min-height: auto;
  }
  .hero-ornament { 
    display: none;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { 
    font-size: clamp(28px, 6vw, 44px);
    line-height: 1.2;
  }
  .hero-eyebrow { font-size: 10px; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-actions { 
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 13px;
  }
  
  /* Hero stats */
  .hero-stats { 
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
  }
  .stat-item { flex: 1; min-width: calc(50% - 10px); }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 10px; }
  
  /* About */
  .about-inner { max-width: 100%; }
  .about-badges { position: static; margin-top: 20px; }
  .about-pillars { grid-template-columns: 1fr; gap: 12px; }
  .pillar { padding: 16px; }
  
  /* Founder */
  .founder-inner { gap: 32px; }
  .founder-photo { max-width: 100%; }
  .founder-credentials { gap: 8px; }
  .credential { padding: 12px; gap: 10px; }
  
  /* Services */
  .services-grid { 
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card { 
    padding: 24px 20px;
    overflow: hidden;
  }
  .service-num { font-size: 36px; margin-bottom: -5px; }
  .service-icon { font-size: 24px; margin-bottom: 12px; }
  .service-title { font-size: 15px; }
  .service-desc { font-size: 13px; }
  
  /* Proof numbers */
  .proof-numbers { 
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-bottom: 40px;
  }
  .proof-num-item { 
    padding: 24px 16px;
  }
  .proof-num-value { font-size: 32px; }
  .proof-num-label { font-size: 11px; }
  
  /* Proof content */
  .proof-content { 
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .video-grid { grid-template-columns: 1fr; }
  .video-thumb-large { grid-column: 1 / -1; }
  .testimonial-card { padding: 20px; }
  .testimonial-text { font-size: 14px; }
  
  /* Contact */
  .contact-inner { gap: 32px; }
  .contact-info { gap: 12px; }
  .contact-item { 
    padding: 16px 12px;
    gap: 12px;
  }
  .contact-item-icon { width: 36px; height: 36px; }
  .contact-form { 
    padding: 24px 16px;
    background: rgba(255,255,255,0.05);
  }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-row { margin-bottom: 16px; }
  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
  .form-row label { font-size: 11px; margin-bottom: 6px; }
  .btn-form { 
    padding: 16px 20px;
    font-size: 13px;
    margin-top: 8px;
  }
  
  /* Map */
  .map-section iframe { height: 300px; }
  
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { 
    flex-direction: column; 
    text-align: center;
    gap: 8px;
  }
  .footer-col h4 { font-size: 10px; margin-bottom: 12px; }
  .footer-col a { font-size: 12px; }
  
  /* Team */
  .team-grid { 
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .team-card { 
    padding: 20px;
    gap: 16px;
  }
  .team-avatar { width: 64px; height: 64px; font-size: 18px; }
  .team-name { font-size: 15px; }
.team-role { font-size: 13px; }
.team-oab { font-size: 13px; }  
  /* WhatsApp button */
  .whatsapp-float { 
    bottom: 20px; 
    right: 20px; 
    width: 56px; 
    height: 56px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* Small phones: 600px and below */
@media (max-width: 600px) {
  body { font-size: 14px; }
  section { padding: 50px 4%; }
  
  nav { 
    padding: 0 4%;
    height: 64px;
  }
  .nav-logo span:first-child { font-size: 14px; }
  .nav-logo span:last-child { font-size: 9px; }
  
  /* Hero */
  .hero { 
    padding: 70px 4% 40px;
    min-height: 100vh;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { 
    font-size: clamp(24px, 5vw, 36px);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero-eyebrow { 
    font-size: 9px; 
    margin-bottom: 12px;
    gap: 8px;
  }
  .hero-eyebrow::before { width: 24px; }
  .hero-sub { 
    font-size: 13px; 
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .hero-actions { 
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  
  /* Hero stats */
  .hero-stats { 
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    flex-direction: column;
  }
  .stat-item { width: 100%; }
  .stat-number { font-size: 24px; }
  .stat-label { font-size: 9px; }
  
  /* Section titles */
  .section-eyebrow { 
    font-size: 9px; 
    margin-bottom: 12px;
  }
  .section-eyebrow::before { width: 20px; }
  .section-title { font-size: clamp(20px, 5vw, 32px); }
  .section-lead { 
    font-size: 13px; 
    max-width: 100%;
    margin-bottom: 32px;
  }
  
  /* About */
  .about { padding: 50px 4%; }
  .about-inner { gap: 24px; }
  .about-img-frame { aspect-ratio: 4/5; }
  .about-badge { 
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    padding: 16px 20px;
  }
  .about-badge-num { font-size: 28px; }
  .about-badge-text { font-size: 9px; }
  .about-text .section-title { font-size: 24px; color: var(--navy); }
  .about-pillars { 
    grid-template-columns: 1fr; 
    gap: 12px;
    margin-top: 20px;
  }
  .pillar { 
    padding: 14px 12px;
    border-radius: 1px;
  }
  .pillar-icon { font-size: 20px; margin-bottom: 6px; }
  .pillar h4 { font-size: 13px; margin-bottom: 3px; }
  .pillar p { font-size: 12px; }
  
  /* Founder */
  .founder { padding: 50px 4%; }
  .founder-inner { gap: 24px; }
  .founder-photo { aspect-ratio: 3/4; }
  .founder-name { font-size: 28px; }
  .founder-title { font-size: 12px; margin-bottom: 20px; }
  .founder-bio { 
    font-size: 14px; 
    margin-bottom: 24px;
    line-height: 1.7;
  }
  .founder-credentials { gap: 10px; }
  .credential { 
    padding: 12px 10px; 
    gap: 10px;
    flex-direction: row;
  }
  .credential-icon { font-size: 16px; }
  .credential-text { font-size: 12px; line-height: 1.4; }
  
  /* Services */
  .services { padding: 50px 4%; }
  .services-header { margin-bottom: 40px; }
  .services-grid { 
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card { 
    padding: 20px 16px;
    border-radius: 1px;
  }
  .service-num { font-size: 32px; margin-bottom: -3px; }
  .service-icon { font-size: 22px; margin-bottom: 12px; }
  .service-title { font-size: 14px; font-weight: 600; }
  .service-desc { font-size: 12px; line-height: 1.6; }
  
  /* Proof */
  .proof { padding: 50px 4%; }
  .proof-inner { max-width: 100%; }
  .proof-numbers { 
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-bottom: 32px;
    border-radius: 1px;
  }
  .proof-num-item { 
    padding: 20px 12px;
  }
  .proof-num-value { 
    font-size: 28px;
    margin-bottom: 6px;
  }
  .proof-num-label { 
    font-size: 10px;
    line-height: 1.3;
  }
  
  .proof-content { gap: 24px; }
  .proof-label { 
    font-size: 10px;
    margin-bottom: 16px;
  }
  .testimonial-card { 
    padding: 16px;
    margin-bottom: 12px;
    border-left: 2px solid var(--gold);
  }
  .testimonial-stars { font-size: 12px; margin-bottom: 8px; }
  .testimonial-text { 
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .testimonial-author { font-size: 11px; }
  
  .video-grid { 
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .video-thumb { aspect-ratio: 16/9; }
  .video-thumb-large { aspect-ratio: 16/9; }
  .play-btn { width: 44px; height: 44px; font-size: 16px; }
  .video-label { font-size: 9px; bottom: 8px; left: 8px; }
  
  .award-badge { 
    flex-direction: column;
    padding: 16px 12px;
    gap: 12px;
    text-align: center;
    margin-top: 16px;
  }
  .award-icon { font-size: 24px; }
  .award-text { font-size: 12px; }
  .award-text strong { font-size: 13px; margin-bottom: 4px; }
  
  /* Contact */
  .contact { padding: 50px 4%; }
  .contact-inner { gap: 24px; }
  .contact .section-title { font-size: 24px; }
  .contact .section-lead { font-size: 13px; }
  .contact-info { gap: 10px; margin-top: 16px; }
  .contact-item { 
    padding: 14px 10px;
    gap: 10px;
    border-radius: 1px;
  }
  .contact-item-icon { 
    width: 32px; 
    height: 32px;
    border-radius: 1px;
  }
  .contact-item-icon svg { width: 24px; height: 24px; }
  .contact-item-label { font-size: 9px; margin-bottom: 2px; }
  .contact-item-value { font-size: 13px; }
  .contact-item-value a { font-size: 13px; }
  
  .contact-form { 
    padding: 20px 14px;
    border-radius: 1px;
  }
  .contact-form > p { 
    font-size: 16px;
    margin-bottom: 16px;
  }
  .form-row { margin-bottom: 14px; }
  .form-row label { 
    font-size: 10px;
    margin-bottom: 4px;
  }
  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 11px 12px;
    font-size: 16px;
    border-radius: 1px;
  }
  .form-row textarea { height: 100px; }
  .form-grid { gap: 12px; }
  .btn-form { 
    padding: 14px 16px;
    font-size: 12px;
    margin-top: 6px;
    border-radius: 1px;
  }
  
  /* Map */
  .map-section { padding: 0; width: 100%; }
  .map-section iframe { width: 100%; min-height: 420px; border-radius: 0; }
  
  /* Footer */
  footer { 
    padding: 40px 4% 24px;
    border-top: 1px solid rgba(184,137,43,0.15);
  }
  .footer-inner { max-width: 100%; }
  .footer-top { 
    grid-template-columns: 1fr; 
    gap: 24px;
    margin-bottom: 32px;
  }
  .footer-logo { 
    font-size: 18px;
    margin-bottom: 6px;
  }
  .footer-tagline { 
    font-size: 12px;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .social-links { gap: 8px; }
  .social-link { 
    width: 32px; 
    height: 32px;
  }
  .social-link svg { width: 14px; height: 14px; }
  
  .footer-col h4 { 
    font-size: 9px;
    margin-bottom: 10px;
  }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { font-size: 11px; }
  
  .footer-bottom { 
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding-top: 16px;
  }
  .footer-bottom p { 
    font-size: 10px;
    line-height: 1.4;
  }
  
  /* Team */
  .team { padding: 50px 4%; }
  .team-grid { max-width: 100%; }
  .team-card { 
    padding: 16px 12px;
    gap: 12px;
    border-radius: 1px;
  }
  .team-avatar { 
    width: 56px; 
    height: 56px;
    font-size: 16px;
  }
  .team-name { font-size: 13px; }
  .team-role { font-size: 10px; }
  .team-oab { font-size: 10px; margin-top: 2px; }
  
  /* WhatsApp button */
  .whatsapp-float { 
    bottom: 16px; 
    right: 16px;
    width: 52px; 
    height: 52px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Extra small phones: 380px and below */
@media (max-width: 380px) {
  section { padding: 40px 4%; }
  
  nav { 
    padding: 0 3%;
    height: 60px;
  }
  .nav-logo span:first-child { font-size: 12px; }
  .nav-logo span:last-child { font-size: 8px; }
  
  .hero h1 { 
    font-size: clamp(20px, 4vw, 28px);
    margin-bottom: 12px;
  }
  .hero-sub { 
    font-size: 12px;
    margin-bottom: 20px;
  }
  .hero-actions { gap: 8px; }
  .btn-primary, .btn-outline {
    padding: 10px 12px;
    font-size: 11px;
  }
  
  .hero-stats { 
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
  }
  .stat-number { font-size: 20px; }
  .stat-label { font-size: 8px; }
  
  .section-title { font-size: clamp(18px, 4.5vw, 28px); }
  .section-lead { font-size: 12px; }
  
  .service-card { padding: 16px 12px; }
  .service-icon { font-size: 20px; }
  .service-title { font-size: 13px; }
  .service-desc { font-size: 11px; }
  
  .proof-num-value { font-size: 24px; }
  
  .contact-form { padding: 16px 12px; }
  .contact-form > p { font-size: 14px; }
  
  .map-section iframe { height: 200px; }
  
  footer { padding: 32px 3% 16px; }
  .footer-bottom p { font-size: 9px; }
  
  .whatsapp-float { 
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
  }
}

/* ── OPTIMIZE FOR SMALL SCREENS ── */
@media (max-width: 600px) {
  /* Disable hover effects and add active states for touch devices */
  @media (hover: none) {
    .btn-primary:hover,
    .btn-outline:hover,
    .service-card:hover {
      transform: none;
      border-color: inherit;
    }
  }
}

/* Better spacing on very small devices */
@supports (display: grid) {
  @media (max-width: 500px) {
    html { font-size: 13px; }
  }
}

/* Improve readability on landscape orientation */
@media (max-height: 600px) and (orientation: landscape) {
  section { padding: 30px 5%; }
  .hero { 
    padding: 50px 5% 30px;
    min-height: auto;
  }
  .hero h1 { margin-bottom: 10px; }
  nav { height: 56px; }
}

/* Support for notched displays (iPhone X, etc.) */
@supports (padding: max(0px)) {
  @media (max-width: 768px) {
    nav { 
      padding-left: max(5%, env(safe-area-inset-left));
      padding-right: max(5%, env(safe-area-inset-right));
    }
    section { 
      padding-left: max(5%, env(safe-area-inset-left));
      padding-right: max(5%, env(safe-area-inset-right));
    }
    .whatsapp-float {
      bottom: max(20px, env(safe-area-inset-bottom));
      right: max(20px, env(safe-area-inset-right));
    }
  }
}
