:root {
  --ink: #0b1628;
  --ink-2: #13243c;
  --paper: #f4f0e8;
  --paper-light: #fbfaf7;
  --white: #ffffff;
  --gold: #d7a756;
  --gold-light: #f0d39c;
  --coral: #df765e;
  --muted: #6d747e;
  --line: rgba(11, 22, 40, 0.14);
  --radius: 6px;
  --shadow: 0 18px 50px rgba(11, 22, 40, 0.12);
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 38%, rgba(215, 167, 86, .14), transparent 32%),
    var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .43s cubic-bezier(.76, 0, .24, 1);
}
body.page-leaving::after { transform: scaleY(1); }
body.page-arriving::after {
  transform: scaleY(1);
  transform-origin: top;
  animation: page-curtain-reveal .62s .08s cubic-bezier(.76, 0, .24, 1) forwards;
}
body.page-arriving main,
body.page-arriving .site-header,
body.page-arriving .site-footer {
  animation: page-content-arrive .68s .12s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes page-curtain-reveal {
  to { transform: scaleY(0); }
}
@keyframes page-content-arrive {
  from { opacity: .72; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 4px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: "Manrope", sans-serif; font-size: 15px; letter-spacing: .17em; }
.brand strong { color: var(--gold-light); font-weight: 600; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--gold); border-radius: 50%; font-family: Georgia, serif; font-size: 20px; font-style: italic; color: var(--gold-light); }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { text-decoration: none; font-size: 14px; color: rgba(255,255,255,.86); transition: color .2s; }
.site-nav a:hover { color: var(--white); }
.site-nav .nav-cta { border: 1px solid rgba(255,255,255,.44); padding: 11px 18px; border-radius: 3px; }
.menu-button { display: none; background: transparent; border: 0; padding: 8px; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); }

.hero { position: relative; min-height: 780px; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image { background: url("assets/lippi-eventos-hero.jpg") center center / cover no-repeat; transform: scale(1.01); }
.hero-overlay { background: linear-gradient(90deg, rgba(5,14,27,.99) 0%, rgba(5,14,27,.9) 35%, rgba(5,14,27,.26) 66%, rgba(5,14,27,.15) 100%), linear-gradient(0deg, rgba(5,14,27,.62) 0%, transparent 40%); }
.hero-content { position: relative; z-index: 1; padding-top: 86px; }
.eyebrow { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 700; color: var(--gold-light); display: flex; align-items: center; gap: 12px; }
.eyebrow span { display: inline-block; width: 32px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #a8712e; }
.eyebrow.light { color: var(--gold-light); }
.hero h1, .section h2 { font-family: "Manrope", sans-serif; letter-spacing: -.045em; line-height: 1.04; }
.hero h1 { max-width: 690px; margin: 0 0 28px; font-size: clamp(56px, 7vw, 92px); font-weight: 600; }
.hero h1 em { color: var(--gold-light); font-family: Georgia, serif; font-weight: 400; }
.hero-copy { max-width: 590px; margin: 0; color: rgba(255,255,255,.76); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 24px; border: 0; border-radius: 3px; text-decoration: none; font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--coral); color: var(--white); box-shadow: 0 12px 30px rgba(223,118,94,.22); }
.button-primary:hover { background: #e38068; box-shadow: 0 16px 34px rgba(223,118,94,.3); }
.button-secondary { background: var(--paper); color: var(--ink); }
.text-link { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); text-underline-offset: 6px; }
.text-link span { margin-left: 8px; color: var(--gold-light); }
.hero-note { margin-top: 58px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.57); font-size: 12px; letter-spacing: .04em; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #89b699; box-shadow: 0 0 0 4px rgba(137,182,153,.15); }

.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 104px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-grid p { margin: 0; padding: 0 48px; border-right: 1px solid var(--line); font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.trust-grid p:first-child { padding-left: 0; }
.trust-grid p:last-child { border: 0; }
.trust-grid span { margin-right: 12px; color: #ae7636; font-family: Georgia, serif; font-style: italic; }

.section { padding: 118px 0; }
.section-heading { margin-bottom: 54px; }
.split-heading { display: grid; grid-template-columns: 1.5fr .7fr; gap: 90px; align-items: end; }
.section h2 { margin: 0; font-size: clamp(40px, 4.5vw, 62px); font-weight: 600; }
.split-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 440px; padding: 36px; border: 1px solid var(--line); background: var(--white); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card.featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.service-number { position: absolute; top: 24px; right: 26px; color: rgba(11,22,40,.28); font-family: Georgia, serif; font-style: italic; }
.featured .service-number { color: rgba(255,255,255,.32); }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 86px; border-radius: 50%; background: var(--paper); color: #a8712e; font-size: 20px; }
.featured .service-icon { background: rgba(215,167,86,.14); color: var(--gold-light); }
.service-card h3 { margin: 0 0 14px; font-family: "Manrope", sans-serif; font-size: 24px; letter-spacing: -.02em; }
.service-card > p { min-height: 80px; margin: 0 0 24px; color: var(--muted); }
.featured > p { color: rgba(255,255,255,.67); }
.service-card ul { list-style: none; margin: 0; padding: 20px 0 0; border-top: 1px solid var(--line); font-size: 13px; }
.featured ul { border-color: rgba(255,255,255,.14); }
.service-card li { margin: 8px 0; }
.service-card li::before { content: "—"; margin-right: 8px; color: #b77d38; }

.process { background: var(--ink); color: var(--white); }
.process-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: start; }
.process-intro { position: sticky; top: 50px; }
.process-intro > p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.64); font-size: 17px; margin: 28px 0 34px; }
.process-list { list-style: none; margin: 0; padding: 0; counter-reset: step; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li { display: grid; grid-template-columns: 74px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list > li > span { color: var(--gold-light); font-family: Georgia, serif; font-style: italic; }
.process-list h3 { margin: 0 0 7px; font-family: "Manrope", sans-serif; font-size: 21px; }
.process-list p { margin: 0; color: rgba(255,255,255,.6); }

.about { background: var(--paper); }
.about-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 110px; align-items: center; }
.about-statement { position: relative; padding-left: 58px; border-left: 1px solid #c49652; }
.about-statement h2 { font-family: Georgia, serif; font-weight: 400; font-size: clamp(38px, 4.4vw, 60px); letter-spacing: -.03em; line-height: 1.16; }
.quote-mark { position: absolute; top: -32px; left: 48px; color: rgba(183,125,56,.22); font-family: Georgia, serif; font-size: 130px; }
.about-copy > p:not(.eyebrow) { color: #59616c; font-size: 17px; }
.company-chip { margin-top: 34px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(137,182,153,.15); color: #3c6449; border-radius: 3px; font-size: 12px; font-weight: 700; }
.company-chip span { display: grid; place-items: center; width: 19px; height: 19px; background: #5f8a6d; color: white; border-radius: 50%; }

.contact { background: var(--paper-light); }
.contact-card { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; padding: 72px; color: var(--white); background: var(--ink-2); box-shadow: var(--shadow); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); font-size: 17px; }
.contact-direct { margin-top: 50px; display: grid; gap: 16px; }
.contact-direct a { display: grid; text-decoration: none; color: rgba(255,255,255,.9); }
.contact-direct span { color: var(--gold-light); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; }
.contact-form { display: grid; gap: 17px; padding: 36px; background: var(--white); color: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-size: 12px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d9dce0; border-radius: 3px; background: #fbfbfa; padding: 12px 13px; color: var(--ink); outline: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #b77d38; box-shadow: 0 0 0 3px rgba(183,125,56,.12); }
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form .consent { grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: #686e76; font-weight: 400; line-height: 1.45; }
.consent input { margin: 3px 0 0; width: 16px; height: 16px; accent-color: var(--coral); }
.form-submit { width: 100%; margin-top: 3px; }
.form-feedback { min-height: 20px; margin: 0; color: #456b51; font-size: 12px; }
.form-feedback.error { color: #a44235; }

.legal-links { padding: 34px 0; background: #eee9df; border-top: 1px solid var(--line); }
.legal-links-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-links-inner p { margin: 0; font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 700; }
.legal-links-inner > div { display: flex; align-items: center; gap: 28px; }
.legal-links a { color: #646b73; font-size: 13px; font-weight: 600; text-underline-offset: 4px; }
.legal-links a span { margin-left: 5px; color: #a8712e; }

.legal-header { position: static; background: var(--ink); }
.legal-header .nav-wrap { height: 78px; }
.back-link { color: rgba(255,255,255,.78); font-size: 13px; text-decoration: none; }
.back-link:hover { color: var(--white); }
.legal-page { background: var(--paper-light); }
.legal-hero { padding: 88px 0 62px; background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 790px; margin: 0 0 18px; font-family: "Manrope", sans-serif; font-size: clamp(42px, 6vw, 72px); line-height: 1.04; letter-spacing: -.045em; }
.legal-hero p { max-width: 720px; margin: 0; color: var(--muted); font-size: 16px; }
.legal-updated { display: inline-block; margin-top: 26px; color: #94662f; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 700; }
.legal-content { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 84px; padding: 76px 0 110px; align-items: start; }
.legal-summary { position: sticky; top: 30px; padding: 24px; background: var(--white); border: 1px solid var(--line); }
.legal-summary strong { display: block; margin-bottom: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.legal-summary p, .legal-summary a { color: var(--muted); font-size: 12px; }
.legal-summary p { margin: 5px 0; }
.legal-summary a { overflow-wrap: anywhere; }
.legal-article section { margin-bottom: 44px; scroll-margin-top: 20px; }
.legal-article h2 { margin: 0 0 14px; font-family: "Manrope", sans-serif; font-size: 25px; letter-spacing: -.025em; }
.legal-article p, .legal-article li { color: #565f6a; }
.legal-article p { margin: 0 0 14px; }
.legal-article ul { margin: 12px 0 0; padding-left: 20px; }
.legal-article li { margin: 8px 0; }
.legal-notice { padding: 18px 20px; border-left: 3px solid var(--gold); background: var(--paper); }
.legal-footer { padding-top: 34px; }
.legal-footer .footer-legal { border-top: 0; }

.site-footer { padding: 72px 0 28px; background: #07101d; color: rgba(255,255,255,.63); }
.footer-main { display: grid; grid-template-columns: 1.45fr 1fr 1.25fr 1fr; gap: 50px; padding-bottom: 52px; }
.footer-brand p { max-width: 240px; margin-top: 24px; font-size: 13px; }
.footer-block h3 { margin: 5px 0 18px; color: var(--white); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; }
.footer-block p, .footer-block address, .footer-block a { display: block; margin: 6px 0; color: rgba(255,255,255,.58); text-decoration: none; font-size: 12px; font-style: normal; line-height: 1.7; }
.footer-block a:hover { color: var(--white); }
.footer-legal { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-legal p { margin: 0; }
.footer-legal a { color: rgba(255,255,255,.7); }
.footer-legal div { display: flex; gap: 22px; }
.meta-disclaimer { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07); }
.meta-disclaimer p { max-width: 830px; margin: 0; color: rgba(255,255,255,.34); font-size: 10px; line-height: 1.6; }

@media (max-width: 920px) {
  :root { --container: min(100% - 36px, 720px); }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 86px; left: 0; right: 0; display: none; padding: 22px 18px 28px; background: rgba(7,16,29,.98); border-bottom: 1px solid rgba(255,255,255,.1); flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 11px 0; }
  .site-nav .nav-cta { margin-top: 10px; text-align: center; }
  .hero { min-height: 720px; }
  .hero-image { background-position: 60% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,14,27,.97), rgba(5,14,27,.66)), linear-gradient(0deg, rgba(5,14,27,.7), transparent 40%); }
  .split-heading, .process-layout, .about-layout, .contact-card { grid-template-columns: 1fr; }
  .split-heading, .process-layout, .about-layout { gap: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-icon { margin-bottom: 58px; }
  .process-intro { position: static; }
  .contact-card { gap: 48px; padding: 50px; }
  .footer-main { grid-template-columns: 1.2fr 1fr; }
  .legal-content { grid-template-columns: 1fr; gap: 42px; }
  .legal-summary { position: static; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 32px); }
  .nav-wrap { height: 74px; }
  .site-nav { top: 74px; }
  .brand { font-size: 13px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { min-height: 700px; align-items: flex-end; }
  .hero-content { padding: 130px 0 58px; }
  .hero h1 { font-size: 49px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .text-link { text-align: center; }
  .hero-note { margin-top: 38px; }
  .trust-grid { grid-template-columns: 1fr; padding: 18px 0; }
  .trust-grid p, .trust-grid p:first-child { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid p:last-child { border: 0; }
  .section { padding: 82px 0; }
  .split-heading { gap: 26px; }
  .section h2 { font-size: 39px; }
  .service-card { padding: 28px; }
  .about-statement { padding-left: 26px; }
  .quote-mark { left: 20px; }
  .contact { padding-inline: 0; }
  .contact .container { width: 100%; }
  .contact-card { padding: 56px 20px; border-radius: 0; }
  .contact-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-legal { align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-legal div { align-items: flex-start; flex-direction: column; gap: 7px; }
  .legal-links-inner, .legal-links-inner > div { align-items: flex-start; flex-direction: column; }
  .legal-links-inner > div { gap: 8px; }
  .legal-hero { padding: 66px 0 48px; }
  .legal-content { padding: 56px 0 80px; }
}

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