/* ---------- Root Variables ---------- */
:root {
  --ink: #05070a;
  --ink-2: #0b1018;
  --paper: #f8fafc;
  --paper-2: #f1f5f9;
  --card: #ffffff;
  --brass: #f59e0b;
  --brass-dark: #d97706;
  --teal: #06b6d4;
  --teal-light: rgba(6, 182, 212, 0.1);
  --charcoal: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --radius: 16px;
  --wrap: 1180px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film Grain & Cursor Glow */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.06) 0%,
    rgba(6, 182, 212, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease;
  mix-blend-mode: screen;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 0.5em 0;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  background: rgba(245, 158, 11, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--brass);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

section {
  padding: 60px 0;
  position: relative;
}

@media (max-width: 720px) {
  section {
    padding: 70px 0;
  }
}

p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
}

.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 12px -2px rgba(245, 158, 11, 0.4);
  animation: pulse-glow 2.5s infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(245, 158, 11, 0.5);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.btn-ghost {
  border-color: rgba(15, 23, 42, 0.15);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--paper);
  background: rgb(255, 255, 255);
  transform: translateY(-2px);
}

/* Nav */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.6);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

header.site.scrolled {
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}

header.site::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--teal), var(--brass));
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--brass);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo .dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
  animation: rotate-dot 4s linear infinite;
}

@keyframes rotate-dot {
  0% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(405deg);
  }
}

nav.links {
  display: flex;
  gap: 36px;
  font-size: 16px;
  font-weight: 500;
}

nav.links a {
  color: var(--ink);
  opacity: 0.7;
  position: relative;
  transition: opacity 0.2s;
}

nav.links a.active {
  color: #de810c;
  opacity: 1;
}

nav.links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav.links a:hover {
  opacity: 1;
}

nav.links a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  transition: color 0.2s;
}

.call:hover {
  color: var(--brass-dark);
}

.call svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  z-index: 101;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle .chevron-down {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  opacity: 0.8;
  white-space: nowrap;
  position: relative;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background: var(--paper-2);
  opacity: 1;
  color: var(--brass-dark);
}

@media (min-width: 861px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown:hover > .dropdown-toggle .chevron-down {
    transform: rotate(180deg);
  }
}

@media (max-width: 860px) {
  nav.links {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-right .btn-primary {
    display: none;
  }

  .call span.txt {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  nav.links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    gap: 16px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 100;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    width: 100%;
    display: none;
  }

  .dropdown.active-mobile > .dropdown-menu {
    display: block;
  }

  .dropdown.active-mobile > .dropdown-toggle .chevron-down {
    transform: rotate(180deg);
  }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #101c3d 0%, #16294f 55%, #0f1b33 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  mix-blend-mode: luminosity;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(6, 182, 212, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(245, 158, 11, 0.12),
      transparent 40%
    );
  animation: aurora-move 15s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes aurora-move {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 20px) scale(1.1);
  }

  100% {
    transform: translate(20px, -30px) scale(0.95);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    black 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero .wrap .wrap {
  padding: 0;
}

.breadcrumb {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.5);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: rgba(226, 232, 240, 0.8);
}

.breadcrumb a:hover {
  color: #fff;
}

.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  max-width: 16ch;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 3s linear infinite;
}

@keyframes shine-text {
  to {
    background-position: 200% center;
  }
}

.hero .eyebrow {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}

.hero .eyebrow::before {
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
}

.hero p.lead {
  color: rgba(226, 232, 240, 0.8);
  font-size: 19px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(6, 182, 212, 0.2);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--teal-light);
  border: 1px solid rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
}

.info-card h4 {
  font-size: 16px;
  margin: 0 0 4px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.info-card a {
  color: var(--ink);
  font-weight: 600;
  transition: color 0.2s;
}

.info-card a:hover {
  color: var(--brass-dark);
}

/* Form */
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  color: var(--charcoal);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--line);
}

.form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.form-card .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: all 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map Section */
.map-section {
  background: linear-gradient(160deg, #101c3d 0%, #16294f 55%, #0f1b33 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.map-card {
  background: #0b1120;
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.6);
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
  pointer-events: none;
}

.map-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: invert(0) grayscale(1) contrast(1.8) brightness(0.7);
  mix-blend-mode: screen;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.map-overlay .addr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-overlay .addr svg {
  width: 16px;
  height: 16px;
  stroke: var(--brass);
  flex: none;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.form-msg {
  font-size: 14px;
  margin-top: 16px;
  display: none;
  color: var(--teal);
  font-weight: 600;
  text-align: center;
  background: var(--teal-light);
  padding: 12px;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #020303;
  color: rgba(148, 163, 184, 0.8);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.foot-grid .locations-block {
  display: flex;
}

.foot-grid .locations-block .locations-list:nth-child(2) {
  margin-left: auto;
}

@media (max-width: 800px) {
  .foot-grid {
    grid-template-columns: 1frs;
    gap: 32px;
  }
}

.foot-grid h5 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.foot-grid a {
  transition: all 0.2s ease;
  display: inline-block;
}

.foot-grid a:hover {
  color: #fff;
  transform: translateX(4px);
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}

.foot-logo .dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  border-radius: 4px;
  transform: rotate(45deg);
}

.foot-desc {
  font-size: 14px;
  max-width: 36ch;
  color: rgba(148, 163, 184, 0.7);
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-row a:hover {
  background: var(--brass);
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px -2px rgba(245, 158, 11, 0.4);
}

.social-row svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(148, 163, 184, 0.6);
}

.foot-bottom:has(.social-row) {
  padding-top: 20px;
  align-items: center;
}

.foot-bottom:has(.social-row) {
  padding-top: 20px;
  align-items: center;
}

.foot-bottom .social-row {
  margin-top: 0;
  align-items: center;
}

.foot-bottom .social-row p {
  padding: 0;
  margin: 0;
}
/* Utilities & Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  .cursor-glow {
    display: none;
  }
}

/* Custom Success Modal Popup - White Background */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px 36px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.1), transparent 60%),
    radial-gradient(
      circle at 50% 100%,
      rgba(245, 158, 11, 0.1),
      transparent 60%
    );
  z-index: 0;
  pointer-events: none;
}

.modal-content {
  position: relative;
  z-index: 1;
}

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--teal), #0891b2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -5px rgba(6, 182, 212, 0.4);
}

.modal-icon svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  stroke-width: 3;
}

.modal-card h3 {
  color: var(--ink);
  font-size: 26px;
  margin-bottom: 12px;
}

.modal-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-btn {
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(245, 158, 11, 0.5);
}

.contact-block h5 {
  margin-bottom: 4px;
}
