 /* ── RESET ── */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 html { scroll-behavior: smooth; }
 /* ── TOKENS ── */
 :root {
   --gold:      #B8891A;
   --gold-lt:   #D4A843;
   --gold-dk:   #7A5A10;
   --cream:     #FAF7F2;
   --cream-dk:  #F0EBE1;
   --ink:       #1C1812;
   --ink-lt:    #4A4035;
   --rose:      #8B3A35;
   --rose-lt:   #C47470;
   --surface:   #FFFFFF;
   --border:    rgba(184,137,26,0.2);
   --shadow:    0 8px 40px rgba(28,24,18,0.10);
   --r:         12px;
   --r-lg:      20px;
   --font-display: 'Roboto Slab', Georgia, serif;
   --font-body:    'Roboto', system-ui, sans-serif;
   --font-label:   'Roboto Condensed', 'Roboto', sans-serif;
 }
 body {
   background: var(--cream);
   color: var(--ink);
   font-family: var(--font-body);
   font-size: 16px;
   line-height: 1.7;
   -webkit-font-smoothing: antialiased;
 }
 /* ── UTILITY ── */
 .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
 .section-label {
   font-family: var(--font-label);
   font-size: 13px;
   letter-spacing: 0.3em;
   color: var(--gold);
   display: block;
   margin-bottom: 8px;
 }
 .section-title {
   font-family: var(--font-display);
   font-size: clamp(28px, 4vw, 42px);
   font-weight: 700;
   color: var(--ink);
   line-height: 1.2;
 }
 .divider { width: 48px; height: 2px; background: var(--gold); margin: 12px 0 0; }
 .btn-primary {
   display: inline-flex; align-items: center; gap: 8px;
   background: var(--gold); color: #fff;
   font-family: var(--font-label); font-size: 14px; letter-spacing: 0.15em;
   padding: 14px 32px; border: none; border-radius: 4px; cursor: pointer;
   transition: background 0.25s, transform 0.15s;
   text-decoration: none;
 }
 .btn-primary:hover { background: var(--gold-dk); transform: translateY(-1px); }
 .btn-outline {
   display: inline-flex; align-items: center; gap: 8px;
   background: transparent; color: var(--gold);
   font-family: var(--font-label); font-size: 14px; letter-spacing: 0.15em;
   padding: 13px 32px; border: 1.5px solid var(--gold); border-radius: 4px; cursor: pointer;
   transition: all 0.25s; text-decoration: none;
 }
 .btn-outline:hover { background: var(--gold); color: #fff; }
 .material-symbols-outlined { font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24; vertical-align: middle; }
 /* ── HEADER ── */
 header {
   position: fixed; top: 0; left: 0; right: 0; z-index: 100;
   background: rgba(250,247,242,0.95);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid var(--border);
   transition: box-shadow 0.3s;
 }
 header.scrolled { box-shadow: 0 4px 24px rgba(28,24,18,0.08); }
 .header-inner {
   display: flex; align-items: center; justify-content: space-between;
   height: 72px;
 }
 .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
 .logo img {width: 60px;}
 .logo-text {
   font-family: var(--font-display); font-size: 22px; font-weight: 700;
   color: var(--ink); letter-spacing: 0.06em;
 }
 .logo-text span { color: var(--gold); }
 nav.desk { display: flex; align-items: center; gap: 32px; }
 nav.desk a {
   font-family: var(--font-label); font-size: 13px; letter-spacing: 0.15em;
   color: var(--ink-lt); text-decoration: none;
   transition: color 0.2s; white-space: nowrap;
 }
 nav.desk a:hover, nav.desk a.active { color: var(--gold); }
 .header-cta { display: flex; align-items: center; gap: 12px; }
 .insta-link {
   display: flex; align-items: center; gap: 6px;
   color: var(--ink-lt); font-family: var(--font-label);
   font-size: 12px; letter-spacing: 0.1em;
   text-decoration: none; transition: color 0.2s;
 }
 .insta-link:hover { color: var(--rose); }
 .insta-link svg { width: 18px; height: 18px; }
 .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
 .hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: all 0.3s; }
 /* Mobile nav */
 .mobile-nav {
   display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
   background: var(--cream); border-bottom: 1px solid var(--border);
   padding: 20px 24px 28px; flex-direction: column; gap: 20px;
   box-shadow: 0 12px 32px rgba(28,24,18,0.1);
 }
 .mobile-nav.open { display: flex; }
 .mobile-nav a {
   font-family: var(--font-label); font-size: 16px; letter-spacing: 0.15em;
   color: var(--ink); text-decoration: none; padding: 8px 0;
   border-bottom: 1px solid var(--border);
 }
 /* ── HERO ── */
 .hero {
   padding-top: 72px;
   min-height: 100svh;
   background:
     linear-gradient(rgba(28,24,18,0.52), rgba(28,24,18,0.52)),
     url('../images/stitcheryGurgaon.webp') center/cover no-repeat;
   display: flex; flex-direction: column; align-items: center; justify-content: center;
   text-align: center; padding-left: 24px; padding-right: 24px;
   position: relative;
 }
 .hero-eyebrow {
   font-family: var(--font-label); font-size: 13px; letter-spacing: 0.35em;
   color: var(--gold-lt); margin-bottom: 16px;
 }
 .hero h1 {
   font-family: var(--font-display);
   font-size: clamp(36px, 6vw, 72px);
   font-weight: 700; color: #fff;
   line-height: 1.1; max-width: 780px;
   margin-bottom: 20px;
 }
 .hero h1 em { color: var(--gold-lt); font-style: normal; }
 .hero-sub {
   color: rgba(255,255,255,0.78); font-size: 17px;
   max-width: 500px; margin: 40px 0; line-height: 1.6;
 }
 .hero-badges {
   display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
   margin-bottom: 48px;
 }
 .badge {
   background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
   color: #fff; font-family: var(--font-label); font-size: 12px;
   letter-spacing: 0.12em; padding: 7px 16px; border-radius: 100px;
   backdrop-filter: blur(4px);
 }
 /* ── ENQUIRY FORM ── */
 .enquiry-box {
   background: rgba(250,247,242,0.96);
   border: 1px solid rgba(255,255,255,0.6);
   border-radius: 24px;
   padding:16px;
   width: 100%; max-width: 860px;
   box-shadow: 0 16px 60px rgba(28,24,18,0.25);
   backdrop-filter: blur(8px);
 }
 .form-row { display: flex; gap: 16px; align-items: flex-end; flex-wrap: wrap; }
 .form-field { flex: 1; min-width: 180px; text-align: left; border-right: 1px solid rgba(28,24,18,0.25); padding-right: 16px;}
 .form-field:last-of-type{border-right: none;}
 .form-field label {
   font-family: var(--font-label); font-size: 11px; letter-spacing: 0.22em;
   color: var(--ink-lt); display: block; margin-bottom: 3px;
 }
 .form-field input,
 .form-field select{
   width: 100%; background: transparent;
   border: none;
   padding: 4px 0; font-family: var(--font-body); font-size: 15px;
   color: var(--ink); outline: none; transition: border-color 0.2s;
   appearance: none; -webkit-appearance: none;
 }
 .form-field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8891A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 20px; }
 .send-btn {
   flex-shrink: 0; width: 100%;
   background: var(--gold); color: #fff; border: none; border-radius: 6px;
   font-family: var(--font-label); font-size: 14px; letter-spacing: 0.15em;
   padding: 16px; cursor: pointer; display: flex; align-items: center;
   justify-content: center; gap: 8px; transition: background 0.25s, transform 0.15s;
   margin-top: 8px;
 }
 .send-btn:hover { background: var(--gold-dk); transform: translateY(-1px); }
 @media (min-width: 640px) { .send-btn { width: auto; margin-top: 0; border-radius: 50%; } 
 .send-btn .btn-text{display: none;}
}
 /* ── TRUST BAR ── */
 .trust-bar {
   background: var(--ink);
   padding: 20px 0;
 }
 .trust-inner {
   display: flex; align-items: center; justify-content: center;
   gap: 40px; flex-wrap: wrap;
 }
 .trust-item {
   display: flex; align-items: center; gap: 10px;
   color: rgba(255,255,255,0.85); font-size: 14px;
 }
 .trust-item .material-symbols-outlined { color: var(--gold-lt); font-size: 20px; }
 /* ── SECTION GENERIC ── */
 .section { padding: 80px 0; }
 .section-head { margin-bottom: 56px; }
 .section-head.center { text-align: center; }
 .section-head.center .divider { margin: 12px auto 0; }
 /* ── STYLE GRID ── */
 .style-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   gap: 24px;
 }
 .style-card {
   position: relative; aspect-ratio: 3/4;
   border-radius: var(--r-lg); overflow: hidden;
   cursor: pointer; box-shadow: var(--shadow);
   transition: transform 0.4s, box-shadow 0.4s;
 }
 .style-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(28,24,18,0.18); }
 .style-card img {
   position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
   transition: transform 0.6s;
 }
 .style-card:hover img { transform: scale(1.07); }
 .card-overlay {
   position: absolute; inset: 0;
   background: linear-gradient(to top, rgba(28,24,18,0.90) 0%, rgba(28,24,18,0.05) 55%);
   transition: opacity 0.3s;
 }
 .card-body {
   position: absolute; bottom: 0; left: 0; right: 0;
   padding: 24px 20px; color: #fff;
 }
 .card-tag {
   font-family: var(--font-label); font-size: 11px; letter-spacing: 0.2em;
   color: var(--gold-lt); margin-bottom: 4px;
 }
 .card-title {
   font-family: var(--font-display); font-size: 22px; font-weight: 700;
   line-height: 1.2; margin-bottom: 6px;
 }
 .card-meta { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
 .card-cta {
   width: 100%; padding: 11px; border: 1.5px solid rgba(255,255,255,0.6);
   border-radius: 100px; background: transparent; color: #fff;
   font-family: var(--font-label); font-size: 12px; letter-spacing: 0.18em;
   cursor: pointer; transition: all 0.25s;
 }
 .card-cta:hover { background: var(--gold); border-color: var(--gold); }
 /* ── AREAS SERVED ── */
 .areas-section { background: var(--cream-dk); }
 .areas-grid {
   display: flex; flex-wrap: wrap; gap: 10px;
 }
 .area-pill {
   background: var(--surface); border: 1px solid var(--border);
   color: var(--ink-lt); font-size: 13px; padding: 8px 18px;
   border-radius: 100px; display: flex; align-items: center; gap: 6px;
 }
 .area-pill .material-symbols-outlined { font-size: 15px; color: var(--gold); }
 /* ── PROCESS ── */
 .process-section { background: var(--ink); }
 .process-section .section-label { color: var(--gold-lt); }
 .process-section .section-title { color: #fff; }
 .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 48px; }
 .process-step { text-align: center; }
 .step-icon {
   width: 64px; height: 64px; background: rgba(184,137,26,0.15);
   border: 1px solid rgba(184,137,26,0.4); border-radius: 50%;
   display: flex; align-items: center; justify-content: center;
   margin: 0 auto 16px;
 }
 .step-icon .material-symbols-outlined { color: var(--gold-lt); font-size: 28px; }
 .step-num {
   font-family: var(--font-label); font-size: 11px; letter-spacing: 0.2em;
   color: var(--gold); margin-bottom: 8px;
 }
 .step-title { font-family: var(--font-display); font-size: 18px; color: #fff; margin-bottom: 8px; }
 .step-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
 /* ── TESTIMONIALS ── */
 .testimonials-track {
   display: flex; gap: 24px; overflow-x: auto;
   padding-bottom: 12px; scroll-snap-type: x mandatory;
 }
 .testimonials-track::-webkit-scrollbar { height: 4px; }
 .testimonials-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
 .testi-card {
   min-width: 360px; background: var(--surface);
   border: 1px solid var(--border); border-radius: var(--r-lg);
   padding: 28px; scroll-snap-align: start;
 }
 .stars { color: var(--gold); margin-bottom: 12px; font-size: 18px; }
 .testi-text {
   font-family: var(--font-display); font-style: italic;
   font-size: 16px; color: var(--ink-lt); line-height: 1.7; margin-bottom: 20px;
 }
 .testi-author { display: flex; align-items: center; gap: 12px; }
 .author-avatar {
   width: 40px; height: 40px; border-radius: 50%;
   background: var(--cream-dk); display: flex; align-items: center; justify-content: center;
   font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 16px;
 }
 .author-name { font-weight: 600; color: var(--ink); font-size: 15px; }
 .author-tag { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.15em; color: var(--gold); }
 /* ── FAQ ── */
 .faq-section { background: var(--cream-dk); }
 .faq-list { max-width: 720px; margin: 0 auto; }
 .faq-item { border-bottom: 1px solid var(--border); }
 .faq-q {
   width: 100%; background: none; border: none; text-align: left;
   padding: 20px 0; cursor: pointer; display: flex; align-items: center;
   justify-content: space-between; gap: 16px;
   font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--ink);
 }
 .faq-q .material-symbols-outlined { transition: transform 0.3s; flex-shrink: 0; color: var(--gold); }
 .faq-item.open .faq-q .material-symbols-outlined { transform: rotate(180deg); }
 .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
 .faq-item.open .faq-a { max-height: 200px; }
 .faq-a p { padding: 0 0 20px; color: var(--ink-lt); font-size: 15px; line-height: 1.7; }
 /* ── LOCATION ── */
 .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
 @media (max-width: 768px) { .location-grid { grid-template-columns: 1fr; } }
 .location-info h2 { font-family: var(--font-display); font-size: clamp(32px,4vw,48px); font-weight: 700; line-height: 1.15; margin-bottom: 32px; }
 .contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
 .contact-item .material-symbols-outlined { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
 .contact-label { font-weight: 600; margin-bottom: 2px; }
 .contact-value { color: var(--ink-lt); font-size: 15px; }
 .map-frame { border-radius: var(--r-lg); overflow: hidden; height: 380px; box-shadow: var(--shadow); }
 .map-frame iframe { width: 100%; height: 100%; border: none; }
 /* ── FOOTER ── */
 footer {
   background: var(--ink); color: rgba(255,255,255,0.7);
   padding: 56px 0 32px;
 }
 .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
 @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
 .footer-brand .logo-text { color: #fff; }
 .footer-brand p { font-size: 14px; margin-top: 12px; line-height: 1.7; max-width: 320px; }
 .footer-heading { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.25em; color: var(--gold-lt); margin-bottom: 16px; }
 .footer-links { list-style: none; }
 .footer-links li { margin-bottom: 10px; }
 .footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
 .footer-links a:hover { color: var(--gold-lt); }
 .footer-insta {
   display: inline-flex; align-items: center; gap: 10px;
   background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888);
   color: #fff; border-radius: 8px; padding: 10px 18px;
   font-family: var(--font-label); font-size: 13px; letter-spacing: 0.1em;
   text-decoration: none; margin-top: 8px; transition: opacity 0.2s;
 }
 .footer-insta:hover { opacity: 0.85; }
 .footer-insta svg { width: 18px; height: 18px; flex-shrink: 0; }
 .footer-bottom {
   border-top: 1px solid rgba(255,255,255,0.08);
   padding-top: 24px; text-align: center; font-size: 13px;
 }
 .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; margin: 0 12px; }
 /* ── FLOATING WHATSAPP ── */
 .wa-float {
   position: fixed; bottom: 24px; right: 24px; z-index: 200;
   width: 56px; height: 56px; border-radius: 50%;
   background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
   display: flex; align-items: center; justify-content: center;
   text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
 }
 .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
 .wa-float svg { width: 28px; height: 28px; fill: #fff; }
 /* ── SCROLL REVEAL ── */
 .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
 .reveal.visible { opacity: 1; transform: none; }
 /* ── RESPONSIVE ── */
 @media (max-width: 768px) {
   nav.desk, .header-cta .btn-primary { display: none; }
   .hamburger { display: block; }
   .enquiry-box { padding: 20px 16px; }
   .form-row { flex-direction: column; }
   .form-field { min-width: 100%; border-right:none; border-bottom: 1px solid rgba(28,24,18,0.25);}
 }
 @media (min-width: 769px) { .insta-link { display: flex; } }