:root {
  --navy: #0c1339;
  --navy-deep: #070b24;
  --navy-soft: #141b4a;
  --gold: #b3872c;
  --gold-light: #d9b869;
  --cream: #faf7ef;
  --ink: #1b1d2b;
  --muted: #5c6079;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(7, 11, 36, 0.16);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
}
.eyebrow.center { justify-content: center; text-align: center; }
.eyebrow.center::after {
  content: "";
  display: block;
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex-shrink: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.section-title.center { text-align: center; }
.section-lede {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-lede.center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--navy-deep); color: var(--gold-light); border-color: var(--navy-deep); }
.btn-ghost {
  color: var(--navy);
  border-color: rgba(12, 19, 57, 0.25);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(12, 19, 57, 0.04); }
.btn-outline {
  border-color: var(--gold);
  color: var(--navy);
}
.btn-outline:hover { background: var(--gold); color: var(--navy-deep); }
.btn-outline-dark {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
  width: 100%;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(7, 11, 36, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}
.brand img { height: 46px; width: auto; border-radius: 6px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: flex-end;
}
.main-nav a {
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold-light); }
.nav-cta { white-space: nowrap; padding: 11px 22px; font-size: 0.85rem; border-color: var(--gold); color: var(--gold-light); }
.nav-cta:hover { background: var(--gold); color: var(--navy-deep); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.16), transparent 45%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.2;
  margin: 0 0 22px;
  font-weight: 700;
}
.hero-lede {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(250, 247, 239, 0.82);
  margin: 0 0 34px;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.hero-actions .btn-ghost { color: var(--cream); border-color: rgba(250,247,239,0.35); }
.hero-actions .btn-ghost:hover { background: rgba(250,247,239,0.08); border-color: var(--gold-light); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; font-size: 0.92rem; color: rgba(250,247,239,0.75); }
.hero-meta span { display: inline-flex; align-items: center; gap: 9px; }
.hero-meta .icon { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  border-radius: 22px;
  z-index: 0;
}
.hero-photo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow);
  aspect-ratio: 1.13 / 1;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(88%) contrast(1.03); }
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(12,19,57,0) 55%, rgba(7,11,36,0.55) 100%);
  pointer-events: none;
}

/* ---------- SEGMENTS ---------- */
.segments { padding: 84px 0; background: var(--cream); }
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.segment-card {
  background: var(--white);
  border-radius: 6px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(12,19,57,0.1);
  border-top: 2px solid var(--navy);
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.segment-card:hover { border-top-color: var(--gold); }
.segment-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  margin-bottom: 20px;
}
.segment-icon svg { width: 24px; height: 24px; color: var(--navy); }
.segment-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.segment-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; margin: 0; }

/* ---------- ABOUT ---------- */
.about { padding: 100px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; margin-bottom: 34px; }
.about-media::before {
  content: "";
  position: absolute;
  inset: -22px -22px 22px 22px;
  border: 1.5px solid var(--gold);
  border-radius: 22px;
  z-index: 0;
}
.about-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(88%) contrast(1.03); }
.about-photo-accent {
  position: absolute;
  z-index: 2;
  bottom: -34px;
  right: -34px;
  width: 42%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 16px 34px rgba(7,11,36,0.25);
}
.about-photo-accent img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(88%) contrast(1.03); }
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 18px;
}
.about-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.credential-line {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 7px 16px;
  border-radius: 4px;
  margin: 0 0 22px;
}
.about-text p { color: var(--muted); line-height: 1.8; font-size: 1.02rem; margin: 0 0 18px; }
.about-text blockquote {
  margin: 30px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 10px 10px 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.6;
}

/* ---------- AREAS / TABS ---------- */
.areas { padding: 100px 0; background: var(--cream); }
.tabs { max-width: 900px; margin: 0 auto; }
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.tab-btn {
  background: var(--white);
  border: 1.5px solid rgba(12,19,57,0.12);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: 3px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-btn:hover { border-color: var(--gold); }
.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-light);
}
.tab-panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(12,19,57,0.06);
}
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tab-intro { color: var(--navy); font-weight: 600; margin: 0 0 20px; font-size: 1.02rem; }
.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.check-list.two-col { grid-template-columns: repeat(2, 1fr); }
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.98rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.check-list li::after {
  content: "✓";
  position: absolute;
  left: 3.5px;
  top: 2px;
  font-size: 11px;
  color: var(--navy-deep);
  font-weight: 700;
}

/* ---------- COMMITMENT ---------- */
.commitment {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--cream);
  padding: 90px 0;
}
.commitment-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.commitment h2 {
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 26px;
  position: relative;
  padding-bottom: 20px;
}
.commitment h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.commitment p { line-height: 1.85; color: rgba(250,247,239,0.85); font-size: 1.04rem; margin: 0 0 16px; }

/* ---------- PROCESS ---------- */
.process { padding: 100px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.process-card {
  background: var(--white);
  border: 1px solid rgba(12,19,57,0.1);
  border-radius: 6px;
  padding: 34px 26px;
  position: relative;
  transition: border-color 0.2s ease;
}
.process-card:hover { border-color: var(--gold); }
.process-number {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  margin-bottom: 18px;
}
.process-card h3 { color: var(--navy); font-size: 1.08rem; margin: 0 0 10px; font-family: var(--serif); }
.process-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* ---------- FEEDBACK ---------- */
.feedback { padding: 100px 0; background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto 44px;
}
.testimonials-grid:empty { display: none; margin: 0; }
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(12,19,57,0.1);
  border-top: 2px solid var(--gold);
  border-radius: 6px;
  padding: 30px 26px;
}
.testimonial-quote {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.testimonial-text {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 18px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}
.testimonial-area {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 3px;
}

.feedback-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(12,19,57,0.1);
  border-radius: 6px;
  padding: 48px 44px;
}
.feedback-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--navy);
  margin: 0 auto 22px;
}
.feedback-icon svg { width: 24px; height: 24px; }
.feedback-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.3rem;
  margin: 0 0 14px;
}
.feedback-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
  margin: 0 0 28px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner { background: var(--cream); padding: 0 0 100px; }
.cta-inner {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-media { height: 100%; min-height: 340px; position: relative; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(88%) contrast(1.03); }
.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--navy-deep) 100%);
}
.cta-text { padding: 48px 50px; color: var(--white); }
.cta-text h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 16px; color: var(--gold-light); }
.cta-text p { color: rgba(250,247,239,0.8); margin: 0 0 28px; line-height: 1.6; }

/* ---------- CONTACT ---------- */
.contact { padding: 100px 0 90px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact h2 { font-family: var(--serif); color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0 0 6px; }
.contact-subtitle { color: var(--gold); font-weight: 600; margin: 0 0 26px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-list li { display: flex; gap: 14px; align-items: center; color: var(--muted); line-height: 1.5; }
.contact-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form h3 { font-family: var(--serif); color: var(--navy); margin: 0 0 6px; font-size: 1.2rem; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; color: var(--navy); font-weight: 600; }
.contact-form input, .contact-form textarea {
  font-family: var(--sans);
  padding: 13px 15px;
  border-radius: 10px;
  border: 1.5px solid rgba(12,19,57,0.14);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note { font-size: 0.78rem; color: var(--muted); margin: 0; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250,247,239,0.7);
  padding: 50px 0 30px;
  text-align: center;
}
.footer-logo { height: 54px; width: auto; margin: 0 auto 18px; border-radius: 6px; }
.footer-inner p { margin: 4px 0; font-size: 0.92rem; }
.footer-small { font-size: 0.82rem !important; color: rgba(250,247,239,0.5); }
.footer-social { font-size: 0.84rem !important; margin-top: 14px !important; }
.footer-social a { color: var(--gold-light); border-bottom: 1px solid rgba(241,217,138,0.3); }
.footer-social a:hover { border-bottom-color: var(--gold-light); }
.contact-list a { color: var(--navy); font-weight: 600; border-bottom: 1px solid rgba(212,175,55,0.4); }
.contact-list a:hover { border-bottom-color: var(--gold); }
.footer-copy { margin-top: 18px !important; font-size: 0.78rem !important; color: rgba(250,247,239,0.4); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 600;
}
.whatsapp-float a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.whatsapp-float a:hover { transform: scale(1.08); }

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 360px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 380px; margin: 0 auto; }
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-media { min-height: 260px; }
  .contact-inner { grid-template-columns: 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
  }
  .site-header.nav-open .nav-cta { margin-top: 6px; }
  .process-grid { grid-template-columns: 1fr; }
  .tabs-nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .tab-btn { white-space: nowrap; }
  .tab-panel { padding: 26px; }
}
