/* ============================================================
   MAGNIFIQUE DECORS — SITE STYLES
   ============================================================
   Structure notes for future extensibility:
   - Design tokens live in :root — change them once, the whole
     site updates (this is how you'll re-skin/extend later).
   - Every page (index.html, and future curtains.html,
     wallpapers.html, etc.) should link this SAME file, so a
     new product line automatically inherits the brand look.
   - Component blocks are separated by ── comment dividers.
     To add a new product-line landing page: copy index.html,
     keep the header/footer/nav markup and this stylesheet,
     swap the #hero, #products, #gallery content only.
   ============================================================ */
  :root {
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gold-dark: #8B6914;
    --charcoal: #1C1C1C;
    --charcoal-soft: #2E2E2E;
    --off-white: #FAF8F4;
    --warm-white: #F5F1EB;
    --text-muted: #6B6560;
    --text-light: #9A9490;
    --border: #E2D9CC;
    --shadow: rgba(0,0,0,0.08);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', sans-serif;
    --radius: 4px;
    --radius-lg: 8px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-sans);
    background: var(--off-white);
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.7;
    font-size: 16px;
  }

  /* ── STICKY HEADER ── */
  #sticky-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(28,28,28,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,169,110,0.3);
  }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--gold);
    letter-spacing: 0.08em;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
  }

  .logo-sub {
    font-family: var(--font-sans);
    font-size: 9px;
    color: var(--gold-light);
    letter-spacing: 0.25em;
    display: block;
    text-align: center;
    font-weight: 400;
    margin-top: -2px;
    text-transform: uppercase;
  }

  nav { display: flex; align-items: center; gap: 28px; }

  nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 400;
    transition: color 0.2s;
    text-transform: uppercase;
  }
  nav a:hover { color: var(--gold); }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    text-transform: uppercase;
  }
  .btn-primary:hover { background: #D4AA7A; transform: translateY(-1px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    padding: 9px 20px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
  }
  .btn-outline:hover { background: var(--gold); color: var(--charcoal); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: #FAF5EE;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 64px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(45deg, rgba(139,105,20,0.045) 25%, transparent 25%),
      linear-gradient(-45deg, rgba(139,105,20,0.045) 25%, transparent 25%);
    background-size: 60px 60px;
  }

  .hero-accent-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.35), transparent);
  }

  .hero-content {
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-size: 11px;
    letter-spacing: 0.3em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold-dark);
  }

  h1.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }

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

  .hero-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 400px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 48px;
  }

  .hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.2s;
    text-transform: uppercase;
  }
  .btn-whatsapp:hover { background: #20B85A; transform: translateY(-1px); }

  .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--charcoal);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
    text-transform: uppercase;
  }
  .btn-call:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

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

  .trust-item {
    text-align: left;
  }

  .trust-num {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold-dark);
    display: block;
    line-height: 1;
  }

  .trust-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .hero-image-side {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

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

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

  .hero-img-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to right, #FAF5EE 0%, transparent 30%);*/
    z-index: 1;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .announce-bar {
    background: var(--gold);
    color: var(--charcoal);
    text-align: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 999;
  }

  .announce-bar a { color: var(--charcoal); font-weight: 600; text-decoration: underline; }

  /* ── SECTION BASE ── */
  section { padding: 96px 24px; }

  .container { max-width: 1200px; margin: 0 auto; }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-size: 11px;
    letter-spacing: 0.3em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-dark);
  }

  h2.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
  }

  h2.section-title em { font-style: italic; color: var(--gold-dark); }

  .section-lead {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
    line-height: 1.8;
  }

  /* ── LOCAL SEO STRIP ── */
  #local-strip {
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
  }

  .local-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .local-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
  }

  .local-pill svg { flex-shrink: 0; }

  .local-pill strong { color: var(--charcoal); font-weight: 500; }

  /* ── PRODUCTS GRID ── */
  #products { background: var(--off-white); }

  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .product-card {
    background: #fff;
    padding: 36px 28px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.2s;
    position: relative;
  }

  .product-card:hover { background: var(--warm-white); }

  .product-card:hover .product-cta { color: var(--gold-dark); }

  .product-num {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--border);
    line-height: 1;
    user-select: none;
  }

  .product-icon {
    width: 44px;
    height: 44px;
    background: var(--warm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
  }

  .product-icon svg { color: var(--gold-dark); }

  h3.product-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
  }

  .product-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
  }

  .product-cta {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }

  .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }

  .tag {
    display: inline-block;
    background: var(--warm-white);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 400;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 56px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 56px;
    flex-wrap: wrap;
  }

  .cta-banner h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: #F5F0E8;
    line-height: 1.2;
    max-width: 480px;
  }

  .cta-banner h3 em { color: var(--gold); font-style: italic; }

  .cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

  /* ── WHY CHOOSE ── */
  #why { background: var(--charcoal); }

  #why .section-eyebrow { color: var(--gold-light); }
  #why .section-eyebrow::before { background: var(--gold-light); }
  #why h2.section-title { color: #F5F0E8; }
  #why h2.section-title em { color: var(--gold); }
  #why .section-lead { color: rgba(255,255,255,0.5); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,169,110,0.2);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 56px;
  }

  .why-card {
    background: rgba(255,255,255,0.04);
    padding: 40px 32px;
    transition: background 0.2s;
  }

  .why-card:hover { background: rgba(255,255,255,0.07); }

  .why-card-num {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: rgba(201,169,110,0.2);
    line-height: 1;
    margin-bottom: 20px;
  }

  h3.why-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: #F0EBDF;
    margin-bottom: 10px;
  }

  .why-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
  }

  /* ── GALLERY ── */
  /*#gallery { background: var(--warm-white); }*/

  /*.gallery-intro {*/
  /*  display: grid;*/
  /*  grid-template-columns: 1fr 1fr;*/
  /*  align-items: end;*/
  /*  gap: 40px;*/
  /*  margin-bottom: 48px;*/
  /*}*/

  /*.gallery-grid {*/
  /*  display: grid;*/
  /*  grid-template-columns: 2fr 1fr 1fr;*/
  /*  grid-template-rows: 280px 280px;*/
  /*  gap: 6px;*/
  /*  border-radius: var(--radius-lg);*/
  /*  overflow: hidden;*/
  /*}*/

  /*.gallery-item {*/
  /*  overflow: hidden;*/
  /*  position: relative;*/
  /*  background: var(--border);*/
  /*}*/

  /*.gallery-item:first-child {*/
  /*  grid-row: 1 / 3;*/
  /*}*/

  /*.gallery-item-wide {*/
  /*  grid-column: 2 / 4;*/
  /*}*/

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

  /*.gallery-item:hover img { transform: scale(1.04); }*/

  /*.gallery-overlay {*/
  /*  position: absolute;*/
  /*  inset: 0;*/
  /*  background: linear-gradient(to top, rgba(28,28,28,0.6), transparent);*/
  /*  opacity: 0;*/
  /*  transition: opacity 0.3s;*/
  /*  display: flex;*/
  /*  align-items: flex-end;*/
  /*  padding: 20px;*/
  /*}*/

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

  /*.gallery-overlay-text {*/
  /*  color: #fff;*/
  /*  font-size: 12px;*/
  /*  letter-spacing: 0.1em;*/
  /*  text-transform: uppercase;*/
  /*  font-weight: 500;*/
  /*}*/
  
  
  #gallery {
  background: var(--warm-white);
}

.gallery-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: var(--border);
}

/* Remove special sizing */
.gallery-item:first-child {
  grid-row: auto;
}

.gallery-item-wide {
  grid-column: auto;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-text {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

  /* ── PROCESS ── */
  #process { background: var(--off-white); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 14%;
    right: 14%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), var(--border), transparent);
    z-index: 0;
  }

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

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-dark);
  }

  h3.step-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── TESTIMONIALS ── */
  #reviews { background: var(--warm-white); }

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

  .review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
  }

  .stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 16px;
    margin-bottom: 20px;
  }

  .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  .reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--warm-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    flex-shrink: 0;
    font-family: var(--font-serif);
  }

  .reviewer-name { font-size: 14px; font-weight: 500; color: var(--charcoal); }
  .reviewer-loc { font-size: 12px; color: var(--text-light); }

  /* ── INFO + MAP ── */
  #visit {
    background: var(--charcoal);
    padding: 96px 24px;
  }

  #visit .section-eyebrow { color: var(--gold-light); }
  #visit .section-eyebrow::before { background: var(--gold-light); }
  #visit h2.section-title { color: #F5F0E8; }

  .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 56px;
    align-items: start;
  }

  .info-block { display: flex; flex-direction: column; gap: 28px; }

  .info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .info-icon svg { color: var(--gold); }

  .info-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
  }

  .info-value { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.5; }
  .info-value a { color: var(--gold); text-decoration: none; }
  .info-value a:hover { text-decoration: underline; }

  .hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
    margin-top: 8px;
  }

  .hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .hour-row.today { color: var(--gold); font-weight: 500; }
  .hour-row.closed { color: rgba(255,255,255,0.3); }

  .map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.2);
  }

  .map-container iframe {
    width: 100%;
    height: 340px;
    display: block;
    border: 0;
    filter: grayscale(30%) contrast(1.05);
  }

  .map-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
  }

  /* ── LEAD FORM ── */
  #contact { background: var(--off-white); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-left { padding-top: 8px; }

  .contact-perks { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }

  .perk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
  }

  .perk-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--warm-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
  }

  .form-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
  }

  .form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

  .form-row { margin-bottom: 16px; }

  .form-row label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 14px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--charcoal);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }

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

  .form-row textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    width: 100%;
    background: var(--charcoal);
    color: #fff;
    padding: 14px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
  }

  .form-submit:hover { background: var(--charcoal-soft); }

  .form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

  /* ── FOOTER ── */
  footer {
    background: #111;
    padding: 60px 24px 32px;
    color: rgba(255,255,255,0.5);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }

  .footer-logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    display: block;
  }

  .footer-brand-desc { font-size: 13px; line-height: 1.8; max-width: 240px; }

  h4.footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
  }

  .footer-seo-text {
    font-size: 12px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.3);
  }

  /* ── FLOATING WA BUTTON ── */
  #wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wa-pulse 2.5s infinite;
  }

  #wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

  @keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
  }

  #wa-float svg { width: 30px; height: 30px; fill: #fff; }

  /* ── SCHEMA BREADCRUMB TRAIL ── */
  .area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }

  .area-tag {
    font-size: 12px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 100px;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s;
  }

  .area-tag:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; }
    .hero-image-side { display: none; }
    .hero-content { padding: 60px 24px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    /*.gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }*/
    /*.gallery-item:first-child { grid-row: 1 / 2; }*/
    /*.gallery-item-wide { grid-column: 1 / 3; }*/
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cta-banner { padding: 36px 28px; }
    nav { display: none; }
    .gallery-intro { grid-template-columns: 1fr; }
      .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .gallery-item {
    height: 250px;
  }

  .gallery-item:first-child,
  .gallery-item-wide {
    grid-row: auto;
    grid-column: auto;
  }

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

  }

  @media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    section { padding: 72px 20px; }
    .form-card { padding: 28px 20px; }
      .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-item {
    height: 280px;
  }
  }

  /* ── ANIMATIONS ── */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

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

/* ── ACCESSIBILITY: SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 12px 20px;
  z-index: 2000;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ── NAV: PRODUCT-LINE DROPDOWN (extensibility) ──
   Today only "Blinds" has content, so the dropdown just points
   to on-page sections. When you add a new product line, add a
   <li><a href="/wallpapers/index.html">Wallpapers</a></li> etc.
   inside .nav-dropdown-menu and it appears automatically. */
.nav-item-dropdown { position: relative; }
.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--charcoal-soft);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 12px;
  white-space: nowrap;
}
.nav-dropdown-menu li a.disabled {
  color: rgba(255,255,255,0.3);
  cursor: default;
  pointer-events: none;
}
.nav-dropdown-menu li a.disabled::after {
  content: " (soon)";
  font-size: 10px;
}

/* ── FAQ ACCORDION ── */
#faq { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 4px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ── FORM SUBMIT STATES ── */
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  text-align: center;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(37,211,102,0.12); color: #1a7f3c; border: 1px solid rgba(37,211,102,0.35); }
.form-status.error { background: rgba(200,60,60,0.1); color: #a33; border: 1px solid rgba(200,60,60,0.3); }
.form-submit[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ── IMAGE PLACEHOLDER (until real photos are uploaded) ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, var(--warm-white), var(--warm-white) 10px, #f0ead9 10px, #f0ead9 20px);
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}


.mobile-menu-toggle{display:none;background:none;border:0;color:#C9A96E;font-size:30px;cursor:pointer}
.mobile-menu{display:none}
.mobile-call-btn {
    display: none;
}
@media (max-width:768px){
  .mobile-call-btn {
    display: inline-flex;
        align-items: center;
        gap: 8px;

        /* Same appearance as desktop */
        color: var(--gold);
        border: 1px solid var(--gold);
        background: transparent;
        text-decoration: none;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 8px 10px;
        border-radius: var(--radius-sm);
    }

    .mobile-call-btn:hover {
        background: var(--gold);
        color: var(--charcoal);
    }

    .mobile-call-btn:visited,
    .mobile-call-btn:active {
        color: var(--gold);
        text-decoration: none;
    }
  
.header-inner{height:70px;padding:0 16px}
nav,.header-cta{display:none}
.mobile-menu-toggle{display:block;order:2}
.logo-text{font-size:20px}
.mobile-menu{display:block;position:fixed;top:70px;left:-100%;width:80%;height:calc(100vh - 70px);background:#1C1C1C;transition:left .3s;padding:24px;z-index:9999}
.mobile-menu.open{left:0}
.mobile-nav{display:flex;flex-direction:column;gap:18px}
.mobile-nav a{color:#fff;text-decoration:none;font-size:18px}
body.menu-open{overflow:hidden}
}
