:root {
  --gold: #D09F5C;
  --gold-dark: #A2703A;
  --rose: #F1C5BA;
  --rose-edge: #D29888;
  --rose-soft: #F7DFD8;
  --wine: #410D1A;
  --wine-dark: #2C0812;
  --cream: #F6D7CC;
  --white: #FFFFFF;
  --ink: #3A2E2E;
  --ink-soft: #7A6B6B;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--wine-dark);
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 600;
}

p { margin: 0 0 16px; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(26px, 3.4vw, 38px); }
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(169, 132, 63, .3);
}
.btn-wine {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(110, 43, 58, .25);
}
.btn-outline {
  background: transparent;
  border-color: var(--wine);
  color: var(--wine-dark);
}
.btn-lg { padding: 16px 38px; font-size: 15px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 215, 204, .92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(65, 13, 26, .1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; line-height: 1.1; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--wine-dark);
}
.brand-name em { font-style: normal; color: var(--gold-dark); }
.brand-slogan {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.main-nav a:hover { color: var(--wine); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--wine-dark);
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 88px;
  background: radial-gradient(circle at 50% 0%, var(--rose) 0%, var(--rose-edge) 100%);
  text-align: center;
  overflow: hidden;
}
.hero-justice {
  position: absolute;
  left: 0;
  top: 10%;
  width: 300px;
  max-width: 26vw;
  pointer-events: none;
  user-select: none;
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(34px, 5.4vw, 56px); }
.hero-lead {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-justice { max-width: 40vw; opacity: .5; }
}
@media (max-width: 600px) {
  .hero-justice { display: none; }
}

/* Services */
.services { padding: 88px 0; }
.service-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(110,43,58,.08);
  border-radius: 18px;
  padding: 32px 26px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover {
  box-shadow: 0 16px 36px rgba(110,43,58,.10);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--wine); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 18px; }
.service-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-dark);
}
.service-link:hover { color: var(--wine); }

/* About */
.about { padding: 88px 0; background: var(--rose-soft); }
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-text p { font-size: 15.5px; }
.about-card {
  background: var(--wine);
  color: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
}
.about-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.65);
  margin-bottom: 4px;
}
.about-card-value {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 22px;
}
.about-card-value:last-child { margin-bottom: 0; }

/* CTA */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
  text-align: center;
}
.cta-lead {
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 15.5px;
}

/* Footer */
.site-footer {
  background: var(--wine-dark);
  color: rgba(255,255,255,.75);
  padding: 44px 0 20px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-logo { width: 40px; height: 40px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name em { color: var(--gold); }
.footer-brand .brand-slogan { color: rgba(255,255,255,.6); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; font-size: 14px; }
.footer-contact a:hover { color: var(--gold); }
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin: 20px 0 0;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  animation: wa-pulse 2.4s ease-in-out infinite;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 10px rgba(37, 211, 102, .18); }
}

@media (max-width: 600px) {
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* Responsive */
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(110,43,58,.08);
    transition: max-height .25s ease;
  }
  .main-nav.open { max-height: 260px; }
  .main-nav a { padding: 16px 24px; border-top: 1px solid rgba(110,43,58,.06); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-inner { flex-direction: column; }
  .footer-contact { align-items: flex-start; }
}
