:root {
  --bg: #0f1012;
  --bg-soft: #17191d;
  --ink: #f4f1eb;
  --muted: #c9c4bc;
  --muted-2: #8f8b84;
  --line: rgba(255, 255, 255, 0.12);
  --panel: #ffffff;
  --panel-ink: #1e1e1f;
  --panel-muted: #64615c;
  --silver: #a7a7aa;
  --silver-dark: #737376;
  --accent: #d7c7a1;
  --accent-2: #b69a65;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--panel-ink);
  background: #f5f3ee;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.65rem 0.95rem;
  color: var(--bg);
  background: var(--accent);
  border-radius: 999px;
  transition: top 0.2s ease;
}

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

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

.section {
  padding: 96px 0;
}

.section-dark {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 199, 161, 0.22), transparent 36rem),
    linear-gradient(145deg, #08090a 0%, #111215 48%, #1b1c20 100%);
}

.section-muted {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 420px at 16% 12%, rgba(255, 255, 255, 0.16), transparent 64%),
    radial-gradient(980px 360px at 92% 22%, rgba(182, 154, 101, 0.045), transparent 66%),
    radial-gradient(900px 340px at 12% 100%, rgba(255, 255, 255, 0.11), transparent 68%),
    linear-gradient(112deg, transparent 0 43%, rgba(255, 255, 255, 0.09) 46%, transparent 49%),
    #ebe7dc;
}

.intro,
.services,
.about,
.testimonials {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 420px at 16% 12%, rgba(255, 255, 255, 0.17), transparent 64%),
    radial-gradient(980px 360px at 92% 22%, rgba(182, 154, 101, 0.05), transparent 66%),
    radial-gradient(900px 340px at 12% 100%, rgba(255, 255, 255, 0.12), transparent 68%),
    linear-gradient(112deg, transparent 0 43%, rgba(255, 255, 255, 0.10) 46%, transparent 49%),
    #f5f3ee;
}

.intro::before,
.services::before,
.about::before,
.testimonials::before,
.section-muted::before,
.intro::after,
.services::after,
.about::after,
.testimonials::after,
.section-muted::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
}

.intro::before,
.services::before,
.about::before,
.testimonials::before {
  right: -12rem;
  top: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(182, 154, 101, 0.11);
}

.intro::after,
.services::after,
.about::after,
.testimonials::after {
  left: -14rem;
  bottom: -12rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(182, 154, 101, 0.08);
}

.section-muted::before {
  right: -12rem;
  top: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(182, 154, 101, 0.10);
}

.section-muted::after {
  left: -14rem;
  bottom: -12rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(182, 154, 101, 0.075);
}

.intro > .wrap,
.services > .wrap,
.about > .wrap,
.testimonials > .wrap,
.section-muted > .wrap {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 86px;
}

.brand,
.footer-brand,
.thank-you-logo {
  display: block;
  text-decoration: none;
}

.brand img {
  width: min(280px, 52vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--panel-ink);
}

.site-nav a {
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  color: rgba(30, 30, 31, 0.82);
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--panel-ink);
  background: rgba(0, 0, 0, 0.05);
  outline: none;
}

.site-nav .nav-cta {
  color: #121212;
  background: var(--accent);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #121212;
  background: #fff5d6;
}

.site-nav .nav-phone {
  color: var(--panel-ink);
  font-weight: 750;
  white-space: nowrap;
}

.site-nav .nav-phone:hover,
.site-nav .nav-phone:focus-visible {
  color: #111111;
  background: rgba(0, 0, 0, 0.05);
}

.site-nav .nav-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
}

.site-nav .nav-linkedin img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-nav .nav-linkedin:hover,
.site-nav .nav-linkedin:focus-visible {
  background: rgba(0, 0, 0, 0.05);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--panel-ink);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.03);
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.main {
  position: relative;
  overflow: hidden;
  padding: 88px 0 48px;
}

.main.section-dark {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.56) 0%, rgba(8, 10, 14, 0.46) 42%, rgba(11, 12, 16, 0.40) 100%),
    url('./images/main-background-abstract.png') center center / cover no-repeat;
}

.main::after {
  content: "";
  position: absolute;
  right: -15rem;
  bottom: -18rem;
  width: 45rem;
  height: 45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 62%);
  pointer-events: none;
}

.main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.74fr);
  gap: 4rem;
  align-items: center;
}

.main-copy h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.2vw, 3.9rem);
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 500;
}

.main .eyebrow,
.section-dark .eyebrow,
.contact-section .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.07;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 890px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.95rem, 3.2vw, 3.2rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.lead {
  max-width: 760px;
  color: rgba(244, 241, 235, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
}

.main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.84rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: #111;
  border-color: #c8ac74;
  background: linear-gradient(135deg, #e8d4a6 0%, #d8be87 55%, #c8ac74 100%);
  background-color: #c8ac74;
  background-clip: padding-box;
  box-shadow: none;
  overflow: hidden;
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.main-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.main-portrait-card {
  padding: 0.75rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.main-portrait {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 0.35rem);
  object-fit: cover;
}

.card-topline {
  width: 72px;
  height: 5px;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  background: var(--accent);
}

.main-card h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
}

.main-card p,
.main-card li {
  color: rgba(244, 241, 235, 0.75);
}

.check-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(215, 199, 161, 0.13);
}

.proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-strip div {
  min-height: 132px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.035);
}

.proof-strip strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  color: rgba(244, 241, 235, 0.86);
  font-size: 0.95rem;
}

.two-column,
.process-grid,
.about-grid,
.results-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-heading p:not(.eyebrow) {
  color: var(--panel-muted);
  font-size: 1.07rem;
}

.section-heading.centered {
  width: min(860px, 100%);
  margin: 0 auto 3.2rem;
  text-align: center;
}

.intro-copy {
  color: var(--panel-muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 510px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.06);
}

.service-number {
  display: none;
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.15rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  letter-spacing: -0.035em;
}

.service-card p,
.service-card li {
  color: var(--panel-muted);
}

.service-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
}

.process-list {
  display: grid;
  gap: 1rem;
}

#approach .process-list article {
  min-height: 100%;
}

.process-list article {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.25rem;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.process-list span {
  display: none;
}

.process-list h3 {
  align-self: auto;
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
}

.process-list p {
  margin-bottom: 0;
  color: var(--panel-muted);
}

.process-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 0 1.15rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.about-panel,
.credential-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-panel {
  color: var(--ink);
  padding: clamp(1.6rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(15, 16, 18, 0.97), rgba(34, 35, 39, 0.97)),
    #15161a;
}

.about-panel p {
  color: rgba(244, 241, 235, 0.74);
}

.about-panel .role {
  color: var(--accent);
  font-weight: 750;
}

.about-image-wrap,
.about-secondary-wrap {
  margin: 1.35rem 0 1.5rem;
}

.about-image,
.about-secondary-image {
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.about-image {
  aspect-ratio: 1 / 1;
  object-position: center center;
}

.about-secondary-image {
  aspect-ratio: 4 / 3;
}

.about-note {
  margin: 0 0 1.25rem;
  color: var(--panel-muted);
  font-size: 0.98rem;
}

.credential-panel {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: #fff;
}

.credential-list {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  background: #faf9f6;
}

.credential-list strong,
.credential-list span {
  display: block;
}

.credential-list span {
  margin-top: 0.2rem;
  color: var(--panel-muted);
}

.experience {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.46) 0%, rgba(10, 11, 14, 0.38) 45%, rgba(12, 12, 15, 0.44) 100%),
    url('./images/experience-background-abstract.png') center center / cover no-repeat;
}

.experience .section-heading p,
.experience .timeline p {
  color: rgba(244, 241, 235, 0.68);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.timeline article {
  min-height: 250px;
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.045);
}

.timeline time {
  display: block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline h3 {
  font-size: 1.45rem;
}

.timeline p {
  margin-bottom: 0;
}


.timeline article:last-child {
  grid-column: 2;
}


.result-cards {
  display: grid;
  gap: 1rem;
}

.result-cards article,
.testimonial-grid blockquote {
  margin: 0;
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.05);
}

.result-cards p,
.testimonial-grid p {
  color: var(--panel-muted);
}

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

.testimonial-grid blockquote {
  position: relative;
  padding: 2rem;
}

.testimonial-grid p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.testimonial-grid cite {
  display: block;
  color: var(--panel-ink);
  font-style: normal;
  font-weight: 800;
}

.contact-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(10, 10, 13, 0.46) 0%, rgba(11, 12, 15, 0.38) 44%, rgba(12, 12, 15, 0.30) 100%),
    url('./images/contact-background-abstract.png') center center / cover no-repeat;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(244, 241, 235, 0.88);
  font-size: 1.08rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.84rem 1.2rem;
  border: 1px solid #c8ac74;
  border-radius: 999px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  background: linear-gradient(135deg, #e8d4a6 0%, #d8be87 55%, #c8ac74 100%);
  background-color: #c8ac74;
  background-clip: padding-box;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.contact-details .contact-linkedin-icon {
  width: 58px;
  min-width: 58px;
  min-height: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
}

.contact-details .contact-linkedin-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row.split {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}


.form-row.city-state-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 185px);
  gap: 1rem;
}


.form-row.phone-line {
  display: grid;
  grid-template-columns: minmax(150px, 185px) minmax(0, 1fr);
  gap: 1rem;
}


.form-row.phone-line .country-code-field select {
  text-align: left;
}

.form-row label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.form-row label span {
  color: #fff6d8;
}

.form-row input,
.form-row select,
.form-row textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.28);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


.form-row input,
.form-row select {
  height: 4rem;
  min-height: 4rem;
}

.form-row select option {
  background-color: #605a53;
  color: #FFFFFF;
}

.form-row select option.select-separator,
.form-row select option:disabled {
  color: #d7c7a1;
  background-color: #605a53;
  opacity: 1;
}

.form-row select option.select-separator-light {
  color: #fff6d8;
}

.form-row select option:checked {
  background-color: #d7c7a1;
  color: var(--panel-ink);
  box-shadow: 0 0 0 1000px #d7c7a1 inset;
}

.form-row select option:hover,
.form-row select option:focus,
.form-row select option:active {
  background-color: #d7c7a1;
  color: var(--panel-ink);
  box-shadow: 0 0 0 1000px #d7c7a1 inset;
}

.js-enabled .form-row select[data-custom-select-native] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select.is-open {
  z-index: 80;
}

.custom-select-toggle {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  height: 4rem;
  min-height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.28);
  padding: 0.9rem 1rem;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.custom-select-toggle::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid rgba(244, 241, 235, 0.72);
  border-bottom: 2px solid rgba(244, 241, 235, 0.72);
  transform: rotate(45deg) translateY(-0.15rem);
}

.custom-select-toggle:hover,
.custom-select-toggle:focus-visible,
.custom-select.is-open .custom-select-toggle {
  border-color: rgba(215, 199, 161, 0.78);
  box-shadow: 0 0 0 4px rgba(215, 199, 161, 0.12);
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 90;
  display: none;
  max-height: 18rem;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: #605a53;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  padding: 0.35rem 0;
}

.custom-select.is-open .custom-select-menu {
  display: block;
}

.custom-select-option,
.custom-select-disabled,
.custom-select-separator {
  display: block;
  width: 100%;
  padding: 0.52rem 1rem;
  font-size: 1rem;
  line-height: 1.25;
}

.custom-select-option {
  color: #ffffff;
  cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option.is-active {
  color: var(--panel-ink);
  background: #d7c7a1;
  outline: none;
}

.custom-select-option:focus,
.custom-select-option.is-selected,
.custom-select-option.is-selected:focus {
  color: #ffffff;
  background: transparent;
  outline: none;
}

.custom-select-option.is-selected:hover,
.custom-select-option.is-selected.is-active {
  color: var(--panel-ink);
  background: #d7c7a1;
}

.custom-select-disabled,
.custom-select-separator {
  color: #d7c7a1;
  cursor: default;
  user-select: none;
}

.custom-select-separator-light {
  color: #fff6d8;
}

.custom-select-disabled {
  opacity: 0.82;
}


.form-row input,
.form-row select {
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.form-row select {
  appearance: none;
  line-height: 1.2;
  background-image: linear-gradient(45deg, transparent 50%, rgba(244, 241, 235, 0.72) 50%), linear-gradient(135deg, rgba(244, 241, 235, 0.72) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.05rem;
}


.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(215, 199, 161, 0.78);
  box-shadow: 0 0 0 4px rgba(215, 199, 161, 0.12);
}

.form-note {
  margin: 0;
  color: rgba(244, 241, 235, 0.58);
  font-size: 0.86rem;
}


.form-row,
.field-group {
  position: relative;
}

.form-field-error {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.45rem);
  z-index: 100;
  display: none;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  max-width: min(360px, calc(100vw - 48px));
  padding: 0.65rem 0.95rem;
  border-radius: 6px;
  color: #000000;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.25;
  transform: translateX(-50%);
  pointer-events: none;
}

.form-field-error::before {
  content: "";
  position: absolute;
  left: 1.8rem;
  top: -0.45rem;
  width: 1rem;
  height: 1rem;
  background: #ffffff;
  transform: rotate(45deg);
}

.form-field-error span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 3px;
  color: #ffffff;
  background: #5d5955;
  font-weight: 900;
  line-height: 1;
}

.form-field-error strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #000000;
  font-weight: 800;
}

.form-row.is-invalid .form-field-error,
.field-group.is-invalid .form-field-error {
  display: flex;
}

.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea,
.field-group.is-invalid input,
.field-group.is-invalid select,
.field-group.is-invalid textarea {
  border-color: rgba(215, 199, 161, 0.86);
  box-shadow: 0 0 0 5px rgba(215, 199, 161, 0.18);
}


.other-source-row {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-0.35rem);
  transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.28s ease;
  pointer-events: none;
}

.other-source-row.is-visible {
  max-height: 7rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.other-source-row[hidden] {
  display: none;
}

.privacy-consent-row {
  gap: 0;
}

.privacy-consent {
  display: block;
  position: relative;
  color: #fff5d6;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
}

.privacy-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  pointer-events: none;
}

.privacy-consent span {
  display: block;
  position: relative;
  padding-left: 1.85rem;
}

.privacy-consent span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 15px;
  height: 15px;
  border: 2px solid #fff6d8;
  border-radius: 3px;
  background: rgba(255, 246, 216, 0.10);
}

.privacy-consent:hover span::before {
  border-color: #fff5d6;
  background: rgba(255, 245, 214, 0.18);
}

.privacy-consent input[type="checkbox"]:focus-visible + span::before {
  outline: 2px solid #fff6d8;
  outline-offset: 3px;
}

.privacy-consent input[type="checkbox"]:checked + span::before {
  border-color: #fff6d8;
  background: #fff6d8;
}

.privacy-consent input[type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.33rem;
  width: 5px;
  height: 10px;
  border: solid #1e1e1f;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.privacy-consent input[type="checkbox"]:checked:hover + span::before {
  border-color: #fff5d6;
  background: #fff5d6;
}

.privacy-consent a {
  color: #ffffff;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.privacy-consent a:hover,
.privacy-consent a:focus-visible {
  color: #fff5d6;
}

.privacy-consent-row.is-invalid .privacy-consent {
  color: #ffffff;
}

.privacy-page {
  min-height: 100vh;
  color: var(--ink);
  position: relative;
  isolation: isolate;
  background: #0f1012;
}

.privacy-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    url("images/contact-background-abstract.png") center center / cover no-repeat,
    #0f1012;
}

.privacy-page-wrap {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.privacy-logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.4rem;
  text-decoration: none;
}

.privacy-logo img {
  width: min(260px, 72vw);
  height: auto;
}

.privacy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: rgba(10, 10, 13, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.privacy-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.privacy-card > h1 {
  text-align: center;
}

.privacy-card h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.55rem;
  font-size: clamp(1.22rem, 3vw, 1.55rem);
}

.privacy-card p,
.privacy-card li {
  color: rgba(244, 241, 235, 0.78);
  line-height: 1.65;
}

.privacy-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.privacy-card a {
  color: var(--accent);
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.form-button {
  width: 100%;
}

.site-footer {
  color: var(--panel-ink);
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand img {
  width: min(220px, 55vw);
}

.site-footer p {
  margin: 0.15rem 0;
  text-align: right;
  font-size: 0.92rem;
  color: var(--panel-ink);
}

.footer-phone {
  color: var(--panel-ink);
  font-weight: 700;
  text-decoration: none;
}

.footer-phone:hover,
.footer-phone:focus-visible {
  color: #b99d69;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-legal-link {
  color: #b99d69;
  font-weight: 650;
  text-decoration: none;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: var(--panel-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

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

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

.thank-you-page {
  min-height: 100vh;
  color: var(--ink);
  text-align: center;
  background:
    url("images/contact-background-abstract.png") center / cover no-repeat,
    #0f1012;
}

.thank-you-wrap {
  width: min(calc(100% - 40px), 980px);
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.9rem;
  text-align: center;
}

.thank-you-logo {
  display: flex;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.thank-you-logo img {
  display: block;
  width: min(240px, 58vw);
  height: auto;
  margin: 0 auto;
}

.thank-you-card {
  width: min(100%, 610px);
  min-height: auto;
  margin: 0 auto;
  padding: 42px 44px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  background: rgba(10, 10, 13, 0.68);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  text-align: center;
}

.thank-you-card h1,
.thank-you-card p,
.thank-you-card .eyebrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-card .eyebrow {
  margin-bottom: 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.thank-you-card h1 {
  max-width: 11.5ch;
  margin-bottom: 1.05rem;
  font-size: 2.45rem;
  line-height: 1.03;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 38ch;
  margin-bottom: 1.55rem;
  color: rgba(244, 241, 235, 0.72);
  font-size: 0.92rem;
  line-height: 1.42;
}

.thank-you-card .button.primary {
  min-width: 285px;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  font-size: 0.9rem;
}


.return-countdown {
  width: min(285px, 100%);
  height: 3px;
  margin: 1.15rem auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.return-countdown span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
  transform-origin: center;
  animation: countdown-shrink 10s linear forwards;
}

@keyframes countdown-shrink {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@media (max-width: 720px) {
  .thank-you-wrap {
    width: min(calc(100% - 24px), 100%);
    min-height: calc(100vh - 76px);
  }

  .thank-you-logo img {
    width: min(220px, 60vw);
  }

  .thank-you-card {
    width: min(100%, 92vw);
    min-height: auto;
    padding: 1.95rem 1.25rem 2.1rem;
    border-radius: 28px;
  }

  .thank-you-card h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.55rem);
  }

  .thank-you-card p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .thank-you-card .button.primary {
    min-width: min(100%, 300px);
    min-height: 56px;
  }
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: auto;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 86px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.95rem 1rem;
  }

  .main-grid,
  .two-column,
  .process-grid,
  .about-grid,
  .results-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .main {
    padding-top: 64px;
  }

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

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

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 680px) {

  .timeline article:last-child {
    grid-column: auto;
  }
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand img {
    width: min(220px, 58vw);
  }

  .site-nav {
    inset: 76px 14px auto;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .card-grid,
  .timeline,
  .testimonial-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .form-row.split {
    grid-template-columns: 1fr;
  }

  .process-list article {
    display: flex;
    flex-direction: column;
  }

  .process-list h3,
  .process-list p,
  .process-image {
    grid-column: auto;
  }

  .process-list span {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 901px) {
  #approach .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #approach .section-heading {
    width: min(900px, 100%);
  }

  #approach .section-heading h2 {
    max-width: 760px;
  }

  #approach .section-heading p:not(.eyebrow) {
    max-width: 760px;
  }

  #approach .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }

  #approach .process-list article {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
  }

  #approach .process-list span,
  #approach .process-list h3,
  #approach .process-list p,
  #approach .process-image {
    grid-column: auto;
  }

  #approach .process-list span {
    display: none;
  }

  #approach .process-list h3 {
    align-self: auto;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
  }

  #approach .process-list p {
    font-size: 0.95rem;
  }

  #approach .process-image {
    align-self: stretch;
    margin: 0 0 1.15rem;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  #approach .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#approach .section-heading.centered {
  width: min(860px, 100%);
  margin: 0 auto 3.2rem;
  text-align: center;
}

#approach .section-heading.centered h2,
#approach .section-heading.centered p:not(.eyebrow) {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .form-row.city-state-line,
  .form-row.phone-line {
    grid-template-columns: 1fr;
  }
}

.legal-section-anchor {
  scroll-margin-top: 110px;
}

.privacy-card .legal-effective-date {
  color: rgba(244, 241, 235, 0.66);
  font-size: 0.92rem;
  margin-bottom: 1.3rem;
}

.privacy-card .legal-note {
  border-left: 3px solid #c8ac74;
  padding-left: 1rem;
  color: rgba(244, 241, 235, 0.82);
}

.privacy-card .legal-divider {
  height: 1px;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.14);
}
.intro,
.services,
.about,
.testimonials {
  background-color: #f5f3ee;
  background-image: url("images/light-wisps-background.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section-muted {
  background-color: #ebe7dc;
  background-image: url("images/light-wisps-background.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.intro::before,
.services::before,
.about::before,
.testimonials::before,
.section-muted::before,
.intro::after,
.services::after,
.about::after,
.testimonials::after,
.section-muted::after {
  display: none;
}
.intro {
  background-color: #ebe7dc;
  background-image: url("images/light-wisps-background.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.button,
.contact-details a,
.site-nav .nav-cta,
.menu-toggle {
  border-radius: 16px;
}

.button {
  padding: 0.86rem 1.22rem;
  border-color: rgba(140, 115, 70, 0.26);
}

.button.primary,
.contact-details a {
  border-color: rgba(140, 115, 70, 0.34);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
}

.site-nav .nav-cta {
  border: 1px solid rgba(140, 115, 70, 0.28);
  padding-inline: 1.08rem;
}

.contact-details a {
  min-height: 50px;
}

.contact-details .contact-linkedin-icon {
  border-radius: 0;
  border: 0;
  background: transparent;
  background-color: transparent;
}

.site-nav .nav-linkedin {
  border-radius: 999px;
}
.site-nav a {
  border-radius: 16px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #121212;
  background: #fff5d6;
}

.site-nav .nav-phone:hover,
.site-nav .nav-phone:focus-visible {
  color: #121212;
  background: #fff5d6;
}

.site-nav .nav-linkedin:hover,
.site-nav .nav-linkedin:focus-visible {
  background: #fff5d6;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #121212;
  background: #fff5d6;
}
.experience .section-heading p,
.experience .timeline p {
  color: rgba(244, 241, 235, 0.86);
}

.experience .timeline h3 {
  color: #fffaf1;
}

.experience .timeline time {
  color: #ead9ad;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(244, 241, 235, 0.88);
}

.contact-copy h2 {
  color: #fffaf1;
}

.contact-form,
.form-card {
  color: var(--ink);
}

.form-row label,
.privacy-consent {
  color: rgba(244, 241, 235, 0.92);
}

.form-row input,
.form-row select,
.form-row textarea {
  color: #fffaf1;
}
.experience {
  color: #fffaf3;
}

.experience .section-heading h2,
.experience .timeline h3 {
  color: #fffaf3;
}

.experience .section-heading p,
.experience .timeline p {
  color: rgba(255, 250, 243, 0.92);
}

.experience .timeline time {
  color: #f0dfb3;
}

.contact-section {
  color: #fffaf3;
}

.contact-copy h2 {
  color: #fffaf3;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 250, 243, 0.92);
}

.form-row label,
.privacy-consent {
  color: rgba(255, 250, 243, 0.96);
}

.privacy-consent a {
  color: #fff1c6;
  text-decoration-thickness: 0.08em;
}

.form-row input,
.form-row select,
.form-row textarea {
  color: #fffaf3;
}
.experience,
.contact-section {
  color: #fffdf8;
}

.experience .section-heading h2,
.experience .timeline h3,
.contact-copy h2 {
  color: #fffdf8;
}

.experience .section-heading p,
.experience .timeline p,
.contact-copy p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.98);
}

.experience .timeline time,
.contact-section .eyebrow {
  color: #f4e4b8;
}

.form-row label,
.privacy-consent {
  color: rgba(255, 253, 248, 0.98);
}

.privacy-consent a {
  color: #fff4cf;
}

.form-row input,
.form-row select,
.form-row textarea {
  color: #fffdf8;
}
.experience,
.contact-section {
  color: #ffffff;
}

.experience .section-heading h2,
.experience .timeline h3,
.contact-copy h2 {
  color: #ffffff;
}

.experience .section-heading p,
.experience .timeline p,
.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 1);
}

.experience .timeline time,
.contact-section .eyebrow {
  color: #fff0c4;
}

.form-row label,
.privacy-consent {
  color: rgba(255, 255, 255, 1);
}

.privacy-consent a[href="termsofuse.html#privacy-notice"]:not(:hover):not(:focus-visible),
.privacy-consent a[href="termsofuse.html#privacy-notice"]:visited:not(:hover):not(:focus-visible) {
  color: #ffffff;
}

.form-row input,
.form-row select,
.form-row textarea {
  color: #ffffff;
}
.about-panel p:not(.eyebrow):not(.role) {
  color: #ffffff;
}
.eyebrow {
  font-size: 0.96rem;
}
.about-panel .eyebrow {
  color: var(--accent-2);
}
.site-nav a,
.site-nav .nav-cta,
.site-nav .nav-phone,
.site-nav .nav-linkedin {
  border-radius: 16px;
  background-clip: border-box;
  overflow: visible;
}

.site-nav .nav-cta {
  background: #d7c7a1;
  background-image: none;
  border: 1px solid rgba(150, 128, 82, 0.38);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .nav-phone:hover,
.site-nav .nav-phone:focus-visible,
.site-nav .nav-linkedin:hover,
.site-nav .nav-linkedin:focus-visible,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #121212;
  background: #eadbb7;
  background-image: none;
  background-clip: border-box;
  overflow: visible;
}

.site-nav .nav-linkedin {
  width: 44px;
  height: 38px;
  padding: 0;
  border-radius: 14px;
}
.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border: 0;
  box-shadow: none;
  background-image: none;
  background-clip: border-box;
  overflow: visible;
}

.site-nav .nav-cta {
  background-color: #d7c7a1;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background-color: #eadbb7;
}
.privacy-card h1,
.privacy-card h2,
.privacy-card p,
.privacy-card li,
.privacy-card a:not(.button) {
  color: #ffffff;
}

.thank-you-card h1,
.thank-you-card p:not(.eyebrow) {
  color: #ffffff;
}

.thank-you-card .eyebrow {
  color: var(--accent);
}
.legal-effective-date {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.legal-effective-date::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.05em;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}
.privacy-card a:not(.button) {
  color: #b99d69;
  font-weight: 650;
  text-decoration: none;
}

.privacy-card a:not(.button):hover,
.privacy-card a:not(.button):focus-visible {
  color: #8e7649;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.privacy-card a[href*="web3forms.com"]:not(.button) {
  color: #d7c7a1;
}

.privacy-card a[href*="web3forms.com"]:not(.button):hover,
.privacy-card a[href*="web3forms.com"]:not(.button):focus-visible {
  color: #eadbb7;
}
