/* ============================================
   OPTIMUM FIX FOUNDATION REPAIR — DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #f7f6f2;
  --bg-alt: #efeee9;
  --bg-dark: #1c1c1c;
  --text: #1c1c1c;
  --text-muted: #6b6b68;
  --text-light: #8a8a87;
  --text-on-dark: #f0efeb;
  --accent: #b49a5e;
  --accent-hover: #9a8349;
  --accent-subtle: rgba(180, 154, 94, 0.12);
  --white: #ffffff;
  --border: rgba(28, 28, 28, 0.07);
  --border-strong: rgba(28, 28, 28, 0.12);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.07);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  --transition: 180ms ease;
  --transition-slow: 300ms ease;
  --max-width: 1200px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  letter-spacing: -0.005em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: clamp(1.0625rem, 2vw, 1.125rem);
}

p {
  max-width: 640px;
}

.text-muted {
  color: var(--text-muted);
}

.text-accent {
  color: var(--accent);
}

/* ============================================
   UTILITIES
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-heading {
  margin-bottom: var(--space-md);
}

.section-subtext {
  color: var(--text-muted);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  transition: all var(--transition);
  min-height: 48px;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background-color: transparent;
  color: var(--accent);
  padding: 14px 16px;
}

.btn-ghost:hover {
  color: var(--accent-hover);
}

.divider {
  width: 48px;
  height: 1px;
  background-color: var(--accent);
  opacity: 0.5;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Over hero: no backdrop blur (blur smears contrast and hides text). Light tint + gradient keeps video visible. */
  background: linear-gradient(
    180deg,
    rgba(10, 10, 9, 0.82) 0%,
    rgba(10, 10, 9, 0.38) 100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transition:
    background var(--transition-slow),
    border-color var(--transition-slow),
    box-shadow var(--transition-slow),
    backdrop-filter var(--transition-slow);
}

.header.header--scrolled {
  background: rgba(247, 246, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}

/* Readable chrome over the hero */
.header:not(.header--scrolled) .nav-desktop a {
  color: rgba(252, 251, 248, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 0 1px rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

.header:not(.header--scrolled) .nav-desktop a:hover {
  color: var(--text-on-dark);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95);
}

.header:not(.header--scrolled) .hamburger span {
  background-color: rgba(252, 251, 248, 0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
}

.header:not(.header--scrolled) .header-brand-name {
  color: rgba(252, 251, 248, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

.header:not(.header--scrolled) .header-brand-line {
  color: rgba(252, 251, 248, 0.82);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
}

.header:not(.header--scrolled) .header-logo img {
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
}

.header.header--scrolled .header-logo img {
  filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.header-logo img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.header-brand-name {
  display: none;
  font-family: var(--font-heading);
  font-size: clamp(0.8125rem, 2.8vw, 1rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
  min-width: 0;
}

.header-brand-line {
  display: block;
  font-size: 0.85em;
  font-weight: 500;
  color: var(--text-muted);
}

@media (max-width: 1023px) {
  .header-brand-name {
    display: block;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

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

.nav-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

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

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .btn {
  margin-top: var(--space-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Stronger dim so type pops; video stays visible but secondary */
  background:
    linear-gradient(
      to top,
      rgba(12, 12, 11, 0.94) 0%,
      rgba(12, 12, 11, 0.72) 42%,
      rgba(12, 12, 11, 0.52) 100%
    ),
    rgba(10, 10, 9, 0.22);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-md) var(--space-sm) var(--space-lg);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  /* Optical lift: true flex center can feel low under a fixed header */
  margin-top: -4vh;
}

.hero h1 {
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  color: rgba(240, 239, 235, 0.75);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.btn-hero-secondary {
  border-color: rgba(240, 239, 235, 0.25);
  color: var(--text-on-dark);
}

.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(240, 239, 235, 0.6);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background-color: var(--bg);
}

.services-header {
  margin-bottom: var(--space-xl);
}

.services-carousel {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-md);
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 88vw;
  scroll-snap-align: start;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background-color: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: var(--space-xs);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  padding-top: var(--space-sm);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-strong);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background-color: var(--accent);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  background-color: var(--bg-alt);
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about-content {
  order: 2;
}

.about-content .section-heading {
  margin-bottom: var(--space-sm);
}

.about-text {
  color: var(--text-muted);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

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

.about-stat {
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-image {
  order: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   WORKS / PORTFOLIO SECTION
   ============================================ */

.works {
  background-color: var(--bg);
}

.works-header {
  margin-bottom: var(--space-xl);
}

.works-carousel {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-md);
}

.works-carousel::-webkit-scrollbar {
  display: none;
}

.work-card {
  flex: 0 0 85vw;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: var(--bg-dark);
}

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

.work-card:hover img {
  transform: scale(1.03);
}

.work-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(20, 20, 18, 0.75), transparent);
}

.work-card-overlay h4 {
  color: var(--text-on-dark);
  font-size: 1rem;
}

.work-card-overlay p {
  color: rgba(240, 239, 235, 0.65);
  font-size: 0.8125rem;
  margin-top: 4px;
}

/* ============================================
   TESTIMONIALS SECTION (future-proofed)
   ============================================ */

.testimonials {
  background-color: var(--bg-alt);
}

.testimonials-header {
  margin-bottom: var(--space-xl);
}

.testimonials-carousel {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-md);
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 88vw;
  scroll-snap-align: start;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ============================================
   SERVICE AREAS SECTION
   ============================================ */

.areas {
  background-color: var(--bg);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.area-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.area-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background-color: var(--bg-alt);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info {
  order: 1;
}

.contact-info .section-heading {
  margin-bottom: var(--space-sm);
}

.contact-info-text {
  color: var(--text-muted);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.contact-detail-body {
  min-width: 0;
  flex: 1;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background-color: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.45;
}

.contact-detail-value a {
  transition: color var(--transition);
}

.contact-detail-value a:hover {
  color: var(--accent);
}

.contact-form-wrap {
  order: 2;
}

.contact-form {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px var(--space-sm);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background-color: var(--bg);
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  margin-top: var(--space-xs);
}

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

.footer {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand p {
  color: rgba(240, 239, 235, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links h4 {
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-links a {
  display: block;
  color: rgba(240, 239, 235, 0.55);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: var(--space-md);
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(240, 239, 235, 0.35);
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(240, 239, 235, 0.5);
  transition: all var(--transition);
}

.footer-social:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

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

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

/* ============================================
   RESPONSIVE — TABLET (min-width: 768px)
   ============================================ */

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

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

  .hero-content {
    padding: var(--space-lg) var(--space-lg);
    margin-top: -3vh;
  }

  .service-card {
    flex: 0 0 45%;
  }

  .work-card {
    flex: 0 0 44%;
  }

  .testimonial-card {
    flex: 0 0 46%;
  }

  .about-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .about-content {
    order: 1;
    flex: 1;
  }

  .about-image {
    order: 2;
    flex: 1;
    aspect-ratio: 1;
  }

  .contact-inner {
    flex-direction: row;
    gap: var(--space-2xl);
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .contact-info {
    flex: 1;
  }

  .contact-form-wrap {
    flex: 1;
  }

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo img {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-brand p {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (min-width: 1024px)
   ============================================ */

@media (min-width: 1200px) {
  .nav-desktop {
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .hamburger {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .header-logo {
    flex: 0 1 auto;
  }

  .hero-content {
    padding: var(--space-xl) var(--space-xl);
    margin-top: -2.5vh;
  }

  .service-card {
    flex: 0 0 calc(25% - 12px);
  }

  .services-carousel {
    overflow-x: visible;
    flex-wrap: wrap;
    scroll-snap-type: none;
  }

  .services .carousel-dots {
    display: none;
  }

  .work-card {
    flex: 0 0 calc(33.333% - 11px);
  }

  .works-carousel {
    overflow-x: visible;
    flex-wrap: wrap;
    scroll-snap-type: none;
  }

  .works .carousel-dots {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 11px);
  }

  .testimonials-carousel {
    overflow-x: visible;
    flex-wrap: wrap;
    scroll-snap-type: none;
  }

  .testimonials .carousel-dots {
    display: none;
  }

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

  .contact-form {
    padding: var(--space-xl);
  }
}
