:root {
  --brand: #C8960C;
  --brand-dark: #A67B0A;
  --brand-light: #FDF6E3;
  --brand-glow: rgba(200, 150, 12, 0.12);
  --text-primary: #1a1a1a;
  --text-secondary: #4a4538;
  --text-muted: #8a8378;
  --bg-white: #ffffff;
  --bg-light: #FDFBF7;
  --bg-alt: #F5F0E8;
  --border-light: #E8E0D4;
  --border-medium: #D4C9B8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--brand-dark);
}

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

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  background: var(--brand-glow);
  padding: 6px 16px;
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 150, 12, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

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

.btn-white {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--bg-light);
  border-color: var(--bg-light);
  color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

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

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

.btn-full {
  width: 100%;
}

/* =================== HEADER =================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo-link {
  flex-shrink: 0;
}

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

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

.nav-list {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand);
  background: var(--brand-glow);
}

.header-cta {
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(30, 20, 10, 0.85) 0%,
    rgba(30, 20, 10, 0.65) 40%,
    rgba(30, 20, 10, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 0 100px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand);
  background: rgba(200, 150, 12, 0.2);
  border: 1px solid rgba(200, 150, 12, 0.4);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

/* =================== SERVICES GRID =================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: block;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
  border-color: rgba(200, 150, 12, 0.3);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.service-card-body p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  transition: all var(--transition);
}

.service-card:hover .service-link {
  color: var(--brand-dark);
}

/* =================== WHY US =================== */
.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.why-us-intro {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-us-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-glow);
  border-radius: var(--radius-md);
  color: var(--brand);
}

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

.why-us-list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.why-us-list p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =================== TESTIMONIALS =================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 150, 12, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* =================== PROCESS =================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

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

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =================== CTA SECTION =================== */
.cta-section {
  background: linear-gradient(135deg, #3D2B1F 0%, #2A1D14 50%, #1a1209 100%);
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== AREAS =================== */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-tag {
  display: inline-block;
  padding: 10px 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.area-tag:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-glow);
}

/* =================== PAGE HERO =================== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #3D2B1F 0%, #2A1D14 100%);
  border-bottom: 3px solid var(--brand);
  text-align: center;
}

.page-hero .section-label {
  color: var(--brand);
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* =================== SERVICE DETAIL =================== */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-layout.reverse {
  direction: rtl;
}

.service-detail-layout.reverse > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.service-detail-content .section-label {
  margin-bottom: 12px;
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.service-detail-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--brand-glow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2303C9A9' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* =================== TRADE SERVICES =================== */
.trade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trade-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.trade-card:hover {
  border-color: rgba(200, 150, 12, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trade-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  margin: 0 auto 16px;
}

.trade-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.trade-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =================== ABOUT =================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* =================== TEAM =================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.team-member {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.team-member:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 150, 12, 0.2);
}

.team-photo {
  width: 160px;
  height: 200px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.team-photos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-group-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.team-group-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-group-photo:hover img {
  transform: scale(1.05);
}

/* =================== NOODLES =================== */
.noodles-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.noodles-main-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.noodles-main-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.noodles-secondary-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.noodles-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.noodles-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.noodles-thumb:hover img {
  transform: scale(1.05);
}

.noodles-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.noodles-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* =================== SHOWROOM GALLERY ROW =================== */
.showroom-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.showroom-gallery-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.6s ease;
}

.showroom-gallery-row img:hover {
  transform: scale(1.05);
}

/* =================== VALUES =================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 150, 12, 0.2);
}

.value-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--brand-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand);
}

.value-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =================== STATS =================== */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--text-primary) 0%, #2d2d4a 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* =================== SHOWROOM =================== */
.showroom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showroom-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.showroom-content > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.showroom-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.showroom-info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  width: 22px;
  height: 22px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.showroom-info strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.showroom-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.showroom-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.showroom-image img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* =================== GALLERY =================== */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(200, 150, 12, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
  width: fit-content;
}

.gallery-overlay h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.gallery-item.hidden {
  display: none;
}

/* =================== CONTACT =================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-form-wrap > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--brand-glow);
  border: 1px solid rgba(200, 150, 12, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--brand-dark);
  font-weight: 500;
}

.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brand);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%234a4a6a' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

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

.contact-details strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-details a {
  color: var(--brand);
  font-weight: 500;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-list li span:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-list li.closed span:last-child {
  color: #ef4444;
  font-weight: 500;
}

.highlight-card {
  background: linear-gradient(135deg, #3D2B1F 0%, #2A1D14 100%);
  border-color: var(--brand);
}

.highlight-card h3 {
  color: #fff;
}

.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  font-weight: 500;
}

.highlights-list svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.rating-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span,
.footer-contact p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
}

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

.footer-hours {
  margin-top: 20px;
}

.footer-hours h5 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.footer-hours p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-service-area {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  font-size: 12px;
}

.footer-service-area span,
.footer-service-area a {
  white-space: nowrap;
  color: rgba(255,255,255,0.45);
}

.footer-service-area a:hover {
  color: var(--brand);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 32px;
    padding-bottom: 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .footer-logo {
    height: 42px;
    margin-bottom: 0;
  }

  .footer-brand .footer-tagline {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
  }

  .footer-brand .footer-rating {
    margin-left: auto;
  }

  .footer-brand .footer-bbb {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .footer-brand .footer-social {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 60px 0 80px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .why-us-layout,
  .about-layout,
  .showroom-layout,
  .noodles-layout,
  .service-detail-layout,
  .service-detail-layout.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

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

  .team-photo {
    width: 140px;
    height: 180px;
  }

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

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

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

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

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

  .page-hero {
    padding: 120px 0 48px;
  }

  .cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .footer-tagline {
    max-width: 100%;
  }

  .footer-rating {
    justify-content: center;
  }

  .footer-brand .footer-bbb {
    border-top: none;
    padding-top: 0;
  }

  .footer-brand .footer-social {
    justify-content: center;
  }

  .footer-col-links {
    text-align: left;
  }

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

  .footer-col:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }

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

  .footer-contact li {
    justify-content: flex-start;
  }

  .footer-hours {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ==============================
   FLOORING GUIDE PAGES
   ============================== */

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.guide-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.guide-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand);
}

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

.guide-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

/* Article & Guide Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.article-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.article-content p:first-child {
  font-size: 1.15rem;
  color: var(--text-primary);
}

.article-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.tips-box {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.tips-box h3 {
  font-family: var(--font-heading);
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.tips-box ul {
  list-style: disc;
  padding-left: 20px;
}

.tips-box li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.article-cta-box {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}

.article-cta-box h3 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.article-cta-box p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 4px;
}

.sidebar-links a {
  display: block;
  padding: 8px 12px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 0.92rem;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.sidebar-cta {
  background: var(--brand-light);
  border-color: var(--brand);
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--brand);
  color: var(--brand-dark);
  background: transparent;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--brand);
  color: white;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255,255,255,0.5);
}

.breadcrumb .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

/* ==============================
   BLOG
   ============================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
  line-height: 1.5;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-post-date {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 8px;
}

.blog-filter-active {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 12px 20px;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

.btn-clear-filter {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ==============================
   TESTIMONIALS & REVIEWS
   ============================== */

.testimonials-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #f59e0b;
}

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

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stats-inline {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  padding: 32px;
  background: var(--brand-light);
  border-radius: var(--radius-lg);
}

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

.stat-number-sm {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.stat-label-sm {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Review Summary */
.review-summary {
  text-align: center;
  margin-bottom: 48px;
}

.review-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.review-big-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
}

.review-stars svg {
  width: 28px;
  height: 28px;
}

.review-count {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==============================
   FINANCING
   ============================== */

.financing-layout {
  max-width: 900px;
  margin: 0 auto;
}

.financing-apply-box {
  margin: 32px 0;
  background: linear-gradient(135deg, #3D2B1F 0%, #2A1D14 100%);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}

.financing-apply-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.financing-apply-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.financing-apply-text p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin: 0;
}

.financing-apply-inner .btn {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .financing-apply-inner {
    flex-direction: column;
    text-align: center;
  }

  .financing-apply-inner .btn {
    width: 100%;
  }
}

.financing-features {
  margin: 32px 0;
}

.financing-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.financing-feature .why-icon {
  flex-shrink: 0;
}

.financing-feature strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.financing-feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ==============================
   TRADE SERVICES
   ============================== */

.trade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trade-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.trade-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.trade-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--brand);
}

.trade-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.trade-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==============================
   PRODUCTS PAGE
   ============================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-category-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.product-category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-category-img {
  height: 200px;
  overflow: hidden;
}

.product-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-category-body {
  padding: 20px 24px 24px;
}

.product-category-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-category-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 32px auto 0;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ==============================
   COMPARISON GRID
   ============================== */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 32px auto 0;
}

.comparison-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.comparison-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.featured-card {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

/* ==============================
   LEGAL PAGES
   ============================== */

.page-hero-sm {
  padding: 140px 0 48px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-content ul {
  margin: 8px 0 16px 20px;
}

.legal-content li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.legal-content a {
  color: var(--brand-dark);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ==============================
   QUOTE / FORM EXTRAS
   ============================== */

.expect-list {
  list-style: none;
  padding: 0;
}

.expect-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.expect-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.contact-phone-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brand-dark);
  text-decoration: none;
  margin-bottom: 16px;
}

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

.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--brand-light);
  border: 1px solid var(--brand);
  border-radius: var(--radius-md);
  color: var(--brand-dark);
  font-weight: 500;
}

/* ==============================
   LOCATION PAGES
   ============================== */

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* ==============================
   MAP + SERVICE AREA PILLS
   ============================== */

.map-areas-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 340px;
}

.map-store-info {
  padding: 20px 24px;
  border-top: 3px solid var(--brand);
}

.store-info-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-info-inner strong {
  font-size: 17px;
  color: var(--text-primary);
}

.store-info-inner span {
  font-size: 14px;
  color: var(--text-secondary);
}

.store-info-inner a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.store-info-inner a:hover {
  color: var(--brand-dark);
}

.store-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: var(--brand-glow);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(200, 150, 12, 0.2);
}

.service-areas-pills {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.pills-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-pill {
  display: inline-block;
  padding: 10px 22px;
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition);
}

.area-pill:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 150, 12, 0.3);
}

/* ==============================
   CITY SERVICE PAGES
   ============================== */

.city-service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.city-service-main h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 16px;
}

.city-service-main h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.city-service-main p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.city-service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.city-service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.benefit-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand);
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.process-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.city-service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.sidebar-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-services-list a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.sidebar-services-list a:hover {
  color: var(--brand);
  background: var(--brand-glow);
}

.sidebar-services-list a.active {
  color: var(--brand);
  background: var(--brand-glow);
  font-weight: 700;
}

.sidebar-cta {
  background: linear-gradient(135deg, #3D2B1F, #2A1D14);
  border: none;
}

.sidebar-cta h4 {
  color: #fff;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 16px;
}

.sidebar-cta .btn {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}

.btn-outline-brand {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}

.sidebar-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.neighborhood-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  background: var(--bg-light);
  border-radius: 100px;
  color: var(--text-muted);
}

/* ==============================
   NEW RESPONSIVE ADJUSTMENTS
   ============================== */

@media (max-width: 900px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

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

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

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

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

  .map-areas-layout {
    grid-template-columns: 1fr;
  }

  .city-service-layout {
    grid-template-columns: 1fr;
  }

  .city-service-sidebar {
    position: static;
  }

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

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

  .stats-inline {
    gap: 24px;
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .guides-grid,
  .blog-grid,
  .testimonials-full-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

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

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

  .stats-inline {
    flex-direction: column;
    gap: 16px;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

/* ==============================
   EMBEDDED FORM & REVIEW WIDGETS
   ============================== */

.embedded-form-container {
  width: 100%;
  min-height: 1220px;
  border-radius: 10px;
  overflow: hidden;
}

.review-widget-container {
  width: 100%;
  min-height: 400px;
}

.review-widget-container iframe {
  border-radius: 10px;
}

/* ==============================
   FLOATING FINANCING BUTTON
   ============================== */

@keyframes financeSlideIn {
  0% { transform: translateX(-120%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes financePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200, 150, 12, 0.3); }
  50% { box-shadow: 0 4px 28px rgba(200, 150, 12, 0.55); }
}

.floating-finance-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #C8960C 0%, #A67B0A 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(200, 150, 12, 0.3);
  animation: financeSlideIn 0.6s ease-out 1s both, financePulse 3s ease-in-out 2s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-finance-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(200, 150, 12, 0.5);
  background: linear-gradient(135deg, #d9a520 0%, #C8960C 100%);
  color: #fff;
}

.floating-finance-btn:active {
  transform: translateY(-1px) scale(1.01);
}

.finance-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.finance-btn-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.finance-btn-label {
  white-space: nowrap;
}

.finance-btn-arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}

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

@media (max-width: 600px) {
  .floating-finance-btn {
    bottom: 16px;
    left: 16px;
    right: 16px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
}

.footer-bbb {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.social-link:hover {
  background: var(--primary-gold);
  color: #fff;
  transform: translateY(-2px);
}

.trust-badges {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bbb-badge-link {
  display: inline-block;
}

.stat-bbb a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-bbb a:hover .stat-number {
  color: var(--primary-gold);
}

.bbb-badge-center {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
/* ============================================================
   CARPET ON STAIRS PAGE
   ============================================================ */

.stairs-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--dark-brown);
  overflow: hidden;
  text-align: center;
}

.stairs-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/stairs/stairs-15.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
}

.stairs-hero-content {
  position: relative;
  z-index: 1;
}

.stairs-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.1;
}

.stairs-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Filter Bar */
.stairs-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.stairs-filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border-light);
  border-radius: 40px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.stairs-filter-btn:hover,
.stairs-filter-btn.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #fff;
}

/* Masonry Grid */
.stairs-masonry {
  columns: 3;
  column-gap: 16px;
}

.stairs-item {
  break-inside: avoid;
  position: relative;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-section);
}

.stairs-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.stairs-item:hover img {
  transform: scale(1.04);
}

.stairs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stairs-item:hover .stairs-overlay {
  opacity: 1;
}

.stairs-style-tag {
  display: inline-block;
  background: var(--primary-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  align-self: flex-start;
}

.stairs-view-btn {
  align-self: flex-start;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.stairs-view-btn:hover {
  background: rgba(255,255,255,0.3);
}

/* Why Grid */
.stairs-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stairs-why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.stairs-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-gold-light, #FDF6E3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-gold);
}

.stairs-why-icon svg {
  width: 26px;
  height: 26px;
}

.stairs-why-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.stairs-why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA */
.stairs-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--dark-brown);
  border-radius: var(--radius-xl);
  padding: 60px;
}

.stairs-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}

.stairs-cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

.stairs-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.stairs-cta-btns .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.stairs-cta-btns .btn-outline:hover {
  border-color: var(--primary-gold);
  background: var(--primary-gold);
  color: #fff;
}

/* Lightbox */
.stairs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.stairs-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

.stairs-lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.stairs-lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.stairs-lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 12px;
}

.stairs-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  transition: background 0.2s;
}

.stairs-lightbox-close:hover { background: rgba(255,255,255,0.25); }

.stairs-lightbox-prev,
.stairs-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 48px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.stairs-lightbox-prev { left: 20px; }
.stairs-lightbox-next { right: 20px; }
.stairs-lightbox-prev:hover,
.stairs-lightbox-next:hover { background: var(--primary-gold); }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .stairs-masonry { columns: 2; }
  .stairs-why-grid { grid-template-columns: repeat(2, 1fr); }
  .stairs-cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .stairs-cta-btns { flex-direction: row; justify-content: center; }
}

@media (max-width: 768px) {
  .stairs-masonry { columns: 1; }
  .stairs-why-grid { grid-template-columns: 1fr; }
  .stairs-lightbox-prev { left: 8px; }
  .stairs-lightbox-next { right: 8px; }
  .stairs-cta-btns { flex-direction: column; }
}
