*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B3A6B;
  --navy-light: #2E5FA3;
  --navy-pale: #D6E0F0;
  --navy-dark: #0D1F3C;
  --brown: #8B6340;
  --brown-light: #C9A87A;
  --brown-pale: #F0E8DC;
  --cream: #FAF8F3;
  --cream-dark: #EEE9E0;
  --dark: #0D1F3C;
  --mid: #5C4A32;
  --text: #2C2016;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ——— NAV ——— */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(250,248,243,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27,58,107,0.12);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--navy); color: #fff; }

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--navy);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(250,248,243,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27,58,107,0.12);
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(27,58,107,0.08);
  transition: color 0.3s;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { color: var(--navy); }
.mobile-menu .mobile-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 12px 20px !important;
  text-align: center;
  margin-top: 8px;
  border-bottom: none !important;
  border-radius: 0;
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27,58,107,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text { max-width: 520px; padding-bottom: 0; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--navy);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 10px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--navy);
  display: block;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}

.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
}

.hero-badge {
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--navy-pale);
  border: 1px solid rgba(27,58,107,0.2);
  padding: 6px 14px;
  display: inline-flex; align-items: center; gap: 6px;
}

.hero-desc {
  font-size: 0.9rem; line-height: 1.8;
  color: var(--mid); max-width: 420px;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}

.btn-primary {
  background: var(--navy); color: #fff;
  padding: 15px 36px;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--dark); }

.btn-secondary {
  color: var(--navy);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
  white-space: nowrap;
}
.btn-secondary:hover { gap: 14px; }
.btn-secondary::after { content: '→'; font-size: 1rem; }

/* ——— HERO FEATURE BOXES ——— */
.hero-features-wrapper {
  grid-column: 1 / -1;
  margin-top: 60px;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-box {
  background: var(--navy-dark);
  padding: 52px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 320px;
  justify-content: flex-start;
}
.feature-box:last-child { border-right: none; }
.feature-box:hover { background: var(--navy); }

.feature-icon-wrap {
  width: 72px; height: 72px; min-width: 72px;
  background: rgba(201,168,122,0.15);
  border: 1px solid rgba(201,168,122,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
}
.feature-icon-wrap i {
  font-size: 2rem;
  color: var(--brown-light);
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--brown-light);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.82rem; line-height: 1.72;
  color: rgba(255,255,255,0.55);
}

/* Hero image side */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  opacity: 0; animation: fadeIn 1.2s 0.5s forwards;
  padding-bottom: 60px;
}

.logo-frame img {
  width: 460px; height: 460px; object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 32px rgba(27,58,107,0.15));
}

/* ——— DIVIDER ——— */
.divider {
  display: flex; align-items: center; gap: 20px;
  padding: 0 60px; margin: 0 auto; max-width: 1200px;
}
.divider-line { flex: 1; height: 1px; background: rgba(27,58,107,0.2); }
.divider-icon {
  color: var(--navy); font-size: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.15em; font-style: italic;
  white-space: nowrap;
}

/* ——— AREAS ——— */
.areas {
  padding: 100px 60px; max-width: 1200px; margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 70px; }

.section-tag {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brown); display: block; margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; color: var(--dark); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--navy); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-card {
  background: var(--navy-dark);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: all 0.4s; cursor: default;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.area-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--brown-light);
  transition: width 0.4s;
}
.area-card:hover::after { width: 100%; }
.area-card:hover { background: var(--navy); }
.area-card:hover .area-name { color: var(--brown-light); }
.area-card:hover .area-list li { color: rgba(255,255,255,0.75); }

.area-symbol {
  width: 72px; height: 72px;
  background: rgba(201,168,122,0.12);
  border: 1px solid rgba(201,168,122,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.4s;
}
.area-card:hover .area-symbol { background: rgba(201,168,122,0.22); }

.area-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 16px; line-height: 1.3;
  transition: color 0.4s;
  text-transform: uppercase; letter-spacing: 0.06em;
}

.area-list {
  list-style: none; text-align: left; width: 100%;
}
.area-list li {
  font-size: 0.76rem; line-height: 1.65;
  color: rgba(255,255,255,0.5);
  padding: 3px 0 3px 16px;
  position: relative; transition: color 0.4s;
}
.area-list li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--brown-light); font-size: 1rem; line-height: 1.4;
}

/* ——— ABOUT ——— */
.about {
  background: var(--navy-dark); padding: 100px 60px;
  position: relative; overflow: hidden;
}
.about::before {
  content: 'JS'; position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30rem; font-style: italic;
  color: rgba(255,255,255,0.02); line-height: 1;
  pointer-events: none; user-select: none;
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.about-text .section-tag { text-align: left; }
.about-text .section-title { text-align: left; color: var(--cream); margin-bottom: 28px; }
.about-text p {
  font-size: 0.9rem; line-height: 1.9;
  color: rgba(250,248,243,0.65); margin-bottom: 20px;
}
.about-values { display: flex; flex-direction: column; gap: 28px; }
.value-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 28px; border-bottom: 1px solid rgba(201,168,122,0.15);
}
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 300; color: var(--brown-light); line-height: 1; min-width: 40px;
}
.value-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  color: var(--cream); font-weight: 500; margin-bottom: 8px;
}
.value-text { font-size: 0.82rem; line-height: 1.7; color: rgba(250,248,243,0.55); }

/* ——— CTA STRIP ——— */
.cta-strip {
  background: #C9A87A; padding: 60px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 3rem); font-weight: 300;
  color: #fff; margin-bottom: 12px;
}
.cta-strip p {
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
  margin-bottom: 36px; letter-spacing: 0.05em;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-strip .btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #C9A87A;
  padding: 15px 32px; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  font-family: 'Jost', sans-serif; font-weight: 600;
  transition: all 0.3s;
}
.cta-strip .btn-white:hover { background: var(--navy-dark); color: #fff; }
.cta-strip .btn-outline-white {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff; padding: 15px 32px; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; font-family: 'Jost', sans-serif;
  transition: all 0.3s;
}
.cta-strip .btn-outline-white:hover { background: rgba(255,255,255,0.2); }

/* ——— CONTACT ——— */
.contact { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .section-tag, .contact-info .section-title { text-align: left; }
.contact-info .section-title { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 20px; background: var(--cream-dark);
  border-left: 3px solid var(--navy);
}
.contact-icon {
  font-size: 1.1rem; min-width: 24px; margin-top: 2px;
  display: flex; align-items: center;
}
.contact-label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 4px;
}
.contact-value {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--dark);
  word-break: break-word;
}
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--navy); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 300; color: var(--dark); margin-bottom: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.67rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--cream-dark);
  border: 1px solid rgba(27,58,107,0.2); border-radius: 0;
  padding: 14px 16px; font-family: 'Jost', sans-serif;
  font-size: 0.88rem; color: var(--dark);
  outline: none; transition: border-color 0.3s; appearance: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--navy); color: #fff; border: none;
  padding: 16px 40px; font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
  align-self: flex-start; margin-top: 8px;
  width: 100%;
}
.form-submit:hover { background: var(--brown); }

/* ——— FOOTER ——— */
footer {
  background: var(--navy-dark); padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(201,168,122,0.15);
  gap: 20px;
}
footer .footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  letter-spacing: 0.15em; color: var(--brown-light); text-transform: uppercase;
}
footer .footer-copy {
  font-size: 0.75rem; color: rgba(250,248,243,0.3); letter-spacing: 0.08em;
  text-align: center;
}
footer .footer-oab {
  font-size: 0.75rem; color: rgba(201,168,122,0.6);
  letter-spacing: 0.08em; text-align: right;
}

/* ——— WHATSAPP FLOAT ——— */
.whatsapp-float {
  position: fixed;
  width: 60px; height: 60px;
  bottom: 28px; right: 28px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 1000;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* ——— ANIMATIONS ——— */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}

/* ——— Bootstrap Icons overrides ——— */
.area-symbol i { font-size: 2rem; color: var(--brown-light); }
.contact-icon i { font-size: 1.3rem; color: var(--navy); }
.hero-badge i { font-size: 0.88rem; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  .hero { padding: 110px 32px 0; gap: 32px; }
  .logo-frame img { width: 360px; height: 360px; }
  .areas { padding: 80px 32px; }
  .about { padding: 80px 32px; }
  .about-inner { gap: 60px; }
  .contact { padding: 80px 32px; }
  .contact-grid { gap: 48px; }
  .cta-strip { padding: 60px 40px; }
  footer { padding: 40px 32px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .mobile-menu { display: block; }

  /* HERO — single column */
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 20px 0;
    min-height: auto;
    gap: 0;
  }
  .hero::before { display: none; }

  /* Show logo on mobile — centered above text */
  .hero-visual {
    display: flex;
    order: -1;
    padding: 24px 0 0;
    justify-content: center;
  }
  .logo-frame img {
    width: 200px;
    height: 200px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
    padding: 24px 0 0;
  }

  .hero-eyebrow {
    justify-content: center;
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-subtitle { font-size: 1.2rem; }

  .hero-badges { justify-content: center; }

  .hero-desc {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 0.68rem;
    width: 100%;
    text-align: center;
  }

  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  /* Feature boxes — single column */
  .hero-features-wrapper { grid-column: 1; margin-top: 40px; }
  .hero-features { grid-template-columns: 1fr; }
  .feature-box {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 36px 24px;
    min-height: auto;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .feature-box:last-child { border-bottom: none; }
  .feature-icon-wrap { min-width: 56px; width: 56px; height: 56px; margin-bottom: 0; flex-shrink: 0; }
  .feature-icon-wrap i { font-size: 1.5rem; }

  /* DIVIDER */
  .divider { padding: 0 20px; }
  .divider-icon { font-size: 1rem; }

  /* AREAS */
  .areas { padding: 60px 20px; }
  .section-header { margin-bottom: 48px; }
  .areas-grid { grid-template-columns: 1fr; gap: 16px; }
  .area-card { padding: 28px 24px; }

  /* ABOUT */
  .about { padding: 60px 20px; }
  .about::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-text .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* CTA */
  .cta-strip { padding: 48px 20px; }
  .cta-strip h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-strip .btn-white,
  .cta-strip .btn-outline-white {
    justify-content: center;
    padding: 16px 24px;
    width: 100%;
  }

  /* CONTACT */
  .contact { padding: 60px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; align-self: stretch; }
  .contact-value { font-size: 0.9rem; }

  /* FOOTER */
  footer {
    padding: 32px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  footer .footer-oab { text-align: center; }

  /* WhatsApp float — smaller on mobile */
  .whatsapp-float {
    width: 52px; height: 52px;
    bottom: 20px; right: 20px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 420px)
═══════════════════════════════════════ */
@media (max-width: 420px) {
  .hero-title { font-size: 2.2rem; }
  .logo-frame img { width: 160px; height: 160px; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.18em; }
  .hero-badge { font-size: 0.68rem; padding: 5px 10px; }
  .section-title { font-size: 1.8rem; }
  .feature-box { padding: 28px 18px; }
}