:root {
  --ink: #16312e;
  --ink-soft: #49615e;
  --petrol: #0d514a;
  --petrol-dark: #083d38;
  --sage: #afc6b5;
  --cream: #f6f0e4;
  --paper: #fffdf8;
  --gold: #c7943e;
  --line: #dfe7df;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.shell { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(22, 49, 46, 0.08);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--petrol);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}
.brand > span:last-child { display: grid; }
.brand strong { font-family: Georgia, serif; font-size: 0.98rem; }
.brand small { margin-top: 0.12rem; color: var(--ink-soft); font-size: 0.7rem; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}
.desktop-nav a:hover { color: var(--petrol); }
.nav-cta {
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--petrol);
  border-radius: 999px;
  color: var(--petrol);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 81, 74, 0.12) 0.8px, transparent 0.8px);
  background-size: 23px 23px;
  mask-image: linear-gradient(to right, black, transparent 62%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -130px;
  top: -160px;
  border-radius: 50%;
  background: rgba(175, 198, 181, 0.48);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.75fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  color: var(--petrol);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.process-intro h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.hero h1 {
  max-width: 800px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.99;
}
.hero h1 em { color: var(--petrol); font-weight: inherit; }
.hero-lead {
  max-width: 675px;
  margin: 1.65rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--petrol);
  color: white;
  box-shadow: 0 12px 26px rgba(13, 81, 74, 0.18);
}
.button-primary:hover { background: var(--petrol-dark); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(13, 81, 74, 0.35);
  color: var(--petrol);
  font-size: 0.91rem;
  font-weight: 800;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.81rem;
  font-weight: 650;
}
.hero-points li { display: inline-flex; align-items: center; gap: 0.35rem; }
.hero-points .icon { color: var(--gold); }

.profile-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(22, 49, 46, 0.13);
  backdrop-filter: blur(10px);
}
.portrait-photo-wrap {
  min-height: 260px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--petrol) 0%, #2a7168 60%, var(--sage) 100%);
}
.portrait-photo {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}
.profile-content { padding: 1.7rem 1.8rem 1.9rem; }
.profile-kicker, .highlight-label {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.profile-content h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
}
.profile-role {
  margin: 0.2rem 0 0;
  color: var(--petrol);
  font-size: 0.83rem;
  font-weight: 800;
}
.profile-registration {
  margin: 0.2rem 0 1rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.profile-content > p:last-of-type {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}
.profile-note {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.25rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.55;
}
.profile-note .icon { width: 22px; height: 22px; flex: 0 0 auto; color: var(--gold); }

.promise-strip { background: var(--petrol); color: white; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.promise-grid > div {
  display: grid;
  justify-content: center;
  gap: 0.15rem;
  padding: 1.6rem;
  text-align: center;
}
.promise-grid > div + div { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.promise-grid strong { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.promise-grid span { color: rgba(255, 255, 255, 0.7); font-size: 0.72rem; letter-spacing: 0.04em; }

.section { padding-block: clamp(5rem, 9vw, 8rem); }
.services-section { background: var(--paper); }
.section-heading { max-width: 760px; margin: 0 auto 3.25rem; text-align: center; }
.eyebrow-dark { color: var(--gold); }
.section-heading h2, .process-intro h2, .contact-card h2 {
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 1.08;
}
.section-heading > p:last-child,
.process-intro > p:nth-of-type(2),
.contact-card > div:nth-child(2) > p:last-child {
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  min-height: 260px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: 0 18px 38px rgba(22, 49, 46, 0.08);
}
.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  color: var(--petrol);
}
.service-card h3 {
  margin: 1.35rem 0 0;
  font-family: Georgia, serif;
  font-size: 1.28rem;
  font-weight: 500;
}
.service-card p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}
.service-highlight {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.2rem;
  padding: 2.2rem 2.4rem;
  border-radius: 22px;
  background: var(--cream);
}
.service-highlight h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
}
.service-highlight > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--petrol-dark);
  color: white;
}
.process-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -250px;
  bottom: -300px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.015);
}
.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}
.eyebrow-light { color: #dfbd7d; }
.process-intro > p:nth-of-type(2) { color: rgba(255, 255, 255, 0.7); }
.button-cream { margin-top: 1.7rem; background: var(--cream); color: var(--petrol-dark); }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.45rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.steps-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.steps-list > li > span { color: #dfbd7d; font-family: Georgia, serif; font-size: 1.15rem; }
.steps-list h3 { margin: 0; font-family: Georgia, serif; font-size: 1.4rem; font-weight: 500; }
.steps-list p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.65;
}

.testimonials-section { background: #eef3ee; }
.testimonials-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}
.left-heading { margin: 0; text-align: left; }
.left-heading > p:last-child { margin-inline: 0; }
.testimonial-placeholder {
  position: relative;
  padding: clamp(2rem, 5vw, 3.7rem);
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 60px rgba(22, 49, 46, 0.09);
}
.quote-mark {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
}
.testimonial-placeholder > p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
  line-height: 1.42;
}
.testimonial-signature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.testimonial-signature > span { width: 42px; height: 42px; border-radius: 50%; background: var(--cream); }
.testimonial-signature > div { display: grid; }
.testimonial-signature strong { font-size: 0.84rem; }
.testimonial-signature small { color: var(--ink-soft); font-size: 0.75rem; }

.contact-section { padding: 1rem 0 5rem; background: #eef3ee; }
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.6rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.7rem);
  border-radius: 30px;
  background: var(--petrol);
  color: white;
  box-shadow: 0 24px 65px rgba(13, 81, 74, 0.22);
}
.contact-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}
.contact-card .eyebrow { margin-bottom: 0.7rem; }
.contact-card h2 { max-width: 700px; font-size: clamp(2rem, 3.6vw, 3.5rem); }
.contact-card > div:nth-child(2) > p:last-child {
  max-width: 690px;
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.72);
}
.button-whatsapp { background: white; color: var(--petrol); white-space: nowrap; }

footer { padding-block: 2.4rem; background: var(--paper); }
.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.footer-content > p { margin: 0; color: var(--ink-soft); font-size: 0.78rem; text-align: center; }
.footer-content > a { justify-self: end; color: var(--petrol); font-size: 0.78rem; font-weight: 800; }

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.icon-box .icon { width: 23px; height: 23px; }
.contact-icon .icon { width: 30px; height: 30px; }
.eyebrow .icon { width: 15px; height: 15px; }
.hero-points .icon { width: 16px; height: 16px; }
.icon-arrow { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M13.2 4.2a1 1 0 0 1 1.4 0l7.1 7.1a1 1 0 0 1 0 1.4l-7.1 7.1a1 1 0 1 1-1.4-1.4l5.4-5.4H3a1 1 0 1 1 0-2h15.6l-5.4-5.4a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E"); }
.icon-check { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9.2 16.6 4.9 12.3a1 1 0 0 0-1.4 1.4l5 5a1 1 0 0 0 1.4 0L20.7 7.9a1 1 0 0 0-1.4-1.4L9.2 16.6Z'/%3E%3C/svg%3E"); }
.icon-message { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3C6.5 3 2 6.8 2 11.5c0 2.6 1.4 5 3.7 6.6L5 21a1 1 0 0 0 1.4 1.1l3.4-1.7c.7.1 1.4.2 2.2.2 5.5 0 10-3.8 10-8.5S17.5 3 12 3Zm0 15.5c-.7 0-1.4-.1-2-.2a1 1 0 0 0-.7.1l-1.8.9.3-1.4a1 1 0 0 0-.5-1.1C5.3 15.6 4 13.7 4 11.5 4 7.9 7.6 5 12 5s8 2.9 8 6.5-3.6 7-8 7Z'/%3E%3C/svg%3E"); }
.icon-sparkles { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 1.5 5.1L18.6 9l-5.1 1.9L12 16l-1.5-5.1L5.4 9l5.1-1.9L12 2Zm6.5 11 1 3.2 3.1 1.1-3.1 1.2-1 3.1-1-3.1-3.1-1.2 3.1-1.1 1-3.2ZM5.5 13l.8 2.7L9 16.5l-2.7.9-.8 2.6-.8-2.6-2.7-.9 2.7-.8.8-2.7Z'/%3E%3C/svg%3E"); }
.icon-heart-hand { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 5.4c1.8-2 5.2-1.1 5.7 1.7.3 1.6-.6 3.1-1.8 4.3l-3.2 3.1a1 1 0 0 1-1.4 0L8.1 11.4C6.9 10.2 6 8.7 6.3 7.1 6.8 4.3 10.2 3.4 12 5.4Zm-4 11.1 3.8 1.3c.4.1.8.1 1.1-.1l5.5-3.1a1 1 0 0 1 1 1.8l-5.5 3.1a4 4 0 0 1-2.8.3l-4.7-1.6H4a1 1 0 1 1 0-2h4Z'/%3E%3C/svg%3E"); }
.icon-calendar { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h1V3a1 1 0 0 1 1-1Zm13 8H4v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-9Zm-3.3 3.3a1 1 0 0 1 0 1.4l-4 4a1 1 0 0 1-1.4 0l-2-2a1 1 0 0 1 1.4-1.4l1.3 1.3 3.3-3.3a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E"); }
.icon-search { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M10.5 4a6.5 6.5 0 1 0 4.1 11.5l3 3a1 1 0 0 0 1.4-1.4l-3-3A6.5 6.5 0 0 0 10.5 4Zm0 2a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Z'/%3E%3C/svg%3E"); }
.icon-file { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 2h8l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm7 2H6v16h11V8h-4V4Zm3.7 8.3a1 1 0 0 1 0 1.4l-3.7 3.7a1 1 0 0 1-1.4 0l-1.8-1.8a1 1 0 1 1 1.4-1.4l1.1 1.1 3-3a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E"); }
.icon-target { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 3a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z'/%3E%3C/svg%3E"); }
.icon-clipboard { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 2h6a2 2 0 0 1 2 2h1a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1a2 2 0 0 1 2-2Zm0 2v2h6V4H9Zm7.7 7.3a1 1 0 0 1 0 1.4l-4 4a1 1 0 0 1-1.4 0l-2-2a1 1 0 1 1 1.4-1.4l1.3 1.3 3.3-3.3a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E"); }
.icon-shield { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm4.7 7.3a1 1 0 0 1 0 1.4l-5 5a1 1 0 0 1-1.4 0l-2-2a1 1 0 1 1 1.4-1.4l1.3 1.3 4.3-4.3a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E"); }
.icon-users { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 2c3.3 0 6 2 6 4.5V20H3v-2.5C3 15 5.7 13 9 13Zm7.5-2a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm.5 2c2.8.1 5 1.9 5 4.1V20h-5v-2.5c0-1.7-.8-3.2-2.1-4.3.6-.1 1.3-.2 2.1-.2Z'/%3E%3C/svg%3E"); }

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .hero-grid, .process-layout, .testimonials-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .profile-card { display: grid; grid-template-columns: 0.78fr 1fr; }
  .portrait-photo-wrap { min-height: 100%; }
  .portrait-photo { min-height: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: auto 1fr; }
  .contact-card .button-whatsapp { grid-column: 2; justify-self: start; }
  .footer-content { grid-template-columns: 1fr auto; }
  .footer-content > p { display: none; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 1.3rem, 1180px); }
  .nav-wrap { min-height: 68px; }
  .brand small, .nav-cta { display: none; }
  .hero-grid { gap: 2.5rem; padding-block: 3.5rem; }
  .hero h1 { font-size: clamp(2.55rem, 13.3vw, 4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-points { display: grid; }
  .profile-card { display: block; }
  .portrait-photo-wrap, .portrait-photo { min-height: 280px; }
  .promise-grid { grid-template-columns: 1fr; padding-block: 0.5rem; }
  .promise-grid > div { padding: 1rem; }
  .promise-grid > div + div { border-top: 1px solid rgba(255, 255, 255, 0.16); border-left: 0; }
  .services-grid, .service-highlight { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-highlight { gap: 1rem; padding: 1.7rem; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card .button-whatsapp { grid-column: 1; width: 100%; }
  .contact-icon { width: 58px; height: 58px; }
  .footer-brand small { display: block; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-content > a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .service-card { transition: none; }
}
