@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Archivo:wght@300;400;500;600;700&family=Archivo+Narrow:wght@400;500&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --gold: #b8935a;
  --gold-light: #d4a96a;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-light: #f3f2ef;
  --gray-mid: #8a8680;
  --text-dark: #111111;
  --text-body: #444440;
  --border: #e0ddd8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Archivo', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-body);
  text-decoration: none; transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { width: 100%; background: var(--navy); }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 11px 26px !important; font-size: 10px !important;
  letter-spacing: 0.2em !important; transition: all .3s !important;
  border-radius: 0 !important;
}
.nav-cta:hover { background: var(--gold) !important; }
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text-dark); transition: all .3s; }
.mobile-menu {
  display: none; position: fixed; top: 81px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 24px 24px; flex-direction: column; gap: 0; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-body);
  text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color .3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu .mob-cta {
  margin-top: 16px; background: var(--navy); color: var(--white) !important;
  padding: 16px 24px; text-align: center; border-bottom: none;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 81px; background: var(--navy);
  min-height: 320px; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(200,169,110,0.04) 80px);
}
.page-hero-content { position: relative; z-index: 2; padding: 80px 60px; }
.page-hero-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300; color: var(--white); line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }

/* ── SECTION BASE ── */
section { padding: 100px 60px; }
.section-label {
  font-size: 9px; font-weight: 600; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; line-height: 1.15; color: var(--text-dark);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--navy); color: var(--white);
  padding: 16px 36px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all .3s;
  border: none; cursor: pointer; font-family: 'Archivo', sans-serif;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,147,90,.25); }
.btn-gold {
  background: var(--gold); color: var(--white);
  padding: 16px 36px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all .3s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--navy); color: var(--navy);
  padding: 15px 34px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all .3s;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--navy); padding: 48px 40px;
  position: relative; overflow: hidden; transition: all .4s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold); transition: height .4s;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--navy-mid); }
.service-number {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: .2em; color: var(--gold); opacity: .6; margin-bottom: 24px;
}
.service-name {
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  font-weight: 400; color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.service-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.45); margin-bottom: 24px;
}
.service-list { list-style: none; margin-bottom: 28px; }
.service-list li {
  font-size: 12px; color: rgba(255,255,255,.5);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: 10px;
}
.service-list li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.service-link {
  font-size: 10px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; transition: gap .3s;
}
.service-link:hover { gap: 16px; }
.service-link::after { content: '→'; }

/* ── PRICE ROWS ── */
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.price-item { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 300; }
.price-amount {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  color: var(--gold); font-weight: 400;
}

/* ── FOOTER ── */
footer {
  background: #060f1c; padding: 60px 60px 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo img { height: 52px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .7; }
.footer-tagline {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.35); max-width: 260px;
}
.footer-col-title {
  font-size: 9px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,.4);
  text-decoration: none; transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { margin-bottom: 12px; }
.footer-contact-item span {
  display: block; font-size: 9px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 3px;
}
.footer-contact-item a, .footer-contact-item p {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,.5);
  text-decoration: none; transition: color .3s;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 10px; color: rgba(255,255,255,.18); letter-spacing: .06em; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); text-decoration: none;
  font-size: 9px; font-weight: 700; letter-spacing: .05em; transition: all .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 70px 24px; }
  .page-hero-content { padding: 60px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media(max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 2.5s ease infinite;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  animation: none;
}
.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--navy);
  color: white;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}
.wa-btn:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}
@media(max-width:600px) {
  .wa-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-tooltip { display: none; }
}
