/* ============================================
   YourFloor GA — Site Styles
   ============================================ */

:root {
  /* Brand */
  --purple: #5A36CC;
  --purple-dark: #4B2BAD;
  --purple-light: #7352D9;
  --purple-pale: #F0EBFA;
  --orange: #FF6B35;
  --orange-dark: #E85A28;
  --orange-pale: #FFF0E9;

  /* Neutrals — warm greys */
  --white: #FFFFFF;
  --cream: #FAFAF8;
  --grey-50: #F5F3EF;
  --grey-100: #EDEAE3;
  --grey-200: #D9D5CC;
  --grey-400: #8A8680;
  --grey-600: #5C5A56;
  --grey-800: #2A2927;
  --black: #1A1917;

  /* Type */
  --serif: 'DM Serif Display', 'Times New Roman', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Layout */
  --max-width: 1240px;
  --max-width-narrow: 960px;
  --max-width-text: 680px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

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

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

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

a:hover {
  color: var(--orange);
}

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

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

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* ============================================
   Typography
   ============================================ */
.display-xl {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--black);
}

.display-lg {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.display-sm {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.italic {
  font-style: italic;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-3);
}

.eyebrow-purple {
  color: var(--purple);
}

.lede {
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--grey-600);
  font-weight: 400;
}

.body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-600);
}

.caption {
  font-size: 13px;
  color: var(--grey-400);
  letter-spacing: 0.01em;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

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

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

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

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

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--grey-200);
}

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

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

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

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 20px 36px;
  font-size: 16px;
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s var(--ease);
}

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

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo img {
  height: 56px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.site-nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--grey-800);
  padding: 8px 4px;
  position: relative;
  letter-spacing: -0.005em;
}

.site-nav-links a:hover {
  color: var(--purple);
}

.site-nav-links a.active {
  color: var(--purple);
}

.site-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.site-nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.phone-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}

.phone-link:hover {
  color: var(--purple);
}

.phone-link svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--black);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--black);
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ============================================
   Sections
   ============================================ */
.section {
  padding: var(--space-9) 0;
}

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

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

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

.section-purple .display-lg,
.section-purple .display-md,
.section-purple .display-sm { color: var(--white); }

.section-purple .lede { color: rgba(255,255,255,0.85); }
.section-purple .eyebrow { color: var(--orange); }

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

.section-header {
  max-width: var(--max-width-text);
  margin: 0 auto var(--space-8);
  text-align: center;
}

.section-header.align-left {
  margin-left: 0;
  margin-right: 0;
  max-width: var(--max-width-text);
  text-align: left;
}

.section-header .lede {
  margin-top: var(--space-4);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: var(--space-8) 0 var(--space-10);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.hero-content h1 {
  margin-bottom: var(--space-5);
}

.hero-content h1 em {
  color: var(--purple);
  font-style: italic;
  font-weight: 400;
}

.hero-lede {
  margin-bottom: var(--space-6);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--grey-100);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-600);
  font-weight: 500;
}

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

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--grey-100);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.hero-badge-icon svg {
  width: 18px;
  height: 18px;
}

.hero-badge-text {
  font-size: 13px;
  color: var(--grey-800);
  font-weight: 500;
  line-height: 1.35;
}

.hero-badge-text strong {
  display: block;
  font-weight: 700;
  color: var(--black);
  font-size: 14px;
  margin-bottom: 2px;
}

/* ============================================
   Trust strip
   ============================================ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  padding: var(--space-6) 0;
}

.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

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

.trust-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}

.trust-item-icon svg { width: 22px; height: 22px; }

.trust-item-content strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
}

.trust-item-content span {
  font-size: 13px;
  color: var(--grey-600);
}

/* ============================================
   Services
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-light);
  box-shadow: 0 20px 40px rgba(90, 54, 204, 0.08);
  color: inherit;
}

.service-card-image {
  aspect-ratio: 4 / 3;
  background: var(--grey-100);
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-card-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: var(--space-2);
}

.service-card-desc {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.55;
  flex: 1;
  margin-bottom: var(--space-4);
}

.service-card-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link::after {
  content: '→';
  transition: transform 0.2s var(--ease);
}

.service-card:hover .service-card-link::after {
  transform: translateX(3px);
}

/* 5-card layout: 3 top, 2 bottom centered */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  /* On desktop (3-column grid) we want the bottom 2 centered */
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: span 2;
  }
  .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* ============================================
   Process
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
}

.process-step {
  position: relative;
  padding: var(--space-6) var(--space-5);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
}

.process-number {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1;
  color: var(--purple);
  margin-bottom: var(--space-4);
  display: block;
}

.process-number-dot {
  color: var(--orange);
}

.process-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: var(--space-3);
}

.process-desc {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.6;
}

/* ============================================
   Gallery teaser / grid
   ============================================ */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.gallery-teaser-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-100);
  position: relative;
}

.gallery-teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-teaser-item:hover img {
  transform: scale(1.05);
}

.gallery-teaser-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-teaser-item:nth-child(2) { grid-column: span 2; }
.gallery-teaser-item:nth-child(3),
.gallery-teaser-item:nth-child(4) { grid-column: span 1; }

.gallery-cta {
  text-align: center;
}

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

.gallery-grid-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-100);
  cursor: pointer;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-grid-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   Reviews
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.review-card {
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: var(--orange);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--grey-800);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--grey-100);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}

.review-author-meta {
  font-size: 12px;
  color: var(--grey-400);
}

/* ============================================
   Service area
   ============================================ */
.service-area {
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-9) var(--space-7);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-7);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-area::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.2), transparent 70%);
  pointer-events: none;
}

.service-area-content { position: relative; z-index: 1; }

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

.service-area p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-6);
}

.service-area-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3) var(--space-5);
  position: relative;
  z-index: 1;
}

.service-area-city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}

.service-area-city::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  text-align: center;
  padding: var(--space-10) var(--space-5);
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(90,54,204,0.35), transparent 60%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

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

.final-cta h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}

.final-cta p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-6);
  font-size: 17px;
}

.final-cta-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.final-cta .btn-outline:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--black);
  color: var(--grey-200);
  padding: var(--space-8) 0 var(--space-5);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 50px;
  margin-bottom: var(--space-4);
}

.footer-about {
  font-size: 14px;
  color: var(--grey-200);
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: var(--space-4);
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s var(--ease);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: 14px;
  color: var(--grey-200);
  transition: color 0.15s;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--grey-200);
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 13px;
  color: var(--grey-400);
}

.footer-bottom a {
  color: var(--grey-400);
}

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

/* ============================================
   Sub-page / Service-page specific
   ============================================ */
.page-hero {
  padding: var(--space-9) 0 var(--space-8);
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

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

.page-hero-visual {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-100);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-8);
  align-items: start;
}

.content-split-title {
  position: sticky;
  top: 100px;
}

.content-block {
  margin-bottom: var(--space-7);
}

.content-block h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: var(--space-3);
}

.content-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-600);
  margin-bottom: var(--space-3);
}

.feature-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--grey-800);
  line-height: 1.5;
  list-style: none;
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-pale);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><polyline points='5,10 9,14 15,7' stroke='%23FF6B35' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   Contact form
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-8);
}

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

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

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-800);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--purple);
}

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

.contact-info {
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.contact-info h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: var(--space-5);
}

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

.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--purple);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 15px;
  color: var(--black);
  line-height: 1.5;
}

.contact-info-item a {
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
}

.contact-info-item a:hover {
  color: var(--purple);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .section { padding: var(--space-7) 0; }
  .section-lg { padding: var(--space-8) 0; }

  .hero { padding: var(--space-6) 0 var(--space-8); }

  .hero-inner,
  .page-hero-inner,
  .content-split,
  .contact-grid,
  .service-area {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .content-split-title { position: static; }

  .site-nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
    padding: var(--space-5);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

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

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

  .gallery-teaser {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-teaser-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-teaser-item:nth-child(2) { grid-column: span 2; }

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

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

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

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

  .footer-brand {
    grid-column: span 2;
  }

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

  .hero-badge {
    padding: 10px 14px;
    bottom: var(--space-4);
    left: var(--space-4);
  }
}

@media (max-width: 520px) {
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    gap: var(--space-3);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand { grid-column: auto; }

  .final-cta { padding: var(--space-8) var(--space-4); }
  .service-area { padding: var(--space-7) var(--space-5); }
  .service-area-cities { grid-template-columns: 1fr; }
}

/* ============================================
   Animations
   ============================================ */
/* Scroll-triggered fade-in animations were removed to prevent visual flashing.
   Elements with [data-animate] are simply visible from the start. */

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

*:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
