:root {
  --gold: #f5c21d;
  --gold-dark: #d5a615;
  --gold-soft: #fff4c5;
  --charcoal: #101010;
  --charcoal-2: #1a1a1a;
  --charcoal-3: #20242a;
  --gray-900: #121212;
  --gray-700: #2e2e2e;
  --gray-500: #707070;
  --gray-200: #e6e6e6;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --line: rgba(16, 16, 16, 0.08);
  --shadow-soft: 0 14px 38px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 18px 42px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #1a1a1a;
  background:
    radial-gradient(circle at top, rgba(245, 194, 29, 0.08), transparent 28%),
    linear-gradient(180deg, #fafafa 0%, #f3f4f6 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  color: #4a4a4a;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 32px;
}

.brand {
  min-width: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  flex: 0 0 200px;
}

.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 8px;
}

.brand-name {
  font-family: "Montserrat", "Manrope", sans-serif;
  font-size: 2.95rem;
  line-height: 0.84;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #111;
}

.brand-subline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-rule {
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 16, 16, 0.14), rgba(16, 16, 16, 0.36));
}

.brand-tag {
  font-family: "Montserrat", "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #454c56;
}

.main-nav {
  display: flex;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #78808b;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.main-nav a:hover::after,
.main-nav a.active {
  color: #252a31;
}

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

.nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-header-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 16, 16, 0.1);
}

.site-header .btn-primary,
.site-header .btn-header-secondary {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-header .btn-primary {
  box-shadow: 0 8px 18px rgba(213, 166, 21, 0.16);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  gap: 10px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 280px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 20px 42px rgba(17, 24, 39, 0.14);
  display: none;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222831;
}

.nav-dropdown-menu a:hover {
  background: #f5f7fa;
}

@media (min-width: 901px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(500px, 1fr) auto;
    grid-template-areas:
      "brand nav"
      "brand actions";
    align-items: center;
    column-gap: 32px;
    row-gap: 14px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .main-nav {
    grid-area: nav;
    justify-self: end;
    align-self: end;
  }

  .nav-actions {
    grid-area: actions;
    justify-self: end;
    align-self: start;
  }
}

@media (max-width: 1380px) and (min-width: 901px) {
  .nav-wrap {
    grid-template-columns: minmax(410px, 1fr) auto;
    column-gap: 24px;
  }

  .brand-lockup {
    gap: 18px;
  }

  .brand-mark {
    width: 148px;
    flex-basis: 148px;
  }

  .brand-name {
    font-size: 2.45rem;
    letter-spacing: 0.14em;
  }

  .brand-rule {
    width: 52px;
  }

  .brand-tag {
    font-size: 0.9rem;
  }

  .main-nav {
    gap: 20px;
    font-size: 0.94rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, #ffd24e 0%, var(--gold) 100%);
  color: #1a1a1a;
  box-shadow: 0 12px 24px rgba(213, 166, 21, 0.24);
}

.btn-outline {
  border-color: rgba(16, 16, 16, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #1a1a1a;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  background: #0f1114;
  color: #fff;
  overflow: hidden;
  min-height: 620px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 194, 29, 0.2), transparent 32%),
    radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(120deg, #0f1114 0%, #171b20 45%, #0d0f12 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

.hero-content {
  position: relative;
  padding: 68px 0 92px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 400px);
  gap: 34px;
  align-items: start;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1.8rem, 3.6rem);
  line-height: 1.05;
  max-width: 12ch;
}

.subhead {
  font-size: 1.1rem;
  color: #d8d8d8;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin: 24px 0 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-stats-panel {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 22px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  color: #fff;
}

.stat-label {
  font-size: 0.85rem;
  color: #cfcfcf;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.hero-panel-label,
.trust-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-panel h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.hero-list {
  margin: 0;
  padding-left: 18px;
  color: #e6e6e6;
}

.hero-list li + li {
  margin-top: 12px;
}

.hero-panel-action {
  margin-top: 20px;
}

.trust-strip {
  padding: 0 0 34px;
  margin-top: -38px;
  position: relative;
  z-index: 1;
}

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

.trust-grid > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
}

.trust-grid p {
  margin: 0;
  color: #4b5563;
}

.services {
  padding: 80px 0 90px;
  background: transparent;
}

.contact-strip {
  padding: 0 0 80px;
  background: transparent;
}

.contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.page-shell {
  background: transparent;
  min-height: 70vh;
}

.page-hero {
  padding: 78px 0 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
}

.page-hero h1 {
  font-size: clamp(2rem, 2vw + 1.4rem, 3rem);
}

.page-panel {
  padding: 40px 0 80px;
}

.panel-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.intake-form {
  display: grid;
  gap: 22px;
}

.form-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #666;
}

.form-steps .step {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f3f5;
}

.form-steps .step.active {
  background: #1a1a1a;
  color: #fff;
}

.form-step {
  display: none;
  gap: 16px;
}

.form-step.active {
  display: grid;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.field-grid label,
.field-row label,
.field-checkbox,
.field-radio {
  font-weight: 500;
  color: #2b2b2b;
  display: grid;
  gap: 6px;
}

.field-wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(245, 194, 29, 0.3);
  outline-offset: 1px;
  border-color: rgba(213, 166, 21, 0.7);
}

.field-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field-radio,
.field-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.terms-box {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid #e7eaee;
  max-height: 240px;
  overflow: auto;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.form-message {
  margin: 0;
  font-weight: 600;
  color: #1a1a1a;
}

.form-hint {
  font-size: 0.9rem;
  color: #6b6b6b;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 26px;
  align-items: start;
}

.about-media img {
  width: 100%;
  max-width: 240px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  border: 1px solid #e5e5e5;
}

.about-media .about-avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
}

.about-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-caption {
  margin-top: 10px;
  font-weight: 600;
  color: #2b2b2b;
  text-align: center;
}

.legal-copy h2 {
  margin-top: 24px;
}

.legal-copy h3 {
  margin-top: 18px;
  font-size: 1.05rem;
}

.legal-copy ul {
  padding-left: 18px;
  color: #4a4a4a;
}

.legal-copy li {
  margin-bottom: 8px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.section-head-left {
  text-align: left;
  margin: 0 0 36px;
}

.section-head h2 {
  font-size: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-grid article {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.service-grid article h3,
.capability-grid article h3 {
  margin-bottom: 10px;
}

.capabilities {
  padding: 0 0 82px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.capability-grid article {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: var(--shadow-soft);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-detail-card {
  display: grid;
  gap: 14px;
}

.service-detail-card p:last-child,
.service-detail-card ul:last-child {
  margin-bottom: 0;
}

.section-cta {
  margin-top: 30px;
  text-align: center;
}

.section-cta-left {
  text-align: left;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(245, 194, 29, 0.14), transparent 28%),
    linear-gradient(180deg, #101317 0%, #0b0d10 100%);
  color: #c8c8c8;
  padding: 46px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(180px, 1fr));
  gap: 28px;
}

.footer-content > div:not(.footer-brand-panel) {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-content > div:not(.footer-brand-panel) p,
.footer-content > div:not(.footer-brand-panel) a {
  margin: 0 0 10px;
  color: #b9c1cc;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-brand-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 292px;
}

.footer-brand-link {
  width: min(100%, 305px);
}

.footer-brand-lockup {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.footer-brand-mark {
  width: 200px;
  flex: none;
}

.footer-brand-copy {
  justify-items: center;
  text-align: center;
  width: 100%;
  gap: 8px;
}

.footer-brand-copy .brand-name {
  color: #fff;
  font-size: 1.88rem;
  letter-spacing: 0.1em;
  line-height: 0.95;
}

.footer-brand-copy .brand-subline {
  justify-content: center;
  gap: 8px;
}

.footer-brand-copy .brand-rule {
  width: 26px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.55));
}

.footer-brand-copy .brand-tag {
  color: #d7dee8;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.footer-logo-mark {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer .social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer .social-link:hover {
  color: #fff;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-accreditations {
  margin-top: 8px;
}

.footer-accreditations img {
  display: block;
  width: min(100%, 320px);
  height: auto;
  border-radius: 12px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  flex: 0 0 28px;
}

.social-icon img,
.social-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.social-icon img {
  filter: brightness(0);
}

.social-icon svg {
  fill: currentColor;
}

.footer-meta {
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) 320px minmax(max-content, 1fr);
  align-items: center;
  column-gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.footer-meta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  gap: 8px;
}

.footer-meta p,
.footer-meta a {
  margin: 0;
  color: #b9c1cc;
  white-space: nowrap;
}

.footer-meta-accreditations {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  margin: 0;
  width: max-content;
  display: flex;
  justify-content: center;
}

.footer-meta-right {
  grid-column: 3;
  justify-self: end;
}

.footer-meta a {
  grid-column: 3;
  align-self: center;
  text-align: right;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-details-card {
  min-height: 100%;
}

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

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 16, 16, 0.08);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-wrap {
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-actions {
    display: none;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    gap: 14px;
    padding: 6px 0 4px;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .brand-mark {
    width: 120px;
    flex-basis: 120px;
  }

  .brand-name {
    font-size: 2.1rem;
  }

  .brand-rule {
    width: 38px;
  }

  .brand-tag {
    font-size: 0.9rem;
  }

  .hero-layout,
  .capability-grid,
  .services-detail-grid,
  .contact-page-grid,
  .footer-content,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .footer-meta {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .footer-meta-left,
  .footer-meta-accreditations,
  .footer-meta a {
    grid-column: auto;
    justify-self: start;
    align-self: start;
  }
}

@media (max-width: 640px) {
  .brand-lockup {
    gap: 10px;
  }

  .brand-mark {
    width: 88px;
    flex-basis: 88px;
  }

  .brand-name {
    font-size: 1.46rem;
    letter-spacing: 0.1em;
  }

  .brand-rule {
    width: 14px;
  }

  .brand-tag {
    font-size: 0.72rem;
  }

  .brand-mark-footer {
    width: 104px;
    flex-basis: 104px;
  }

  .hero-content {
    padding: 88px 0 84px;
  }

  .contact-card,
  .panel-card {
    padding: 22px;
  }
}

/* Contact Form Styles */
.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s, outline 0.2s;
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(245, 194, 29, 0.3);
  outline-offset: 1px;
  border-color: rgba(213, 166, 21, 0.7);
}

.contact-form button {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.form-message {
  grid-column: 1 / -1;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 12px;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
