/* ============================================
   HAWKSHEAD — Brand Stylesheet
   ============================================ */

:root {
  --navy: #1a3553;
  --navy-deep: #0f2238;
  --navy-darker: #0a1828;
  --teal: #2ba3a8;
  --teal-bright: #3dbdc2;
  --slate: #8a9bae;
  --slate-light: #b8c4d1;
  --cream: #f5f1ea;
  --bone: #ebe5da;
  --white: #ffffff;
  --black: #050a12;

  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Inter Tight', 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--navy-deep);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy-deep);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: "—— ";
  letter-spacing: 0;
}

em, .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 34, 56, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 163, 168, 0.15);
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-bright);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-bright);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   HERO — HOMEPAGE
   ============================================ */

.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  color: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  padding: 9rem 3rem 4rem;
  overflow: hidden;
  border-bottom: 15px solid #8498a5;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 163, 168, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 163, 168, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(43, 163, 168, 0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.hero h1 {
  color: var(--cream);
  max-width: 1100px;
  margin-bottom: 2.5rem;
}

.hero h1 .accent {
  color: var(--teal-bright);
  font-style: italic;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  border-top: 1px solid rgba(184, 196, 209, 0.15);
  padding-top: 2.5rem;
  margin-top: 4rem;
}

.hero-meta-item {
  flex: 1;
  min-width: 200px;
}

.hero-meta-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.hero-meta-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   PAGE HEADER (for non-home pages)
   ============================================ */

.page-header {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 13rem 3rem 6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 15px solid #8498a5;
}

.page-header-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 163, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 163, 168, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-header-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--cream);
  max-width: 900px;
}

.page-header h1 .accent {
  color: var(--teal-bright);
  font-style: italic;
}

.page-header-lead {
  max-width: 700px;
  margin-top: 2rem;
  color: var(--slate-light);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 7rem 3rem;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.section-header-text h2 {
  color: var(--navy-deep);
}

.section-header-text h2 .accent {
  color: var(--teal);
  font-style: italic;
}

/* ============================================
   ABOUT SECTION (homepage)
   ============================================ */

.about-section {
  background: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--navy-deep);
}

.about-text p:first-of-type {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.about-text p:first-of-type::first-letter {
  font-size: 3.5rem;
  float: left;
  line-height: 0.9;
  margin: 0.3rem 0.6rem 0 0;
  color: var(--teal);
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(26, 53, 83, 0.15);
  padding-top: 3rem;
  margin-top: 3rem;
}

.about-stat-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ============================================
   SERVICES (homepage preview + services page)
   ============================================ */

.services-section {
  background: var(--navy-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.services-section .section-header-text h2 {
  color: var(--cream);
}

.services-section .eyebrow {
  color: var(--teal-bright);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(184, 196, 209, 0.15);
}

.service-card {
  padding: 3rem 2.5rem;
  border-bottom: 1px solid rgba(184, 196, 209, 0.15);
  border-right: 1px solid rgba(184, 196, 209, 0.15);
  position: relative;
  transition: background 0.4s ease;
  cursor: default;
}

.service-card:hover {
  background: rgba(43, 163, 168, 0.06);
}

.service-card:last-child {
  border-right: 1px solid rgba(184, 196, 209, 0.15);
}

.service-number {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--teal-bright);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  color: var(--cream);
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  line-height: 1.2;
}

.service-card p {
  color: var(--slate-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

.service-card-arrow {
  position: absolute;
  top: 3rem;
  right: 2.5rem;
  width: 24px;
  height: 24px;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translate(4px, -4px);
}

/* ============================================
   CTA STRIP
   ============================================ */

.cta-strip {
  background: var(--teal);
  color: var(--navy-darker);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  color: var(--navy-darker);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.cta-strip h2 em {
  color: var(--cream);
}

.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--navy-deep);
  color: var(--cream);
  border: 1px solid var(--navy-deep);
}

.btn-primary:hover {
  background: transparent;
  color: var(--navy-deep);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--navy-deep);
}

.btn-teal {
  background: var(--teal);
  color: var(--navy-darker);
  border: 1px solid var(--teal);
}

.btn-teal:hover {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-darker);
  color: var(--slate-light);
  padding: 5rem 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 163, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 163, 168, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(184, 196, 209, 0.1);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--slate);
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--slate-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--teal-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.1em;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page-section {
  background: var(--cream);
  padding: 8rem 3rem;
}

.about-page-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
}

.about-page-sticky {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.about-page-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.about-page-sticky h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

.about-page-sticky h2 em {
  color: var(--teal);
}

.about-page-content p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.about-page-content p:first-of-type {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.principles {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 7rem 3rem;
}

.principles-container {
  max-width: 1400px;
  margin: 0 auto;
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184, 196, 209, 0.15);
  margin-top: 3rem;
}

.principle {
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(184, 196, 209, 0.15);
  border-right: 1px solid rgba(184, 196, 209, 0.15);
}

.principle:nth-child(3n) {
  border-right: none;
}

.principle-number {
  font-family: var(--mono);
  color: var(--teal-bright);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.principle h3 {
  color: var(--cream);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.principle p {
  color: var(--slate-light);
  font-size: 0.95rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-page-section {
  background: var(--cream);
  padding: 7rem 3rem;
}

.services-page-list {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(26, 53, 83, 0.15);
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(26, 53, 83, 0.15);
  align-items: start;
  transition: padding-left 0.4s ease;
}

.service-row:hover {
  padding-left: 1.5rem;
}

.service-row-number {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--teal);
  padding-top: 0.5rem;
}

.service-row h3 {
  font-size: 2rem;
  color: var(--navy-deep);
  line-height: 1.1;
}

.service-row-description p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.service-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(43, 163, 168, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
  background: var(--cream);
  padding: 7rem 3rem;
  position: relative;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}

.contact-intro h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--navy-deep);
  margin-bottom: 2rem;
}

.contact-intro h2 em {
  color: var(--teal);
}

.contact-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-detail {
  border-top: 1px solid rgba(26, 53, 83, 0.15);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}

.contact-detail-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.contact-detail-value {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy-deep);
  font-weight: 300;
}

.contact-detail-value a {
  color: var(--navy-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-detail-value a:hover {
  border-bottom-color: var(--teal);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 3.5rem;
  border: 1px solid rgba(26, 53, 83, 0.1);
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
}

.contact-form-wrapper::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--cream);
  color: var(--navy-deep);
  border: 1px solid rgba(26, 53, 83, 0.15);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--sans);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--navy-deep);
  color: var(--cream);
  border: 1px solid var(--navy-deep);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-top: 1rem;
}

.form-submit:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy-darker);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.6s; opacity: 0; }
.delay-5 { animation-delay: 0.75s; opacity: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero, .page-header, section, .contact-section, .about-page-section, .services-page-section, .principles, .footer, .cta-strip {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav {
    padding: 1.25rem 2rem;
  }

  .section-header,
  .about-grid,
  .about-page-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-page-sticky {
    position: relative;
    top: 0;
  }

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

  .principle:nth-child(3n) {
    border-right: 1px solid rgba(184, 196, 209, 0.15);
  }

  .principle:nth-child(2n) {
    border-right: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(43, 163, 168, 0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero, .page-header {
    padding: 8rem 1.5rem 4rem;
  }

  section, .contact-section, .about-page-section, .services-page-section, .principles, .footer, .cta-strip {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-logo img {
    height: 38px;
  }

  .hero-meta {
    gap: 2rem;
  }

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

  .service-card {
    border-right: none;
  }

  .principles-list {
    grid-template-columns: 1fr;
  }

  .principle {
    border-right: none !important;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
