﻿/* =============================================================
   SIDDHI INTERIOR — style.css
   Fonts   : Playfair Display (headings) · DM Sans (body)
   Animations: slow, soft, luxury
   ============================================================= */

/* ── TOKENS ── */
:root {
  --bg:      #FFFFFF;
  --dark:    #111111;
  --ink:     #1C1C1C;
  --accent:  #C58A3D;
  --light:   #F7F7F7;
  --border:  #E8E8E8;
  --text:    #4A4A4A;
  --muted:   #8C8C8C;

  --display : 'Playfair Display', Georgia, serif;
  --sans    : 'DM Sans', system-ui, sans-serif;

  /* fluid type */
  --fs-xs  : clamp(0.7rem,  1.2vw, 0.8rem);
  --fs-sm  : clamp(0.85rem, 1.6vw, 0.95rem);
  --fs-base: clamp(0.95rem, 1.8vw, 1.05rem);
  --fs-md  : clamp(1.15rem, 2.2vw, 1.35rem);
  --fs-lg  : clamp(1.35rem, 2.8vw, 1.65rem);
  --fs-xl  : clamp(1.65rem, 3.5vw, 2.2rem);
  --fs-2xl : clamp(2rem,    4.5vw, 3rem);
  --fs-3xl : clamp(2.6rem,  5.5vw, 4rem);
  --fs-hero: clamp(3.2rem,  8vw,   7rem);

  /* spacing */
  --sp-xs : clamp(0.5rem,  1vw,   0.75rem);
  --sp-sm : clamp(0.75rem, 1.5vw, 1rem);
  --sp-md : clamp(1rem,    2vw,   1.5rem);
  --sp-lg : clamp(1.5rem,  3vw,   2.5rem);
  --sp-xl : clamp(2.5rem,  5vw,   4rem);
  --sp-2xl: clamp(4rem,    8vw,   7rem);
  --sp-3xl: clamp(5rem,   10vw,  10rem);

  /* elevation */
  --sh-sm : 0 2px 16px rgba(0,0,0,.05);
  --sh-md : 0 8px 40px rgba(0,0,0,.09);
  --sh-lg : 0 24px 72px rgba(0,0,0,.13);

  /* animation — deliberately slow & soft */
  --ease   : cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow : 1.4s; /* scroll-reveal */
  --t-img  : 1.6s; /* image zoom     */
  --t-ui   : 0.45s;  /* hover / UI     */
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* prevent horizontal scroll at root */
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  overflow-x: hidden; /* belt-and-braces on both html & body */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  box-sizing: border-box;
}

/* ── SCROLL REVEAL ── */
.reveal-fade-up,
.reveal-fade-left,
.reveal-fade-right {
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal-fade-up    { transform: translateY(40px); }
.reveal-fade-left  { transform: translateX(-40px); }
.reveal-fade-right { transform: translateX(40px); }
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* services section reveals slightly staggered */
.services .reveal-fade-up {
  transition-duration: 1.6s;
}

/* ── SHARED TYPOGRAPHY ── */
.section-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--display);
  font-size: var(--fs-3xl);
  font-weight: 400;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: var(--sp-sm);
}
.section-heading em {
  font-style: italic;
  color: var(--accent);
}

.section-subtext {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.9;
}

.section-header { margin-bottom: var(--sp-xl); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95em 2.5em;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-ui) var(--ease),
              color      var(--t-ui) var(--ease),
              transform  var(--t-ui) var(--ease);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  outline: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95em 2.5em;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.38);
  white-space: nowrap;
  transition: border-color var(--t-ui) var(--ease),
              color        var(--t-ui) var(--ease),
              transform    var(--t-ui) var(--ease);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── LOGO ── */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Image logo — header */
.logo-img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  /* Natural colours always — drop-shadow makes it readable on dark hero bg */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.55));
  transition: filter var(--t-ui) var(--ease),
              opacity var(--t-ui) var(--ease);
}

/* On scrolled white header — remove shadow, show crisp natural logo */
.site-header.scrolled .logo-img {
  filter: none;
}

/* Footer logo — on near-black bg, add bright border/bg box so it pops */
.logo-img--footer {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  background: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  filter: none;
  opacity: 0.95;
  transition: opacity var(--t-ui) var(--ease);
}
.logo-img--footer:hover { opacity: 1; }

/* Preloader — keep the SI text mark for now */
.preloader-mark {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  animation: prePulse 2s var(--ease) infinite;
}

/* Legacy .logo-mark / .logo-text kept in case other pages still use them */
.logo-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: color var(--t-ui) var(--ease);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  padding-block: 1.5rem;
  transition: background  var(--t-ui) var(--ease),
              box-shadow  var(--t-ui) var(--ease),
              padding     var(--t-ui) var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
  padding-block: 0.9rem;
}

/* on hero (dark bg) — logo image already inverted to white via .logo-img filter */
.site-header:not(.scrolled) .desktop-nav a   { color: rgba(255,255,255,0.8); }
.site-header:not(.scrolled) .desktop-nav a:hover { color: #fff; }
.site-header:not(.scrolled) .hamburger span  { background: #fff; }

/* after scroll */
.site-header.scrolled .desktop-nav a { color: var(--dark); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  gap: 1rem;
  box-sizing: border-box;
}

.desktop-nav ul {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.6rem);
  align-items: center;
}
.desktop-nav a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--t-ui) var(--ease);
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t-ui) var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-cta   { /* alias for .btn-primary in nav */ }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 17px;
}
.hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--dark);
  transition: transform var(--t-ui) var(--ease),
              opacity   var(--t-ui) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: absolute;
  top: 100%; inset-inline: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1.5rem clamp(1.25rem,5vw,4rem) 2rem;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity    var(--t-ui) var(--ease),
              transform  var(--t-ui) var(--ease),
              visibility var(--t-ui) var(--ease);
  box-shadow: var(--sh-md);
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav ul   { display: flex; flex-direction: column; }
.mobile-link {
  display: block;
  padding: 0.8rem 0;
  font-size: var(--fs-sm); font-weight: 300;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--t-ui) var(--ease);
}
.mobile-link:hover { color: var(--accent); }
.mobile-cta { margin-top: 1.4rem; display: inline-flex; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100svh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden; /* prevent image overflow */
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s var(--ease) forwards;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.86) 0%,
    rgba(0,0,0,0.40) 45%,
    rgba(0,0,0,0.12) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 100%;
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 6rem;
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  /* override .container's max-width centering — hero spans full width */
  max-width: 100vw;
  margin-inline: 0;
}
.hero-content { max-width: 800px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.eyebrow-line { width: 44px; height: 1px; background: var(--accent); flex: none; }
.hero-heading {
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1.6rem;
}
.hero-heading span { color: var(--accent); font-weight: 400; }
.hero-desc {
  font-size: var(--fs-sm); font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.95; max-width: 46ch;
  margin-bottom: 2.5rem; letter-spacing: 0.01em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-actions .btn-primary svg {
  width: 13px; height: 13px;
  transition: transform var(--t-ui) var(--ease);
}
.hero-actions .btn-primary:hover svg { transform: translateX(4px); }

/* stats — circular progress rings */
.stats-band {
  background-color: var(--light);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.stats-rings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.ring-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.8rem;
}
.ring {
  position: relative;
  width: clamp(90px, 12vw, 120px);
  aspect-ratio: 1;
}
.ring svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.ring-track {
  fill: none;
  stroke: rgba(197,138,61,0.16);
  stroke-width: 6;
}
.ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
}
.ring-value {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 1px;
}
.ring-value .stat-number {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 600;
  color: var(--dark); line-height: 1;
}
.ring-value .stat-suffix {
  font-family: var(--display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
}

/* scroll cue */
.scroll-indicator {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.25rem, 5vw, 4rem);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0.55;
  pointer-events: none;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.65));
  animation: scrollPulse 3s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.7); }
  50%     { opacity: 1;   transform: scaleY(1);   }
}
.scroll-text {
  font-size: 0.55rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); writing-mode: vertical-rl;
}

/* ── ABOUT ── */
.about { padding-block: var(--sp-xl); background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,7rem); align-items: center;
}
.about-img-wrap { position: relative; overflow: hidden; }
.about-img {
  width: 100%;
  height: clamp(380px,55vw,600px);
  object-fit: cover;
  transition: transform var(--t-img) var(--ease);
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }
.about-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--accent); color: #fff;
  padding: 1.4rem 1.8rem;
  display: flex; flex-direction: column; align-items: center; line-height: 1.15;
}
.badge-num {
  font-family: var(--display);
  font-size: 2.8rem; font-weight: 500;
}
.badge-text {
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; opacity: 0.88; margin-top: 0.2rem;
}
.about-body {
  font-size: var(--fs-sm); font-weight: 300;
  line-height: 1.95; color: var(--text); margin-bottom: 1.25rem;
}
.about-meta {
  display: flex; flex-direction: column; gap: 0.7rem;
  margin-top: var(--sp-lg); padding-top: var(--sp-lg);
  border-top: 1px solid var(--border);
}
.about-meta-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.75rem; font-weight: 400;
  color: var(--dark); letter-spacing: 0.04em;
}
.meta-icon svg { width: 15px; height: 15px; color: var(--accent); }

/* ── SERVICES ── */
.services { padding-block: var(--sp-xl); background-color: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(270px,100%),1fr));
  gap: clamp(0.9rem,1.8vw,1.3rem);
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--t-ui) var(--ease),
              transform  var(--t-ui) var(--ease);
}
.service-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.service-img-wrap { overflow: hidden; height: clamp(170px,18vw,230px); }
.service-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-img) var(--ease);
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; }
.service-body h3 {
  font-family: var(--display);
  font-size: var(--fs-md); font-weight: 500;
  color: var(--dark); line-height: 1.2;
}
.service-body p { font-size: 0.8rem; font-weight: 300; color: var(--muted); line-height: 1.85; }
.service-arrow {
  display: flex; align-items: center;
  margin-top: 0.65rem; color: var(--accent);
  transition: transform var(--t-ui) var(--ease);
}
.service-card:hover .service-arrow { transform: translateX(6px); }
.service-arrow svg { width: 16px; height: 16px; }

/* ── WHY CHOOSE US ── */
.why-us { padding-block: var(--sp-xl); background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,7rem); align-items: center;
}
.why-img {
  width: 100%;
  height: clamp(380px,52vw,620px);
  object-fit: cover;
}
.why-accent-line {
  width: 2px; height: clamp(55px,8vw,90px);
  background: var(--accent); margin-top: 1.5rem;
}
.why-features { display: flex; flex-direction: column; margin-top: var(--sp-lg); }
.why-feature {
  display: flex; gap: 1.4rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.why-feature:last-child { border-bottom: none; }
.why-num {
  font-family: var(--display);
  font-size: 0.75rem; font-weight: 400;
  color: var(--accent); letter-spacing: 0.12em;
  flex-shrink: 0; padding-top: 0.3rem;
}
.why-feature h3 {
  font-family: var(--display);
  font-size: var(--fs-md); font-weight: 500;
  color: var(--dark); margin-bottom: 0.35rem;
}
.why-feature p { font-size: 0.8rem; font-weight: 300; color: var(--muted); line-height: 1.85; }

/* ═══════════════════════════════════════════════════════════
   PROCESS — Premium split layout with infinite marquee slider
   ═══════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.process {
  background-color: #0F0F0F;
  background-image: var(--stripe-dark);
  overflow: hidden;
}

/* ── Two-column layout ── */
.process__layout {
  display: flex;
  align-items: stretch;
  max-width: 1600px;
  margin-inline: auto;
  min-height: clamp(420px, 55vh, 580px);
}

/* ═══════════════════════════
   LEFT — static, 30%
═══════════════════════════ */
.process__left {
  flex: 0 0 30%;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 3vw, 4rem)
           clamp(3rem, 6vw, 7rem) clamp(2rem, 5vw, 5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  /* no animations on left */
}

.process__label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C89B5C;
  margin-bottom: 1.4rem;
  display: block;
}

.process__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: #FFFFFF;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.process__desc {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 0.95rem);
  font-weight: 300;
  color: #9D9D9D;
  line-height: 1.9;
  max-width: 28ch;
}

/* ═══════════════════════════
   RIGHT — marquee, 70%
═══════════════════════════ */
.process__right {
  flex: 0 0 70%;
  width: 70%;
  position: relative;
  display: flex;
  align-items: center;
  /* overflow hidden here clips the marquee */
  overflow: hidden;
}

/* Soft fade masks on edges */
.process__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(48px, 7vw, 100px);
  z-index: 3;
  pointer-events: none;
}
.process__fade--left  {
  left: 0;
  background: linear-gradient(to right, #0F0F0F 30%, transparent 100%);
}
.process__fade--right {
  right: 0;
  background: linear-gradient(to left,  #0F0F0F 30%, transparent 100%);
}

/* Viewport — just padding wrapper, no extra overflow:hidden */
.process__viewport {
  width: 100%;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  /* overflow must NOT be hidden here — parent handles it */
}

/* Track — driven entirely by JS rAF translateX(px) */
.process__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transform: translateX(0px);
  /* NO CSS animation — JS drives this */
}

/* ═══════════════════════════
   Cards
═══════════════════════════ */
.process__card {
  flex: 0 0 400px;
  width: 400px;
  min-height: 260px;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
  box-sizing: border-box;

  /* Soft glow shadow */
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition: transform      0.4s ease,
              border-color   0.4s ease,
              box-shadow     0.4s ease;
}

.process__card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #C89B5C;
  box-shadow: 0 24px 64px rgba(200, 155, 92, 0.16),
              0 8px 40px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Step label */
.process__card-step {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C89B5C;
  margin-bottom: 0.8rem;
}
/* Gold accent line */
.process__card-step::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #C89B5C;
  opacity: 0.55;
  margin-top: 0.65rem;
}

/* Card heading */
.process__card-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0.4rem;
}

/* Card description */
.process__card-desc {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #9D9D9D;
  line-height: 1.85;
}

/* ═══════════════════════════
   Tablet  768–1024
═══════════════════════════ */
@media (max-width: 1024px) {
  .process__left  { flex: 0 0 35%; width: 35%; }
  .process__right { flex: 0 0 65%; width: 65%; }
  .process__card  { flex: 0 0 340px; width: 340px; }
}

/* ═══════════════════════════
   Mobile  < 768
═══════════════════════════ */
@media (max-width: 767px) {
  .process__layout {
    flex-direction: column;
    min-height: unset;
  }
  .process__left {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 3rem clamp(1.25rem, 5vw, 2.5rem) 2.5rem;
  }
  .process__desc { max-width: 100%; }
  .process__right {
    flex: none;
    width: 100%;
  }
  .process__card {
    flex: 0 0 280px;
    width: 280px;
    min-height: 220px;
    padding: 1.75rem;
  }
}

/* ═══════════════════════════
   Reduced motion
═══════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .process__track { animation: none !important; }
}

/* ── PROJECTS ── */
.projects { padding-block: var(--sp-xl); background: var(--bg); }
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(0.6rem,1.2vw,1.1rem);
}
.project-card { position: relative; overflow: hidden; cursor: pointer; }
.project-card--large { grid-column: span 2; }
.project-card--tall  { grid-row: span 2; }
.project-img-wrap { overflow: hidden; height: clamp(210px,28vw,370px); }
.project-card--large .project-img-wrap { height: clamp(240px,32vw,410px); }
.project-card--tall  .project-img-wrap { height: 100%; min-height: clamp(430px,60vw,760px); }
.project-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-img) var(--ease);
}
.project-card:hover .project-img-wrap img { transform: scale(1.05); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: clamp(1.2rem,2.5vw,2rem);
  opacity: 0;
  transition: opacity 0.65s var(--ease);
}
.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay { opacity: 1; }
.project-info { color: #fff; }
.project-location {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.4rem;
}
.project-location svg { width: 11px; height: 11px; }
.project-info h3 {
  font-family: var(--display);
  font-size: var(--fs-lg); font-weight: 400;
  margin-bottom: 0.7rem; line-height: 1.2;
}
.project-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.28);
  padding-bottom: 0.12rem;
  transition: color var(--t-ui) var(--ease), border-color var(--t-ui) var(--ease);
}
.project-link:hover { color: var(--accent); border-color: var(--accent); }
.project-link svg { width: 13px; height: 13px; }

/* projects page — uniform filterable grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: clamp(0.6rem, 1.2vw, 1.1rem);
}
.projects-grid .project-img-wrap { height: clamp(240px, 30vw, 360px); }

/* ── BEFORE / AFTER ── */
.before-after { padding-block: var(--sp-xl); background-color: var(--light); }
.ba-slider-wrap { max-width: 880px; margin-inline: auto; user-select: none; }
.ba-slider {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; cursor: col-resize;
  border: 1px solid var(--border);
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img {
  width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-label {
  position: absolute; bottom: 1rem;
  padding: 0.28em 0.75em;
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 400; background: rgba(0,0,0,0.5); color: #fff;
  pointer-events: none;
}
.ba-label--before { left: 1rem; }
.ba-label--after  { right: 1rem; }
.ba-handle {
  position: absolute; top: 0; left: 50%;
  width: 2px; height: 100%;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%); z-index: 10;
  display: flex; align-items: center; justify-content: center;
  cursor: col-resize;
}
.ba-handle-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: #fff; border: 2px solid var(--accent); color: var(--accent);
}
.ba-handle-icon svg { width: 14px; height: 14px; }

/* ── MATERIALS ── */
.materials { padding-block: var(--sp-xl); background: var(--ink); }
.materials .section-eyebrow { color: var(--accent); }
.materials .section-heading  { color: #fff; }
.materials .section-subtext  { color: rgba(255,255,255,0.42); }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(120px,100%),1fr));
  gap: clamp(0.45rem,1.2vw,0.9rem);
}
.material-item { display: flex; flex-direction: column; gap: 0.65rem; cursor: pointer; }
.material-img-wrap { overflow: hidden; aspect-ratio: 1; }
.material-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-img) var(--ease), filter 0.9s ease;
  filter: grayscale(25%);
}
.material-item:hover .material-img-wrap img { transform: scale(1.08); filter: grayscale(0%); }
.material-item span {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 300; color: rgba(255,255,255,0.52);
}

/* ── TESTIMONIALS (auto-scroll slider) ── */
.testimonials { padding-block: var(--sp-xl); background: var(--bg); }

.testimonials-slider {
  max-width: 860px;
  margin-inline: auto;
  position: relative;
}

/* Viewport — fixed width, clips overflow */
.testimonials-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track — flex row, NO wrap, slides via transform */
.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  will-change: transform;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Each card = exactly the viewport width */
.testimonials-track .testimonial-card {
  flex: 0 0 100%;          /* do not grow, do not shrink, be 100% of track  */
  width: 100%;             /* belt-and-braces                                */
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  background: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  transition: border-color var(--t-ui) var(--ease);
}
.testimonials-track .testimonial-card:hover {
  border-color: rgba(197, 138, 61, 0.4);
}

/* Stars */
.stars { display: flex; gap: 0.25rem; color: var(--accent); margin-bottom: 1.4rem; }
.stars svg { width: 14px; height: 14px; fill: var(--accent); stroke: none; }

/* Quote */
.testimonial-card blockquote p {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.82;
  margin-bottom: 1.8rem;
}

/* Author row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

/* Avatar circle */
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.testimonial-author strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
}
.testimonial-author div > span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.18rem;
}

/* Controls row: prev · dots · next */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

/* Prev / Next buttons */
.testimonial-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(197, 138, 61, 0.45);
  color: var(--dark);
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--t-ui) var(--ease),
              color        var(--t-ui) var(--ease),
              border-color var(--t-ui) var(--ease);
}
.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.testimonial-nav:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.testimonial-nav svg { width: 18px; height: 18px; }

/* Dot indicators */
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(197, 138, 61, 0.28);
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--t-ui) var(--ease),
              width      var(--t-ui) var(--ease),
              border-radius var(--t-ui) var(--ease);
}
.t-dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
}
.t-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.testimonial-nav:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.testimonial-nav:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.testimonial-nav svg { width: 18px; height: 18px; }

/* Dot indicators */
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(197, 138, 61, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--t-ui) var(--ease),
              transform  var(--t-ui) var(--ease),
              width      var(--t-ui) var(--ease);
}
.t-dot.active {
  background: var(--accent);
  width: 22px;           /* pill shape on active */
  border-radius: 4px;
  transform: none;
}
.t-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── FAQ ── */
.faq { padding-block: var(--sp-xl); background-color: var(--light); }
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding-block: 1.5rem;
  font-family: var(--display);
  font-size: clamp(0.95rem,1.7vw,1.12rem); font-weight: 400;
  color: var(--dark); text-align: left; background: none; border: none; cursor: pointer;
  transition: color var(--t-ui) var(--ease);
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  color: var(--accent); flex-shrink: 0;
  transition: transform var(--t-ui) var(--ease);
}
.faq-icon svg { width: 17px; height: 17px; display: block; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.8s var(--ease), padding 0.5s ease;
  padding-bottom: 0;
}
.faq-answer.open { max-height: 480px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: var(--fs-sm); font-weight: 300; color: var(--muted); line-height: 1.9; }

/* ── CTA / CONTACT ── */
.cta-section { padding-block: var(--sp-xl); background: var(--dark); }
.cta-inner {
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem); align-items: center;
  box-sizing: border-box;
}
.cta-eyebrow { color: var(--accent); }
.cta-heading {
  font-family: var(--display);
  font-size: var(--fs-3xl); font-weight: 400;
  line-height: 1.18; color: #fff; margin-bottom: var(--sp-sm);
}
.cta-heading em { font-style: italic; color: var(--accent); }
.cta-desc { font-size: var(--fs-sm); font-weight: 300; color: rgba(255,255,255,0.52); line-height: 1.9; margin-bottom: var(--sp-lg); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cta-wa { color: rgba(255,255,255,0.8); }

/* form */
.contact-form-wrap {
  background: var(--ink);
  padding: clamp(1.75rem,4vw,3rem);
  border-top: 2px solid var(--accent);
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-family: var(--sans);
  font-size: var(--fs-sm); font-weight: 300;
  padding: 0.8em 1em; outline: none; width: 100%;
  transition: border-color var(--t-ui) var(--ease),
              background   var(--t-ui) var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); background: rgba(255,255,255,0.07); }
.form-group select option { background: var(--ink); color: #fff; }
.form-group textarea { resize: vertical; min-height: 95px; }
.form-submit { width: 100%; justify-content: center; }
.form-note { font-size: 0.7rem; color: var(--accent); text-align: center; min-height: 1.2em; }

/* ── FOOTER ── */
.site-footer { background: #080808; color: rgba(255,255,255,0.6); }
.footer-inner {
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  padding-block: var(--sp-2xl) var(--sp-lg);
  box-sizing: border-box;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem,5vw,5rem);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { display: flex; flex-direction: column; }
/* .logo--light text/mark overrides no longer needed — footer uses image logo */
.footer-tagline {
  font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 1.85;
  margin-top: 0.9rem; margin-bottom: 1.4rem;
}
.footer-socials { display: flex; gap: 0.6rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: border-color var(--t-ui) var(--ease),
              background   var(--t-ui) var(--ease),
              color        var(--t-ui) var(--ease);
}
.social-link:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.social-link svg { width: 16px; height: 16px; display: block; }
.footer-links-group h3 {
  font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 400; margin-bottom: 1.3rem;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links-group a {
  font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.4);
  transition: color var(--t-ui) var(--ease);
}
.footer-links-group a:hover { color: var(--accent); }
.footer-contact h3 {
  font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 400; margin-bottom: 1.3rem;
}
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact p {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.65;
}
.footer-contact svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.4); transition: color var(--t-ui) var(--ease); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding-top: var(--sp-lg);
  font-size: 0.68rem; color: rgba(255,255,255,0.28);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.28); transition: color var(--t-ui) var(--ease); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── FLOATING UI ── */
.whatsapp-fab {
  position: fixed;
  bottom: clamp(1.2rem,3vw,2rem); right: clamp(1.2rem,3vw,2rem);
  z-index: 900; width: 52px; height: 52px;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  transition: transform var(--t-ui) var(--ease), box-shadow var(--t-ui) var(--ease);
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(37,211,102,0.52); }

.scroll-top {
  position: fixed;
  bottom: clamp(4.5rem,8vw,6.5rem); right: clamp(1.2rem,3vw,2rem);
  z-index: 900; width: 44px; height: 44px;
  background: var(--dark); color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: background var(--t-ui) var(--ease),
              transform  var(--t-ui) var(--ease),
              opacity    var(--t-ui) var(--ease);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--accent); transform: translateY(-3px); }
.scroll-top svg { width: 17px; height: 17px; }

/* ── RESPONSIVE ── */

/* 1440px — large desktops */
@media (max-width: 1440px) {
  .hero-heading { font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
}

/* 1200px */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* 992px — tablets landscape, hide desktop nav */
@media (max-width: 992px) {
  .desktop-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid, .why-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .about-img { height: clamp(260px, 50vw, 420px); }
  .why-img   { height: clamp(280px, 48vw, 460px); }

  .projects-masonry { grid-template-columns: 1fr 1fr; }
  .project-card--large { grid-column: span 2; }
  .project-card--tall  { grid-row: span 1; }
  .project-card--tall .project-img-wrap { height: clamp(210px, 30vw, 340px); min-height: unset; }

  .cta-inner { grid-template-columns: 1fr; }

  .hero-heading { font-size: clamp(2rem, 5vw, 3.2rem); }
  .hero-inner { padding-top: 7rem; padding-bottom: clamp(3.5rem, 7vw, 5rem); }
}

/* 768px — tablets portrait */
@media (max-width: 768px) {
  .stats-rings { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .hero-inner { padding-top: 6rem; padding-bottom: 3rem; }
  .hero-heading { font-size: clamp(1.9rem, 6.5vw, 2.8rem); line-height: 1.2; }
  .hero-desc { font-size: 0.88rem; max-width: 100%; }
  .hero-eyebrow { font-size: 0.55rem; }

  .projects-masonry { grid-template-columns: 1fr; }
  .project-card--large { grid-column: span 1; }
  .project-overlay { opacity: 1; }

  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .ba-slider { aspect-ratio: 4/3; }
  .cta-actions { flex-direction: column; align-items: flex-start; }

  /* mobile nav padding fix */
  .mobile-nav { padding-inline: 1.25rem; }
}

/* 576px — large phones */
@media (max-width: 576px) {
  .hero-heading { font-size: clamp(1.7rem, 7.5vw, 2.2rem); line-height: 1.22; }
  .hero-desc { font-size: 0.84rem; max-width: 100%; line-height: 1.75; }
  .hero-actions { gap: 0.75rem; }
  .btn-primary, .btn-outline { padding: 0.85em 1.8em; font-size: 0.58rem; }

  .stats-rings { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .ring { width: clamp(70px, 18vw, 95px); }

  .materials-grid { grid-template-columns: repeat(3, 1fr); }
  .scroll-indicator { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-wrap: wrap; gap: 0.75rem; }

  .section-heading { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* 425px — phones */
@media (max-width: 425px) {
  .hero-heading { font-size: clamp(1.55rem, 8vw, 2rem); }
  .hero-inner { padding-inline: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }

  .stats-rings { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .ring { width: clamp(65px, 16vw, 85px); }
  .ring-value .stat-number { font-size: 1rem; }

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

/* 375px — small phones */
@media (max-width: 375px) {
  .hero-heading { font-size: 1.5rem; line-height: 1.25; }
  .nav-container { padding-inline: 1rem; }
  .logo-text { font-size: 1rem; }
  .logo-mark { width: 30px; height: 30px; font-size: 0.75rem; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 320px — very small phones */
@media (max-width: 320px) {
  .hero-heading { font-size: 1.35rem; }
  .stats-rings { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ring { width: 70px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-fade-up,
  .reveal-fade-left,
  .reveal-fade-right { opacity: 1; transform: none; }
}

/* ── OVERFLOW SAFETY ── */
/* Catch any element accidentally wider than the viewport */
section, header, footer, nav, main, div {
  max-width: 100%;
}

/* =============================================================
   SIDDHI INTERIOR — MULTI-PAGE ADDITIONS
   page banners · tabs · gallery · legal · coming soon ·
   preloader · skeleton shimmer · responsive
   ============================================================= */

/* ── SKIP LINK + ACTIVE NAV ── */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 7000;
  background: var(--accent); color: #fff;
  padding: 0.6em 1.2em;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: top 0.3s var(--ease);
}
.skip-link:focus-visible { top: 1rem; outline: none; }

.desktop-nav a.active,
.desktop-nav a.active::after { color: var(--accent); width: 100%; }
.mobile-link.active { color: var(--accent); }

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; z-index: 8000;
  background-color: #0E0E0E;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.preloader-mark {
  font-family: var(--display); font-size: 1.6rem;
  color: var(--accent); letter-spacing: 0.08em;
  animation: prePulse 2s var(--ease) infinite;
}
@keyframes prePulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.96); } }
.preloader-bar { width: 140px; height: 1px; background: rgba(255,255,255,0.14); overflow: hidden; }
.preloader-bar span { display: block; height: 100%; width: 42%; background: var(--accent); animation: preSlide 1.1s var(--ease) infinite; }
@keyframes preSlide { 0% { transform: translateX(-110%); } 100% { transform: translateX(270%); } }
.preloader-text {
  font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── SKELETON SHIMMER (image placeholders) ── */
.shimmer,
.service-img-wrap, .project-img-wrap, .material-img-wrap,
.about-img-wrap, .why-media, .ba-before, .ba-after,
.page-hero-media, .gallery-item {
  background: linear-gradient(110deg, #eceaea 8%, #f7f5f3 18%, #eceaea 33%);
  background-size: 220% 100%;
  animation: shimmerMove 1.5s linear infinite;
}
.shimmer--dark {
  background: linear-gradient(110deg, #171717 8%, #232323 18%, #171717 33%);
  background-size: 220% 100%;
  animation: shimmerMove 1.5s linear infinite;
}
.shimmer--done { animation: none; background: #eef0f1; }
.shimmer--dark.shimmer--done { background: #191919; }
@keyframes shimmerMove { to { background-position: -220% 0; } }

/* ── PAGE HERO / BANNER ── */
.page-hero {
  position: relative; min-height: clamp(300px, 52vh, 460px);
  display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate; background-color: #0E0E0E;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: heroZoom 14s var(--ease) forwards;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.25) 100%);
}
.page-hero-inner {
  position: relative; z-index: 1; width: 100%;
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  padding-top: 8rem; padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  box-sizing: border-box;
}
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.4rem; color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t-ui) var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.crumb-sep { color: rgba(255,255,255,0.28); }
.crumb-current { color: var(--accent); }
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.page-hero-eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--accent); }
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 500;
  line-height: 1.12; color: #fff; max-width: 18ch;
}
.page-hero-sub {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.6);
  max-width: 52ch; margin-top: 1.1rem; line-height: 1.9;
}

/* ── FILTER TABS ── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center;
  margin-bottom: var(--sp-xl);
}
.filter-tab {
  padding: 0.62em 1.5em;
  border: 1px solid var(--border); background: transparent; color: var(--text);
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400;
  cursor: pointer; transition: all var(--t-ui) var(--ease);
}
.filter-tab:hover { border-color: var(--accent); color: var(--accent); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.filter-item[data-category] { transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.filter-item.hide { display: none; }
.filter-item:not(.hide) { animation: fadeIn 0.55s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ── SERVICE TABS (tablist / tabpanel) ── */
.service-tabs { margin-bottom: var(--sp-xl); }
.tab-list {
  display: flex; flex-wrap: wrap; gap: 0.25rem;
  border-bottom: 1px solid var(--border); margin-bottom: 2.2rem;
}
.tab-btn {
  position: relative; padding: 0.8em 1.4em;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: color var(--t-ui) var(--ease);
}
.tab-btn::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--t-ui) var(--ease);
}
.tab-btn:hover { color: var(--accent); }
.tab-btn.active { color: var(--accent); }
.tab-btn.active::after { width: 100%; }
.tab-panel { display: none; }
.tab-panel.active {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
  animation: fadeIn 0.6s var(--ease);
}
.tab-media { overflow: hidden; height: clamp(260px, 40vw, 420px); }
.tab-media img { width: 100%; height: 100%; object-fit: cover; }
.tab-content h3 { font-family: var(--display); font-size: var(--fs-2xl); font-weight: 500; color: var(--dark); line-height: 1.2; margin-bottom: 1rem; }
.tab-content p { font-size: var(--fs-sm); color: var(--text); line-height: 1.95; margin-bottom: 1.4rem; }
.tab-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.2rem; margin-bottom: 1.6rem; }
.tab-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.8rem; color: var(--dark); font-weight: 400; }
.tab-feature svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ── GALLERY ── */
.gallery-section { padding-block: var(--sp-xl); background-color: var(--light); }
.gallery-grid {
  display: grid; grid-auto-flow: dense;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  grid-auto-rows: clamp(180px, 22vw, 260px);
  gap: clamp(0.6rem, 1.2vw, 1rem);
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-img) var(--ease); }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay, .gallery-item:focus-visible .gallery-overlay { opacity: 1; }
.gallery-tag { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; }
.gallery-zoom svg { width: 18px; height: 18px; color: #fff; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,10,10,0.95);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; padding: 1.5rem;
}
.lightbox.open { display: flex; animation: fadeIn 0.4s var(--ease); }
.lightbox-figure { max-width: min(1000px, 92vw); position: relative; }
.lightbox-figure img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox-caption { font-family: var(--display); color: #fff; font-size: 1rem; }
.lightbox-btn {
  position: absolute; width: 44px; height: 44px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: all var(--t-ui) var(--ease);
}
.lightbox-btn:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-btn svg { width: 18px; height: 18px; }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ── INITIALS AVATARS ── */
.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #C58A3D, #8E6A2B);
  color: #fff; font-family: var(--display); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.05em; flex-shrink: 0;
  user-select: none;
}
.avatar--lg {
  width: clamp(92px, 13vw, 116px); height: clamp(92px, 13vw, 116px);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  box-shadow: 0 12px 30px rgba(197,138,61,0.25);
}

/* ── TEAM ── */
.team-section { padding-block: var(--sp-xl); background-color: var(--light); }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.team-card { background: #fff; border: 1px solid var(--border); text-align: center; overflow: hidden; transition: box-shadow var(--t-ui) var(--ease), transform var(--t-ui) var(--ease); }
.team-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.team-media { height: clamp(220px, 30vw, 280px); overflow: hidden; position: relative; }
.team-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform var(--t-img) var(--ease); }
.team-card:hover .team-media img { transform: scale(1.04); }
.team-media--avatar {
  display: flex; align-items: center; justify-content: center;
  height: clamp(190px, 26vw, 240px);
  background:
    radial-gradient(130% 130% at 15% 10%, rgba(197,138,61,0.24), transparent 55%),
    linear-gradient(180deg, #FBF5E9, #EFE3CB);
}
.team-media--avatar .avatar { transition: transform var(--t-img) var(--ease), box-shadow var(--t-img) var(--ease); }
.team-card:hover .team-media--avatar .avatar { transform: scale(1.06); box-shadow: 0 18px 40px rgba(197,138,61,0.35); }
.team-card-body { padding: 1.3rem 1rem; }
.team-card-body h3 { font-family: var(--display); font-size: var(--fs-md); font-weight: 500; color: var(--dark); }
.team-card-body p { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-top: 0.25rem; }

/* ── LEGAL PAGES ── */
.legal-section { padding-block: var(--sp-xl); background: var(--bg); }
.legal-layout { display: grid; grid-template-columns: 1fr 260px; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.legal-content { max-width: 78ch; }
.legal-updated { font-size: 0.68rem; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 2rem; }
.legal-content h2 { font-family: var(--display); font-size: var(--fs-lg); font-weight: 500; color: var(--dark); margin: 2.2rem 0 1rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 1.8rem 0 0.8rem; }
.legal-content p { font-size: var(--fs-sm); color: var(--text); line-height: 1.95; margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { margin: 0 0 1.2rem 1.2rem; }
.legal-content li { font-size: var(--fs-sm); color: var(--text); line-height: 1.9; margin-bottom: 0.4rem; }
.legal-content strong { color: var(--dark); font-weight: 500; }
.legal-toc { position: sticky; top: 6.5rem; border: 1px solid var(--border); background: var(--light); padding: 1.4rem; }
.legal-toc h3 { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark); margin-bottom: 1rem; }
.legal-toc ul { display: flex; flex-direction: column; gap: 0.45rem; }
.legal-toc a { font-size: 0.78rem; color: var(--text); transition: color var(--t-ui) var(--ease); }
.legal-toc a:hover { color: var(--accent); }

/* ── CONTACT PAGE ── */
.contact-page { padding-block: var(--sp-xl); background-color: var(--light); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-card { background: #fff; border: 1px solid var(--border); padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; transition: box-shadow var(--t-ui) var(--ease); }
.contact-info-card:hover { box-shadow: var(--sh-md); }
.contact-info-icon { width: 46px; height: 46px; flex-shrink: 0; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 19px; height: 19px; }
.contact-info-card h3 { font-family: var(--display); font-size: var(--fs-md); font-weight: 500; color: var(--dark); margin-bottom: 0.3rem; }
.contact-info-card p { font-size: 0.8rem; color: var(--text); line-height: 1.8; }
.contact-info-card a { color: var(--text); transition: color var(--t-ui) var(--ease); }
.contact-info-card a:hover { color: var(--accent); }
.contact-form-card { background: var(--ink); padding: clamp(1.75rem, 4vw, 3rem); border-top: 2px solid var(--accent); }

/* ── COMING SOON ── */
.coming-soon {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background-color: #0E0E0E; overflow: hidden; isolation: isolate;
  padding: 8rem 1.25rem 4rem;
}
.coming-soon-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.coming-soon-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s var(--ease) forwards; }
.coming-soon-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.45) 100%);
}
.coming-soon-inner { max-width: 720px; margin-inline: auto; }
.cs-mark { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 2rem; }
.cs-mark .logo-mark { width: 46px; height: 46px; font-size: 1rem; }
.cs-eyebrow { font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.4rem; }
.cs-title { font-family: var(--display); font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 1.4rem; }
.cs-title em { font-style: italic; color: var(--accent); }
.cs-desc { font-size: var(--fs-sm); color: rgba(255,255,255,0.62); line-height: 1.95; max-width: 54ch; margin-inline: auto; margin-bottom: 2.2rem; }
.cs-form { display: flex; gap: 0.6rem; max-width: 460px; margin-inline: auto; }
.cs-form input {
  flex: 1; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16); color: #fff;
  font-family: var(--sans); font-size: var(--fs-sm);
  padding: 0.85em 1.1em; outline: none;
  transition: border-color var(--t-ui) var(--ease);
}
.cs-form input:focus { border-color: var(--accent); }
.cs-form input::placeholder { color: rgba(255,255,255,0.3); }
.cs-note { font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-top: 0.8rem; }
.cs-services { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.4rem; margin-top: 2.4rem; }
.cs-service { display: flex; align-items: center; gap: 0.5rem; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.cs-service svg { width: 15px; height: 15px; color: var(--accent); }
.cs-socials { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2.4rem; }
.cs-socials .social-link { background: rgba(255,255,255,0.05); }

/* ── 404 ── */
.error-404 {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background-color: #0E0E0E; overflow: hidden; isolation: isolate;
  padding: 8rem 1.25rem 4rem;
}
.error-404-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.error-404-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.error-404-inner { max-width: 640px; margin-inline: auto; }
.error-code { font-family: var(--display); font-size: clamp(6rem, 22vw, 12rem); font-weight: 500; color: var(--accent); line-height: 1; opacity: 0.9; }
.error-title { font-family: var(--display); font-size: clamp(1.8rem, 4.5vw, 3rem); color: #fff; margin: 1rem 0; line-height: 1.2; }
.error-desc { color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 2rem; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── CTA STRIP (subpages) ── */
.cta-strip { background: var(--dark); padding-block: var(--sp-2xl); position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; right: -6rem; top: -6rem; width: 22rem; height: 22rem; border: 1px solid rgba(197,138,61,0.16); border-radius: 50%; }
.cta-strip::after  { content: ''; position: absolute; right: 2rem; bottom: -8rem; width: 16rem; height: 16rem; border: 1px solid rgba(197,138,61,0.12); border-radius: 50%; }
.cta-strip-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip-title { font-family: var(--display); font-size: var(--fs-2xl); font-weight: 400; color: #fff; line-height: 1.2; }
.cta-strip-title em { font-style: italic; color: var(--accent); }
.cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 768px) {
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip-actions { width: 100%; }
  .cta-strip-actions .btn-primary, .cta-strip-actions .btn-outline { flex: 1; justify-content: center; }
}

/* ── MULTI-PAGE RESPONSIVE ── */
@media (max-width: 992px) {
  .tab-panel.active { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: clamp(200px, 30vw, 260px); }
  .page-hero-inner { padding-top: 7.5rem; }
}

@media (max-width: 768px) {
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-grid { grid-auto-rows: clamp(200px, 44vw, 260px); }
  .tab-features { grid-template-columns: 1fr; }
  .cs-form { flex-direction: column; }
  .cs-form .btn-primary { width: 100%; justify-content: center; }
  .tab-list { gap: 0; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.4rem; }
  .tab-btn { white-space: nowrap; }
  .page-hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
}

@media (max-width: 576px) {
  .filter-bar { gap: 0.4rem; }
  .filter-tab { padding: 0.55em 1.1em; font-size: 0.55rem; }
  .breadcrumb { font-size: 0.55rem; }
  .page-hero-eyebrow { font-size: 0.55rem; }
  .error-code { font-size: clamp(5rem, 30vw, 8rem); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .shimmer, .shimmer--dark, .preloader-bar span, .preloader-mark { animation: none; }
  .testimonials-track { transition: none; }
}

/* =============================================================
   SIDDHI INTERIOR — DIAGONAL STRIPE TEXTURES
   Inspired by the business card's subtle hatched background
   and the bold angled address bar (gold + dark parallelogram)
   ============================================================= */

/* ── SHARED DIAGONAL STRIPE DEFINITION ── */
/*
 * Used as a CSS custom property so every element just references it.
 * Two variants:
 *   --stripe-light : fine dark lines on white/light backgrounds
 *   --stripe-dark  : fine white lines on #0E0E0E / dark backgrounds
 */
:root {
  --stripe-light: repeating-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.030) 0px,
    rgba(0, 0, 0, 0.030) 1px,
    transparent          1px,
    transparent          10px
  );
  --stripe-dark: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.038) 0px,
    rgba(255, 255, 255, 0.038) 1px,
    transparent                1px,
    transparent                10px
  );
}

/* ── SECTIONS WITH var(--light) BACKGROUND ── */
/* ALL sections using var(--light) = #F7F7F7 get the diagonal stripe */
.stats-band {
  background-color: var(--light);
  background-image: var(--stripe-light);
}
.faq {
  background-color: var(--light);
  background-image: var(--stripe-light);
}
.before-after {
  background-color: var(--light);
  background-image: var(--stripe-light);
}
.services {
  background-color: var(--light);
  background-image: var(--stripe-light);
}
.gallery-section {
  background-color: var(--light);
  background-image: var(--stripe-light);
}
.team-section {
  background-color: var(--light);
  background-image: var(--stripe-light);
}
.contact-page {
  background-color: var(--light);
  background-image: var(--stripe-light);
}

/* ── SECTIONS WITH var(--dark) / #1F1F1F BACKGROUND ── */
/* process uses #0F0F0F (set directly), cta-section uses var(--dark) */
.cta-section {
  background-color: var(--dark);
  background-image: var(--stripe-dark);
}

/* ── ELEMENTS USING #0E0E0E (preloader / page-hero / coming-soon / 404) ── */
/*
 * These all have a background image stacked on top, so the stripe
 * sits as a ::before pseudo-element between the #0E0E0E base and
 * the hero image / overlay — making it visible in any uncovered gaps
 * and subtly visible through semi-transparent overlays.
 */
.preloader,
.page-hero,
.coming-soon,
.error-404 {
  /* keep existing background color */
  background-color: #0E0E0E;
  /* add stripe directly on the element itself — it sits below
     absolutely-positioned children (image, overlay) */
  background-image: var(--stripe-dark);
}

/* ── UTILITY CLASSES (optional, for future use) ── */
.stripe-bg {
  background-color: var(--bg);
  background-image: var(--stripe-light);
}
.stripe-bg--light {
  background-color: var(--light);
  background-image: var(--stripe-light);
}
.stripe-bg--dark {
  background-color: var(--dark);
  background-image: var(--stripe-dark);
}
.stripe-bg--deepdark {
  background-color: #0E0E0E;
  background-image: var(--stripe-dark);
}

/* ── DIAGONAL ADDRESS BAR STRIP ── */
/*
 * Replicates the business card's bottom address bar:
 *   [ gold strip | black angled cutout ]
 * Usage: Add <div class="diag-bar"> ... </div> inside any section
 * or use .diag-bar--section to make a full-width standalone divider
 */

.diag-bar {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 56px;
}

/* Gold left portion */
.diag-bar-gold {
  background: var(--accent);
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1rem clamp(1.25rem, 5vw, 4rem);
  padding-right: 4rem; /* extra for the diagonal overlap */
  gap: 0.65rem;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 100%, 0 100%);
}

/* Dark right angled triangle — the "black wedge" from the card */
.diag-bar-dark {
  background: var(--dark);
  width: clamp(80px, 14vw, 160px);
  flex-shrink: 0;
  clip-path: polygon(2.5rem 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -2.5rem; /* overlap the angled edge */
}

.diag-bar-gold p,
.diag-bar-gold address {
  font-style: normal;
  color: #fff;
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.diag-bar-gold svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.85);
}

/* Full-width standalone section divider version */
.diag-bar--section {
  width: 100%;
}

/* ── SECTION DIAGONAL EDGE TRANSITIONS ── */
/*
 * For sections where you want a skewed bottom edge
 * (like the card's angled line between sections)
 * Add class .section-angled to any <section>
 */
.section-angled {
  position: relative;
}
.section-angled::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: clamp(40px, 5vw, 64px);
  background: var(--bg); /* next section's bg — override per section */
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

/* Variant: angled top edge on a dark section */
.section-angled-top {
  position: relative;
}
.section-angled-top::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: clamp(40px, 5vw, 64px);
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

/* ── RESPONSIVE DIAG BAR ── */
@media (max-width: 576px) {
  .diag-bar {
    flex-direction: column;
    clip-path: none;
  }
  .diag-bar-gold {
    clip-path: none;
    padding-right: clamp(1.25rem, 5vw, 4rem);
  }
  .diag-bar-dark {
    clip-path: none;
    margin-left: 0;
    width: 100%;
    height: 8px;
    min-height: unset;
  }
}
