:root {
  --bg: #f2eee5;
  --surface: #fffaf2;
  --surface-2: #eadfce;
  --surface-3: #f8f2e8;
  --text: #17251f;
  --muted: #53645b;
  --primary: #173b2d;
  --primary-2: #2f604c;
  --primary-3: #0f271f;
  --accent: #c39a67;
  --accent-2: #ecd7b8;
  --line: rgba(23, 59, 45, 0.13);
  --line-dark: rgba(255, 250, 242, 0.16);
  --shadow: 0 24px 60px rgba(18, 44, 34, 0.14);
  --shadow-soft: 0 16px 38px rgba(18, 44, 34, 0.09);
  --font-body: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Archivo Black", "Space Grotesk", system-ui, sans-serif;
  --radius: 22px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-stepping-scroll {
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text);
  background:
    radial-gradient(circle at 88% -8%, rgba(195, 154, 103, 0.16), transparent 34rem),
    radial-gradient(circle at 4% 12%, rgba(47, 96, 76, 0.08), transparent 30rem),
    linear-gradient(180deg, #fffaf2 0%, var(--bg) 48%, #ebe3d7 100%);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(195, 154, 103, 0.34);
}

h1,
h2,
h3,
.brand-copy strong,
.button {
  font-family: var(--font-display);
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

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

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

p,
ul {
  margin-top: 0;
}

p,
li {
  font-size: 1.04rem;
}

li::marker {
  color: var(--accent);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.75rem 0;
}

section[id] {
  scroll-margin-top: 6.5rem;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94) 0%, rgba(246, 239, 228, 0.92) 100%),
    radial-gradient(circle at 88% 18%, rgba(195, 154, 103, 0.12), transparent 28rem);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 4%, rgba(195, 154, 103, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--primary) 0%, #0d241d 58%, #081713 100%);
  color: #faf5ed;
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.06) 0 1px, transparent 1px 100%);
  background-size: 7rem 7rem;
  opacity: 0.15;
  pointer-events: none;
}

.section--dark > .container {
  position: relative;
  z-index: 1;
}

.section--accent {
  padding-top: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.page-watermark {
  --page-watermark-x: 52vw;
  --page-watermark-y: 13vh;
  --page-watermark-size: min(68vw, 760px);
  --page-watermark-rotate: -4deg;
  --page-watermark-opacity: 0.28;
  --page-watermark-filter: brightness(0) invert(1) sepia(0.18) saturate(0.85) drop-shadow(0 30px 70px rgba(0, 0, 0, 0.28));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: var(--page-watermark-size);
  max-width: none;
  height: auto;
  opacity: var(--page-watermark-opacity);
  filter: var(--page-watermark-filter);
  transform: translate3d(var(--page-watermark-x), var(--page-watermark-y), 0) rotate(var(--page-watermark-rotate));
  transform-origin: center;
  pointer-events: none;
  user-select: none;
  will-change: transform, width, opacity, filter;
  animation: logoBreathe 7s ease-in-out infinite;
}

.section > .container,
.site-footer > .container {
  position: relative;
  z-index: 3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.65rem 0;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.72));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(23, 59, 45, 0.06);
  transform: translateY(0);
  transition: transform 0.28s ease, background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  will-change: transform;
}

.site-header.is-scrolled {
  padding: 0.45rem 0;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 18px 44px rgba(16, 39, 30, 0.1);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 1rem));
  box-shadow: none;
}

.site-header:focus-within {
  transform: translateY(0);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.85rem;
  padding: 0.58rem 0.75rem 0.58rem 0.9rem;
  border: 1px solid rgba(23, 59, 45, 0.1);
  border-radius: 1.45rem 0.9rem 1.45rem 0.9rem;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 18px 42px rgba(16, 39, 30, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 8.9rem;
  height: auto;
  flex: 0 0 auto;
  padding: 0.35rem 0.5rem;
  border-radius: 1rem 0.55rem 1rem 0.55rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(23, 59, 45, 0.08);
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-copy small {
  max-width: 20rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.32rem;
  border: 1px solid rgba(23, 59, 45, 0.08);
  border-radius: 1.1rem 0.7rem 1.1rem 0.7rem;
  background: rgba(23, 59, 45, 0.04);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.72rem 0.82rem;
  border-radius: 0.9rem 0.45rem 0.9rem 0.45rem;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
  background: rgba(23, 59, 45, 0.08);
  transform: translateY(-1px);
}

.site-nav a.button {
  min-height: 2.75rem;
  padding-inline: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 10px 22px rgba(23, 59, 45, 0.16);
}

.site-nav a.button:hover,
.site-nav a.button:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary) 100%);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(23, 59, 45, 0.1);
  border-radius: 0.95rem 0.55rem 0.95rem 0.55rem;
  background: rgba(23, 59, 45, 0.06);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--primary);
  margin: 0.25rem auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-background {
  position: relative;
  overflow: hidden;
  color: #fffaf2;
  background:
    radial-gradient(circle at 78% 13%, rgba(195, 154, 103, 0.24), transparent 28rem),
    radial-gradient(circle at 12% 9%, rgba(255, 250, 242, 0.12), transparent 25rem),
    linear-gradient(135deg, #0b1d18 0%, #173b2d 44%, #071411 100%);
}

.hero-background::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-background::after {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 16, 0.9) 0%, rgba(11, 29, 24, 0.66) 46%, rgba(12, 34, 27, 0.2) 100%),
    radial-gradient(circle at 82% 22%, rgba(236, 215, 184, 0.2), transparent 29rem),
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0));
}

.hero-background > .section {
  position: relative;
  z-index: 3;
}

.hero {
  position: relative;
  min-height: auto;
  padding-top: clamp(3.25rem, 6vw, 5.25rem);
  padding-bottom: clamp(3rem, 5vw, 4.75rem);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(340px, 0.87fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy {
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both;
}

.hero-aside {
  animation: fadeInRight 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both;
}

.hero-copy h1,
.section-heading h2,
.about-intro h2,
.cta-banner h2,
.contact-grid h2,
.privacy-heading h2,
.hero-brand-card h2,
.trust-shell h2 {
  margin: 0 0 1rem;
  line-height: 1.05;
}

.section-heading h2,
.about-intro h2,
.cta-banner h2,
.contact-grid h2,
.privacy-heading h2,
.trust-shell h2 {
  font-size: clamp(2rem, 3.1vw, 3.25rem);
}

.hero-copy h1 {
  max-width: 14.5ch;
  color: #fffaf2;
  font-size: clamp(2.75rem, 4.8vw, 5rem);
  line-height: 1;
  text-wrap: balance;
}

.hero-copy h1 span {
  color: var(--accent-2);
  text-shadow: 0 18px 44px rgba(195, 154, 103, 0.25);
}

.hero-text,
.section-heading p,
.about-intro p,
.flow p,
.card p,
.contact-intro,
.contact-item p,
.contact-card p,
.timeline-item p,
.privacy-card p,
.cta-banner p,
.hero-brand-card p {
  color: var(--muted);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.hero .hero-text {
  max-width: 45rem;
  color: rgba(255, 250, 242, 0.8);
  font-size: 1.1rem;
}

.eyebrow {
  margin-bottom: 0.85rem;
  text-align: left;
  text-transform: uppercase;
  text-justify: auto;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  hyphens: none;
  color: var(--accent);
}

.hero-background .eyebrow,
.section--dark .eyebrow {
  color: var(--accent-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  box-shadow: 0 14px 28px rgba(23, 59, 45, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(23, 59, 45, 0.22);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.18);
  color: var(--primary);
  border-color: var(--line);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(23, 59, 45, 0.28);
}

.hero .button:not(.button--ghost) {
  background: linear-gradient(135deg, #f0d6b2 0%, var(--accent) 100%);
  color: #10251d;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.hero .button--ghost {
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.24);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero .button--ghost:hover,
.hero .button--ghost:focus-visible {
  border-color: rgba(255, 250, 242, 0.46);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.button--sm {
  min-height: 2.8rem;
  padding-inline: 1rem;
}

.button--light {
  background: #fff;
  color: var(--primary);
}

.button--full {
  width: 100%;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-highlights li,
.card,
.timeline-item,
.contact-item,
.contact-card,
.hero-brand-card,
.stat-card,
.privacy-card,
.trust-shell {
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-highlights li,
.cards > .card:nth-child(3n + 1),
.contact-item:nth-child(odd),
.stat-card:nth-child(odd) {
  border-radius: 1.35rem 0.65rem 1.35rem 0.65rem;
}

.cards > .card:nth-child(3n + 2),
.contact-card,
.privacy-card,
.stat-card:nth-child(even) {
  border-radius: 0.75rem 1.35rem 0.75rem 1.35rem;
}

.cards > .card:nth-child(3n),
.contact-item:nth-child(even),
.timeline-item:nth-child(even) {
  border-radius: 1.15rem 1.15rem 0.55rem 1.15rem;
}

.timeline-item:nth-child(odd),
.hero-brand-card {
  border-radius: 0.65rem 1.4rem 1.4rem 1.4rem;
}

.trust-shell {
  border-radius: 1.5rem 0.75rem 1.5rem 0.75rem;
}

.card,
.timeline-item,
.contact-item,
.contact-card,
.privacy-card,
.trust-shell,
.stat-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.contact-item:hover,
.timeline-item:hover {
  transform: translateY(-3px);
  border-color: rgba(195, 154, 103, 0.34);
  box-shadow: var(--shadow);
}

.hero-highlights li {
  padding: 1rem 1rem 1.05rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

.hero-brand-card {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.35rem;
  padding: 1.4rem;
  align-items: center;
  color: #fffaf2;
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.13) 0%, rgba(255, 250, 242, 0.07) 100%);
  border-color: var(--line-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.hero-brand-card img {
  width: 100%;
  height: auto;
  padding: 0.9rem;
  border-radius: 0.95rem 0.45rem 0.95rem 0.45rem;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: inset 0 0 0 1px rgba(23, 59, 45, 0.08), 0 16px 28px rgba(0, 0, 0, 0.12);
}

.contact-logo,
.footer-logo {
  width: 100%;
  height: auto;
}

.hero-brand-card h2 {
  color: #fffaf2;
  font-size: 1.35rem;
}

.hero-brand-card p {
  color: rgba(255, 250, 242, 0.74);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.3rem;
  background: rgba(255, 250, 242, 0.1);
  border-color: var(--line-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  color: var(--accent-2);
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.94rem;
}

.stat-card--accent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(195, 154, 103, 0.24) 0%, rgba(255, 250, 242, 0.08) 100%);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -2.1rem;
  padding-top: 0;
  padding-bottom: clamp(2.75rem, 4vw, 3.75rem);
}

.trust-shell {
  padding: 1.6rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.1);
  border-color: var(--line-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.trust-shell h2 {
  color: #fffaf2;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.trust-points span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid var(--line-dark);
  color: #fffaf2;
  font-weight: 700;
  font-size: 0.92rem;
}

.about-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.about-intro {
  display: grid;
  gap: 0.75rem;
}

.about-values {
  grid-column: 1 / -1;
}

.flow > * + * {
  margin-top: 1rem;
}

.hero-about {
  padding-top: 0;
  padding-bottom: clamp(4rem, 5vw, 4.75rem);
  color: #fffaf2;
}

.hero-about .about-intro h2,
.hero-about .about-flow strong,
.hero-about .value-card h3 {
  color: #fffaf2;
}

.hero-about .about-intro p,
.hero-about .flow p,
.hero-about .value-card p {
  color: rgba(255, 250, 242, 0.76);
}

.hero-about .value-card {
  background: rgba(255, 250, 242, 0.09);
  border-color: var(--line-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.hero-about .value-card:hover {
  border-color: rgba(236, 215, 184, 0.38);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.section-heading--light p,
.section-heading--light h2 {
  color: #fffaf2;
}

.section-heading--light p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.78);
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1.55rem;
}

.card h3,
.contact-item h3,
.contact-card h3,
.timeline-item h3,
.privacy-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--text);
  line-height: 1.15;
}

.card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
  color: var(--muted);
}

.card ul li + li {
  margin-top: 0.35rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(195, 154, 103, 0.2), rgba(47, 96, 76, 0.12));
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.value-card {
  background: rgba(255, 250, 242, 0.82);
}

.service-card {
  min-height: 100%;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
}

.card--dark {
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.14);
  box-shadow: none;
}

.card--dark:hover {
  border-color: rgba(236, 215, 184, 0.36);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.card--dark h3 {
  color: #fffaf2;
}

.card--dark p {
  color: rgba(255, 250, 242, 0.78);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.3rem;
}

.timeline-item span {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 0.95rem 0.35rem 0.95rem 0.35rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 22px rgba(23, 59, 45, 0.16);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  color: #fffaf2;
  background:
    radial-gradient(circle at 88% 8%, rgba(236, 215, 184, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 1.6rem 0.8rem 1.6rem 0.8rem;
  box-shadow: var(--shadow);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -6rem -7rem auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(195, 154, 103, 0.18);
  filter: blur(4px);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner .eyebrow {
  color: var(--accent-2);
}

.cta-banner p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.78);
}

.contact-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact-item {
  padding: 1.15rem;
}

.contact-item a,
.privacy-mail {
  color: var(--primary);
  font-weight: 700;
}

.contact-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.96) 0%, rgba(247, 241, 231, 0.96) 100%);
  box-shadow: var(--shadow);
}

.contact-logo {
  width: 11rem;
  margin-bottom: 1rem;
}

.map-embed {
  min-height: 18rem;
  margin: 1.25rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 18rem;
  border: 0;
  filter: saturate(0.86) contrast(1.04) sepia(0.08);
}

.privacy-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.privacy-card {
  padding: 1.65rem;
  background: rgba(255, 250, 242, 0.88);
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: #ebe3d7;
  border-top: 1px solid rgba(23, 59, 45, 0.08);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 9.5rem;
}

.footer-shell strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.86rem;
}

.footer-shell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logoBreathe {
  0%,
  100% {
    opacity: var(--page-watermark-opacity, 0.24);
  }

  50% {
    opacity: calc(var(--page-watermark-opacity, 0.24) + 0.04);
  }
}

@keyframes whatsappFloat {
  0%,
  100% {
    translate: 0 0;
  }

  16% {
    translate: 0 -3px;
  }

  32% {
    translate: 0 0;
  }
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.22;
    transform: scale(0.92);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal:not(.is-visible) {
  opacity: 0;
}

.reveal--lift:not(.is-visible) {
  transform: translateY(18px);
}

.reveal--slide-left:not(.is-visible) {
  transform: translateX(-22px);
}

.reveal--slide-right:not(.is-visible) {
  transform: translateX(22px);
}

.reveal--scale:not(.is-visible) {
  transform: scale(0.965);
}

.reveal--soft:not(.is-visible) {
  transform: translateY(10px) scale(0.985);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: 1.25rem;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 200;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.35rem;
  padding: 0.92rem 1.35rem 0.92rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 22px 48px rgba(18, 140, 126, 0.38), 0 10px 22px rgba(0, 0, 0, 0.14);
  font-weight: 800;
  line-height: 1;
  animation: whatsappFloat 7s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -0.5rem;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: rgba(37, 211, 102, 0.18);
  animation: whatsappPulse 5.2s ease-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 28px 58px rgba(18, 140, 126, 0.48), 0 12px 26px rgba(0, 0, 0, 0.18);
}

.whatsapp-float__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-float__icon svg {
  width: 1.82rem;
  height: 1.82rem;
  display: block;
  fill: currentColor;
}

.whatsapp-float__text {
  font-size: 1.05rem;
}

@media (max-width: 1080px) {
  .nav-shell {
    gap: 0.6rem;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav a {
    padding-inline: 0.68rem;
    font-size: 0.84rem;
  }

  .hero-grid,
  .about-grid,
  .privacy-shell,
  .contact-grid,
  .cards--three,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .trust-shell,
  .cta-banner,
  .footer-shell {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-points {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  p,
  li {
    font-size: 1rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .site-header {
    padding: 0.45rem 0;
  }

  .page-watermark {
    --page-watermark-x: -54vw;
    --page-watermark-y: 8vh;
    --page-watermark-size: 162vw;
    --page-watermark-opacity: 0.24;
  }

  .nav-shell {
    min-height: 4.25rem;
    padding: 0.45rem 0.55rem 0.45rem 0.65rem;
    border-radius: 1.15rem 0.7rem 1.15rem 0.7rem;
  }

  .brand-copy {
    display: none;
  }

  .brand-logo {
    width: 8.2rem;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.65rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.8rem;
    border-radius: 1.2rem 0.65rem 1.2rem 0.65rem;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    min-height: 3rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10.5vw, 3.05rem);
    line-height: 1.03;
  }

  .hero .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    margin: 1.35rem 0 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-aside {
    gap: 0.75rem;
  }

  .hero-brand-card {
    grid-template-columns: 7rem 1fr;
    gap: 1rem;
    padding: 1.05rem;
  }

  .hero-brand-card img {
    width: 100%;
    padding: 0.65rem;
    border-radius: 1rem;
  }

  .hero-brand-card h2 {
    font-size: 1.08rem;
  }

  .hero-brand-card p {
    font-size: 0.94rem;
  }

  .trust-strip {
    margin-top: 0;
    padding-bottom: 3.25rem;
  }

  .trust-shell {
    padding: 1.25rem;
    border-radius: 1.15rem 0.6rem 1.15rem 0.6rem;
  }

  .trust-points,
  .trust-points span {
    width: 100%;
  }

  .trust-points span {
    display: block;
    text-align: center;
  }

  .hero-about {
    padding-top: 0;
    padding-bottom: 4.25rem;
  }

  .about-grid {
    gap: 1.35rem;
  }

  .card,
  .contact-card,
  .privacy-card {
    padding: 1.25rem;
  }

  .whatsapp-float {
    right: 0.95rem;
    right: max(0.95rem, env(safe-area-inset-right));
    bottom: 0.95rem;
    bottom: max(0.95rem, env(safe-area-inset-bottom));
    width: 4.35rem;
    min-height: 4.35rem;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float__icon {
    width: 2.9rem;
    height: 2.9rem;
    background: transparent;
  }

  .whatsapp-float__text {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-card strong {
    font-size: 1.65rem;
  }

  .stat-card span {
    font-size: 0.86rem;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .stat-card--accent {
    grid-column: 1 / -1;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item span {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.8rem 0.35rem 0.8rem 0.35rem;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy,
  .hero-aside,
  .page-watermark,
  .whatsapp-float,
  .whatsapp-float::before {
    animation: none;
  }

  .site-header,
  .site-nav a,
  .nav-toggle span,
  .button,
  .card,
  .timeline-item,
  .contact-item,
  .whatsapp-float,
  .reveal {
    transition: none;
  }

  .reveal,
  .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .button:hover,
  .button:focus-visible,
  .card:hover,
  .contact-item:hover,
  .timeline-item:hover,
  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: none;
  }
}
