/* ==========================================
   SHADESMEN — Premium Window Treatments
   Stylesheet
   ========================================== */

/* ==========================================
   BLINDS INTRO ANIMATION
   ========================================== */
#blinds-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: all;
  background: #0f0d0b;
}

/* Left lift cord */
#blinds-intro::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 1.5px;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.35) 30%,
    rgba(255,255,255,0.35) 70%,
    rgba(255,255,255,0.08)
  );
  z-index: 60;
}

/* Right wand — top half of screen */
#blinds-intro::after {
  content: '';
  position: absolute;
  top: 0;
  height: 50vh;
  right: 18%;
  width: 8px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(to right,
    rgba(180,180,180,0.6),
    rgba(255,255,255,0.95) 40%,
    rgba(255,255,255,0.95) 60%,
    rgba(180,180,180,0.6)
  );
  box-shadow: 0 0 12px rgba(255,255,255,0.25), 2px 0 8px rgba(0,0,0,0.3);
  z-index: 60;
}

/* Wand pull handle — sits at the bottom of the wand */
.blinds-wand-tip {
  position: absolute;
  top: calc(50vh - 14px);
  right: calc(18% - 10px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ffffff, rgba(210,210,210,0.9));
  box-shadow: 0 3px 10px rgba(0,0,0,0.5), 0 0 12px rgba(255,255,255,0.2);
  z-index: 61;
}

.blinds-intro-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  pointer-events: none;
  animation: blindsBrandAnim 1.5s ease forwards;
  width: 90vw;
  max-width: 480px;
}

.blinds-intro-brand .logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #b8933a;
  letter-spacing: 0.15em;
  display: block;
}

.blinds-intro-tagline {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.6rem;
  font-family: 'Inter', -apple-system, sans-serif;
}

@keyframes blindsBrandAnim {
  0%   { opacity: 0; transform: translate(-50%, -50%); }
  14%  { opacity: 1; transform: translate(-50%, -50%); }
  22%  { opacity: 1; transform: translate(-50%, -50%); }
  80%  { opacity: 0; transform: translate(-50%, -50%); }
  100% { opacity: 0; transform: translate(-50%, -50%); }
}

.blinds-slat {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(10, 8, 6, 0.55);
  border-bottom: 1px solid rgba(184, 147, 58, 0.12);
  transform-origin: top center;
  animation: slatRise 0.68s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  will-change: transform;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

@keyframes slatRise {
  from { transform: scaleY(1); opacity: 1; }
  to   { transform: scaleY(0); opacity: 0; }
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #faf8f4;
  color: #1c1915;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Variables */
:root {
  --gold: #b8933a;
  --gold-light: #d4aa55;
  --gold-pale: #f5edd6;
  --dark: #0f0d0b;
  --dark-2: #1c1915;
  --dark-3: #2e2a25;
  --mid: #6b6259;
  --light: #faf8f4;
  --light-2: #f0ece4;
  --white: #ffffff;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
em { font-style: italic; color: var(--gold); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 147, 58, 0.35);
}
.btn-ghost {
  background: var(--gold-pale);
  color: var(--gold);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-large { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin: 0.75rem 0 1rem; }
.section-header p { color: var(--mid); font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}

/* ==========================================
   HEADER / NAV
   ========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}
.site-header.scrolled {
  background: rgba(15, 13, 11, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.875rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.site-header.nav-open {
  background: rgba(15, 13, 11, 0.97);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.875rem 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 2px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  
}
.main-nav a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,0.32) 0px,
      rgba(0,0,0,0.32) 140px,
      rgba(255,255,255,0.04) 140px,
      rgba(255,255,255,0.04) 280px
    ),
    linear-gradient(
      135deg,
      rgba(15,13,11,0.72) 0%,
      rgba(15,13,11,0.48) 50%,
      rgba(15,13,11,0.65) 100%
    );
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: -30px;
  z-index: 0;
  background-image: url('shadesmen gallery/Zebra shades.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.05);
}
.hero-bg::before { display: none; }
.hero-bg::after  { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(184,147,58,0.5);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-sub {
  color: var(--gold-pale);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
  background: var(--dark-2);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-item svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
  padding: 7rem 0;
  background: var(--light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
  background: var(--dark-2);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.service-card--featured h3,
.service-card--featured p,
.service-card--featured .service-features li { color: rgba(255,255,255,0.85); }
.service-card--featured h3 { color: var(--white); }
.service-card--featured .service-icon { color: var(--gold-light); }
.service-card--featured::before { background: linear-gradient(90deg, var(--gold-light), #f0c060); }
.service-card-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}
.service-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--dark-2);
}
.service-card p {
  color: var(--mid);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-features {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card--featured .service-features { border-top-color: rgba(255,255,255,0.1); }
.service-features li {
  font-size: 0.82rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================
   PROCESS
   ========================================== */
.process {
  padding: 7rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184,147,58,0.07) 0%, transparent 70%);
}
.process .section-header h2 { color: var(--white); }
.process .section-header p { color: rgba(255,255,255,0.5); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,147,58,0.25);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}
.process-step:hover .step-number { color: var(--gold); }
.step-content h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-content p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.75;
}
.process-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,147,58,0.2));
  margin-top: 1.75rem;
  flex-shrink: 0;
  transform: rotate(90deg);
  align-self: flex-start;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery {
  padding: 7rem 0;
  background: var(--light-2);
}
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(0,0,0,0.15);
  color: var(--mid);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-lg); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-card {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
/* Gallery — real photos */
.gallery-img--1 {
  background-image: url('shadesmen gallery/roller blackouts.webp');
  background-size: cover;
  background-position: center;
}
.gallery-img--2 {
  background-image: url('shadesmen gallery/office solar shades.webp');
  background-size: cover;
  background-position: center;
}
.gallery-img--3 {
  background-image: url('shadesmen gallery/master bedroom.jpg');
  background-size: cover;
  background-position: center;
}
.gallery-img--4 {
  background-image: url('shadesmen gallery/motorized.jpg');
  background-size: cover;
  background-position: center;
}
.gallery-img--5 {
  background-image: url('shadesmen gallery/Zebra shades.jpg');
  background-size: cover;
  background-position: center;
}
.gallery-img--6 {
  background-image: url('shadesmen gallery/office blackout roller.jpg');
  background-size: cover;
  background-position: center;
}
.gallery-card:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,11,0.9) 0%, rgba(15,13,11,0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-info { color: var(--white); }
.gallery-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.gallery-info h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.gallery-info p { font-size: 0.8rem; opacity: 0.6; }


/* ==========================================
   ABOUT
   ========================================== */
.about {
  padding: 7rem 0;
  background: var(--light);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-block {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 82%; height: 85%;
  border-radius: var(--radius-lg);
  background-image: url('shadesmen gallery/master bedroom.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  border-radius: var(--radius-lg);
  background-image: url('shadesmen gallery/Zebra shades.jpg');
  background-size: cover;
  background-position: center;
  border: 4px solid var(--light);
  overflow: hidden;
}
.about-badge-card {
  position: absolute;
  top: 40%; right: 0;
  transform: translate(25%, -50%);
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 20px 50px rgba(184,147,58,0.3);
  z-index: 2;
}
.badge-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  opacity: 0.9;
}
.about-text .section-tag { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-2);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-text p {
  color: var(--mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.value-icon svg { width: 20px; height: 20px; }
.value-item h4 { color: var(--dark-2); margin-bottom: 0.2rem; font-size: 0.95rem; }
.value-item p { color: var(--mid); font-size: 0.85rem; margin: 0; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  padding: 7rem 0;
  background: var(--light-2);
  overflow: hidden;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--dark-3);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark-2);
}
.testimonial-author span {
  font-size: 0.76rem;
  color: var(--mid);
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.tnav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: var(--transition);
}
.tnav-btn svg { width: 18px; height: 18px; }
.tnav-btn:hover { border-color: var(--gold); color: var(--gold); }
.tnav-dots { display: flex; gap: 0.5rem; }
.tnav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: var(--transition);
}
.tnav-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e1408 40%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,147,58,0.1) 0%, transparent 70%);
}
.cta-band-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-band-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  padding: 7rem 0;
  background: var(--light);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 1rem; }
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info > p { color: var(--mid); margin-bottom: 2.5rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--dark-2);
  transition: var(--transition);
}
a.contact-item:hover { color: var(--gold); }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.1rem;
}
.contact-value { font-weight: 600; font-size: 0.95rem; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark-2);
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,147,58,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b6259' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { margin-top: 1.5rem; }
.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--mid);
  margin-top: 0.75rem;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  gap: 1rem;
}
.form-success svg {
  width: 56px; height: 56px;
  color: #28a745;
}
.form-success h3 { color: var(--dark-2); }
.form-success p { color: var(--mid); max-width: 320px; }
.form-success.show {
  display: flex;
}

/* ==========================================
   REVIEW CTA
   ========================================== */
.review-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.review-cta p {
  color: var(--mid);
  font-size: 0.95rem;
}
.review-cta .btn { gap: 0.5rem; }
.review-cta .btn svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }

/* ==========================================
   REVIEW MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: var(--transition);
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { border-color: var(--dark); color: var(--dark); }
.modal-header { margin-bottom: 1.75rem; }
.modal-header h3 { color: var(--dark-2); margin-bottom: 0.4rem; }
.modal-header p { color: var(--mid); font-size: 0.9rem; }

/* Star Rating */
.star-rating {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.4rem;
}
.star {
  font-size: 2rem;
  color: rgba(0,0,0,0.15);
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
  padding: 0;
}
.star:hover, .star.active { color: var(--gold); }
.star:hover { transform: scale(1.15); }

/* Review success */
.review-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  gap: 0.75rem;
}
.review-success svg { width: 52px; height: 52px; color: #28a745; }
.review-success h3 { color: var(--dark-2); }
.review-success p { color: var(--mid); font-size: 0.9rem; }
.review-success.show { display: flex; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
}
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 5rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,147,58,0.1);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }
  /* Mobile testimonials scroll snap */
  #testimonials-track { scroll-snap-type: x mandatory; }
  #testimonials-track::-webkit-scrollbar { display: none; }
  #testimonials-track .testimonial-card { scroll-snap-align: start; }
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,8,6,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1010;
    margin-left: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .main-nav a { font-size: 1.2rem; }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1020;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .site-header { z-index: 1020; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .trust-items { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 2rem; }
  .process-connector { transform: none; width: 40px; height: 2px; margin: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .testimonials-track { grid-template-columns: 1fr; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .about-badge-card { display: none; }
  .hero-content { text-align: center; }
  .hero-badge { display: block; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { align-items: center; }
  .hero-pattern {
    inset: 0;
    transform: none;
    background-position: 60% center;
  }
  /* Wand on mobile — move closer to edge, keep proportions */
  #blinds-intro::before { left: 10%; }
  #blinds-intro::after  { right: 10%; width: 6px; height: 50vh; }
  .blinds-wand-tip      { right: calc(10% - 9px); width: 24px; height: 24px; top: calc(50vh - 12px); }
  /* Fewer, bigger zebra stripes on small screens */
  .hero-overlay {
    background:
      repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.32) 0px,
        rgba(0,0,0,0.32) 120px,
        rgba(255,255,255,0.04) 120px,
        rgba(255,255,255,0.04) 240px
      ),
      linear-gradient(
        180deg,
        rgba(15,13,11,0.80) 0%,
        rgba(15,13,11,0.55) 50%,
        rgba(15,13,11,0.75) 100%
      );
  }
}
