/* ==========================================================================
   Jacqueline Castro Advocacia
   Premium law firm landing - Trust & Authority aesthetic
   Navy + warm gold + cream, EB Garamond display + Lato body
   ========================================================================== */

:root {
  --navy-900: #0B1A3A;
  --navy-800: #112450;
  --navy-700: #1B3168;
  --navy-600: #28447F;
  --navy-100: #E8ECF5;
  --gold: #BF9B5B;
  --gold-light: #D6BB85;
  --gold-deep: #9C7B3F;
  --cream: #F7F2E8;
  --cream-soft: #FBF8F1;
  --paper: #FFFFFF;
  --ink: #14213D;
  --ink-soft: #4A5876;
  --line: #E2DDD0;
  --shadow-sm: 0 1px 2px rgba(11, 26, 58, 0.05), 0 2px 8px rgba(11, 26, 58, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 26, 58, 0.08), 0 2px 6px rgba(11, 26, 58, 0.04);
  --shadow-lg: 0 24px 60px rgba(11, 26, 58, 0.16), 0 4px 12px rgba(11, 26, 58, 0.06);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }

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

.font-body { font-family: 'Lato', sans-serif; }
.bg-cream { background: var(--cream); }
.text-ink { color: var(--ink); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all .35s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(11, 26, 58, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--paper); }
.brand-mark {
  width: 44px; height: 44px; border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  font-family: 'EB Garamond', serif; font-size: 18px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.5px;
  position: relative;
}
.brand-mark::before {
  content: ''; position: absolute; inset: 3px; border: 1px solid var(--gold-light); opacity: .4;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: 'EB Garamond', serif; font-size: 18px; font-weight: 500; letter-spacing: 0.3px; }
.brand-sub {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 400;
  letter-spacing: 0.4px; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px;
  width: 0; background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; background: var(--gold); color: var(--navy-900);
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all .25s var(--ease);
  cursor: pointer;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(191,155,91,0.35); }

.nav-burger {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--paper); transition: all .25s var(--ease); margin: 0 auto; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 76px 0 0 0; z-index: 99;
  background: var(--navy-900); padding: 40px 32px;
  flex-direction: column; gap: 24px;
  transform: translateX(100%); transition: transform .35s var(--ease);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu a {
  color: var(--paper); font-family: 'EB Garamond', serif; font-size: 28px; font-weight: 500;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .mobile-cta {
  margin-top: 16px; background: var(--gold); color: var(--navy-900);
  text-align: center; padding: 14px; border: 0; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Lato', sans-serif; font-weight: 700;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: var(--paper);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grain {
  position: absolute; inset: 0; opacity: .25; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; top: -10%; right: -10%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(191,155,91,0.18) 0%, transparent 60%);
  filter: blur(40px);
}
.hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(191,155,91,0.4), transparent);
}
.hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(191,155,91,0.4), transparent);
}

.hero-container {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  margin-bottom: 32px;
  animation: fadeUp .8s var(--ease) both;
}
.eyebrow-line { display: inline-block; width: 40px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500; line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  animation: fadeUp .9s var(--ease) .1s both;
}
.hero-title em {
  font-style: italic; color: var(--gold);
  font-weight: 500;
  display: inline;
}
.hero-title-sub {
  display: block; margin-top: 14px;
  font-size: 0.55em; font-weight: 400; color: rgba(255,255,255,0.85);
  font-style: italic; letter-spacing: -0.01em;
}

.hero-lead {
  font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.78);
  max-width: 540px; margin-bottom: 40px;
  animation: fadeUp 1s var(--ease) .2s both;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 48px;
  animation: fadeUp 1.1s var(--ease) .3s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; background: var(--gold); color: var(--navy-900);
  font-size: 14px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  border-radius: var(--radius-sm); border: 0;
  cursor: pointer; font-family: 'Lato', sans-serif;
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--gold-light);
  transform: translateX(-100%); transition: transform .35s var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(191,155,91,0.35); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary svg { transition: transform .25s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 17px 26px; color: var(--paper);
  font-size: 14px; font-weight: 500; letter-spacing: 0.4px;
  border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-sm);
  transition: all .25s var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); color: var(--gold-light); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 32px; background: var(--gold); color: var(--navy-900);
  font-size: 14px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-gold:hover { background: var(--paper); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,255,255,0.18); }
.btn-gold svg { transition: transform .25s var(--ease); }
.btn-gold:hover svg { transform: translateX(4px); }

.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 24px 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 1.2s var(--ease) .4s both;
}
.hero-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.2px;
}
.hero-trust svg { color: var(--gold); }

.hero-portrait { position: relative; animation: fadeIn 1.4s var(--ease) .3s both; }
.portrait-frame {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.portrait-frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,26,58,0.5), transparent 50%);
  z-index: 2; pointer-events: none;
}
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: brightness(.95) contrast(1.05);
  transition: transform 1.5s var(--ease);
}
.portrait-frame:hover img { transform: scale(1.04); }

.portrait-deco {
  position: absolute; inset: -16px -16px auto auto;
  width: 60%; height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: .6;
}

.portrait-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(11,26,58,0.85); backdrop-filter: blur(8px);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  z-index: 3;
}
.badge-num {
  font-family: 'EB Garamond', serif; font-size: 38px; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.badge-txt {
  font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.4;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   Marquee strip
   ========================================================================== */
.strip {
  background: var(--navy-900); color: var(--gold);
  border-top: 1px solid rgba(191,155,91,0.2);
  border-bottom: 1px solid rgba(191,155,91,0.2);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.strip-track {
  display: flex; gap: 32px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: 'EB Garamond', serif; font-size: 18px; font-weight: 500;
  letter-spacing: 0.5px;
  font-style: italic;
}
.strip-track .dot { color: var(--gold-deep); font-style: normal; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Section primitives
   ========================================================================== */
.section-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 20px;
}
.section-title em { color: var(--gold-deep); font-style: italic; }

.section-desc {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  max-width: 640px;
}

.section-head { margin-bottom: 64px; max-width: 720px; }

.lead {
  font-size: 18px; line-height: 1.65; color: var(--ink-soft);
  margin-bottom: 20px;
}
.lead strong { color: var(--navy-800); font-weight: 700; }

/* ==========================================================================
   About
   ========================================================================== */
.about {
  padding: 120px 0;
  background: var(--cream-soft);
  position: relative;
}
.about::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 96px; align-items: center;
}
.about-photo {
  position: relative; aspect-ratio: 4/5;
  overflow: visible;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  box-shadow: var(--shadow-md);
}
.about-photo::before {
  content: ''; position: absolute; left: -20px; top: 20px; width: 100%; height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-stamp {
  position: absolute; right: -40px; bottom: -30px;
  width: 120px; height: 120px;
  background: var(--cream-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--navy-800);
  animation: spin 30s linear infinite;
  box-shadow: var(--shadow-sm);
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-copy p { color: var(--ink-soft); margin-bottom: 16px; }

.about-signature {
  margin-top: 36px; display: flex; align-items: center; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.about-signature span {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 18px; color: var(--navy-800);
}

/* ==========================================================================
   Areas
   ========================================================================== */
.areas {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}
.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.area-card {
  display: block; padding: 36px 32px;
  background: var(--paper); border: 1px solid var(--line);
  position: relative; cursor: pointer;
  transition: all .35s var(--ease);
  overflow: hidden;
}
.area-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s var(--ease);
}
.area-card::after {
  content: ''; position: absolute; right: 24px; top: 24px;
  width: 24px; height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23BF9B5B' stroke-width='1.5'%3E%3Cpath d='M7 17L17 7M17 7H9M17 7V15'/%3E%3C/svg%3E");
  opacity: 0; transform: translate(-6px, 6px);
  transition: all .35s var(--ease);
}
.area-card:hover {
  border-color: var(--navy-700);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.area-card:hover::before { transform: scaleY(1); transform-origin: top; }
.area-card:hover::after { opacity: 1; transform: translate(0, 0); }

.area-icon {
  width: 56px; height: 56px;
  background: var(--cream); color: var(--navy-700);
  display: grid; place-items: center;
  margin-bottom: 24px;
  transition: all .3s var(--ease);
}
.area-card:hover .area-icon { background: var(--navy-700); color: var(--gold-light); }

.area-card h3 {
  font-family: 'EB Garamond', serif; font-size: 24px; font-weight: 500;
  color: var(--navy-900); margin-bottom: 12px; letter-spacing: -0.01em;
}

.area-card p {
  font-size: 15px; line-height: 1.6; color: var(--ink-soft);
  margin-bottom: 24px;
}

.area-link {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--gold-deep);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--navy-900);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(191,155,91,0.12), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(40,68,127,0.4), transparent 60%);
  padding: 80px 0; color: var(--paper);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: .15; mix-blend-mode: overlay;
}
.cta-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.cta-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(30px, 3.5vw, 42px); font-weight: 500;
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--paper);
}
.cta-title em { font-style: italic; color: var(--gold-light); }

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.diff {
  padding: 120px 0;
  background: var(--cream-soft);
}
.diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.diff-card {
  position: relative;
  padding: 40px 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.diff-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.diff-num {
  display: inline-block;
  font-family: 'EB Garamond', serif; font-size: 56px;
  color: var(--gold); line-height: 1;
  font-weight: 500; font-style: italic;
  margin-bottom: 16px;
}
.diff-card h3 {
  font-family: 'EB Garamond', serif; font-size: 26px; font-weight: 500;
  color: var(--navy-900); margin-bottom: 12px;
}
.diff-card p {
  font-size: 16px; line-height: 1.65; color: var(--ink-soft);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  padding: 120px 0;
  background: var(--navy-900);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 80px;
  background: var(--gold);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-copy .section-title { color: var(--paper); }
.contact-copy .section-eyebrow { color: var(--gold-light); }
.contact-copy .lead { color: rgba(255,255,255,0.78); }

.contact-list {
  list-style: none; margin: 32px 0; padding: 0;
}
.contact-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-list a { color: rgba(255,255,255,0.9); font-size: 16px; transition: color .2s; }
.contact-list a:hover { color: var(--gold-light); }
.contact-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(191,155,91,0.12); color: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-availability {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(191,155,91,0.25);
  font-size: 13px; color: rgba(255,255,255,0.85);
  border-radius: 4px;
  letter-spacing: 0.2px;
}
.pulse-dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: #4ade80; opacity: .4; animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.contact-form {
  background: var(--paper); color: var(--ink);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.contact-form::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
}
.contact-form h3 {
  font-family: 'EB Garamond', serif; font-size: 28px; font-weight: 500;
  color: var(--navy-900); margin-bottom: 28px;
}
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row label { display: block; }
.form-row span {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--navy-700); margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%; padding: 12px 14px;
  background: var(--cream-soft); color: var(--ink);
  border: 1px solid var(--line); border-radius: 4px;
  font-family: 'Lato', sans-serif; font-size: 15px;
  transition: all .2s var(--ease);
}
.form-row textarea { resize: vertical; min-height: 96px; font-family: 'Lato', sans-serif; }
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(191,155,91,0.15);
}
.form-note {
  margin-top: 14px; font-size: 12px; color: var(--ink-soft); text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #060E1F; color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 64px;
  padding-bottom: 60px;
}
.brand-light .brand-name, .brand-light .brand-mark { color: var(--paper); }
.brand-light .brand-mark { border-color: var(--gold); color: var(--gold); }
.footer-text {
  margin: 24px 0 16px; font-size: 14px; line-height: 1.6;
  max-width: 320px;
}
.footer-oab {
  font-family: 'EB Garamond', serif; font-style: italic;
  color: var(--gold); letter-spacing: 1px;
}
.footer h4 {
  font-family: 'EB Garamond', serif; font-size: 16px; font-weight: 600;
  color: var(--paper); margin-bottom: 20px;
  letter-spacing: 1px; text-transform: uppercase;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-bottom p { font-size: 12px; line-height: 1.6; }
.footer-bottom .disclaimer {
  margin-top: 8px; max-width: 720px; margin-left: auto; margin-right: auto;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.float-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px;
  background: #25D366; color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: all .3s var(--ease);
  animation: floatPulse 2.4s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Reveal: only hides if JS sets data-reveal attribute on <html>, otherwise stays visible */
html[data-reveal] .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html[data-reveal] .reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding: 120px 0 60px; }
  .hero-portrait { max-width: 460px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo { max-width: 460px; margin: 0 auto; }
  .about-photo::before { display: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .areas-grid, .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row.two { grid-template-columns: 1fr; }
  .about, .areas, .diff, .contact { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; width: 100%; }
  .contact-form { padding: 32px 24px; }
  .float-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .float-wa svg { width: 24px; height: 24px; }
  .nav-inner { padding: 0 20px; }
  .container { padding: 0 20px; }
  .about-stamp { width: 90px; height: 90px; right: -10px; bottom: -20px; }
  .about-stamp svg { width: 90px; height: 90px; }
  .portrait-deco { display: none; }
}
