:root {
  --navy-950: #071522;
  --navy-900: #0b1f35;
  --navy-800: #12304f;
  --navy-700: #1d466f;
  --gold: #b7955b;
  --gold-light: #d3bb91;
  --ivory: #f5f1e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #17212b;
  --muted: #5f6a73;
  --line: #dfe2df;
  --success: #1f7251;
  --shadow: 0 24px 70px rgba(5, 25, 44, 0.12);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  z-index: 20;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 15;
  border-bottom: 1px solid rgba(183, 149, 91, 0.2);
  background: rgba(7, 21, 34, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  line-height: 1.05;
}

.brand-mark {
  position: relative;
  width: 43px;
  height: 43px;
  display: block;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  overflow: hidden;
}

.brand-s,
.brand-rr {
  position: absolute;
  left: 50%;
  top: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.brand-s {
  color: rgba(211, 187, 145, 0.22);
  font-size: 39px;
  font-style: italic;
  transform: translate(-47%, -54%);
}

.brand-rr {
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: 0 10px 30px rgba(183, 149, 91, 0.22);
}

.button:focus-visible,
.card-action:focus-visible,
.copy-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(183, 149, 91, 0.52);
  outline-offset: 3px;
}

.button:disabled {
  transform: none;
  border-color: #91a09a;
  background: #91a09a;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  cursor: not-allowed;
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 164px 0 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(35, 76, 116, 0.72), transparent 26%),
    linear-gradient(118deg, var(--navy-950) 0%, var(--navy-900) 58%, #102e4c 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -310px;
  border: 1px solid rgba(183, 149, 91, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(183, 149, 91, 0.035), 0 0 0 160px rgba(183, 149, 91, 0.025);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #8c6d3e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow,
.eyebrow.light {
  color: var(--gold-light);
}

.hero h1,
.section-heading h2,
.consultation h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.1vw, 76px);
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 38px;
}

.text-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--gold-light);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 54px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 149, 91, 0.5);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 20px;
}

.trust-icon.pin {
  font-size: 9px;
}

.trust-list strong,
.trust-list small {
  display: block;
}

.trust-list strong {
  font-size: 13px;
}

.trust-list small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.hero-panel {
  position: relative;
  padding: clamp(42px, 5vw, 68px);
  border: 1px solid rgba(183, 149, 91, 0.42);
  background: rgba(6, 19, 31, 0.46);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold-light);
}

.hero-panel::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.hero-panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.panel-monogram {
  position: relative;
  width: 96px;
  height: 88px;
  font-family: Georgia, serif;
}

.panel-s,
.panel-rr {
  position: absolute;
  left: 50%;
  top: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.panel-s {
  color: rgba(183, 149, 91, 0.18);
  font-size: 96px;
  font-style: italic;
  transform: translate(-46%, -54%);
}

.panel-rr {
  color: var(--gold-light);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.hero-panel blockquote {
  margin: 28px 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.25;
}

.panel-divider {
  width: 52px;
  height: 1px;
  margin: 0 0 22px;
  background: var(--gold);
}

.hero-panel > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #75c59e;
  box-shadow: 0 0 0 4px rgba(117, 197, 158, 0.12);
}

.practice {
  padding: 88px 0 94px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 42px;
}

.section-heading h2,
.consultation h2 {
  color: var(--navy-900);
  font-size: clamp(38px, 4.8vw, 58px);
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.practice-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.practice-card-featured {
  min-height: 350px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
  gap: clamp(40px, 6vw, 76px);
  padding: clamp(36px, 4vw, 48px);
  border-color: rgba(183, 149, 91, 0.58);
  background:
    linear-gradient(112deg, rgba(245, 241, 232, 0.96), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.practice-card-featured::after {
  content: "PREVIDENCIÁRIO";
  position: absolute;
  right: 24px;
  bottom: 10px;
  color: rgba(11, 31, 53, 0.025);
  font-family: Georgia, serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 1;
  pointer-events: none;
}

.practice-card:hover {
  transform: translateY(-7px);
  border-color: rgba(183, 149, 91, 0.6);
  box-shadow: var(--shadow);
}

.area-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.area-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.area-badge {
  padding: 5px 9px;
  border: 1px solid rgba(183, 149, 91, 0.42);
  color: #806337;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.practice-card h3 {
  margin: 34px 0 16px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;
}

.practice-card-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.practice-card-services {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}

.practice-card-featured .practice-card-services {
  margin-top: 0;
}

.services-label {
  color: #8c6d3e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practice-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 30px;
  padding: 0;
  color: #46525d;
  font-size: 12px;
  list-style: none;
}

.practice-card-featured ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
}

.practice-card li::before {
  content: "—";
  margin-right: 8px;
  color: var(--gold);
}

.card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.card-action span {
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.card-action:hover span {
  transform: translateX(5px);
}

.consultation {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--navy-900);
  color: var(--white);
}

.consultation::before {
  content: "§";
  position: absolute;
  right: -10px;
  bottom: -220px;
  color: rgba(255, 255, 255, 0.022);
  font-family: Georgia, serif;
  font-size: 620px;
  line-height: 1;
}

.consultation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 8vw, 105px);
  align-items: start;
}

.consultation h2 {
  max-width: 490px;
  color: var(--white);
}

.consultation-intro > p:not(.eyebrow, .privacy-note) {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.contact-card {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-label {
  margin: 22px 0 10px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-decoration: none;
}

.contact-card strong {
  color: var(--white);
  font-size: 13px;
  text-align: right;
}

.privacy-note {
  display: flex;
  gap: 10px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.privacy-note span {
  color: var(--gold-light);
}

.message-builder {
  padding: clamp(30px, 5vw, 52px);
  border-top: 3px solid var(--gold);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
}

.builder-heading {
  margin-bottom: 28px;
}

.step-badge {
  color: #8c6d3e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.builder-heading h3 {
  margin: 8px 0 5px;
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.builder-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
}

.field > span:first-child {
  color: #394753;
  font-size: 12px;
  font-weight: 800;
}

.field b {
  color: #9c3f3f;
}

.field small {
  color: #8a939a;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8ddda;
  border-radius: 2px;
  background: #fdfdfc;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 112px;
  padding: 13px 14px 28px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183, 149, 91, 0.11);
  outline: none;
}

select:disabled {
  color: #969da1;
  background: #f3f4f2;
}

.counter {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #939a9e;
  font-size: 10px;
}

.message-preview {
  margin: 8px 0 20px;
  padding: 16px;
  border-left: 3px solid var(--gold);
  background: #f5f3ee;
}

.message-preview > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.message-preview > div > span {
  color: #7c6848;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.message-preview p {
  margin: 10px 0 0;
  color: #4c5660;
  font-size: 12px;
  white-space: pre-line;
}

.copy-button {
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.copy-button:disabled {
  color: #a8aca9;
  cursor: not-allowed;
}

.form-alert {
  margin: -7px 0 14px;
  color: #9c3f3f;
  font-size: 12px;
}

.button-whatsapp {
  width: 100%;
  border-color: var(--success);
  background: var(--success);
  color: var(--white);
}

.button-whatsapp:hover {
  background: #298263;
  box-shadow: 0 10px 30px rgba(31, 114, 81, 0.2);
}

.button-caption {
  margin: 8px 0 0;
  color: #7e878d;
  font-size: 10px;
  text-align: center;
}

.site-footer {
  padding: 36px 0;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.53);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
}

.footer-grid p {
  margin: 0;
  font-size: 11px;
}

.footer-brand {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.practice-card:nth-child(2) {
  transition-delay: 0.08s;
}

.practice-card:nth-child(3) {
  transition-delay: 0.16s;
}

.practice-card:nth-child(4) {
  transition-delay: 0.22s;
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 21, 34, 0.98);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav > a:not(.button) {
    padding: 13px 4px;
  }

  .main-nav .button {
    margin-top: 12px;
  }

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

  .hero {
    padding-top: 146px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .practice-card-featured {
    grid-column: 1 / -1;
  }

  .practice-card:not(.practice-card-featured):last-child {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .consultation-intro {
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand strong {
    font-size: 16px;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 72px;
  }

  .hero h1 {
    font-size: clamp(41px, 12vw, 56px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .text-link {
    text-align: center;
  }

  .trust-list {
    display: grid;
    gap: 18px;
  }

  .hero-panel {
    padding: 34px 28px;
  }

  .panel-monogram {
    width: 82px;
    height: 72px;
  }

  .panel-s {
    font-size: 80px;
  }

  .panel-rr {
    font-size: 31px;
  }

  .practice,
  .consultation {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .consultation h2 {
    font-size: 39px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .practice-card,
  .practice-card:not(.practice-card-featured):last-child {
    grid-column: auto;
    min-height: 390px;
  }

  .practice-card-featured {
    display: flex;
    grid-column: auto;
    min-height: 0;
    gap: 0;
    padding: 38px 28px 30px;
  }

  .practice-card-featured .practice-card-services {
    margin-top: 28px;
  }

  .practice-card-featured ul {
    grid-template-columns: 1fr;
  }

  .message-builder {
    padding: 30px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-card a {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .contact-card strong {
    overflow-wrap: anywhere;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-grid p:last-child {
    grid-column: auto;
  }
}
