/* ============================================================
   VALDARA CUSTOM HOMES — Premium Design System
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --gold:        #C1A25F;
  --gold-light:  #D4BA7A;
  --gold-dark:   #A68B4B;
  --charcoal:    #1A1A1A;
  --charcoal-light: #2C2C2C;
  --slate:       #3A3A3A;
  --warm-gray:   #666666;
  --light-gray:  #E8E4DC;
  --cream:       #FAF8F4;
  --off-white:   #FDFCFA;
  --white:       #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  /* Spacing Scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Layout */
  --max-width:     1400px;
  --max-width-narrow: 900px;
  --header-height: 90px;

  /* Transitions */
  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration:    0.4s;
  --duration-slow: 0.8s;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease-luxury);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 680px;
}

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--warm-gray);
  margin-top: 0.5rem;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--dark p {
  color: var(--light-gray);
}

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

.section--gold {
  background: var(--gold);
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

.flex {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(193, 162, 95, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
}

.btn--link {
  background: none;
  padding: 0;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.btn--link:hover {
  border-bottom-color: var(--gold);
}

.btn--link::after {
  content: '\2192';
  margin-left: 0.5rem;
  transition: transform var(--duration) var(--ease-luxury);
  display: inline-block;
}

.btn--link:hover::after {
  transform: translateX(4px);
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--duration) var(--ease-luxury);
}

.header--transparent {
  background: transparent;
}

.header--scrolled {
  background: #1a1a1a;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
  height: 75px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10001;
}

.header__logo-icon {
  width: 45px;
  height: 45px;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.15em;
  line-height: 1.1;
}

.header__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav__link {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--duration) var(--ease-luxury);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease-luxury);
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  margin-left: 1rem;
}

.nav__cta-mobile {
  display: none;
}

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--duration) var(--ease-luxury);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero--half {
  height: 70vh;
  min-height: 500px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
}
.hero-slide--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.1) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 8vh, 8rem);
  width: 100%;
}

.hero__content .container {
  max-width: var(--max-width);
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 550px;
  margin-bottom: 2rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: translateY(-10px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ---------- Divider / Gold Line ---------- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.divider--white {
  background: rgba(255,255,255,0.3);
}

/* ---------- Section Headers ---------- */
.section-header {
  margin-bottom: var(--space-lg);
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

.section-header--center .divider {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Portfolio Grid ---------- */
.portfolio-grid {
  display: grid;
  gap: 1.5rem;
}

.portfolio-grid--featured {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.portfolio-card--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-luxury);
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0) 50%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all var(--duration) var(--ease-luxury);
}

.portfolio-card:hover .portfolio-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.1) 60%
  );
}

.portfolio-card__title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.portfolio-card__meta {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.portfolio-card__arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all var(--duration) var(--ease-luxury);
}

.portfolio-card:hover .portfolio-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- Stats Row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-lg) 0;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.section--dark .stat__label {
  color: var(--light-gray);
}

/* ---------- Process / Timeline ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 70px;
  height: 70px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  background: var(--off-white);
  position: relative;
  z-index: 1;
  transition: all var(--duration) var(--ease-luxury);
}

.section--dark .process-step__number {
  background: var(--charcoal);
}

.process-step:hover .process-step__number {
  background: var(--gold);
  color: var(--white);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-step__desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  max-width: 260px;
  margin: 0 auto;
}

.section--dark .process-step__desc {
  color: var(--light-gray);
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
  margin-bottom: 1.5rem;
  transition: filter var(--duration) var(--ease-luxury);
}

.team-card:hover .team-card__photo {
  filter: grayscale(0%);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: 0.95rem;
  color: var(--warm-gray);
}

/* ---------- Testimonials ---------- */
.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
}

.testimonial__quote {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 2rem;
  padding: 0;
}

.testimonial__quote::before {
  display: none;
}

.section--dark .testimonial__quote {
  color: var(--white);
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.section--dark .testimonial__author {
  color: var(--white);
}

.testimonial__detail {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

/* ---------- Awards / Logos Bar ---------- */
.awards-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding: var(--space-md) 0;
}

.awards-bar img {
  height: 50px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--duration) var(--ease-luxury);
}

.awards-bar img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: var(--space-xl) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.85);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--light-gray);
  margin: 0 auto 2rem;
}

/* ---------- Contact Form ---------- */
.form {
  display: grid;
  gap: 1.5rem;
}

.form--two-col {
  grid-template-columns: 1fr 1fr;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form__input,
.form__textarea,
.form__select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--duration) var(--ease-luxury);
  outline: none;
  width: 100%;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--gold);
}

.form__textarea {
  resize: vertical;
  min-height: 160px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease-luxury);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

.footer__contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--duration) var(--ease-luxury);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-luxury),
              transform var(--duration-slow) var(--ease-luxury);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Page Transition Overlay ---------- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* ---------- Image Placeholder (for demo) ---------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--slate) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration) var(--ease-luxury);
  }

  .nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .nav__link {
    font-size: 1.2rem;
    padding: 1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .header__inner > .nav__cta {
    display: none;
  }

  .nav__cta-mobile {
    display: list-item;
    list-style: none;
    margin-top: 1rem;
  }

  .hero { min-height: 600px; }

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }

  .portfolio-grid--featured { grid-template-columns: 1fr; }
  .portfolio-card--tall { grid-row: span 1; aspect-ratio: 4/3; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }

  .process-steps { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .form--two-col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
}
