/* ================================================================
   JOSH'S FLOORS & MORE — Premium Design System
   ================================================================ */

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

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  /* Colors */
  --color-primary:       #0A192F;
  --color-secondary:     #112240;
  --color-accent:        #E2B839;
  --color-accent-hover:  #C29B27;
  --color-accent-light:  #FCEABB;
  --color-warm:          #E6F1FF;
  --color-cream:         #F0F8FF;
  --color-white:         #FFFFFF;
  --color-text:          #1A1A1A;
  --color-text-light:    #4A5568;
  --color-text-muted:    #718096;
  --color-gold:          #E2B839;
  --color-success:       #4A7C59;
  --color-border:        #E2DCD6;
  --color-overlay:       rgba(26, 18, 10, 0.72);
  --color-overlay-light: rgba(26, 18, 10, 0.45);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Font Sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --section:  clamp(4rem, 8vw, 8rem);

  /* Layout */
  --container-max: 1240px;
  --container-wide: 1440px;
  --container-narrow: 800px;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 12px rgba(44,36,23,0.06), 0 1px 3px rgba(44,36,23,0.04);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-base:    0;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   200;
  --z-nav:     1000;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -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;
}

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

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(var(--text-4xl), 5vw, var(--text-7xl)); }
h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); }
h3 { font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl)); }
h4 { font-size: clamp(var(--text-xl), 2vw, var(--text-3xl)); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  color: var(--color-text-light);
  line-height: 1.8;
}

.text-accent  { color: var(--color-accent); }
.text-gold    { color: var(--color-gold); }
.text-white   { color: var(--color-white); }
.text-muted   { color: var(--color-text-muted); }
.text-center  { text-align: center; }
.text-sm      { font-size: var(--text-sm); }
.text-lg      { font-size: var(--text-lg); }
.font-medium  { font-weight: 500; }
.font-semi    { font-weight: 600; }
.font-bold    { font-weight: 700; }
.italic       { font-style: italic; }

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

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

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

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

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

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark p {
  color: rgba(255,255,255,0.75);
}

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

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

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }

/* ================================================================
   SECTION LABELS & HEADERS
   ================================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
  max-width: 600px;
}

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

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

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

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

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,149,108,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

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

.btn--ghost::after { display: none; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: all var(--transition-base);
}

.btn-arrow:hover {
  gap: var(--space-3);
  color: var(--color-accent-hover);
}

.btn-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.btn-arrow:hover svg { transform: translateX(3px); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
  transition: background var(--transition-slow), box-shadow var(--transition-slow), padding var(--transition-slow);
  padding: var(--space-5) 0;
}

.nav.scrolled {
  background: rgba(254,252,250,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
  padding: var(--space-3) 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
  color: var(--color-primary);
}

.nav__logo-svg {
  width: 44px;
  height: 44px;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

.nav__logo:hover .nav__logo-svg {
  /* removed scale animation as per user request */
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: currentColor;
}

.nav__logo-light {
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-heading);
}

/* White version for hero */
.nav--light .nav__logo,
.nav--light .nav__menu-link {
  color: var(--color-white);
}

.nav--light.scrolled .nav__logo,
.nav--light.scrolled .nav__menu-link {
  color: var(--color-primary);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__menu-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
  padding: var(--space-1) 0;
}

.nav__menu-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__menu-link:hover,
.nav__menu-link.active {
  color: var(--color-accent);
}

.nav__menu-link:hover::after,
.nav__menu-link.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.nav--light .nav__phone {
  color: var(--color-white);
}

.nav--light.scrolled .nav__phone {
  color: var(--color-primary);
}

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

.nav__phone svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav--light .nav__hamburger span { background: var(--color-white); }
.nav--light.scrolled .nav__hamburger span { background: var(--color-primary); }

.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.nav__mobile-link:hover { color: var(--color-accent); }

.nav__mobile-phone {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero.loaded .hero__bg img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 18, 10, 0.80) 0%,
    rgba(44, 36, 23, 0.65) 50%,
    rgba(26, 18, 10, 0.40) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--space-32) + 80px) 0 var(--space-32);
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(200,149,108,0.2);
  border: 1px solid rgba(200,149,108,0.4);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

.hero__tag-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, var(--text-7xl));
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  max-width: 800px;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-scroll 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--color-secondary);
  padding: var(--space-5) 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 500;
}

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

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ================================================================
   CARDS
   ================================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__img {
  transform: scale(1.04);
}

.card__body {
  padding: var(--space-6);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.75;
}

/* Service Cards */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,10,0.88) 0%, rgba(26,18,10,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  transition: background var(--transition-slow);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(26,18,10,0.92) 0%, rgba(26,18,10,0.35) 55%, transparent 100%);
}

.service-card__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.service-card__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.service-card:hover .service-card__text {
  max-height: 100px;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--color-accent-light);
  margin-bottom: var(--space-4);
  display: block;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-card__stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.star {
  color: var(--color-gold);
  font-size: var(--text-lg);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-primary);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 1px;
}

/* ================================================================
   STATS ROW
   ================================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), var(--color-warm));
  z-index: 0;
}

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

.process-step__number {
  width: 56px;
  height: 56px;
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin: 0 auto var(--space-4);
  transition: all var(--transition-base);
}

.process-step:hover .process-step__number {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.1);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.process-step__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.75;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.why-item {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-light);
}

.why-item:hover::before { transform: scaleX(1); }

.why-item__icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: background var(--transition-base);
}

.why-item:hover .why-item__icon { background: var(--color-accent); }

.why-item__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
  transition: color var(--transition-base);
}

.why-item:hover .why-item__icon svg { color: var(--color-white); }

.why-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.why-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.75;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow var(--transition-base);
}

.faq-item:has(.faq-body.open),
.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: color var(--transition-fast);
}

.faq-trigger:hover { color: var(--color-accent); }

.faq-trigger__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-trigger__icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-body.open { max-height: 400px; }

.faq-body__inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.8;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-4);
}

/* ================================================================
   GALLERY GRID
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(4n+1) { aspect-ratio: 4/3; }
.gallery-item:nth-child(4n+2) { aspect-ratio: 3/4; }
.gallery-item:nth-child(4n+3) { aspect-ratio: 4/3; }

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__zoom {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.gallery-item__zoom svg {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-white);
  transition: background var(--transition-fast);
  font-size: var(--text-2xl);
  border: none;
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.filter-tab {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-light);
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-primary);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

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

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,149,108,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B9490' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit {
  margin-top: var(--space-2);
}

/* ================================================================
   CONTACT INFO
   ================================================================ */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--color-accent);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  transition: color var(--transition-base);
}

.contact-info-item:hover .contact-info-icon svg {
  color: var(--color-white);
}

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-info-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--color-secondary);
  padding: var(--section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,149,108,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,149,108,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(255,255,255,0.72);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto var(--space-10);
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
  font-size: var(--text-2xl);
  font-weight: 700;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.cta-phone:hover { color: var(--color-accent); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: var(--space-20) 0 0;
}

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

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-top: var(--space-4);
  max-width: 280px;
  color: rgba(255,255,255,0.55);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__link:hover { color: var(--color-white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

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

.footer__contact-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer__contact-text a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.footer__social-link svg { width: 18px; height: 18px; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  padding: calc(100px + var(--space-20)) 0 var(--space-20);
  background: var(--color-secondary);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="%23C8956C" opacity="0.06"/></svg>') repeat;
  background-size: 40px 40px;
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-4); }

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: var(--text-xl);
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.breadcrumb__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.breadcrumb__sep {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.3);
}

.breadcrumb__current {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 500;
}

/* ================================================================
   SERVICE AREA BANNER
   ================================================================ */
.areas-section {
  background: var(--color-cream);
  padding: var(--space-16) 0;
  text-align: center;
}

.areas-section p {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 760px;
  margin: 0 auto var(--space-8);
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light);
  transition: all var(--transition-fast);
}

.area-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.area-tag::before {
  content: '📍';
  font-size: var(--text-xs);
}

/* ================================================================
   SPLIT SECTIONS
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.split--reverse .split__media { order: 2; }
.split--reverse .split__content { order: 1; }

.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.split__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.split__media-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.split__media-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__media-badge-icon svg { width: 20px; height: 20px; color: var(--color-white); }

.split__media-badge-text {
  display: flex;
  flex-direction: column;
}

.split__media-badge-num {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.split__media-badge-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.split__content h2 {
  margin-bottom: var(--space-5);
}

.split__content p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.split__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.split__list-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.split__list-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.5 4L6 11.5 2.5 8'  stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  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; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ================================================================
   FEATURED QUOTE
   ================================================================ */
.featured-quote {
  background: var(--color-warm);
  padding: var(--section) 0;
}

.featured-quote__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote__mark {
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 0.4;
  color: var(--color-accent);
  opacity: 0.4;
  display: block;
  margin-bottom: var(--space-6);
}

.featured-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 400;
  font-style: italic;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-8);
}

.featured-quote__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.featured-quote__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
}

.featured-quote__name {
  font-weight: 600;
  color: var(--color-primary);
}

.featured-quote__loc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.value-item {
  padding: var(--space-8);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.value-item__num {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.value-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.value-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .split--reverse .split__media { order: 0; }
  .split--reverse .split__content { order: 0; }

  .split__media img { height: 380px; }

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

  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section: clamp(3rem, 6vw, 5rem); }

  .container { padding: 0 var(--space-4); }

  .nav__inner { gap: 16px; }

  .nav__menu { display: none; }
  .nav__cta .btn { display: none; }
  .nav__cta { gap: 0; }
  
  .nav__phone {
    display: flex;
    background: var(--color-accent);
    color: var(--color-white) !important;
    width: auto;
    height: 48px;
    border-radius: 100px;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0 26px;
    text-decoration: none;
    margin: 0;
  }
  .nav__phone .desktop-text { display: none; }
  .nav__phone .mobile-text {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
  }
  .nav__phone svg {
    display: none;
  }
  
  .nav__hamburger { 
    display: flex; 
    margin-left: 0;
    flex-shrink: 0;
    padding: 10px 0 10px 0;
  }
  
  .nav__logo { margin-right: auto; flex-shrink: 1; min-width: 0; gap: 8px; }
  .nav__logo-svg { width: 28px; height: 28px; flex-shrink: 0; }
  .nav__logo-name { font-size: 0.95rem; white-space: nowrap; }
  .nav__logo-text { overflow: hidden; text-overflow: ellipsis; }

  .hero h1 { font-size: clamp(2.25rem, 8vw, 3rem); }

  .trust-bar__inner {
    flex-direction: column;
    gap: var(--space-4);
  }

  .trust-divider { display: none; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

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

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

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

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

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .hero h1 { font-size: 2.25rem; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   UTILITIES
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full { width: 100%; }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }



