:root {
    --font-main: 'Inter', sans-serif;

    /* Colors */
    --bg-color: #fff;
    --text-color: #000;
    --text-color-hover: #555;
    --button-text-color: #fff;
    --button-bg-color: #000;
    --button-bg-color-hover: #333;

    --text-color-secondary: #6e6e73;

    /* Spacing and Radius */
    --spacing: 1.5rem;
    --radius: 32px;
    --transition: 0.3s ease;

    /* Font Weights */
    --fw-small: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Fluid Font Sizes */
    --fs-h1: clamp(2.5rem, 6vw, 3.5rem);
    --fs-h2: clamp(2rem, 5vw, 2.75rem);
    --fs-h3: clamp(1.5rem, 4vw, 2rem);
    --fs-h4: clamp(1.25rem, 3vw, 1.5rem);
    --fs-h5: clamp(1.1rem, 2.6vw, 1.25rem);
    --fs-body: clamp(1rem, 2.25vw, 1.125rem);
    --fs-small: clamp(0.875rem, 2vw, 1rem);
    --fs-xsmall: clamp(0.8rem, 1.6vw, 0.9rem);
    --fs-button: clamp(0.5rem, 0.5vw, 0.5rem);
    /* --fs-button: clamp(1rem, 2vw, 1.125rem); */

    --header-height: 57px;
    --logo-height: clamp(36px, 6vw, 41px);
    --logo-height-mobile: clamp(28px, 6vw, 36px);


    --section-spacing-sides: 2rem;

    --section-padding-block: clamp(6rem, 15vh, 12rem);
    --section-gap: clamp(4rem, 10vh, 8rem);
    --hero-min-height: 100vh;

    html {
        scroll-behavior: smooth;
    }
}

* {
    -webkit-tap-highlight-color: transparent;
}

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

.hide {
    display: none !important;
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}
html, body {
  width: 100%;
  /* max-width: 100vw; */
  
}

body {
  max-width: 100vw;
  overflow-x: hidden;
    margin: 0;
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 1.6;
}
@media not all and (min-resolution:.001dpcm) { @media {
  html, body {
    width: 100%;
    max-width: 100%;
  }
}}


body.vsc-initialized span {
    color: var(--text-color, #000) !important;
    background-color: transparent !important;
}

span {
    color: var(--text-color, #000);
}

.container,
.wrapper,
.main-content {
    width: 100%;
    overflow-x: hidden;
}

/* Typography Elements */
h1 {
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-semibold);
    line-height: 1.3;
}

h3 {
    font-size: var(--fs-h3);
    font-weight: var(--fw-semibold);
}

h4 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-medium);
}

p {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
}

small {
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    color: #666;
}

.button,
button {
    font-size: var(--fs-button);
    font-weight: var(--fw-medium);
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: none;
}

/* Header */

.site-header {
    /* background: var(--bg-color); */
    background: rgba(255, 255, 255, 0.75);
    /* light translucent */
    backdrop-filter: blur(10px);
    /* subtle blur effect behind */
    -webkit-backdrop-filter: blur(10px);

    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    /* Fixes top pixel jitter */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.header-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Updates for call button styling */
@media (max-width: 768px) {
    :root {
        --header-height: 65px;
    }
    .site-header {
        height: auto;
        min-height: var(--header-height);
    }

    .header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

    .menu-toggle {
        order: 1;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-56%);
  z-index: 1;
}

    .mobile-call-button {
        order: 3;
        margin-left: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        padding: 1rem 1rem;
        font-size: 0.85rem;
        font-weight: 500;
        background-color: var(--button-bg-color);
        color: var(--button-text-color);
        border-radius: 9999px;
        text-decoration: none;
        transition: background-color 0.3s ease;
        flex-shrink: 0;
    }

    .mobile-call-button:hover {
        background-color: var(--button-bg-color-hover);
    }
}

/* Remove text-specific styles from .logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

/* Core logo image styling */
.logo-img {
  height: var(--logo-height);
  width: auto;
  display: none;
  transition: opacity 0.3s ease;
}

/* Theme-specific visibility */
@media (prefers-color-scheme: light) {
  .logo-img.light-mode {
    display: inline;
  }
}
@media (prefers-color-scheme: dark) {
  .logo-img.dark-mode {
    display: inline;
  }
}

/* Mobile size override */
@media (max-width: 768px) {
  .logo-img {
    height: var(--logo-height-mobile);
  }
}


.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    background-color: transparent !important;
    z-index: 99;
}

.nav-links a {
    text-decoration: none;
    font-weight: var(--fw-small);
    font-size: var(--fs-small);
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.1s ease;
}

.nav-links a:active {
    /* subtle press effect */
    transform: scale(0.98);
}

.pop:hover {
    /* Example: soften color on hover */
    color: var(--text-color-hover);
    transition: color 0.3s ease;
}

/* Button */
.call-button {
    background: var(--button-bg-color);
    color: var(--button-text-color) !important;
    padding: 0.5rem 1rem;
    ;
    border-radius: var(--radius);
    font-weight: var(--fw-regular);
    font-size: var(--fs-button);
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.call-button:hover {
    background-color: var(--button-bg-color-hover);
}

.call-button:active {
    background-color: var(--button-bg-color-hover);
}

.call-button:focus {
    outline: 2px solid var(--text-color);
    outline-offset: 4px;
}



/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

/* Bar Styles */
.bar {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 1px;
    left: 50%;
    transform-origin: center;
    /* transition: all 0.3s; */
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Initial bar positions */
.bar-top {
    top: 12px;
    transform: translateX(-50%);
}

.bar-bottom {
    bottom: 12px;
    transform: translateX(-50%);
}

/* Open state - forming the X with spring animation */
.menu-toggle.open .bar-top {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.menu-toggle.open .bar-bottom {
    bottom: 50%;
    transform: translateX(-50%) translateY(50%) rotate(-45deg);
}

.slogan {
    padding: 0 1rem;
}

section {
    padding: var(--section-padding-block) var(--section-spacing-sides);
    scroll-margin-top: var(--header-height);
}

.space-y-section>section+section {
    margin-top: var(--section-gap);
}

.top-section {
    margin-top: calc(var(--section-gap) + var(--section-padding-block)) !important;
}

.bottom-section {
    margin-bottom: var(--section-gap) !important;
}

.hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: var(--hero-min-height);
    /* outline: 1px red dashed; */
}
.hero-section,
.hero-area {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero-area {
  display: flex;
  align-items: flex-start; /* push content to top */
  justify-content: center;
  padding-top: 15vh; /* adds breathing room from the top */
  height: 100vh;
  z-index: 2;
}

.hero-heading {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-inline: auto;

  background-image:
    linear-gradient(90deg, #ffb385, #ff8fab, #e6a8ff, #ffb385),
    url('/assets/images/ps-noise25.png');
  background-size:
    300% auto,
    300px 300px;
  background-repeat: no-repeat, repeat;
  background-position: 0% center, center;
  background-blend-mode: overlay;

  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shine 8s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}

@keyframes shine {
  0% {
    background-position: 0% center, center;
  }
  100% {
    background-position: 100% center, center;
  }
}

.hero-overlay {
    text-align: center;
}

.hero-text-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
}

/* new hero section */
/* Hero area already has base structure */
.hero-heading {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subheading {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--text-color-hover);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 0.85rem 1.75rem;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border-radius: 999px;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

/* Primary button (uses your defined button vars) */
.hero-btn.primary {
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
}

.hero-btn.primary:hover {
  background-color: var(--button-bg-color-hover);
}

/* Secondary button (inverted style) */
.hero-btn.secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.hero-btn.secondary:hover {
  background-color: var(--text-color-hover);
  color: var(--bg-color);
  border-color: var(--text-color-hover);
}
@media (max-width: 768px) {
  .hero-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subheading {
    font-size: var(--fs-small);
  }
}

/* allow children to be absolutely‑positioned */
.image-stack-section {
  position: relative;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140vh;
  overflow: hidden;
}

/* style & position the overlay title */
.image-stack-title {
  position: absolute;
  top: 3rem;        /* adjust vertical offset */
  left: 5rem;     /* adjust horizontal offset */
  margin: 0;
  
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--text-color);
  z-index: 3;       /* above both images */
  pointer-events: none;
  white-space: nowrap;
}

.image-stack-description {
  position: absolute;
  top: clamp(12rem, 17rem, 17rem);       /* adjust vertical offset */
  left: 5rem;     /* adjust horizontal offset */
  margin: 0;
  
  font-size: var(--fs-h5);
  font-weight: var(--fw-medium);
  color: var(--text-color);
  z-index: 3;       /* above both images */
  pointer-events: none;
  white-space: nowrap;
}


/* keep the existing stack styles */
.image-stack {
  position: relative;
  width: 800px;
  max-width: 100vw;
}

.image-stack img {
  display: block;
  width: 100%;
  height: auto;
}

/* first image hidden, second floats out */
.image-stack img:first-child {
  display: none;
}

.image-stack img:last-child {
  position: absolute;
  top: 5rem;
  left: 60%;
  width: 300%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.human-touch-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding-block) var(--section-spacing-sides);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  /* background: var(--bg-color); */
}

.human-touch-bg {
  position: absolute;
  left: 50%;
  top: 85%;
  width: 40%;
  max-width: 90vw;
  transform: translate(-50%, -50%);
  /* opacity: 0.40; */
  pointer-events: none;
  /* filter: blur(0.5px) drop-shadow(0 0 30px rgba(0,0,0,0.07)); */
  z-index: 1;
  transition: opacity 0.3s;
}

.human-touch-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.human-touch-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffb385, #e6a8ff, #50b1ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.human-touch-description {
  font-size: var(--fs-h5);
  font-weight: var(--fw-regular);
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.human-touch-description.secondary {
  color: var(--text-color-secondary);
  font-size: var(--fs-small);
}

@media (max-width: 768px) {
  .human-touch-section {
    padding: var(--section-padding-block) 1rem;
    min-height: 45vh;
  }
  .human-touch-title {
    font-size: clamp(1.3rem, 6vw, 2.25rem);
  }
  .human-touch-bg {
    width: 98vw;
    max-width: 98vw;
    left: 50%;
    top: 57%;
    opacity: 0.25;
  }
}


.readiness-section {
  overflow-x: hidden;
  position: relative; /* enable positioning for bg image */
  padding: var(--section-padding-block) var(--section-spacing-sides);
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  z-index: 0;
}

/* Glassy background shape */
.readiness-bg-shape {
  position: absolute;
  left: 55%;   /* visually centered for accent */
  top: 50%;
  width: 720px; /* adjust as needed */
  /* max-width: 96vw; */
  min-width: 350px;
  transform: scale(1.5);
  opacity: 0.43;      /* subtle accent */
  pointer-events: none; /* ignore interactions */
  z-index: 1;
  /* filter: blur(0.5px); */
  transition: opacity 0.3s;
}

/* Content always above the bg image */
.readiness-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.readiness-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.readiness-description {
  font-size: var(--fs-h5);
  font-weight: var(--fw-regular);
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.readiness-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  align-items: flex-start;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: var(--fs-h5);
  font-weight: var(--fw-medium);
  color: var(--text-color);
  min-height: 2.25rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #38e4ae 30%, #50b1ff 100%);
  display: inline-block;
  margin-right: 0.75rem;
}

@media (max-width: 900px) {
  .readiness-bg-shape {
    width: 520px;
    left: 54%;
    top: 56%;
    opacity: 0.36;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .readiness-section {
    padding: var(--section-padding-block) 1rem;
  }
  .readiness-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .readiness-content {
    max-width: 98vw;
    text-align: left;
  }
  .readiness-features {
    flex-direction: column;
    gap: 0.5rem;
  }
  .readiness-bg-shape {
    width: 340px;
    left: 52%;
    top: 59%;
    opacity: 0.22;
  }
}

@media (max-width: 600px) {
  .readiness-bg-shape {
    width: 220px;
    left: 50%;
    top: 60%;
    opacity: 0.14;
  }
}





.services-section {
    /* outline: 1px blue dashed; */
    text-align: center;
}

.services-section h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    margin-top: 0 !important;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    max-width: 360px;
    background: var(--bg-color);
    text-align: left;
}

.service-card img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.service-card h3 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin: 1rem 0 0.25rem;
}

.service-card .price {
    font-weight: var(--fw-medium);
    margin-bottom: 0.75rem;
}

.service-card .description {
    font-size: var(--fs-small);
    line-height: 1.5;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    /* padding: 0rem 2rem; */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    width: 500px;
}

.about-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.about-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-content h2 span {
    font-weight: 400;
    display: block;
}

.about-content p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    color: var(--text-color, #333);
    margin-bottom: 2rem;
}

.learn-more-button {
    display: inline-block;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.learn-more-button:hover {
    background-color: #333;
}


.contact-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-semibold);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text-color);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    /* Reduced from 1rem */
}

.contact-form label {
    font-weight: var(--fw-medium);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.contact-form label span {
    font-weight: var(--fw-regular);
    color: #888;
    font-size: var(--fs-small);
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--text-color);
    border-radius: var(--radius);
    font-size: var(--fs-body);
    outline: none;
}

.contact-form textarea {
    border-radius: calc(var(--radius) * 0.75);
    min-height: 150px;
    resize: vertical;
}

.contact-form .full-width {
    grid-column: span 2;
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-form-row .half-width {
    flex: 1 1 48%;
    /* flex-grow, flex-shrink, flex-basis */
    min-width: 140px;
}

.name-fields {
    display: flex;
    gap: 1rem;
}

.name-fields input {
    flex: 1;
    /* Equal width */
}

.contact-form button {
    background: var(--button-bg-color);
    color: var(--button-text-color);
    /* padding: 1rem 2.2rem; Increased padding */
    border-radius: 50px;
    font-size: var(--fs-body);
    /* Larger than var(--fs-button) */
    letter-spacing: 0.5px;
    font-weight: var(--fw-medium);
    border: none;
    cursor: pointer;
    align-self: flex-start;

    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    background-color: var(--button-bg-color-hover);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 3rem 2rem;
    background-color: var(--bg-color, #fff);
    color: var(--text-color, #000);
    border-top: 1px solid #eee;
    font-size: var(--fs-body);
}

.footer-left {
    flex: 1;
    min-width: 200px;
}

.footer-left h2 {
    font-size: var(--fs-h3);
    font-weight: var(--fw-semibold);
    margin-bottom: 0.5rem;
}

.footer-left .credits {
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
}

.footer-left .credits a {
    color: inherit;
    text-decoration: underline;
}

.footer-right {
    display: flex;
    gap: 4rem;
    flex: 2;
    justify-content: flex-end;
    min-width: 300px;
}

.footer-column h3 {
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    margin-bottom: 0.5rem;
}

.footer-column p {
    margin: 0;
    line-height: 1.5;
    font-size: var(--fs-small);
}

.phone {
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
}

.phone:hover {
    color: var(--text-color-hover);
}
.footer-column p {
  margin: 0 0 0.5rem;
  line-height: 1.6;
}
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--text-color-hover);
}
.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--text-color);
  transition: color 0.2s ease;
}

.social-icons a:link,
.social-icons a:visited,
.social-icons a:focus,
.social-icons a:active {
  color: var(--text-color); /* Or your preferred color */
  outline: none;
  box-shadow: none;
}

/* notes */
.footer-bottom {
  width: 100%;
  /* border-top: 1px solid #eee;
  margin-top: 2rem; */
  padding-top: 3rem;
  text-align: center;
}

.footer-text {
  font-size: var(--fs-xsmall);
  color: var(--text-color);
  margin: 0;
  line-height: 1.8;
}

.footer-text a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-text a:hover {
  color: var(--text-color-hover);
}


/* Mobile Styles */
@media (max-width: 768px) {
    :root {
        --section-padding-block: clamp(4rem, 12vh, 8rem);
        --section-gap: clamp(2rem, 8vh, 4rem);
    }

    /* #services {
        scroll-margin-top: calc(var(--header-height) + (1 * var(--section-gap) / 5));
    } */

    /* #about {
        scroll-margin-top: calc(var(--header-height) + (1 * var(--section-gap) / 5));
    }

    #contact {
        scroll-margin-top: calc(var(--header-height) - (0 * var(--section-gap) / 5));
    } */


    body.menu-open .site-header {
        background: var(--bg-color) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: calc(100vh - var(--header-height));
        height: 100vh;

        /* background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); */
        background: var(--bg-color) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        padding: 0;
        /* remove padding that could offset */
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-links a {
        font-size: var(--fs-h2);
        margin: 0.75rem 0;
    }


    .nav-links.show {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .about-section {
        /* padding: 0rem 1rem;
        padding-top: 8rem; */
        gap: 6rem;
        /* tighter space between image and content */
        flex-direction: column;
        align-items: center;
    }

    .site-footer {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
    }

    .footer-right {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding-block: clamp(3rem, 10vh, 6rem);
        --section-gap: clamp(1.5rem, 6vh, 3rem);
    }

    .contact-section {
        gap: 0rem;
    }

    .contact-form-row {
        flex-direction: column;
    }

    .contact-form-row .half-width {
        flex: 1 1 100%;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #000;
        --text-color: #fff;
        --text-color-hover: #aaa;
        --button-text-color: #000;
        --button-bg-color: #fff;
        --button-bg-color-hover: #f0f0f0;
    }

    .site-header {
        background: rgba(0, 0, 0, 0.65);
    }
}