/* ============================================================
   Quality-Blinds — Main Stylesheet
   ============================================================ */

/* ─── Reset & Variables ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F7F3ED;
  --warm-white: #FDFAF6;
  --slate:      #2C3340;
  --deep:       #1A1F2B;
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --rust:       #B85C38;
  --muted:      #7A8192;
  --border:     rgba(44,51,64,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--slate);
  overflow-x: hidden;
}

/* ─── Navigation ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--deep); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--slate); }

.nav-cta {
  background: var(--gold); color: var(--deep);
  padding: 0.6rem 1.5rem; border-radius: 2px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--slate); color: var(--cream); transform: translateY(-1px); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--deep); color: var(--cream);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold); color: var(--deep); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid var(--deep); color: var(--deep);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { background: var(--deep); color: var(--cream); }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative; overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--deep); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.1rem; font-weight: 300; line-height: 1.7;
  color: var(--muted); max-width: 420px; margin-bottom: 3rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 4rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--deep); line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.3rem;
}

.hero-right { position: relative; overflow: hidden; }

.hero-image-grid {
  position: absolute; inset: 0;
  display: grid; grid-template-rows: 1fr 1fr; gap: 3px;
}

.hero-img-panel {
  position: relative; overflow: hidden;
  background: var(--slate);
}
.hero-img-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,31,43,0.25), transparent);
}

.blind-slats { position: absolute; inset: 0; overflow: hidden; }
.blind-slats::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(201,169,110,0.08) 0px,
    rgba(201,169,110,0.08) 28px,
    rgba(201,169,110,0.04) 28px,
    rgba(201,169,110,0.04) 30px
  );
}

.panel-top { background: #C9A96E22; }
.panel-bot { background: #2C334018; }
.panel-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Vertical blind animation */
.vertical-blind {
  display: flex; gap: 3px; height: 70%; align-items: stretch;
  opacity: 0.5;
}
.vslat {
  width: 18px;
  background: linear-gradient(180deg, #C9A96E 0%, #B8925A 100%);
  border-radius: 1px;
  animation: sway 3s ease-in-out infinite;
}
.vslat:nth-child(even) {
  animation-delay: 0.2s;
  background: linear-gradient(180deg, #D4B07A, #C09060);
}
.vslat:nth-child(3)  { animation-delay: 0.4s; }
.vslat:nth-child(5)  { animation-delay: 0.8s; }
.vslat:nth-child(7)  { animation-delay: 1.2s; }

@keyframes sway {
  0%, 100% { transform: scaleX(1); }
  50%       { transform: scaleX(0.5); }
}

.roller-blind {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.rslat { height: 22px; border-bottom: 1px solid rgba(201,169,110,0.2); }
.rslat:nth-child(odd)  { background: rgba(201,169,110,0.10); }
.rslat:nth-child(even) { background: rgba(201,169,110,0.06); }

.panel-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.panel-label-text {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  color: rgba(201,169,110,0.25); line-height: 1; text-align: center;
}
.panel-label-sub {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(201,169,110,0.4); margin-top: 0.5rem;
}

/* ─── Marquee Strip ───────────────────────────────────────── */
.marquee-strip {
  background: var(--gold); padding: 0.9rem 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.marquee-inner {
  display: flex; gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--deep); opacity: 0.85;
}
.marquee-dot { color: var(--deep); opacity: 0.4; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section Shared ──────────────────────────────────────── */
section { padding: 7rem 6rem; }

.section-label {
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: ''; display: block;
  width: 30px; height: 1px; background: var(--gold);
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15; color: var(--deep);
}

/* ─── About ───────────────────────────────────────────────── */
#about {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}

.about-card {
  background: var(--deep); color: var(--cream);
  padding: 3.5rem; border-radius: 4px;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 14rem; line-height: 0.7;
  color: var(--gold); opacity: 0.15;
  position: absolute; top: 1.5rem; left: 2rem;
  pointer-events: none;
}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-style: italic; line-height: 1.6;
  position: relative; z-index: 1;
}
.about-sig {
  margin-top: 1.5rem; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--deep); text-align: center; line-height: 1.4;
  box-shadow: 0 8px 30px rgba(201,169,110,0.4);
}
.about-badge strong {
  font-size: 1.8rem; font-family: 'Playfair Display', serif;
}

.about-text p {
  font-size: 1.05rem; line-height: 1.8; color: #4A5260;
  margin-bottom: 1.2rem;
}
.about-text p:first-of-type { font-size: 1.15rem; color: var(--slate); font-weight: 400; }

.coverage-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem;
}
.pill {
  padding: 0.4rem 1rem; border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.8rem; color: var(--muted);
  background: white;
}

/* ─── Services ────────────────────────────────────────────── */
#services { background: var(--warm-white); }

.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4rem;
}
.services-header p {
  max-width: 380px; color: var(--muted);
  font-size: 1rem; line-height: 1.7;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border);
  border: 1.5px solid var(--border);
}

.service-card {
  background: var(--warm-white);
  padding: 2.8rem 2.2rem;
  transition: background 0.3s;
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card:hover { background: var(--deep); }
.service-card:hover .service-icon { background: var(--gold); color: var(--deep); }
.service-card:hover .service-name { color: var(--cream); }
.service-card:hover .service-desc { color: rgba(253,250,246,0.6); }
.service-card:hover .service-num  { color: rgba(253,250,246,0.08); }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 900;
  color: rgba(44,51,64,0.05);
  position: absolute; bottom: 1rem; right: 1.5rem;
  line-height: 1; transition: color 0.3s; user-select: none;
}
.service-icon {
  width: 48px; height: 48px; border-radius: 4px;
  background: var(--cream); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 1.8rem; transition: all 0.3s; font-size: 1.4rem;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--deep); margin-bottom: 0.8rem; transition: color 0.3s;
}
.service-desc {
  font-size: 0.9rem; line-height: 1.7;
  color: var(--muted); transition: color 0.3s;
}

/* ─── Why Choose ──────────────────────────────────────────── */
#why {
  background: var(--deep); color: var(--cream);
  position: relative; overflow: hidden;
}
#why::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
  pointer-events: none;
}
#why .section-label { color: var(--gold-light); }
#why h2.section-title { color: var(--cream); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 4rem;
  background: rgba(255,255,255,0.06);
}
.why-item {
  padding: 2.8rem 3rem; background: var(--deep);
  transition: background 0.3s;
}
.why-item:hover { background: rgba(201,169,110,0.07); }
.why-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.7rem;
}
.why-desc {
  font-size: 0.92rem; line-height: 1.75;
  color: rgba(253,250,246,0.55);
}

/* ─── Process ─────────────────────────────────────────────── */
#process { background: var(--cream); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 2.2rem; left: 5%; right: 5%;
  height: 1px; background: var(--gold-light); z-index: 0;
}
.step { padding: 0 1.5rem; position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  margin: 0 auto 1.8rem;
  box-shadow: 0 0 0 6px var(--cream);
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--deep); margin-bottom: 0.6rem;
}
.step-desc { font-size: 0.88rem; line-height: 1.65; color: var(--muted); }

/* ─── Testimonials ────────────────────────────────────────── */
#testimonials { background: var(--warm-white); }

.reviews-meta {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 0.5rem; margin-bottom: 3rem;
}
.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--deep); line-height: 1;
}
.reviews-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.08em; }
.reviews-label {
  font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.15rem;
}
.reviews-divider {
  width: 1px; height: 40px; background: var(--border);
}
.google-logo { height: 22px; opacity: 0.55; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream); padding: 2.2rem;
  border-radius: 4px; border: 1px solid var(--border);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.testimonial-text {
  font-size: 0.95rem; line-height: 1.75; color: #4A5260;
  font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.82rem; font-weight: 600;
  color: var(--slate); letter-spacing: 0.05em;
}
.testimonial-location { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }

/* ─── Contact ─────────────────────────────────────────────── */
#contact {
  background: var(--deep);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start;
}
#contact .section-label { color: var(--gold-light); }
#contact h2.section-title { color: var(--cream); margin-bottom: 1.5rem; }
#contact .contact-intro {
  color: rgba(253,250,246,0.6); line-height: 1.75;
  font-size: 1rem; margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(201,169,110,0.12);
  border-radius: 4px; display: flex;
  align-items: center; justify-content: center; font-size: 1rem;
}
.contact-item-text strong {
  display: block; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem;
}
.contact-item-text span { font-size: 0.95rem; color: rgba(253,250,246,0.75); }

/* ─── Contact Form ────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(253,250,246,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; padding: 0.8rem 1rem;
  color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  transition: border 0.25s; outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(253,250,246,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--deep); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-notice {
  font-size: 0.8rem; color: rgba(253,250,246,0.35);
  margin-top: 0.25rem;
}

.form-submit {
  background: var(--gold); color: var(--deep);
  padding: 1rem 2rem; border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.25s; margin-top: 0.5rem;
  align-self: flex-start;
}
.form-submit:hover { background: var(--cream); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  background: #13171F;
  padding: 2rem 6rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--cream); font-weight: 700;
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
footer p { font-size: 0.8rem; color: rgba(253,250,246,0.3); letter-spacing: 0.04em; }

/* ─── Entrance Animations ─────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 1rem 2rem; }
  section { padding: 5rem 3rem; }
  .hero-left { padding: 5rem 3rem 5rem 3rem; }
  footer { padding: 2rem 3rem; }
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 1.5rem 3rem; }
  .hero-right { height: 300px; }
  section { padding: 4rem 1.5rem; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  #contact { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; gap: 0.8rem; padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* ─── Mobile Navigation ───────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--slate); border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed; top: 65px; left: 0; right: 0;
  background: rgba(253,250,246,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 1rem 1.5rem 1.5rem;
  gap: 0.2rem; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 0; font-size: 0.95rem; font-weight: 500;
  color: var(--slate); text-decoration: none;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 0.8rem; background: var(--gold); color: var(--deep);
  text-align: center; padding: 0.9rem; border-radius: 2px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 0.85rem; border-bottom: none;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
}

/* ─── Form Message ────────────────────────────────────────── */
.form-message {
  padding: 1rem 1.2rem; border-radius: 2px;
  font-size: 0.9rem; margin-bottom: 1rem;
}
.form-message.error {
  background: rgba(184,92,56,0.15);
  border: 1px solid rgba(184,92,56,0.4);
  color: #e8a080;
}
.form-message.success {
  background: rgba(52,168,83,0.15);
  border: 1px solid rgba(52,168,83,0.4);
  color: #7dcf93;
}

/* ─── Process header centred ──────────────────────────────── */
.process-header {
  text-align: center; max-width: 500px; margin: 0 auto 1rem;
}
.process-header .section-label { justify-content: center; }
