:root {
  --ink: #0b0b0d;
  --ink-soft: #17171b;
  --paper: #f5f0e7;
  --paper-deep: #e8dfd0;
  --white: #fffdf9;
  --gold: #c6a15b;
  --gold-light: #e2c584;
  --burgundy: #7b2433;
  --green: #16765a;
  --muted: #736f68;
  --line: rgba(18, 18, 20, .14);
  --shadow: 0 24px 80px rgba(12, 10, 8, .16);
  --radius: 22px;
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
body.video-intro-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.container { width: min(100% - 32px, 1180px); margin-inline: auto; }
.section { padding: 78px 0; }
.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;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 3px;
  background: transparent;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--burgundy)); }

.video-intro {
  width: min(1180px, calc(100% - 24px));
  max-width: none;
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(226, 197, 132, .3);
  border-radius: 22px;
  color: var(--white);
  background: #121114;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .65);
}
.video-intro[open] { animation: intro-enter .55s cubic-bezier(.22, 1, .36, 1) both; }
.video-intro::backdrop { background: rgba(6, 6, 8, .88); backdrop-filter: blur(13px); }
.video-intro-shell { position: relative; display: grid; gap: 26px; padding: 58px 20px 20px; background: radial-gradient(circle at 5% 0%, rgba(153, 37, 54, .34), transparent 42%), #121114; }
.video-intro-copy { align-self: center; padding: 0 8px 4px; }
.video-intro-copy h2 { margin-bottom: 18px; font-family: var(--serif); font-size: clamp(38px, 9vw, 68px); font-weight: 500; line-height: .98; }
.video-intro-copy > p:last-of-type { max-width: 480px; color: rgba(255, 255, 255, .66); }
.video-intro-close { position: absolute; z-index: 3; top: 13px; right: 13px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; color: var(--white); background: rgba(255, 255, 255, .07); font-size: 25px; line-height: 1; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.video-intro-close:hover { background: rgba(255, 255, 255, .15); transform: rotate(6deg); }
.video-intro-skip { margin-top: 24px; padding: 0; border: 0; color: var(--gold-light); background: transparent; font-size: 12px; font-weight: 850; letter-spacing: .04em; cursor: pointer; }
.video-intro-player { border: 1px solid rgba(255, 255, 255, .11); border-radius: 15px; }
@keyframes intro-enter { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(180deg, rgba(6, 6, 7, .84), rgba(6, 6, 7, .16));
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(9, 9, 11, .96); box-shadow: 0 8px 30px rgba(0, 0, 0, .2); backdrop-filter: blur(18px); }
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 28px, 1240px);
  min-height: 70px;
  margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: 11px; letter-spacing: .05em; }
.brand-eye {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(226, 197, 132, .6);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 17px;
}
.brand strong { display: block; font-family: var(--serif); font-size: 18px; line-height: 1; letter-spacing: .16em; }
.brand small { display: block; margin-top: 4px; color: rgba(255, 255, 255, .62); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.nav-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) { width: 18px; height: 1px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.main-nav {
  position: fixed;
  inset: 70px 14px auto;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(13, 13, 15, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: .25s ease;
}
.main-nav.open { opacity: 1; visibility: visible; transform: none; }
.main-nav a { padding: 13px 12px; border-radius: 10px; font-weight: 700; }
.main-nav a:hover { color: var(--gold-light); background: rgba(255, 255, 255, .06); }
.nav-phone { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(4, 4, 5, .38) 0%, rgba(5, 5, 6, .45) 32%, rgba(5, 5, 6, .95) 100%),
    linear-gradient(90deg, rgba(4, 4, 5, .82) 0%, rgba(4, 4, 5, .32) 76%);
}
.hero-content { display: grid; gap: 34px; padding-top: 130px; padding-bottom: 58px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #947232; }
.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(45px, 12vw, 82px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.04em;
}
.hero-lead { max-width: 640px; margin-bottom: 28px; color: rgba(255, 255, 255, .82); font-size: clamp(17px, 4vw, 21px); line-height: 1.55; }
.hero-actions { display: grid; gap: 11px; }
.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #16100a; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 14px 40px rgba(198, 161, 91, .23); }
.btn-whatsapp { color: var(--white); border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .09); backdrop-filter: blur(12px); }
.btn-whatsapp span { color: #57d4a2; }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-light { color: var(--ink); background: var(--white); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-proof span { padding: 7px 10px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 999px; color: rgba(255, 255, 255, .7); font-size: 11px; }
.hero-card { padding: 24px; border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius); background: rgba(21, 20, 20, .72); box-shadow: 0 24px 70px rgba(0, 0, 0, .22); backdrop-filter: blur(18px); }
.hero-card-label { display: inline-block; margin-bottom: 15px; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-card strong { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.hero-card p { color: rgba(255, 255, 255, .67); font-size: 14px; }
.hero-card a { color: var(--gold-light); font-size: 13px; font-weight: 800; }

.trust-ticker { overflow: hidden; border-block: 1px solid rgba(255, 255, 255, .08); color: var(--white); background: var(--burgundy); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 28px; padding: 14px 0; animation: ticker 26s linear infinite; }
.ticker-track span { font-family: var(--serif); font-size: 15px; white-space: nowrap; }
.ticker-track i { color: var(--gold-light); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading h2, .about-copy h2, .office-copy h2, .video-copy h2, .contact-copy h2, .urgent-inner h2, .final-content h2, .standards-inner h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 61px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.section-heading > p:not(.eyebrow) { max-width: 670px; color: var(--muted); }
.section-heading.centered { max-width: 780px; margin: 0 auto 38px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

.intro { background: var(--white); }
.intro-grid { display: grid; gap: 28px; }
.intro-copy { color: #4f4b45; font-size: 17px; }
.intro-copy p:last-child { margin-bottom: 0; }

.services { background: var(--paper); }
.services-grid { display: grid; gap: 20px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 40px rgba(30, 25, 19, .06); }
.service-card > img, .service-media img { aspect-ratio: 16 / 10; object-fit: cover; }
.service-body { position: relative; padding: 26px 22px 28px; }
.service-number { display: block; margin-bottom: 12px; color: #9a7737; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.service-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.1; }
.service-card p { color: #5d5850; font-size: 14px; }
.service-card ul { display: grid; gap: 8px; padding: 0; margin: 18px 0; list-style: none; }
.service-card li { position: relative; padding-left: 20px; font-size: 13px; font-weight: 700; }
.service-card li::before { content: "✦"; position: absolute; left: 0; color: #a57c30; }
.service-note { padding: 12px 14px; border-left: 2px solid var(--gold); background: #f5efe3; font-size: 12px !important; }
.text-link { color: #6e4f19; font-size: 13px; font-weight: 850; }

.terminology { padding-top: 0; background: var(--paper); }
.terminology-grid { display: grid; gap: 30px; padding-top: 10px; }
.terminology-list { display: grid; gap: 10px; }
.terminology-list details { border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 253, 249, .72); }
.terminology-list summary { position: relative; padding: 18px 44px 18px 18px; cursor: pointer; font-family: var(--serif); font-size: 19px; font-weight: 600; list-style: none; }
.terminology-list summary::-webkit-details-marker { display: none; }
.terminology-list summary::after { content: "+"; position: absolute; top: 14px; right: 18px; color: #8e6826; font-family: var(--sans); font-size: 25px; font-weight: 300; transition: transform .2s ease; }
.terminology-list details[open] summary::after { transform: rotate(45deg); }
.terminology-list p { padding: 0 18px 18px; margin: 0; color: var(--muted); font-size: 13px; }

.urgent-cta { padding: 54px 0; color: var(--white); background: linear-gradient(135deg, #671d2b, #211317 70%); }
.urgent-inner { display: grid; gap: 28px; }
.urgent-inner h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(34px, 8vw, 56px); }
.urgent-actions { display: grid; gap: 10px; align-content: center; }
.urgent-actions span { color: rgba(255, 255, 255, .6); font-size: 12px; text-align: center; }

.about { background: var(--white); }
.about-grid { display: grid; gap: 38px; }
.about-media { position: relative; }
.about-media img { min-height: 470px; border-radius: 220px 220px 24px 24px; object-fit: cover; object-position: center top; box-shadow: var(--shadow); }
.about-stamp { position: absolute; right: -3px; bottom: 24px; width: 130px; padding: 20px 14px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 16px 0 0 16px; color: var(--white); background: rgba(13, 13, 15, .88); backdrop-filter: blur(15px); }
.about-stamp strong { display: block; font-family: var(--serif); font-size: 26px; letter-spacing: .12em; }
.about-stamp span { display: block; color: var(--gold-light); font-size: 9px; line-height: 1.4; text-transform: uppercase; }
.about-copy > p:not(.eyebrow) { color: #56514a; }
.principles { display: grid; gap: 12px; margin: 30px 0; }
.principles div { display: grid; grid-template-columns: 38px 1fr; gap: 0 12px; padding: 15px 0; border-top: 1px solid var(--line); }
.principles span { grid-row: span 2; color: #9b7531; font-size: 11px; font-weight: 900; }
.principles strong { font-family: var(--serif); font-size: 21px; }
.principles small { color: var(--muted); }

.process { color: var(--white); background: var(--ink-soft); }
.process .eyebrow.dark { color: var(--gold-light); }
.process .section-heading > p:not(.eyebrow) { color: rgba(255, 255, 255, .6); }
.process-list { display: grid; gap: 0; padding: 0; margin: 38px 0 0; list-style: none; counter-reset: process; }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.process-list li > span { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(226, 197, 132, .4); border-radius: 50%; color: var(--gold-light); font-family: var(--serif); }
.process-list h3 { margin-bottom: 5px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.process-list p { margin-bottom: 0; color: rgba(255, 255, 255, .58); font-size: 14px; }

.outcomes { background: #ede5d9; }
.outcomes-grid { display: grid; gap: 18px; margin-top: 34px; }
.outcome-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 40px rgba(30, 25, 19, .07); }
.outcome-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.outcome-card div { padding: 22px; }
.outcome-card span { color: #916d2d; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.outcome-card h3 { margin: 8px 0; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.outcome-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.office { background: var(--white); }
.office-grid { display: grid; gap: 32px; }
.office-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 28px 0 0; background: var(--line); }
.contact-facts div { padding: 15px; background: var(--white); }
.contact-facts dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-facts dd { margin: 5px 0 0; font-family: var(--serif); font-size: 17px; }
.office-media img { min-height: 390px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }

.video-section { background: var(--paper); }
.video-grid { display: grid; gap: 32px; }
.video-status { display: inline-flex; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #7c5a20; font-size: 11px; font-weight: 800; }
.video-frame { border-radius: var(--radius); box-shadow: var(--shadow); }
.youtube-player { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: #101013; }
.youtube-player iframe { display: block; width: 100%; height: 100%; border: 0; }
.youtube-poster { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; color: var(--white); background: #101013; cursor: pointer; }
.youtube-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8, 7, 9, .76), rgba(8, 7, 9, .03) 65%); transition: background .35s ease; }
.youtube-poster img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .35s ease; }
.youtube-poster:hover img { transform: scale(1.06); filter: saturate(1.08); }
.youtube-play { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 70px; height: 70px; place-items: center; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; background: rgba(22, 18, 18, .66); box-shadow: 0 16px 50px rgba(0, 0, 0, .35); backdrop-filter: blur(10px); transform: translate(-50%, -50%); transition: transform .25s ease, background .25s ease; }
.youtube-play i { width: 0; height: 0; margin-left: 5px; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 15px solid var(--gold-light); }
.youtube-poster:hover .youtube-play { background: var(--burgundy); transform: translate(-50%, -50%) scale(1.08); }
.youtube-poster-label { position: absolute; z-index: 2; right: 20px; bottom: 18px; left: 20px; font-family: var(--serif); font-size: clamp(20px, 4vw, 30px); text-align: left; }

.standards { color: var(--white); background: linear-gradient(135deg, #151518, #271a1d); }
.standards-inner { display: grid; gap: 34px; }
.standards-grid { display: grid; gap: 12px; }
.standards-grid article { padding: 22px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px; background: rgba(255, 255, 255, .035); }
.standards-grid strong { color: var(--gold-light); font-family: var(--serif); font-size: 21px; font-weight: 500; }
.standards-grid p { margin: 8px 0 0; color: rgba(255, 255, 255, .62); font-size: 13px; }

.faq { background: var(--white); }
.faq-grid { display: grid; gap: 32px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 20px 42px 20px 0; cursor: pointer; font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.3; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 4px; color: #8e6826; font-family: var(--sans); font-size: 26px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 28px 20px 0; margin: 0; color: var(--muted); font-size: 14px; }

.contact { padding: 78px 0; color: var(--white); background: var(--ink); }
.contact-grid { display: grid; gap: 36px; }
.contact-copy > p:not(.eyebrow, .contact-note) { color: rgba(255, 255, 255, .66); }
.direct-contact { display: grid; gap: 10px; margin: 28px 0 18px; }
.direct-contact a { padding: 16px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px; background: rgba(255, 255, 255, .035); }
.direct-contact span { display: block; color: var(--gold-light); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.direct-contact strong { display: block; margin-top: 4px; overflow-wrap: anywhere; }
.contact-note { color: rgba(255, 255, 255, .42); font-size: 11px; }
.contact-form { position: relative; padding: 24px; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: 0 30px 90px rgba(0, 0, 0, .26); }
.form-progress { position: absolute; inset: 0 0 auto; height: 3px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: #ded8cf; }
.form-progress span { display: block; width: 18%; height: 100%; background: linear-gradient(90deg, var(--gold), var(--burgundy)); transition: width .3s ease; }
.form-head { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; }
.form-head > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--white); background: var(--burgundy); font-size: 11px; font-weight: 900; }
.form-head strong, .form-head small { display: block; }
.form-head strong { font-family: var(--serif); font-size: 22px; }
.form-head small { color: var(--muted); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 15px; font-size: 12px; font-weight: 800; }
.field-row { display: grid; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #d7d0c6;
  border-radius: 10px;
  color: var(--ink);
  background: #fbf9f5;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198, 161, 91, .14); }
.contact-form .invalid { border-color: #a92f44 !important; }
.error { display: none; color: #9e263c; font-weight: 650; }
.contact-form label.has-error .error, .consent-error.show { display: block; }
.consent { grid-template-columns: 20px 1fr; gap: 10px !important; align-items: start; font-weight: 500 !important; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--burgundy); }
.form-submit { width: 100%; border: 0; }
.form-privacy { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-success { margin-top: 16px; padding: 16px; border: 1px solid #a8d5c4; border-radius: 12px; color: #145a45; background: #eaf8f2; }
.form-success p { margin: 4px 0 0; font-size: 12px; }

.final-cta { position: relative; min-height: 550px; display: grid; align-items: end; color: var(--white); background: var(--ink); overflow: hidden; isolation: isolate; }
.final-cta > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.final-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8, 8, 9, .2), rgba(8, 8, 9, .92)), linear-gradient(90deg, rgba(8, 8, 9, .78), transparent); }
.final-content { padding-top: 100px; padding-bottom: 90px; }
.final-content h2 { max-width: 770px; }
.final-content p:not(.eyebrow) { color: rgba(255, 255, 255, .68); }

.site-footer { padding: 56px 0 92px; color: var(--white); background: #08080a; }
.footer-grid { display: grid; gap: 32px; }
.footer-brand p { max-width: 350px; margin: 16px 0 0; color: rgba(255, 255, 255, .48); font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: grid; gap: 8px; align-content: start; }
.footer-grid > div > strong { margin-bottom: 4px; color: var(--gold-light); font-family: var(--serif); font-size: 18px; font-weight: 500; }
.footer-grid a, .footer-grid span { color: rgba(255, 255, 255, .55); font-size: 12px; }
.legal-note { display: grid; gap: 20px; padding-top: 32px; margin-top: 36px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .38); font-size: 10px; }
.legal-note p { margin: 0; }

.floating-whatsapp { position: fixed; right: 16px; bottom: 86px; z-index: 90; display: none; width: 54px; height: 54px; place-items: center; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; color: var(--white); background: var(--green); box-shadow: 0 14px 35px rgba(0, 0, 0, .25); font-size: 12px; font-weight: 900; }
.mobile-callbar { position: fixed; inset: auto 0 0; z-index: 95; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 8px; padding-bottom: max(8px, env(safe-area-inset-bottom)); background: rgba(8, 8, 10, .96); box-shadow: 0 -8px 30px rgba(0, 0, 0, .22); backdrop-filter: blur(16px); }
.mobile-callbar a { display: flex; min-height: 49px; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; color: var(--white); background: #242429; font-size: 13px; }
.mobile-callbar a:last-child { background: var(--green); }

/* Service, contact and confirmation pages */
.subpage-header { background: rgba(8, 8, 10, .78); backdrop-filter: blur(14px); }
.subpage-hero,
.contact-page-hero {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}
.contact-page-hero { min-height: 570px; }
.subpage-hero > img,
.contact-page-hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.love-hero > img { object-position: 58% center; }
.protection-hero > img { object-position: 52% center; }
.success-hero > img { object-position: 62% center; }
.contact-page-hero > img { object-position: 56% center; }
.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, .32), rgba(5, 5, 6, .92)),
    linear-gradient(90deg, rgba(5, 5, 6, .82), rgba(5, 5, 6, .15));
}
.subpage-hero-content { padding-top: 150px; padding-bottom: 64px; }
.subpage-hero-content h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(43px, 11vw, 82px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.04em;
}
.subpage-hero-content > p:not(.eyebrow) { max-width: 690px; color: rgba(255, 255, 255, .78); font-size: clamp(17px, 4vw, 21px); }
.subpage-hero-content .hero-actions { margin-top: 28px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; color: rgba(255, 255, 255, .58); font-size: 11px; }
.breadcrumb a { color: var(--gold-light); }

.service-intro { background: var(--white); }
.detail-split { display: grid; gap: 38px; align-items: center; }
.detail-copy h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 58px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.detail-copy > p:not(.eyebrow) { color: #59544d; }
.detail-media img { min-height: 390px; aspect-ratio: 4 / 3; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.inline-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.inline-trust span { padding: 8px 11px; border: 1px solid #d8c9ad; border-radius: 999px; color: #77591f; background: #fbf6ed; font-size: 11px; font-weight: 800; }

.situations { background: #ece3d6; }
.protection-situations { background: #efe9df; }
.success-situations { background: #e9e2d7; }
.benefit-grid { display: grid; gap: 14px; }
.benefit-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 12px 40px rgba(30, 25, 19, .055); }
.benefit-grid article > span { color: #96702c; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.benefit-grid h3 { margin: 11px 0 8px; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.14; }
.benefit-grid p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.ritual-section { background: var(--paper); }
.check-list { display: grid; gap: 10px; padding: 0; margin: 24px 0; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 30px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #936c26; font-weight: 900; }
.warning-box { padding: 18px; border: 1px solid #ddc9a6; border-radius: 14px; background: #f8f1e5; }
.warning-box strong { color: #79581e; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.warning-box p { margin: 5px 0 0; color: #5f5648; font-size: 13px; }
.warning-box.calm { border-color: rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .055); }
.warning-box.calm strong { color: var(--gold-light); }
.warning-box.calm p { color: rgba(255, 255, 255, .66); }

.dark-detail { color: var(--white); background: #131316; }
.dark-detail .detail-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, .65); }
.dark-detail .eyebrow.dark { color: var(--gold-light); }
.check-list.light li { border-color: rgba(255, 255, 255, .12); }
.check-list.light li::before { color: var(--gold-light); }
.simple-process { background: var(--white); }
.horizontal-steps { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.horizontal-steps :is(li, article) { position: relative; padding: 28px 24px; border: 1px solid var(--line); border-radius: 18px; background: #fbf8f2; }
.horizontal-steps :is(li, article) > span { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 18px; border: 1px solid #c5a86f; border-radius: 50%; color: #79591f; font-family: var(--serif); }
.horizontal-steps h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.horizontal-steps p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.service-circuit article > span { width: fit-content; min-width: 88px; padding: 0 13px; border-radius: 999px; font-family: var(--sans); font-size: 9px; font-weight: 900; letter-spacing: .11em; }

.service-page-cta { padding: 78px 0; color: var(--white); background: linear-gradient(135deg, #591a26, #191114 72%); }
.service-page-cta.protection-cta { background: linear-gradient(135deg, #17171b, #4b1b23); }
.service-page-cta.success-cta { background: linear-gradient(135deg, #1c1a17, #5a411f); }
.service-page-cta h2 { max-width: 820px; margin-bottom: 16px; font-family: var(--serif); font-size: clamp(35px, 8vw, 61px); font-weight: 500; line-height: 1.04; }
.service-page-cta p:not(.eyebrow) { max-width: 690px; color: rgba(255, 255, 255, .66); }
.service-page-cta .hero-actions { margin-top: 26px; }
.compact-standards .standards-inner { gap: 26px; }
.compact-footer { padding-top: 48px; }

.contact-page { padding-top: 92px; }
.direct-contact.large a { display: grid; gap: 2px; }
.direct-contact.large small { color: rgba(255, 255, 255, .42); font-size: 10px; }
.availability-card { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 18px; border: 1px solid rgba(226, 197, 132, .2); border-radius: 14px; background: rgba(226, 197, 132, .06); }
.availability-card > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--gold-light); background: rgba(255, 255, 255, .07); }
.availability-card strong { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.availability-card p { margin: 3px 0 0; color: rgba(255, 255, 255, .55); font-size: 12px; }
.contact-reassurance { background: var(--paper); }
.success-link { display: inline-block; margin-top: 8px; color: #126048; font-size: 12px; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }

.thank-hero { position: relative; display: grid; min-height: 720px; align-items: center; overflow: hidden; color: var(--white); background: var(--ink); isolation: isolate; }
.thank-hero > img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: 57% center; }
.thank-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(5, 5, 6, .95), rgba(5, 5, 6, .5) 70%, rgba(5, 5, 6, .2)), linear-gradient(0deg, rgba(5, 5, 6, .55), transparent); }
.thank-content { padding-top: 130px; padding-bottom: 70px; }
.thank-mark { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 24px; border: 1px solid rgba(226, 197, 132, .55); border-radius: 50%; color: var(--gold-light); background: rgba(255, 255, 255, .07); font-size: 24px; }
.thank-content h1 { max-width: 790px; margin-bottom: 20px; font-family: var(--serif); font-size: clamp(44px, 11vw, 84px); font-weight: 500; line-height: .98; letter-spacing: -.04em; }
.thank-lead { max-width: 690px; color: rgba(255, 255, 255, .72); font-size: clamp(16px, 4vw, 20px); }
.thank-content .hero-actions { margin-top: 28px; }
.thank-next { background: var(--white); }
.thank-contact { display: grid; gap: 14px; align-items: center; padding: 24px; margin-top: 28px; border-radius: 18px; color: var(--white); background: var(--ink-soft); }
.thank-contact span, .thank-contact small { display: block; color: var(--gold-light); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.thank-contact strong { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.thank-contact > a { overflow-wrap: anywhere; font-size: 13px; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1); }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 640px) {
  .container { width: min(100% - 48px, 1180px); }
  .hero-actions { display: flex; flex-wrap: wrap; }
  .hero-actions .btn { min-width: 210px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; }
  .service-featured .service-media img { height: 100%; aspect-ratio: auto; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcome-card:last-child { grid-column: 1 / -1; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .legal-note { grid-template-columns: 1fr auto; align-items: end; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .horizontal-steps { grid-template-columns: repeat(3, 1fr); }
  .thank-contact { grid-template-columns: 1.25fr 1fr 1fr; }
}

@media (min-width: 900px) {
  html { scroll-padding-top: 84px; }
  .section { padding: 112px 0; }
  .nav-shell { min-height: 82px; }
  .nav-toggle { display: none; }
  .main-nav { position: static; display: flex; gap: 8px; padding: 0; border: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 10px; color: rgba(255, 255, 255, .68); font-size: 12px; }
  .nav-phone { display: inline-flex; padding: 11px 17px; border: 1px solid rgba(226, 197, 132, .5); border-radius: 999px; color: var(--gold-light); font-size: 11px; font-weight: 850; }
  .hero { min-height: 830px; align-items: center; }
  .hero-bg { object-position: center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5, 5, 6, .94) 0%, rgba(5, 5, 6, .74) 36%, rgba(5, 5, 6, .12) 70%), linear-gradient(0deg, rgba(5, 5, 6, .62), transparent 48%); }
  .hero-content { grid-template-columns: minmax(0, 1fr) 320px; align-items: end; padding-top: 140px; padding-bottom: 90px; }
  .hero h1 { font-size: clamp(68px, 7vw, 98px); }
  .hero-card { margin-bottom: 8px; }
  .intro-grid { grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: start; }
  .intro-copy { padding-top: 44px; }
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .service-card { grid-column: span 2; }
  .service-featured { grid-column: 1 / -1; grid-template-columns: 1.25fr .75fr; }
  .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
  .service-body { padding: 32px; }
  .urgent-inner { grid-template-columns: 1fr auto; align-items: center; }
  .terminology-grid { grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
  .terminology-grid .section-heading { position: sticky; top: 120px; }
  .urgent-actions .btn { min-width: 260px; }
  .about-grid { grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
  .about-media img { min-height: 670px; }
  .process-list { grid-template-columns: repeat(4, 1fr); }
  .process-list li { grid-template-columns: 1fr; padding: 26px 24px; border-top: 1px solid rgba(255, 255, 255, .12); border-right: 1px solid rgba(255, 255, 255, .12); }
  .process-list li:last-child { border-right: 0; }
  .outcomes-grid { grid-template-columns: repeat(3, 1fr); }
  .outcome-card:last-child { grid-column: auto; }
  .office-grid { grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
  .office-media img { min-height: 530px; }
  .video-grid { grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; }
  .video-intro-shell { grid-template-columns: .7fr 1.3fr; gap: 48px; min-height: 620px; padding: 48px; }
  .video-intro-copy { padding: 20px 0; }
  .standards-inner { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .standards-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
  .faq-grid .section-heading { position: sticky; top: 120px; }
  .contact { padding: 112px 0; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
  .contact-form { padding: 34px; }
  .final-content { padding-bottom: 120px; }
  .floating-whatsapp { display: grid; bottom: 24px; }
  .mobile-callbar { display: none; }
  .site-footer { padding-bottom: 56px; }
  .subpage-hero { min-height: 760px; align-items: center; }
  .contact-page-hero { min-height: 620px; }
  .subpage-hero-content { padding-top: 160px; padding-bottom: 90px; }
  .subpage-hero-content h1 { font-size: clamp(65px, 7vw, 94px); }
  .detail-split { grid-template-columns: 1fr 1fr; gap: 82px; }
  .detail-split.reverse .detail-media { order: 2; }
  .detail-split.reverse .detail-copy { order: 1; }
  .detail-media img { min-height: 520px; }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-grid.three { grid-template-columns: repeat(3, 1fr); }
  .service-page-cta { padding: 104px 0; }
  .thank-hero { min-height: 780px; }
}

@media (min-width: 1200px) {
  .nav-shell { width: min(100% - 64px, 1320px); }
  .hero-content { width: min(100% - 64px, 1320px); }
}

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

@media print {
  .site-header, .mobile-callbar, .floating-whatsapp, .scroll-progress, .trust-ticker, .video-intro { display: none !important; }
  .hero { min-height: auto; padding: 80px 0; }
  .reveal { opacity: 1; transform: none; }
}
