/* ── TOKENS ── */
:root {
  --dark:     #0d1b2a;
  --dark-2:   #162234;
  --dark-3:   #1e2f42;
  --gold:     #c9a84c;
  --gold-lt:  #e0bf79;
  --cream:    #f5f0e8;
  --text:     #2c2c2c;
  --text-md:  #4a4a4a;
  --text-lt:  #7a7a7a;
  --white:    #ffffff;
  --border:   #e0d9cc;
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:0 12px 48px rgba(0,0,0,.13);
  --radius:   4px;
  --radius-lg:8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-sans); color: var(--text); background: var(--white); line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

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

.section { padding: 96px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn-gold  { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.45); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,255,255,.1); }
.btn-dark  { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.btn-outline-nav { background: transparent; color: var(--white); border-color: var(--gold); padding: 10px 22px; font-size: .85rem; }
.btn-outline-nav:hover { background: var(--gold); color: var(--dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,168,76,.35); }
.btn-full  { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
  padding: 0;
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-symbol { font-size: 1.8rem; color: var(--gold); line-height: 1; }
.logo-text   { display: flex; flex-direction: column; }
.logo-name   { font-family: var(--ff-serif); font-size: 1rem; font-weight: 700; letter-spacing: .02em; line-height: 1.2; }
.logo-sub    { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a {
  color: rgba(255,255,255,.85);
  padding: 12px 0;
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,24,35,1) 0%,
    rgba(10,24,35,.97) 35%,
    rgba(10,24,35,.55) 52%,
    rgba(10,24,35,.10) 65%,
    transparent 75%
  );
  z-index: 1;
}
.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.8) saturate(.9);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  display: flex;
  justify-content: flex-start;
}
.hero-text {
  max-width: 440px;
  padding: 80px 0;
}
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-title-top {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-family: var(--ff-sans);
}
.hero-title-divider {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 4px 0;
}
.hero-title-bottom {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 36px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 48px;
  text-align: center;
}
.trust-num {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label { font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; margin-top: 6px; }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,.12); }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; }
.about-decoration {
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: .35;
}
.about-inner-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-inner-img img { width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-num { display: block; font-family: var(--ff-serif); font-size: 2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.badge-txt { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 4px; display: block; }

/* SECTION HEADERS */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-lt); }
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-subtitle { color: var(--text-md); max-width: 580px; margin: 0 auto; }
.section-subtitle.light { color: rgba(255,255,255,.65); }

.about-text .section-title { margin-top: 8px; }
.about-text p { color: var(--text-md); margin-bottom: 16px; }
.about-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text-md); }
.check { color: var(--gold); font-size: 1rem; font-weight: 700; }

/* ── AREAS ── */
.areas { background: var(--dark); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.area-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 40px 32px;
  transition: all .25s ease;
  cursor: default;
}
.area-card:hover {
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.25);
  transform: translateY(-2px);
}
.area-icon { font-size: 2rem; margin-bottom: 20px; }
.area-card h3 { font-family: var(--ff-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.area-card p  { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.area-link { font-size: .82rem; font-weight: 600; color: var(--gold); letter-spacing: .04em; transition: letter-spacing .2s; }
.area-link:hover { letter-spacing: .08em; }

/* ── TEAM ── */
.team { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo { overflow: hidden; }
.team-photo img { width: 100%; height: 260px; object-fit: cover; object-position: top; transition: transform .4s; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 20px; }
.team-info h3 { font-family: var(--ff-serif); font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: .8rem; color: var(--gold); font-weight: 600; letter-spacing: .04em; margin-bottom: 4px; }
.team-spec { font-size: .78rem; color: var(--text-lt); }

/* ── NEWS ── */
.news { background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-img { position: relative; overflow: hidden; }
.news-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.news-body { padding: 24px; }
.news-date { font-size: .77rem; color: var(--text-lt); letter-spacing: .03em; }
.news-body h3 { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--dark); margin: 10px 0 10px; line-height: 1.4; }
.news-body p  { font-size: .86rem; color: var(--text-md); margin-bottom: 16px; }
.news-link { font-size: .82rem; font-weight: 600; color: var(--gold); }
.news-link:hover { text-decoration: underline; }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80') center/cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,24,35,.93) 0%, rgba(20,45,65,.88) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ── TESTIMONIOS ── */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testi-card p { font-size: .92rem; color: var(--text-md); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--dark); }
.testi-author span  { font-size: .78rem; color: var(--text-lt); }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-info .section-title { margin-top: 8px; }
.contact-info > p { color: var(--text-md); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-details li { display: flex; align-items: flex-start; gap: 14px; font-size: .9rem; color: var(--text-md); }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.contact-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius);
  transition: all .2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* FORM */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label { font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--dark); text-transform: uppercase; }
input, select, textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(13,27,42,.08);
}
textarea { resize: vertical; }
.form-disclaimer { font-size: .75rem; color: var(--text-lt); text-align: center; }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,.6); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 24px 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .86rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--ff-serif);
  font-size: .9rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact { gap: 12px; }
.footer-contact li { font-size: .83rem; line-height: 1.6; }
.logo-light .logo-name { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .8rem; transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .areas-grid   { grid-template-columns: repeat(2, 1fr); }
  .team-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-image-wrap { width: 100%; opacity: .3; }
  .hero-text { max-width: 100%; padding: 60px 0; }

  .trust-grid   { gap: 0; }
  .trust-item   { padding: 12px 20px; }
  .trust-divider{ display: none; }

  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .about-badge  { bottom: 12px; right: 12px; }

  .areas-grid   { grid-template-columns: 1fr; gap: 0; }
  .team-grid    { grid-template-columns: repeat(2,1fr); }

  .news-grid         { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form-wrap{ padding: 28px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 32px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
