:root {
  --bg: #f4f2ec;
  --bg-elevated: #fdfcfa;
  --bg-subtle: #e6ebe9;
  --ink: #141210;
  --ink-muted: #45403a;
  --line: rgba(20, 18, 16, 0.08);
  --line-brand: rgba(26, 92, 84, 0.14);
  --line-gold: rgba(184, 151, 94, 0.28);
  --brand: #166b62;
  --brand-hover: #0f524a;
  --brand-soft: #e3f2ef;
  --brand-muted: #3d8a7e;
  --gold: #b8975e;
  --gold-bright: #d4c4a0;
  --gold-soft: #f0ebe3;
  --gold-muted: #8f7549;
  --radius: 14px;
  --shadow: 0 16px 48px rgba(8, 12, 11, 0.06);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 12px 36px rgba(8, 12, 11, 0.035);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --max: 960px;
  --hero-text: #f7faf9;
  --hero-muted: rgba(235, 248, 245, 0.88);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.07rem;
  line-height: 1.78;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-hover);
}

:focus-visible {
  outline: 2px solid var(--brand-muted);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  z-index: 1000;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-brand);
  box-shadow: 0 1px 0 rgba(184, 151, 94, 0.12);
}

.header-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 640px) {
  .logo {
    font-size: 1rem;
    line-height: 1.3;
    max-width: min(100%, 16rem);
  }
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-list a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #1a7a6f 0%, var(--brand) 52%, #12564d 100%);
  color: #f6fffc;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.14) inset, 0 8px 28px rgba(17, 82, 74, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #1f8c80 0%, #166b62 52%, #156056 100%);
  color: #fff;
}

.btn-ghost {
  background: rgba(253, 252, 250, 0.9);
  color: var(--ink);
  border: 1px solid var(--line-brand);
}

.btn-ghost:hover {
  border-color: var(--brand-muted);
  color: var(--brand-hover);
  background: var(--brand-soft);
}

.hero {
  position: relative;
  background: radial-gradient(ellipse 100% 80% at 70% -25%, rgba(100, 200, 185, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(22, 107, 98, 0.2) 0%, transparent 45%),
    linear-gradient(168deg, #0c2824 0%, #071a18 42%, #040807 100%);
  color: var(--hero-text);
  padding: clamp(4rem, 11vw, 7rem) 1.75rem 5.5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 8, 7, 0.4) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  gap: 2rem 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }
}

.hero-copy {
  min-width: 0;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9ee0d4;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 3.45rem);
  font-weight: 600;
  line-height: 1.11;
  letter-spacing: 0.01em;
  margin: 0 0 1.5rem;
  max-width: 26ch;
  color: #fff;
  text-wrap: balance;
}

.hero-lead {
  font-size: 1.14rem;
  line-height: 1.78;
  color: var(--hero-muted);
  max-width: 48ch;
  margin: 0 0 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero .btn-primary {
  background: linear-gradient(180deg, #1f8f80 0%, var(--brand) 50%, #0f4a43 100%);
  color: #f6fffc;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.12) inset, 0 10px 36px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero .btn-primary:hover {
  background: linear-gradient(180deg, #26a090 0%, #1a7a6f 50%, #12564d 100%);
  color: #fff;
}

.hero .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #f0faf8;
  background: rgba(255, 255, 255, 0.05);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(180, 230, 218, 0.55);
  color: #fff;
}

.hero-tool-note {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(235, 248, 245, 0.78);
}

.hero-tool-note a {
  color: #b5f5e8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hero-tool-note a:hover {
  color: #fff;
}

.hero-preview {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 20, 18, 0.65);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(100, 200, 185, 0.08) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-preview:hover {
  transform: translateY(-3px);
  border-color: rgba(158, 224, 212, 0.45);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(158, 224, 212, 0.2) inset;
}

.hero-preview-video {
  display: none;
}

.hero-preview-visual {
  display: block;
  padding: 0.45rem 0.45rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-preview-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.hero-preview-ui {
  padding: 0.85rem 0.9rem 0.75rem;
}

.hero-preview-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.hero-preview-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.hero-preview-chrome p {
  margin: 0 0 0 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(235, 248, 245, 0.55);
}

.hero-preview-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.hero-preview-tabs span {
  font-size: 0.72rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(235, 248, 245, 0.55);
}

.hero-preview-tabs span.active {
  background: rgba(31, 143, 128, 0.35);
  border-color: rgba(158, 224, 212, 0.35);
  color: #e8fff9;
}

.hero-preview-label {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(235, 248, 245, 0.55);
}

.hero-preview-value {
  margin: 0.15rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  transition: opacity 0.35s ease;
}

.hero-preview-value.is-fading {
  opacity: 0.35;
}

.hero-preview-scroll {
  max-height: 5.5rem;
  overflow: hidden;
  margin: 0 0 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-preview-scroll-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.45rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  color: rgba(235, 248, 245, 0.75);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.hero-preview-scroll-row.active {
  border-color: rgba(184, 151, 94, 0.55);
  background: rgba(31, 143, 128, 0.22);
}

.hero-preview-scroll-row code {
  color: #9ee0d4;
  font-size: 0.72rem;
}

.hero-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hero-preview-grid div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
}

.hero-preview-grid span {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(235, 248, 245, 0.5);
}

.hero-preview-grid strong {
  display: block;
  font-size: 0.95rem;
  color: #9ee0d4;
  margin-top: 0.1rem;
}

.hero-preview-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f6fffc;
  background: linear-gradient(180deg, rgba(31, 143, 128, 0.9) 0%, rgba(15, 74, 67, 0.95) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-preview-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #f6fffc;
}

@media (max-width: 899px) {
  .hero-preview {
    max-width: 22rem;
  }
}

.section {
  padding: clamp(4rem, 9vw, 6.5rem) 1.75rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: 0.015em;
  color: var(--ink);
  line-height: 1.16;
}

.section-intro {
  color: var(--ink-muted);
  max-width: 58ch;
  margin: 0 0 3rem;
  line-height: 1.8;
}

.grid-3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: linear-gradient(180deg, #fdfcfa 0%, #f2f7f5 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.pill {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-hover);
  background: var(--brand-soft);
  border: 1px solid var(--line-brand);
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.pill--on-tint {
  background: linear-gradient(180deg, #f9fcfb 0%, #eef6f4 100%);
  color: var(--brand-hover);
  border: 1px solid var(--line-brand);
  box-shadow: 0 2px 12px rgba(22, 107, 98, 0.06);
}
.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  color: var(--ink-muted);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-muted) 0%, var(--brand) 100%);
  box-shadow: 0 0 0 3px rgba(22, 107, 98, 0.15);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #fff;
}

.stat span {
  font-size: 0.85rem;
  color: #9cb4c9;
}

.cta-band {
  background: linear-gradient(180deg, #e8f1ef 0%, #dce8e5 55%, #d0dfda 100%);
  border-top: 1px solid var(--line-brand);
  border-bottom: 1px solid var(--line-brand);
  padding-bottom: 1rem;
}

.cta-band .section-title {
  color: var(--ink);
}

.cta-band .cta-lead,
.cta-band .section-intro {
  color: #2c3331;
}

.cta-band .cta-lead {
  margin-bottom: 1.75rem;
}

.cta-band .cta-actions {
  margin-bottom: 2.25rem;
}

.cta-band .btn-ghost {
  background: rgba(253, 252, 250, 0.95);
  border: 1px solid var(--line-brand);
  color: var(--ink);
}

.cta-band .btn-ghost:hover {
  background: #fdfcfa;
  border-color: var(--brand-muted);
  color: var(--brand-hover);
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}

.cta-inner p {
  margin: 0;
  color: var(--ink-muted);
}

.site-footer {
  background: linear-gradient(180deg, #061210 0%, #030807 100%);
  color: #c9d4d1;
  padding: 3.5rem 1.75rem 2.25rem;
  font-size: 0.98rem;
  border-top: 1px solid var(--line-brand);
  box-shadow: inset 0 1px 0 rgba(184, 151, 94, 0.08);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.footer-inner > div {
  min-width: 0;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
}

.footer-tagline {
  margin: 0;
  max-width: 40ch;
  color: #9cada8;
  line-height: 1.75;
}

.footer-inner a {
  color: #8fd4c5;
  font-weight: 600;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
}

.footer-inner a:hover {
  color: #e8faf6;
}

.footer-contact-line {
  margin: 0;
}

.footer-contact-line--second {
  margin-top: 0.35rem;
}

.footer-col h3 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6e8a83;
  margin: 0 0 0.85rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(100, 180, 165, 0.22);
  font-size: 0.86rem;
  color: #7a908a;
  line-height: 1.62;
}

.page-hero {
  background: linear-gradient(180deg, #e4eeeb 0%, var(--bg) 100%);
  padding: 2.5rem 1.5rem 2rem;
  border-bottom: 1px solid var(--line-brand);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 60ch;
}

.service-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, #fdfcfa 0%, #f2f7f5 100%);
  box-shadow: var(--shadow-card);
}

.service-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.service-block p {
  margin: 0;
  color: var(--ink-muted);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line-brand);
  font: inherit;
  background: var(--bg-elevated);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.25rem;
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.hero-sub {
  font-family: var(--font-sans);
  color: rgba(180, 228, 216, 0.92);
  font-size: 0.78rem;
  margin: -0.1rem 0 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.pullquote {
  margin: 2.5rem 0 0;
  padding: 1.85rem 1.65rem 1.85rem 1.65rem;
  border-left: 3px solid var(--brand-muted);
  background: linear-gradient(180deg, #fdfcfa 0%, #f4f7f6 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-card);
}

.pullquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.65;
}

.pullquote cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.method-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.method-item {
  background: linear-gradient(180deg, #fdfcfa 0%, #f2f7f5 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.method-item strong {
  display: block;
  font-family: var(--font-sans);
  color: var(--brand-hover);
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-item span {
  font-size: 0.96rem;
  color: var(--ink-muted);
  line-height: 1.55;
}
.steps {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: linear-gradient(180deg, #fdfcfa 0%, #f2f7f5 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.55rem 1.35rem;
  box-shadow: var(--shadow-card);
}

.step-label {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--brand-muted);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.step p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.contact-card {
  min-width: 0;
  background: linear-gradient(180deg, #fdfcfa 0%, #f2f7f5 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow-card);
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-hover);
  font-weight: 700;
}
.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card a {
  font-weight: 600;
  text-decoration: none;
  color: var(--brand);
  display: inline-block;
  max-width: 100%;
}

.contact-card a:hover {
  color: var(--brand-hover);
  text-decoration: underline;
}
