/* ============================================
   BISHNOI STUDIOS — Complete Design System
   Light Premium Theme | Syne + Inter
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

:root {
  --cream:     #FAF8F5;
  --cream-2:   #F2EDE6;
  --sand:      #E2D9CE;
  --white:     #FFFFFF;
  --ink:       #181512;
  --ink-2:     #27231F;
  --brown:     #5A5048;
  --muted:     #9A8E84;
  --accent:    #C8602A;
  --accent-h:  #A84E20;
  --accent-l:  #E8885A;
  --navy:      #1C3560;
  --gold:      #C9A96E;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::selection { background: var(--accent); color: #fff; }

h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: 'Inter', sans-serif; border: none; outline: none; background: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(18px, 5vw, 64px); }
.section { padding: clamp(72px, 10vw, 130px) 0; }

/* ---- LABEL ---- */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.label::before { content:''; display:block; width:26px; height:2px; background:var(--accent); border-radius:2px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  padding: 14px 28px; border-radius: 4px; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  white-space: nowrap; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark::after {
  content:''; position:absolute; inset:0; background:var(--accent);
  transform:scaleX(0); transform-origin:left;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1); z-index:0;
}
.btn-dark:hover::after { transform: scaleX(1); }
.btn-dark > * { position:relative; z-index:1; }
.btn-ghost { background:transparent; color:var(--ink); border:1.5px solid var(--sand); }
.btn-ghost:hover { background:var(--ink); color:#fff; border-color:var(--ink); }
.btn-accent { background:var(--accent); color:#fff; }
.btn-accent:hover { background:var(--accent-h); }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ---- REVEAL ---- */
.reveal { opacity:0; transform:translateY(32px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.active { opacity:1; transform:translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sand);
  padding: 13px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
}
.nav-inner { display:flex; align-items:center; gap:32px; }
.nav-logo { display:flex; align-items:center; gap:10px; margin-right:auto; flex-shrink:0; }
.logo-mark {
  width:36px; height:36px; background:var(--ink); color:#fff;
  font-family:'Syne',sans-serif; font-weight:800; font-size:18px;
  display:flex; align-items:center; justify-content:center;
  border-radius:6px; transition:background 0.3s; flex-shrink:0;
}
.nav-logo:hover .logo-mark { background: var(--accent); }
.logo-text { font-family:'Syne',sans-serif; font-weight:700; font-size:16px; color:var(--ink); }
.logo-text span { color: var(--accent); }

.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { font-size:13.5px; font-weight:500; color:var(--brown); transition:color 0.2s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:1.5px; background:var(--accent); transition:width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color:var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta { padding: 10px 22px; font-size:12.5px; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; padding:5px; }
.hamburger span { display:block; width:22px; height:1.8px; background:var(--ink); border-radius:2px; transition:all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(4.8px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(4.8px,-5px); }

/* Mobile Nav */
.nav-mobile {
  display:none; position:fixed; inset:0; background:var(--cream); z-index:999;
  padding:0 clamp(20px,5vw,60px);
  flex-direction:column; justify-content:center;
  opacity:0; transform:translateX(100%);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-mobile.open { opacity:1; transform:translateX(0); }
.nav-mobile ul { display:flex; flex-direction:column; }
.nav-mobile ul li { border-bottom:1px solid var(--sand); }
.nav-mobile ul li a {
  display:block; font-family:'Syne',sans-serif;
  font-size:clamp(28px,7vw,48px); font-weight:700;
  padding:16px 0; color:var(--ink);
  transition:color 0.2s, padding-left 0.2s;
}
.nav-mobile ul li a:hover { color:var(--accent); padding-left:10px; }
.nav-mobile .mobile-cta { color: var(--accent) !important; }
.nav-mobile-footer { margin-top:40px; font-size:13px; color:var(--muted); }

@media(max-width:860px){ .nav-links{display:none} .nav-cta{display:none} .hamburger{display:flex} .nav-mobile{display:flex} }

/* ============================================
   HERO — HOME
   ============================================ */
.hero {
  min-height:100vh; display:flex; align-items:center;
  position:relative; overflow:hidden; padding-top:80px;
}

/* Background decoration */
.hero-bg { position:absolute; inset:0; pointer-events:none; z-index:0; }
.hero-bg-circle {
  position:absolute; border-radius:50%; border:1px solid var(--sand);
}
.hero-bg-circle:nth-child(1) { width:700px; height:700px; top:-200px; right:-200px; animation:spin 40s linear infinite; }
.hero-bg-circle:nth-child(2) { width:420px; height:420px; top:-80px; right:-80px; opacity:0.6; border-color:rgba(200,96,42,0.15); animation:spin 25s linear infinite reverse; }
.hero-bg-dots {
  position:absolute; bottom:60px; left:0;
  width:200px; height:200px;
  background-image: radial-gradient(circle, var(--sand) 1.5px, transparent 1.5px);
  background-size:22px 22px; opacity:0.7;
}
@keyframes spin { to{transform:rotate(360deg)} }

.hero-grid {
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.15fr 0.85fr;
  gap:clamp(30px, 4vw, 60px); align-items:center;
}
.hero-grid > div { min-width: 0; }

/* Hero left */
.hero-pill {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--white); border:1px solid var(--sand); border-radius:100px;
  padding:5px 16px 5px 5px; font-size:12px; font-weight:500; color:var(--brown);
  margin-bottom:28px; box-shadow:0 2px 12px rgba(0,0,0,0.05);
}
.hero-pill-dot { width:26px; height:26px; background:var(--accent); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.hero-pill-dot::after { content:''; width:8px; height:8px; background:#fff; border-radius:50%; }

.hero-h1 { font-size:clamp(42px,5.5vw,78px); font-weight:800; margin-bottom:24px; line-height:1.0; word-break:break-word; }
.hero-h1 em { font-style:normal; color:var(--accent); }

.hero-sub { font-size:clamp(15px,1.2vw,17px); color:var(--brown); max-width:460px; line-height:1.75; margin-bottom:36px; }

.hero-btns { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }

.hero-trust { display:flex; align-items:center; gap:16px; margin-top:48px; }
.trust-avatars { display:flex; }
.trust-avatar {
  width:34px; height:34px; border-radius:50%; border:2px solid var(--cream);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:13px; color:#fff; margin-left:-8px;
}
.trust-avatar:first-child { margin-left:0; }
.ta-a{background:#C8602A} .ta-b{background:#1C3560} .ta-c{background:#C9A96E;color:#181512} .ta-d{background:#5A5048}
.trust-text { font-size:13px; color:var(--brown); line-height:1.4; }
.trust-text strong { display:block; color:var(--ink); font-weight:600; }

/* Hero right — visual cards */
.hero-visual { display:flex; flex-direction:column; gap:14px; }
.hv-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.hv-card {
  background:var(--white); border:1px solid var(--sand); border-radius:14px;
  padding:22px 20px; transition:all 0.3s ease; cursor:default;
}
.hv-card:hover { border-color:var(--accent); transform:translateY(-4px); box-shadow:0 12px 36px rgba(200,96,42,0.1); }
.hvc-icon { font-size:24px; margin-bottom:10px; display:block; }
.hvc-num { font-family:'Syne',sans-serif; font-size:30px; font-weight:800; color:var(--ink); line-height:1; }
.hvc-label { font-size:12px; color:var(--muted); margin-top:3px; font-weight:500; }

.hv-banner {
  background:var(--ink); border-radius:14px; padding:18px 22px;
  display:flex; align-items:center; gap:14px;
}
.hv-avatars { display:flex; }
.hv-av { width:30px; height:30px; border-radius:50%; border:2px solid var(--ink-2); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:12px; color:#fff; margin-left:-7px; }
.hv-av:first-child { margin-left:0; }
.avx{background:#C8602A} .avy{background:#1C3560} .avz{background:#C9A96E;color:#181512}
.hv-banner-text { flex:1; }
.hv-banner-text strong { font-family:'Syne',sans-serif; font-size:14px; font-weight:700; color:#fff; display:block; margin-bottom:1px; }
.hv-banner-text span { font-size:12px; color:rgba(255,255,255,0.5); }
.hv-stars { color:var(--gold); font-size:13px; letter-spacing:1px; }

@media(max-width:960px){ .hero-grid{grid-template-columns:1fr} .hero-visual{display:none} }
@media(max-width:560px){ .hero-h1{font-size:42px} .hero-btns{flex-direction:column;align-items:flex-start} }

/* ============================================
   MARQUEE
   ============================================ */
.marquee { background:var(--ink); padding:15px 0; overflow:hidden; }
.marquee-track { display:flex; gap:0; animation:marquee 24s linear infinite; white-space:nowrap; }
.marquee-track:hover { animation-play-state:paused; }
.marquee-item {
  display:inline-flex; align-items:center; gap:16px; padding:0 28px; flex-shrink:0;
  font-family:'Syne',sans-serif; font-size:12.5px; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.75);
}
.marquee-dot { color:var(--accent); font-size:18px; line-height:1; }
@keyframes marquee { to{transform:translateX(-50%)} }

/* ============================================
   SERVICES — HOME PREVIEW
   ============================================ */
.services-bg { background:var(--white); }

.split-head { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:end; margin-bottom:60px; }
.split-head h2 { font-size:clamp(34px,4vw,54px); }
.split-head-right p { color:var(--brown); font-size:15.5px; line-height:1.75; margin-bottom:22px; }

.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; border:2px solid var(--sand); border-radius:18px; overflow:hidden; }
.svc-card { background:var(--white); padding:40px 32px; position:relative; overflow:hidden; transition:all 0.4s ease; cursor:default; }
.svc-card::after { content:''; position:absolute; top:0; left:0; right:0; height:0; background:var(--accent); transition:height 0.4s cubic-bezier(0.16,1,0.3,1); }
.svc-card:hover::after { height:3px; }
.svc-card:hover { background:var(--cream); }
.svc-n { font-size:11px; font-weight:700; letter-spacing:0.14em; color:var(--muted); margin-bottom:22px; }
.svc-icon { font-size:38px; display:block; margin-bottom:18px; }
.svc-title { font-family:'Syne',sans-serif; font-size:21px; font-weight:700; margin-bottom:12px; }
.svc-desc { font-size:14.5px; color:var(--brown); line-height:1.7; margin-bottom:26px; }
.svc-chips { display:flex; flex-wrap:wrap; gap:7px; }
.chip { font-size:11px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; background:var(--cream-2); color:var(--brown); padding:4px 10px; border-radius:100px; border:1px solid var(--sand); transition:all 0.25s; }
.svc-card:hover .chip { background:var(--accent); color:#fff; border-color:var(--accent); }

.svc-link { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:var(--accent); margin-top:22px; transition:gap 0.2s; }
.svc-link:hover { gap:14px; }

@media(max-width:860px){ .services-grid{grid-template-columns:1fr} .split-head{grid-template-columns:1fr} }

/* ============================================
   WORK GRID
   ============================================ */
.work-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:52px; gap:20px; flex-wrap:wrap; }
.work-head h2 { font-size:clamp(34px,4vw,54px); }

.work-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:16px; }
.wi { position:relative; border-radius:14px; overflow:hidden; background:var(--cream-2); cursor:pointer; }
.wi:nth-child(1){ grid-column:span 7; aspect-ratio:16/10; }
.wi:nth-child(2){ grid-column:span 5; aspect-ratio:16/10; }
.wi:nth-child(3){ grid-column:span 5; aspect-ratio:16/10; }
.wi:nth-child(4){ grid-column:span 7; aspect-ratio:16/10; }

.wi-thumb { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:clamp(48px,7vw,80px); transition:transform 0.6s ease; opacity:0.3; }
.wi:hover .wi-thumb { transform:scale(1.08); opacity:0.45; }

.wi-g1{background:linear-gradient(135deg,#ffe4d8 0%,#ffd4c4 100%)}
.wi-g2{background:linear-gradient(135deg,#d4e4ff 0%,#bdd4f8 100%)}
.wi-g3{background:linear-gradient(135deg,#d8f0e4 0%,#c4e8d4 100%)}
.wi-g4{background:linear-gradient(135deg,#f8f0d8 0%,#f0e4c0 100%)}

.wi-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(24,21,18,0.88) 0%, rgba(24,21,18,0.1) 55%, transparent 100%);
  opacity:0; transition:opacity 0.35s ease;
  display:flex; align-items:flex-end; padding:24px;
}
.wi:hover .wi-overlay { opacity:1; }
.wi-info { color:#fff; flex:1; }
.wi-cat { font-size:10.5px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent-l); margin-bottom:5px; }
.wi-title { font-family:'Syne',sans-serif; font-size:18px; font-weight:700; line-height:1.2; }
.wi-arrow { width:38px; height:38px; background:var(--accent); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:17px; flex-shrink:0; align-self:flex-end; }

@media(max-width:860px){
  .wi:nth-child(1),.wi:nth-child(2),.wi:nth-child(3),.wi:nth-child(4){ grid-column:span 12; aspect-ratio:16/9; }
  .work-head { flex-direction:column; align-items:flex-start; }
}

/* ============================================
   ABOUT SECTION — DARK
   ============================================ */
.about-dark {
  background: var(--ink); color:#fff;
  position:relative; overflow:hidden;
}
.about-dark::before {
  content:'BISHNOI'; position:absolute;
  font-family:'Syne',sans-serif; font-size:clamp(80px,16vw,220px);
  font-weight:800; color:rgba(255,255,255,0.022);
  bottom:-20px; right:-10px; line-height:1; pointer-events:none; white-space:nowrap;
}

.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-left .label { color:var(--accent-l); }
.about-left .label::before { background:var(--accent-l); }
.about-h2 { font-size:clamp(34px,4vw,56px); color:#fff; margin-bottom:24px; }
.about-p { color:rgba(255,255,255,0.6); font-size:15.5px; line-height:1.8; margin-bottom:16px; }

.about-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:44px; background:rgba(255,255,255,0.06); border-radius:14px; overflow:hidden; border:1px solid rgba(255,255,255,0.07); }
.stat { padding:26px 18px; text-align:center; background:rgba(255,255,255,0.03); transition:background 0.3s; }
.stat:hover { background:rgba(200,96,42,0.12); }
.stat-n { font-family:'Syne',sans-serif; font-size:clamp(28px,3.5vw,42px); font-weight:800; color:var(--accent-l); line-height:1; margin-bottom:5px; }
.stat-l { font-size:11.5px; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:0.1em; font-weight:500; }

.about-right { display:flex; flex-direction:column; gap:12px; }
.abt-card {
  background:rgba(255,255,255,0.045); border:1px solid rgba(255,255,255,0.07);
  border-radius:12px; padding:22px 24px;
  display:flex; align-items:flex-start; gap:16px;
  transition:all 0.3s ease;
}
.abt-card:hover { background:rgba(255,255,255,0.07); border-color:rgba(200,96,42,0.35); transform:translateX(6px); }
.abt-icon { font-size:24px; flex-shrink:0; margin-top:1px; }
.abt-t { font-family:'Syne',sans-serif; font-size:15.5px; font-weight:700; color:#fff; margin-bottom:5px; }
.abt-d { font-size:13.5px; color:rgba(255,255,255,0.48); line-height:1.65; }

@media(max-width:860px){ .about-grid{grid-template-columns:1fr;gap:48px} }

/* ============================================
   PROCESS
   ============================================ */
.process-bg { background: var(--cream-2); }
.process-head { text-align:center; max-width:540px; margin:0 auto 68px; }
.process-head h2 { font-size:clamp(34px,4vw,54px); margin-bottom:16px; }
.process-head p { color:var(--brown); font-size:15.5px; }

.steps { display:grid; grid-template-columns:repeat(4,1fr); position:relative; }
.steps::before {
  content:''; position:absolute; top:52px; left:12%; right:12%;
  height:1px; background:var(--sand); z-index:0;
}
.step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 20px; position:relative; z-index:1; }
.step-circle {
  width:60px; height:60px; background:var(--white); border:1.5px solid var(--sand);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-size:19px; font-weight:800; color:var(--ink);
  margin-bottom:22px; transition:all 0.3s ease;
}
.step:hover .step-circle { background:var(--accent); color:#fff; border-color:var(--accent); transform:scale(1.1); }
.step-t { font-family:'Syne',sans-serif; font-size:17px; font-weight:700; margin-bottom:8px; }
.step-d { font-size:13.5px; color:var(--brown); line-height:1.65; }

@media(max-width:720px){ .steps{grid-template-columns:1fr 1fr; gap:36px} .steps::before{display:none} }
@media(max-width:440px){ .steps{grid-template-columns:1fr} }

/* ============================================
   TESTIMONIALS
   ============================================ */
.test-bg { background:var(--white); }
.test-head { text-align:center; margin-bottom:60px; }
.test-head h2 { font-size:clamp(34px,4vw,54px); margin-bottom:14px; }
.test-head p { color:var(--brown); max-width:440px; margin:0 auto; }

.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.test-card {
  background:var(--cream); border:1px solid var(--sand); border-radius:16px;
  padding:32px 28px; position:relative; transition:all 0.3s ease;
}
.test-card::before {
  content:'"'; position:absolute; top:16px; right:22px;
  font-family:'Syne',sans-serif; font-size:72px; font-weight:800;
  color:var(--sand); line-height:1;
}
.test-card:hover { border-color:var(--accent); transform:translateY(-4px); box-shadow:0 16px 48px rgba(200,96,42,0.08); }
.test-stars { font-size:13px; letter-spacing:2px; color:var(--gold); margin-bottom:16px; }
.test-body { font-size:14.5px; color:var(--brown); line-height:1.75; margin-bottom:24px; font-style:italic; }
.test-auth { display:flex; align-items:center; gap:12px; }
.test-av { width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:15px; color:#fff; flex-shrink:0; }
.av-a{background:linear-gradient(135deg,#C8602A,#E8885A)}
.av-b{background:linear-gradient(135deg,#1C3560,#2E5090)}
.av-c{background:linear-gradient(135deg,#5A5048,#9A8E84)}
.test-name { font-family:'Syne',sans-serif; font-size:14.5px; font-weight:700; }
.test-role { font-size:12px; color:var(--muted); }

@media(max-width:860px){ .test-grid{grid-template-columns:1fr; max-width:480px; margin:0 auto} }

/* ============================================
   CTA / CONTACT
   ============================================ */
.cta-bg { background:var(--cream-2); text-align:center; }
.cta-inner { max-width:660px; margin:0 auto; }
.cta-inner h2 { font-size:clamp(34px,5vw,62px); margin-bottom:18px; }
.cta-inner h2 em { font-style:normal; color:var(--accent); }
.cta-inner p { font-size:16.5px; color:var(--brown); margin-bottom:40px; line-height:1.75; }

.cta-form { display:flex; gap:10px; max-width:480px; margin:0 auto 20px; }
.cta-form input {
  flex:1; background:var(--white); border:1.5px solid var(--sand); border-radius:4px;
  padding:14px 18px; font-family:'Inter',sans-serif; font-size:14.5px; color:var(--ink); outline:none;
  transition:border-color 0.25s;
}
.cta-form input:focus { border-color:var(--accent); }
.cta-form input::placeholder { color:var(--muted); }
.cta-note { font-size:12.5px; color:var(--muted); }
.cta-note a { color:var(--accent); font-weight:500; }

.cta-or { display:flex; align-items:center; gap:18px; max-width:480px; margin:36px auto; }
.cta-or span { flex:1; height:1px; background:var(--sand); }
.cta-or em { color:var(--muted); font-style:normal; font-size:12px; }

.socials { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; }
.s-pill {
  display:inline-flex; align-items:center; gap:7px; background:var(--white);
  border:1.5px solid var(--sand); border-radius:100px; padding:9px 18px;
  font-size:13px; font-weight:500; color:var(--brown); transition:all 0.25s ease;
}
.s-pill:hover { background:var(--ink); color:#fff; border-color:var(--ink); transform:translateY(-2px); }
.s-pill .si { font-size:15px; }

@media(max-width:520px){ .cta-form{flex-direction:column} }

/* ============================================
   FOOTER
   ============================================ */
footer { background:var(--ink-2); color:rgba(255,255,255,0.65); padding:64px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.07); }
.footer-brand .logo-text { color:#fff; }
.footer-brand .logo-mark { background:var(--accent); }
.footer-desc { margin-top:16px; font-size:13.5px; line-height:1.75; color:rgba(255,255,255,0.42); max-width:250px; }

.f-col h5 { font-family:'Syne',sans-serif; font-size:12px; font-weight:700; color:#fff; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:18px; }
.f-col ul { display:flex; flex-direction:column; gap:10px; }
.f-col ul li a { font-size:13.5px; color:rgba(255,255,255,0.42); transition:color 0.2s; }
.f-col ul li a:hover { color:var(--accent-l); }

.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap; padding:22px 0;
}
.footer-copy { font-size:12.5px; color:rgba(255,255,255,0.28); }
.footer-copy a { color:rgba(255,255,255,0.5); transition:color 0.2s; }
.footer-copy a:hover { color:var(--accent-l); }

/* ★ Credit ★ */
.footer-credit { font-size:12px; color:rgba(255,255,255,0.28); }
.footer-credit a { color:var(--accent-l); font-weight:500; transition:color 0.2s; }
.footer-credit a:hover { color:var(--accent); }

.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:12.5px; color:rgba(255,255,255,0.28); transition:color 0.2s; }
.footer-legal a:hover { color:rgba(255,255,255,0.6); }

@media(max-width:860px){ .footer-grid{grid-template-columns:1fr 1fr; gap:36px} }
@media(max-width:520px){ .footer-grid{grid-template-columns:1fr} .footer-bottom{flex-direction:column;align-items:flex-start} }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--cream);
  position: relative; overflow:hidden;
}
.page-hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:1px; background:var(--sand);
}
.page-hero-bg {
  position:absolute; top:-100px; right:-150px; width:550px; height:550px;
  border-radius:50%; border:1px solid var(--sand);
  animation:spin 40s linear infinite; pointer-events:none;
}
.page-hero-inner { max-width:700px; }
.page-hero h1 { font-size:clamp(42px,6vw,76px); margin-bottom:20px; }
.page-hero h1 em { font-style:normal; color:var(--accent); }
.page-hero p { font-size:clamp(15px,1.2vw,18px); color:var(--brown); line-height:1.75; max-width:560px; }
.page-breadcrumb { display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--muted); margin-bottom:20px; font-weight:500; }
.page-breadcrumb a:hover { color:var(--accent); }
.page-breadcrumb span { color:var(--sand); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.svc-page-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.svc-big {
  background:var(--white); border:1.5px solid var(--sand); border-radius:18px;
  padding:48px 40px; transition:all 0.35s ease; cursor:default; position:relative; overflow:hidden;
}
.svc-big::before { content:''; position:absolute; left:0; top:0; bottom:0; width:0; background:var(--accent); transition:width 0.4s cubic-bezier(0.16,1,0.3,1); }
.svc-big:hover::before { width:4px; }
.svc-big:hover { transform:translateY(-4px); box-shadow:0 20px 60px rgba(0,0,0,0.07); border-color:rgba(200,96,42,0.3); }
.svc-big-icon { font-size:44px; margin-bottom:22px; display:block; }
.svc-big-num { font-size:11px; font-weight:700; letter-spacing:0.16em; color:var(--muted); text-transform:uppercase; margin-bottom:14px; }
.svc-big-title { font-family:'Syne',sans-serif; font-size:clamp(22px,2.5vw,28px); font-weight:700; margin-bottom:14px; }
.svc-big-desc { font-size:15px; color:var(--brown); line-height:1.75; margin-bottom:28px; }

.svc-features { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.svc-feat { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--brown); }
.svc-feat::before { content:'✓'; color:var(--accent); font-weight:700; flex-shrink:0; }

.svc-big.full { grid-column:span 2; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.svc-big.full .svc-big-left {}
.svc-big.full .svc-big-right { background:var(--cream-2); border-radius:12px; padding:32px; }
.package-title { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; margin-bottom:16px; }
.package-list { display:flex; flex-direction:column; gap:8px; }
.package-list li { display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--brown); }
.package-list li::before { content:'→'; color:var(--accent); font-weight:700; }

@media(max-width:860px){ .svc-page-grid{grid-template-columns:1fr} .svc-big.full{grid-column:span 1; grid-template-columns:1fr} }

/* ============================================
   WORK PAGE
   ============================================ */
.filter-bar { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.filter-btn {
  font-size:12.5px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase;
  padding:8px 18px; border-radius:100px; border:1.5px solid var(--sand);
  background:transparent; color:var(--brown); cursor:pointer; transition:all 0.25s;
}
.filter-btn.active, .filter-btn:hover { background:var(--ink); color:#fff; border-color:var(--ink); }

.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.p-item { background:var(--cream-2); border-radius:14px; overflow:hidden; cursor:pointer; transition:transform 0.3s ease; }
.p-item:hover { transform:translateY(-4px); }
.p-thumb { aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; font-size:clamp(40px,5vw,60px); opacity:0.35; transition:all 0.4s ease; }
.p-item:hover .p-thumb { opacity:0.5; transform:scale(1.04); }
.p-info { padding:20px 22px; }
.p-cat { font-size:11px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--accent); margin-bottom:6px; }
.p-title { font-family:'Syne',sans-serif; font-size:17px; font-weight:700; margin-bottom:6px; }
.p-desc { font-size:13px; color:var(--muted); }

.pg1{background:linear-gradient(135deg,#ffe4d8,#ffd0c0)}
.pg2{background:linear-gradient(135deg,#d4e4ff,#bdd4f8)}
.pg3{background:linear-gradient(135deg,#d8f0e4,#c4e8d4)}
.pg4{background:linear-gradient(135deg,#f8f0d8,#f0e4c0)}
.pg5{background:linear-gradient(135deg,#e8d8f8,#d8c4f0)}
.pg6{background:linear-gradient(135deg,#d8f8f8,#c4f0ee)}

@media(max-width:860px){ .portfolio-grid{grid-template-columns:1fr 1fr} }
@media(max-width:540px){ .portfolio-grid{grid-template-columns:1fr} }

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.team-card { background:var(--white); border:1px solid var(--sand); border-radius:16px; overflow:hidden; transition:all 0.3s ease; }
.team-card:hover { transform:translateY(-4px); box-shadow:0 14px 40px rgba(0,0,0,0.07); border-color:rgba(200,96,42,0.3); }
.team-avatar { aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-size:64px; }
.team-info { padding:18px 20px; }
.team-name { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; margin-bottom:4px; }
.team-role { font-size:12.5px; color:var(--accent); font-weight:600; text-transform:uppercase; letter-spacing:0.08em; }
.team-bio { font-size:13px; color:var(--muted); margin-top:8px; line-height:1.6; }

.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.val-card { background:var(--white); border:1px solid var(--sand); border-radius:14px; padding:30px 26px; transition:all 0.3s ease; }
.val-card:hover { border-color:var(--accent); transform:translateY(-3px); box-shadow:0 10px 32px rgba(200,96,42,0.08); }
.val-icon { font-size:30px; margin-bottom:14px; display:block; }
.val-title { font-family:'Syne',sans-serif; font-size:17px; font-weight:700; margin-bottom:10px; }
.val-desc { font-size:14px; color:var(--brown); line-height:1.7; }

@media(max-width:860px){ .team-grid{grid-template-columns:1fr 1fr} .values-grid{grid-template-columns:1fr 1fr} }
@media(max-width:480px){ .team-grid{grid-template-columns:1fr} .values-grid{grid-template-columns:1fr} }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:60px; align-items:start; }

.contact-info { display:flex; flex-direction:column; gap:16px; }
.ci-card { background:var(--white); border:1px solid var(--sand); border-radius:14px; padding:22px 24px; display:flex; align-items:flex-start; gap:14px; transition:all 0.3s ease; }
.ci-card:hover { border-color:var(--accent); transform:translateX(4px); }
.ci-icon { width:40px; height:40px; background:var(--cream-2); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.ci-label { font-size:11px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:4px; }
.ci-val { font-family:'Syne',sans-serif; font-size:15px; font-weight:700; color:var(--ink); }
.ci-val a { transition:color 0.2s; }
.ci-val a:hover { color:var(--accent); }

.contact-form { background:var(--white); border:1.5px solid var(--sand); border-radius:18px; padding:40px; }
.form-group { margin-bottom:20px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:20px; }
label { display:block; font-size:12px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--brown); margin-bottom:7px; }
.form-input, .form-select, .form-textarea {
  width:100%; background:var(--cream); border:1.5px solid var(--sand); border-radius:6px;
  padding:13px 16px; font-family:'Inter',sans-serif; font-size:14.5px; color:var(--ink); outline:none;
  transition:border-color 0.25s, background 0.25s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--accent); background:var(--white); }
.form-input::placeholder, .form-textarea::placeholder { color:var(--muted); }
.form-textarea { resize:vertical; min-height:130px; }
.form-select { cursor:pointer; appearance:none; 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='%239A8E84' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; }

.form-submit { width:100%; justify-content:center; padding:16px; font-size:14px; }

@media(max-width:860px){ .contact-grid{grid-template-columns:1fr} }
@media(max-width:480px){ .form-row{grid-template-columns:1fr} .contact-form{padding:26px 20px} }

/* ============================================
   MISC / UTILITIES
   ============================================ */
.text-center { text-align:center; }
.mt-12 { margin-top:12px; }
.mt-20 { margin-top:20px; }
.mt-32 { margin-top:32px; }
.mb-12 { margin-bottom:12px; }

/* Horizontal rule */
.section-rule { border:none; border-top:1px solid var(--sand); margin:0; }

/* Back-to-top */
#btt {
  position:fixed; bottom:28px; right:28px; width:44px; height:44px;
  background:var(--ink); color:#fff; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; box-shadow:0 4px 20px rgba(0,0,0,0.15);
  opacity:0; pointer-events:none; transform:translateY(10px);
  transition:all 0.3s ease; z-index:900; cursor:pointer; border:none;
}
#btt.visible { opacity:1; pointer-events:all; transform:translateY(0); }
#btt:hover { background:var(--accent); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { display:flex; flex-direction:column; }
.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 24px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq-item:first-child { border-top: 1px solid var(--sand); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--ink); line-height: 1.3; user-select: none;
}
.faq-icon {
  font-size: 22px; font-weight: 400; color: var(--accent); flex-shrink: 0;
  width: 32px; height: 32px; border: 1.5px solid var(--sand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.faq-item.open .faq-icon { background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-a {
  font-size: 15px; color: var(--brown); line-height: 1.75;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease, margin 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; opacity: 1; margin-top: 14px; }

/* ============================================
   SHAKE KEYFRAME (form validation)
   ============================================ */
@keyframes shake {
  0%,100%{transform:translateX(0)}
  20%{transform:translateX(-6px)}
  40%{transform:translateX(6px)}
  60%{transform:translateX(-4px)}
  80%{transform:translateX(4px)}
}

/* ============================================
   RESPONSIVE — GLOBAL TWEAKS
   ============================================ */
@media(max-width:640px){
  .section { padding: 60px 0; }
  .split-head { grid-template-columns:1fr; margin-bottom:40px; }
  .about-stats { grid-template-columns:1fr; }
  .stat { padding:20px 14px; }
}
@media(max-width:480px){
  .stats-strip-grid { grid-template-columns: 1fr 1fr !important; }
}
