/* ==========================================================================
   Design2Serve — Core Stylesheet
   A premium UK web design & development agency
   ========================================================================== */

@import url("https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&f[]=satoshi@400,500,700,900&display=swap");

:root {
  /* ---- Brand palette ---- */
  --bg: #f9f6ee;
  --bg-2: #f4f0e4;
  --card: #fffdf8;
  --gold: #d6b24c;
  --gold-dark: #b9963a;
  --sage: #a6b89a;
  --terracotta: #c97e4f;
  --ink: #1d1d1b;
  --ink-soft: #6f6a5f;
  --border: #e5dece;

  --gold-rgb: 214, 178, 76;
  --terracotta-rgb: 201, 126, 79;
  --sage-rgb: 166, 184, 154;

  /* ---- Fixed deep panel (footer / CTA / mobile menu / tooltip) ---- */
  --deep: #1d1d1b;
  --deep-text: #f9f6ee;

  /* ---- Type ---- */
  --font-display: "Space Grotesk", "General Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", "Satoshi", sans-serif;
  --font-label: "General Sans", sans-serif;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* ---- Scale ---- */
  --container: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius-s: 10px;
  --radius-m: 20px;
  --radius-l: 32px;
}

/* ==========================================================================
   Dark Mode Palette
   ========================================================================== */
body.dark-mode {
  --bg: #15151a;
  --bg-2: #1c1c22;
  --card: #202027;
  --gold: #e0bd5c;
  --gold-dark: #c9a248;
  --sage: #93a887;
  --terracotta: #d1875a;
  --ink: #f2efe6;
  --ink-soft: #a7a297;
  --border: #313138;

  --gold-rgb: 224, 189, 92;
  --terracotta-rgb: 209, 135, 90;
  --sage-rgb: 147, 168, 135;
}

@font-face {
  font-family: "Space Grotesk";
  src: local("Space Grotesk");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: auto;
}
html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease);
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
svg {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

#process {
  display: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-dark);
  display: inline-block;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Theme Toggle — View Transition circular reveal
   ========================================================================== */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}
::view-transition-old(root) {
  z-index: 1;
}
::view-transition-new(root) {
  z-index: 9999;
}
.theme-ripple-overlay {
  position: fixed;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ripple-color, var(--bg));
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1.1s var(--ease);
  will-change: transform;
}
.theme-ripple-overlay.expand {
  transform: translate(-50%, -50%) scale(300);
}
@media (prefers-reduced-motion: reduce) {
  .theme-ripple-overlay {
    display: none !important;
  }
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */
.lang-switcher {
  position: relative;
}
.lang-switcher-btn {
  height: 38px;
  padding: 0 14px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.lang-switcher-btn svg {
  stroke: var(--ink);
  transition: transform 0.3s var(--ease);
}
.lang-switcher.is-open .lang-switcher-btn svg {
  transform: rotate(180deg);
}
.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  box-shadow: 0 20px 40px rgba(29, 29, 27, 0.12);
  padding: 8px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
  z-index: 600;
}
.lang-switcher.is-open .lang-switcher-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.lang-switcher-menu li {
  padding: 9px 12px;
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.lang-switcher-menu li:hover {
  background: var(--bg-2);
  color: var(--gold-dark);
}
.lang-switcher-menu li.active {
  color: var(--gold-dark);
  font-weight: 600;
}

/* Google ka default UI (banner, tooltip, yellow highlight) chhupao —
   warna layout jump hoga aur brand design tootega */
.goog-te-banner-frame,
.goog-te-gadget-icon,
.skiptranslate > iframe {
  display: none !important;
  visibility: hidden !important;
}
body {
  top: 0px !important;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(29, 29, 27, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s var(--ease),
    height 0.4s var(--ease),
    border-color 0.4s var(--ease),
    opacity 0.4s var(--ease);
}
body.dark-mode .cursor-ring {
  border-color: rgba(249, 246, 238, 0.35);
}
.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--card);
  background: var(--ink);
  padding: 6px 12px;
  border-radius: 40px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease);
}
body.cursor-hover .cursor {
  width: 6px;
  height: 6px;
}
body.cursor-hover .cursor-ring {
  width: 74px;
  height: 74px;
  border-color: var(--gold-dark);
}
body.cursor-view .cursor-label {
  opacity: 1;
}
body.cursor-view .cursor-ring {
  width: 96px;
  height: 96px;
  opacity: 0;
}
body.cursor-drag .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--terracotta);
}

@media (max-width: 900px) {
  .cursor,
  .cursor-ring,
  .cursor-label {
    display: none !important;
  }
}

/* ==========================================================================
   Loader
   ========================================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.loader-mark {
  width: 84px;
  height: 84px;
  position: relative;
}
.loader-mark svg {
  width: 100%;
  height: 100%;
}
.loader-mark .l-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}
.loader-count {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.loader-count b {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}
.loader-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--deep);
  transform: translateY(0%);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 32px));
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 14px 26px;
  background: rgba(249, 246, 238, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(229, 222, 206, 0.8);
  border-radius: 60px;
  transition:
    padding 0.5s var(--ease),
    background 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    top 0.5s var(--ease);
}
.site-header.is-scrolled {
  padding: 9px 9px 9px 24px;
  background: rgba(249, 246, 238, 0.86);
  box-shadow: 0 12px 40px rgba(29, 29, 27, 0.08);
  top: 12px;
}
body.dark-mode .site-header {
  background: rgba(21, 21, 26, 0.6);
  border-color: rgba(49, 49, 56, 0.8);
}
body.dark-mode .site-header.is-scrolled {
  background: rgba(21, 21, 26, 0.86);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.logo img {
  height: 70px;
}

.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

body.dark-mode .logo-light {
  display: none;
}

body.dark-mode .logo-dark {
  display: block;
}

/* .logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .logo-dot {
  color: var(--gold-dark);
} */

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  background: rgba(29, 29, 27, 0.03);
  padding: 4px 6px;
  border-radius: 40px;
  border: 1px solid rgba(29, 29, 27, 0.05);
}
body.dark-mode .main-nav {
  background: rgba(249, 246, 238, 0.04);
  border-color: rgba(249, 246, 238, 0.07);
}
.nav-indicator-pill {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  background: var(--ink);
  border-radius: 30px;
  z-index: 0;
  pointer-events: none;
  will-change: left, width, opacity;
  transition:
    left 0.35s var(--ease),
    width 0.35s var(--ease),
    opacity 0.3s var(--ease);
}
.main-nav a {
  position: relative;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  color: var(--ink);
  z-index: 1;
  border-radius: 30px;
  transition: color 0.35s var(--ease);
}
.main-nav a::after {
  display: none;
}
.main-nav a:hover {
  color: var(--bg);
}
.main-nav a.active {
  color: var(--bg);
}
.main-nav a.active.pill-away {
  color: var(--ink);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  position: relative;
  flex-shrink: 0;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.theme-toggle svg {
  position: absolute;
  stroke: currentColor;
  transition:
    opacity 0.4s var(--ease),
    transform 0.5s var(--ease);
}
.theme-toggle .icon-moon {
  opacity: 0;
  transform: scale(0.4) rotate(-90deg);
}
.theme-toggle .icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
body.dark-mode .theme-toggle .icon-sun {
  opacity: 0;
  transform: scale(0.4) rotate(90deg);
}
body.dark-mode .theme-toggle .icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.btn {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 60px;
  padding: 13px 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.35);
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(var(--gold-rgb), 0.5);
  transform: translateY(-2px);
}
.btn-primary span {
  position: relative;
  z-index: 2;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--card);
}
.btn {
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.burger span:nth-child(1) {
  transform: translateY(-4px);
}
.burger span:nth-child(2) {
  transform: translateY(4px);
}
.burger.is-open span:nth-child(1) {
  transform: rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  transform: rotate(-45deg);
}

/* Mobile fullscreen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--deep);
  color: var(--deep-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--gutter);
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
.mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 54px);
  color: var(--deep-text);
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(249, 246, 238, 0.12);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.mobile-menu a:hover {
  opacity: 1;
  color: var(--gold);
}
.mobile-menu-foot {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* ==========================================================================
   Scroll thread — signature element (stitched progress line)
   ========================================================================== */
.thread-wrap {
  position: fixed;
  right: clamp(14px, 2.4vw, 40px);
  top: 0;
  height: 100vh;
  z-index: 400;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.thread-wrap svg {
  height: min(60vh, 560px);
  width: 30px;
  overflow: visible;
}
.thread-track {
  stroke: var(--border);
  stroke-width: 2;
  fill: none;
}
.thread-progress {
  stroke: var(--gold-dark);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1 1;
  stroke-linecap: round;
}
.thread-bead {
  fill: var(--terracotta);
}
@media (max-width: 900px) {
  .thread-wrap {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 0 60px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1200px, 95vw);
  height: min(1200px, 95vh);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  margin-bottom: 30px;
}
.hero-title {
  font-size: clamp(48px, 8.4vw, 128px);
  max-width: 16ch;
  margin: 0 auto;
}
.hero-title .line {
  overflow: hidden;
  display: block;
}
.hero-title em {
  font-style: normal;
  color: var(--terracotta);
}
.hero-side {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink);
  font-size: 15px;
  text-shadow:
    0 0 6px rgba(var(--ink-rgb), 0.45),
    0 0 14px rgba(var(--ink-rgb), 0.28),
    0 0 24px rgba(var(--ink-rgb), 0.16);
  animation: heroSidePulse 4s infinite;
}

@keyframes heroSidePulse {
  0%,
  60%,
  100% {
    text-shadow:
      0 0 6px rgba(var(--ink-rgb), 0.45),
      0 0 14px rgba(var(--ink-rgb), 0.28),
      0 0 24px rgba(var(--ink-rgb), 0.16);
  }
  31.8%,
  32.2%,
  95.4% {
    text-shadow:
      0 0 4px rgba(var(--ink-rgb), 0.32),
      0 0 10px rgba(var(--ink-rgb), 0.2),
      0 0 16px rgba(var(--ink-rgb), 0.11);
  }
  32% {
    text-shadow:
      0 0 1px rgba(var(--ink-rgb), 0.14),
      0 0 3px rgba(var(--ink-rgb), 0.08),
      0 0 6px rgba(var(--ink-rgb), 0.04);
  }
  95% {
    text-shadow:
      0 0 2px rgba(var(--ink-rgb), 0.2),
      0 0 5px rgba(var(--ink-rgb), 0.11),
      0 0 9px rgba(var(--ink-rgb), 0.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-side {
    animation: none;
  }
}
@media (max-width: 900px) {
  .hero-side {
    max-width: 100%;
    padding-bottom: 0;
  }
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
  flex-wrap: wrap;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 46px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .hero-stats {
    gap: 24px;
  }
}
.hero-stat b {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  display: block;
}
.hero-stat span {
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

.scroll-indicator {
  position: absolute;
  left: var(--gutter);
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.scroll-indicator .dash {
  width: 30px;
  height: 1px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.scroll-indicator .dash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-dark);
  transform: translateX(-100%);
  animation: dashmove 2.4s var(--ease) infinite;
}
@keyframes dashmove {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.clients-strip {
  border-top: 1px solid var(--border);
  padding: 26px 0;
}
.clients-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.clients-row .eyebrow {
  flex-shrink: 0;
}
.client-logos {
  display: flex;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 760px) {
  .clients-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .client-logos {
    gap: 16px 28px;
  }
}
.client-logos span {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink-soft);
  opacity: 0.55;
  font-weight: 500;
  transition: opacity 0.3s;
}
.client-logos span:hover {
  opacity: 1;
  color: var(--ink);
}

/* ==========================================================================
   Hero — cursor-follow floating images (naya effect)
   ========================================================================== */
.hero-follow-wrap {
  position: absolute;
  inset: 0;
  z-index: 1; /* hero-content z-index:2 hai, isse upar rakhna hai */
  overflow: hidden;
  pointer-events: none;
}
.hero-follow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(120px, 11vw, 170px); /* TUNABLE: image ka size */
  aspect-ratio: 4/5; /* TUNABLE: image shape */
  object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: 0 20px 44px rgba(29, 29, 27, 0.28);
  opacity: 0;
  will-change: transform, opacity;
}
@media (max-width: 900px) {
  .hero-follow-wrap {
    display: none; /* mobile pe cursor hi nahi hota, to ye bhi off */
  }
}

/* ==========================================================================
   Section shells
   ========================================================================== */
section {
  position: relative;
}
.section-pad {
  padding: 130px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 14ch;
}
.section-head p {
  max-width: 360px;
  color: var(--ink-soft);
  font-size: 15.5px;
  padding-bottom: 6px;
}

.bg-2 {
  background: var(--bg-2);
}

/* ==========================================================================
   Cross Marquee — two bands crossing in an X, both pivoting from the exact
   same center point (that's what makes it a real X, not a cone overlap)
   ========================================================================== */
.cross-marquee-section {
  position: relative;
  height: clamp(320px, 40vw, 360px); /* TUNABLE: overall section height */
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cross-marquee-stage {
  position: absolute;
  inset: 0;
}
.cross-band {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%; /* TUNABLE: keep wider than section so rotated band still covers full width */
  transform: translate(-50%, -50%) rotate(var(--band-angle));
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.band-a {
  --band-angle: -9deg; /* TUNABLE: crossing angle, must be opposite of band-b */
  background: var(--ink);
  z-index: 2;
  box-shadow: none !important;
}
.band-b {
  --band-angle: 9deg; /* TUNABLE */
  background: var(--gold);
  z-index: 1;
}
.cross-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.cross-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 46px); /* TUNABLE: brand name size */
  letter-spacing: -0.01em;
  padding: 0 20px; /* TUNABLE: gap between words */
}
.band-a .cross-track span {
  color: var(--bg);
}
.band-b .cross-track span {
  color: var(--ink);
}
.x-sep {
  font-size: 16px !important;
  opacity: 0.5;
}

@media (max-width: 700px) {
  .cross-marquee-section {
    height: clamp(260px, 60vw, 360px);
  }
  .cross-band {
    width: 220%;
    padding: 14px 0;
  }
  .cross-track span {
    font-size: clamp(20px, 6vw, 30px);
    padding: 0 14px;
  }
}

/* ==========================================================================
   Services
   ========================================================================== */
section#services {
  padding: 50px 0;
}
.services-list {
  border-top: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 140px;
  align-items: center;
  gap: 30px;
  padding: 34px 4px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: padding 0.4s var(--ease);
}
.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  background: var(--card);
  transition: top 0.45s var(--ease);
  z-index: 0;
}
.service-row:hover::before {
  top: 0;
}
.service-row:hover {
  padding-left: 20px;
  padding-right: 20px;
}
.service-row > * {
  position: relative;
  z-index: 1;
}
.service-index {
  font-family: var(--font-display);
  color: var(--gold-dark);
  font-size: 14px;
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-desc {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 42ch;
}
.service-arrow {
  justify-self: end;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    transform 0.5s var(--ease),
    border-color 0.3s;
}
.service-row:hover .service-arrow {
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.service-row:hover .service-arrow svg {
  stroke: var(--bg);
}
.service-arrow svg {
  stroke: var(--ink);
  transition: stroke 0.3s;
}
@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 40px 1fr 50px;
  }
  .service-desc {
    display: none;
  }
}

/* ==========================================================================
   Portfolio teaser
   ========================================================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

/* Row 1: wide(8) + card2(4) = 12   |   Row 2: narrow(4) + card4(8) = 12 */
.work-card {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--card);
  grid-column: span 4;
  aspect-ratio: 4/5;
}
.work-card.wide {
  grid-column: span 8;
  aspect-ratio: 16/10;
}
.work-card.narrow {
  grid-column: span 4;
  aspect-ratio: 3/4;
}
.work-grid .work-card:nth-child(4) {
  grid-column: span 8;
  aspect-ratio: 16/10;
}

.work-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.work-card:hover img {
  transform: scale(1.06);
}
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(29, 29, 27, 0.78) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.work-card:hover .work-overlay {
  opacity: 1;
}
.work-meta h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
.work-meta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Tablet: clean 2-column grid, koi span-mismatch nahi */
@media (max-width: 1024px) and (min-width: 761px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-card,
  .work-card.wide,
  .work-card.narrow,
  .work-grid .work-card:nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}

/* Mobile: single column stack */
@media (max-width: 760px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card,
  .work-card.wide,
  .work-card.narrow,
  .work-grid .work-card:nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}

/* ==========================================================================
   About / stats / process
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid var(--border);
  padding-top: 50px;
  margin-top: 70px;
}
.stat-card b {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  display: block;
  color: var(--gold-dark);
}
.stat-card span {
  color: var(--ink-soft);
  font-size: 14px;
}
@media (max-width: 760px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Scroll 3D Process Showcase (theme-matched)
   ========================================================================== */
.scroll3d-section {
  position: relative;
  padding: 130px 0 60px;
  overflow: hidden;
  background: var(--bg-2);
}
.scroll3d-intro {
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: center;
  padding: 0 var(--gutter);
}
.scroll3d-intro .eyebrow {
  justify-content: center;
}
.scroll3d-intro h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 18px 0 16px;
}
.scroll3d-intro p {
  color: var(--ink-soft);
  font-size: 15.5px;
}

.grid3d {
  --grid3d-perspective: 1500px;
  --grid3d-item-ratio: 1.5;
  --grid3d-width: 105%;
  --grid3d-gap: 2vw;
  --grid3d-columns: 8;
  --grid3d-inner-scale: 0.5;
  display: grid;
  place-items: center;
  padding: 4rem 0 6rem;
  width: 100%;
  perspective: var(--grid3d-perspective);
}
.grid3d-wrap {
  width: var(--grid3d-width);
  display: grid;
  grid-template-columns: repeat(var(--grid3d-columns), 1fr);
  gap: var(--grid3d-gap);
  transform-style: preserve-3d;
}
.grid3d-item {
  aspect-ratio: var(--grid3d-item-ratio);
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-m);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px rgba(29, 29, 27, 0.12);
}
.grid3d-item-inner {
  position: relative;
  width: calc(1 / var(--grid3d-inner-scale) * 100%);
  height: calc(1 / var(--grid3d-inner-scale) * 100%);
  background-size: cover;
  background-position: 50% 50%;
  filter: grayscale(0.15) sepia(0.12) saturate(1.1);
}
.grid3d-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(214, 178, 76, 0.08),
    rgba(29, 29, 27, 0.28)
  );
  pointer-events: none;
}

@media (max-width: 900px) {
  .grid3d {
    --grid3d-columns: 4;
    --grid3d-item-ratio: 1;
    --grid3d-gap: 3vw;
  }
}
@media (max-width: 560px) {
  .grid3d {
    --grid3d-columns: 2;
    --grid3d-gap: 4vw;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.testi-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.testi-nav-btn svg {
  stroke: var(--ink);
  transition: stroke 0.3s;
}
.testi-nav-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-3px);
}
.testi-nav-btn:hover svg {
  stroke: var(--bg);
}
.testi-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.testi-carousel {
  overflow: hidden;
  padding: 6px 0 4px;
}
.testi-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--card);
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  box-sizing: border-box;
  transition:
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.testi-card:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 24px 50px rgba(29, 29, 27, 0.08);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    width 0.4s var(--ease),
    background 0.4s var(--ease);
}
.testi-dot.active {
  width: 26px;
  background: var(--gold-dark);
}
.testi-quote {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.6;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.testi-person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-person b {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.testi-person span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
@media (max-width: 1024px) {
  .testi-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 700px) {
  .testi-card {
    flex: 0 0 100%;
    padding: 32px;
  }
}
/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--deep);
  color: var(--deep-text);
  border-radius: var(--radius-l);
  padding: 90px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: var(--deep-text);
  font-size: clamp(34px, 6vw, 72px);
  max-width: 16ch;
  margin: 0 auto 30px;
}
.cta-band .btn-primary {
  margin: 0 auto;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.35),
    transparent 70%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--deep);
  color: var(--deep-text);
  padding: 100px 0 30px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(249, 246, 238, 0.12);
}
.footer-brand .logo {
  color: var(--deep-text);
  font-size: 24px;
  margin-bottom: 0;
}
.footer-brand p {
  color: rgba(249, 246, 238, 0.55);
  max-width: 32ch;
  font-size: 14.5px;
}
.footer-col h5 {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(249, 246, 238, 0.7);
  font-size: 14.5px;
  transition:
    color 0.3s,
    padding-left 0.3s;
}
.footer-col a:hover {
  color: var(--deep-text);
  padding-left: 6px;
}
.footer-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-newsletter input {
  background: rgba(249, 246, 238, 0.06);
  border: 1px solid rgba(249, 246, 238, 0.18);
  border-radius: 40px;
  padding: 12px 18px;
  color: var(--deep-text);
  font-family: var(--font-body);
  flex: 1;
  font-size: 14px;
}
.footer-newsletter input::placeholder {
  color: rgba(249, 246, 238, 0.4);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom span,
.footer-bottom a {
  color: rgba(249, 246, 238, 0.5);
  font-size: 13px;
}
.back-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(249, 246, 238, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-4px);
}
.back-to-top svg {
  stroke: var(--deep-text);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility */
.reveal {
  overflow: hidden;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(var(--sage-rgb), 0.5);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-label);
  position: relative;
  color: var(--ink);
  background: linear-gradient(
    135deg,
    rgba(var(--sage-rgb), 0.22),
    rgba(var(--sage-rgb), 0.1)
  );
  box-shadow:
    0 0 10px rgba(var(--sage-rgb), 0.45),
    0 0 22px rgba(var(--sage-rgb), 0.25),
    inset 0 0 12px rgba(var(--sage-rgb), 0.15);
  animation: pillNeonFlicker 4s infinite;
}

body.dark-mode .pill {
  background: linear-gradient(
    135deg,
    rgba(var(--sage-rgb), 0.35),
    rgba(var(--sage-rgb), 0.16)
  );
  box-shadow:
    0 0 12px rgba(var(--sage-rgb), 0.6),
    0 0 28px rgba(var(--sage-rgb), 0.35),
    inset 0 0 14px rgba(var(--sage-rgb), 0.2);
}

@keyframes pillNeonFlicker {
  0%,
  60%,
  100% {
    box-shadow:
      0 0 10px rgba(var(--sage-rgb), 0.45),
      0 0 22px rgba(var(--sage-rgb), 0.25),
      inset 0 0 12px rgba(var(--sage-rgb), 0.15);
    border-color: rgba(var(--sage-rgb), 0.5);
  }
  31.8%,
  32.2%,
  95.4% {
    box-shadow:
      0 0 7px rgba(var(--sage-rgb), 0.32),
      0 0 16px rgba(var(--sage-rgb), 0.18),
      inset 0 0 8px rgba(var(--sage-rgb), 0.1);
  }
  32% {
    box-shadow:
      0 0 3px rgba(var(--sage-rgb), 0.15),
      0 0 6px rgba(var(--sage-rgb), 0.08),
      inset 0 0 3px rgba(var(--sage-rgb), 0.04);
    border-color: rgba(var(--sage-rgb), 0.25);
  }
  95% {
    box-shadow:
      0 0 4px rgba(var(--sage-rgb), 0.18),
      0 0 8px rgba(var(--sage-rgb), 0.1),
      inset 0 0 4px rgba(var(--sage-rgb), 0.05);
    border-color: rgba(var(--sage-rgb), 0.3);
  }
}

body.dark-mode .pill {
  animation: pillNeonFlickerDark 4s infinite;
}
@keyframes pillNeonFlickerDark {
  0%,
  60%,
  100% {
    box-shadow:
      0 0 12px rgba(var(--sage-rgb), 0.6),
      0 0 28px rgba(var(--sage-rgb), 0.35),
      inset 0 0 14px rgba(var(--sage-rgb), 0.2);
    border-color: rgba(var(--sage-rgb), 0.6);
  }
  31.8%,
  32.2%,
  95.4% {
    box-shadow:
      0 0 9px rgba(var(--sage-rgb), 0.42),
      0 0 20px rgba(var(--sage-rgb), 0.24),
      inset 0 0 10px rgba(var(--sage-rgb), 0.13);
  }
  32% {
    box-shadow:
      0 0 3px rgba(var(--sage-rgb), 0.18),
      0 0 7px rgba(var(--sage-rgb), 0.1),
      inset 0 0 4px rgba(var(--sage-rgb), 0.05);
    border-color: rgba(var(--sage-rgb), 0.3);
  }
  95% {
    box-shadow:
      0 0 5px rgba(var(--sage-rgb), 0.22),
      0 0 10px rgba(var(--sage-rgb), 0.13),
      inset 0 0 5px rgba(var(--sage-rgb), 0.06);
    border-color: rgba(var(--sage-rgb), 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill {
    animation: none;
  }
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
  flex-shrink: 0;
}

/* ==========================================================================
   Subpage / About Styles & Utilities
   ========================================================================== */
.hero-pad-sub {
  padding: clamp(120px, 14vw, 180px) 0 80px;
}
.about-hero-title {
  font-size: clamp(38px, 6.2vw, 82px);
  line-height: 1.1;
  max-width: 18ch;
}
.about-hero-title .line {
  overflow: hidden;
  display: block;
}
.lead-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
}
.body-soft {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
.reveal-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  background: var(--bg-2);
}
.reveal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 0.6s var(--ease);
}
.img-reveal-overlay {
  position: absolute;
  inset: 0;
  background: var(--border);
  z-index: 2;
}
.about-hero-image-wrap {
  aspect-ratio: 16/9;
  max-height: 640px;
}
.manifesto-image-wrap {
  aspect-ratio: 4/5;
  max-height: 580px;
}
.studio-culture-img-wrap {
  aspect-ratio: 4/3;
  max-height: 480px;
}
.section-sub-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}
.manifesto-point h5 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}

/* ==========================================================================
   Services Page Styles & Accordions
   ========================================================================== */
.services-hero-title {
  font-size: clamp(38px, 6.2vw, 82px);
  line-height: 1.1;
  max-width: 18ch;
}
.svg-draw-container {
  width: 100%;
  padding: 40px 0;
  overflow: visible;
}
.svg-draw-container svg {
  width: 100%;
  height: 120px;
  overflow: visible;
}
.animated-scroll-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.services-accordion-list {
  border-top: 1px solid var(--border);
}
.accordion-item-wrap {
  border-bottom: 1px solid var(--border);
}
.accordion-header-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  background: none;
  border: none;
  padding: 34px 10px;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  outline: none;
  transition: padding 0.4s var(--ease);
}
.accordion-header-btn:hover {
  padding-left: 20px;
  padding-right: 20px;
  background: var(--card);
}
.accordion-header-btn.is-active {
  padding-left: 20px;
  padding-right: 20px;
  background: var(--card);
}
.acc-index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold-dark);
}
.acc-title {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.6vw, 30px);
  font-weight: 500;
}
.acc-status {
  width: 16px;
  height: 16px;
  position: relative;
  justify-self: end;
}
.acc-status::before,
.acc-status::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.4s var(--ease);
}
.acc-status::before {
  top: 7px;
  left: 0;
  right: 0;
  height: 1.5px;
}
.acc-status::after {
  left: 7px;
  top: 0;
  bottom: 0;
  width: 1.5px;
}
.accordion-header-btn.is-active .acc-status::after {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion-header-btn.is-active .acc-status::before {
  transform: rotate(180deg);
}

.accordion-panel-content {
  height: 0;
  overflow: hidden;
}
.panel-inner {
  padding-left: 80px;
}
.panel-inner h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.25;
}
.eyebrow-small {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.deliverables-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.deliverables-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 600;
}

@media (max-width: 900px) {
  .accordion-header-btn {
    grid-template-columns: 40px 1fr 30px;
  }
  .panel-inner {
    padding-left: 40px;
  }
}

/* ==========================================================================
   Portfolio Page Styles
   ========================================================================== */
.portfolio-hero-title {
  font-size: clamp(38px, 6.2vw, 82px);
  line-height: 1.1;
  max-width: 18ch;
}
.horizontal-showcase-section {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.horizontal-pin-wrap {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.horizontal-slides-container {
  display: flex;
  flex-wrap: nowrap;
  width: 300vw;
  height: 100%;
  will-change: transform;
}
.horizontal-slide-panel {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bg-warm-card {
  background: var(--bg);
}
.bg-sage-card {
  background: var(--bg-2);
}
.bg-terracotta-card {
  background: #efebe0;
}
body.dark-mode .bg-terracotta-card {
  background: #241d15;
}
.slide-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
  width: 100%;
}
.slide-title {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.slide-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.slide-tags span {
  background: rgba(29, 29, 27, 0.05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 40px;
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--ink-soft);
}
body.dark-mode .slide-tags span {
  background: rgba(249, 246, 238, 0.06);
}
.slide-image-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-l);
  max-height: 520px;
}
.parallax-img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}

/* Filterable masonry */
.portfolio-filters-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--card);
  border: 1px solid var(--border);
  font-family: var(--font-label);
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: 40px;
  cursor: pointer;
  color: var(--ink);
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.portfolio-masonry-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.portfolio-item-wrap {
  padding-left: 12px;
  padding-right: 12px;
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
  will-change: transform, opacity;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 16/11;
  cursor: pointer;
  width: 100%;
  border-radius: var(--radius-l);
  overflow: hidden;
}
.portfolio-p-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 1s var(--ease);
}
.portfolio-card:hover .portfolio-p-img {
  transform: scale(1.04);
}
.portfolio-hover-meta {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(29, 29, 27, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  color: #fff;
  z-index: 3;
}
.portfolio-card:hover .portfolio-hover-meta {
  opacity: 1;
}
.portfolio-hover-meta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.portfolio-hover-meta h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .slide-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    height: 100%;
    align-content: center;
    padding: 80px 20px;
  }
  .horizontal-pin-wrap {
    height: auto;
  }
  .horizontal-showcase-section {
    overflow: visible;
  }
  .horizontal-slides-container {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .horizontal-slide-panel {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
  }
  .slide-image-wrap {
    order: -1;
    aspect-ratio: 16/10;
  }
}

/* ==========================================================================
   Insights Page Styles
   ========================================================================== */
.insights-hero-title {
  font-size: clamp(38px, 6.2vw, 82px);
  line-height: 1.1;
  max-width: 18ch;
}
.insights-stack-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: 100px;
}
.insight-stack-card {
  position: sticky;
  top: 140px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(24px, 4.5vw, 64px);
  min-height: 480px;
  display: flex;
  align-items: center;
  box-shadow: 0 30px 60px rgba(29, 29, 27, 0.03);
  overflow: hidden;
  will-change: transform, opacity;
}
.insight-tag {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  display: inline-block;
  background: rgba(var(--gold-rgb), 0.1);
  padding: 4px 12px;
  border-radius: 40px;
}
.insight-title {
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--ink);
}
.insight-meta-foot {
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.insight-card-img-wrap {
  aspect-ratio: 16/10;
  border-radius: var(--radius-m);
  overflow: hidden;
  max-height: 340px;
}

@media (max-width: 991px) {
  .insight-stack-card {
    position: relative;
    top: 0;
    min-height: auto;
    padding: 34px 20px;
  }
  .insights-stack-container {
    gap: 30px;
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero-title {
  font-size: clamp(38px, 6.2vw, 82px);
  line-height: 1.1;
  max-width: 18ch;
}
.luxury-contact-form {
  display: flex;
  flex-direction: column;
}
.form-row {
  margin-bottom: clamp(24px, 4vw, 36px);
  position: relative;
}
.floating-input-group {
  position: relative;
  width: 100%;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
}
.floating-input-group input,
.floating-input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 0 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
}
.floating-input-group label {
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 15px;
  pointer-events: none;
  transition:
    transform 0.4s var(--ease),
    color 0.4s var(--ease);
}
/* Trigger label float */
.floating-input-group input:focus ~ label,
.floating-input-group input:not(:placeholder-shown) ~ label,
.floating-input-group textarea:focus ~ label,
.floating-input-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-26px) scale(0.85);
  transform-origin: left;
  color: var(--gold-dark);
}
.input-focus-line {
  position: absolute;
  left: 0;
  bottom: -1.5px;
  width: 100%;
  height: 2px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.floating-input-group input:focus ~ .input-focus-line,
.floating-input-group textarea:focus ~ .input-focus-line {
  transform: scaleX(1);
}

.budget-options-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.budget-opt-label {
  cursor: pointer;
}
.budget-opt-label input {
  display: none;
}
.budget-opt-label span {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 22px;
  font-family: var(--font-label);
  font-size: 13.5px;
  color: var(--ink);
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.budget-opt-label input:checked + span {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.budget-opt-label:hover span {
  border-color: var(--ink);
}

.contact-details-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 40px;
}
.contact-details-panel h4 {
  font-family: var(--font-display);
  font-size: 24px;
}
.contact-info-link-block {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.contact-link-txt {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  margin-top: 4px;
  color: var(--ink);
  transition: color 0.3s;
}
.contact-link-txt:hover {
  color: var(--gold-dark);
}

.contact-location-map-wrap {
  margin-top: 30px;
}
.map-graphic-container {
  height: 280px;
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid-bg {
  position: absolute;
  inset: 0;
  background-size: 20px 20px;
  background-image:
    linear-gradient(to right, rgba(229, 222, 206, 0.25) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(229, 222, 206, 0.25) 1px, transparent 1px);
}
.map-pin-pulse {
  position: relative;
  width: 14px;
  height: 14px;
  z-index: 3;
}
.pulse-dot {
  width: 12px;
  height: 12px;
  background: var(--terracotta);
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  box-shadow: 0 0 10px var(--terracotta);
}
.pulse-ring {
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  height: 36px;
  width: 36px;
  position: absolute;
  left: -12px;
  top: -12px;
  animation: mappulse 2s ease-out infinite;
  opacity: 0;
}
@keyframes mappulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.map-tooltip {
  position: absolute;
  bottom: 24px;
  background: var(--deep);
  color: var(--deep-text);
  border-radius: var(--radius-s);
  padding: 10px 16px;
  font-size: 12.5px;
  box-shadow: 0 12px 30px rgba(29, 29, 27, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}
.map-tooltip b {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold);
}
.map-tooltip span {
  color: rgba(249, 246, 238, 0.6);
  font-size: 11px;
}

/* ==========================================================================
   404 Page Styles
   ========================================================================== */
.error-page-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(140px, 16vw, 220px) 0 100px;
}
.error-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.relative-z {
  position: relative;
  z-index: 2;
}
.error-main-title {
  font-size: clamp(48px, 8vw, 108px);
  line-height: 1.05;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 12.5px;
}

.marquee-back-btn {
  display: inline-block;
  width: 290px;
  height: 52px;
  border: 1.5px solid var(--ink);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  background: var(--card);
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease);
  cursor: pointer;
}
.marquee-back-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.marquee-back-btn:hover .marquee-track-text {
  color: var(--bg);
}
.marquee-btn-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.marquee-track-text {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  animation: marqueeBtn 12s linear infinite;
  will-change: transform;
}
@keyframes marqueeBtn {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* pricing plans =================================================================================== */
/* ==========================================================================
   PRICING v2 — YEH POORA BLOCK PURANE "PRICING" CSS BLOCK KO REPLACE
   KARTA HAI.

   Karna yeh hai: style.css mein pehle se jo "/* PRICING —" wala poora
   block paste kiya tha, use DELETE kar do, aur uski jagah yeh naya
   poora block paste kar do (end of file mein).
   ========================================================================== */

/* ---------- Shared pricing card (home teaser + full archive) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Base card + the "moving gradient border" hover effect.
   Technique: a pseudo-element sits on top with a big animated gradient,
   masked so only a 1.5px ring shows — on hover it fades in and the
   gradient position animates, giving a "flowing light" border. */
.pricing-card,
.top-package-card {
  position: relative;
  isolation: isolate;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  transition:
    transform 0.45s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    background 0.4s var(--ease);
}
.pricing-card::after,
.top-package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    115deg,
    transparent 10%,
    var(--gold) 35%,
    var(--terracotta) 50%,
    var(--gold) 65%,
    transparent 90%
  );
  background-size: 260% 260%;
  background-position: 0% 50%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.5s var(--ease);
}
.pricing-card:hover::after,
.top-package-card:hover::after {
  opacity: 1;
  animation: borderFlow 3.2s linear infinite;
}
@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card::after,
  .top-package-card::after {
    animation: none !important;
  }
}

.pricing-card {
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(29, 29, 27, 0.08);
}
.pricing-card.is-featured {
  background: var(--deep);
  border-color: rgba(214, 178, 76, 0.5);
  transform: scale(1.035);
  box-shadow: 0 30px 70px rgba(29, 29, 27, 0.18);
}
.pricing-card.is-featured:hover {
  transform: scale(1.035) translateY(-8px);
}
.pricing-card.is-featured .pricing-name,
.pricing-card.is-featured .pricing-sub,
.pricing-card.is-featured .pricing-amount,
.pricing-card.is-featured .pricing-features li {
  color: var(--deep-text);
}
.pricing-card.is-featured .pricing-tag {
  color: var(--gold);
}
.pricing-card.is-featured .pricing-features li::before {
  color: var(--gold);
}
.pricing-card.is-featured .pricing-features li {
  border-bottom-color: rgba(249, 246, 238, 0.1);
}
@media (max-width: 1024px) {
  .pricing-card.is-featured {
    transform: none;
  }
  .pricing-card.is-featured:hover {
    transform: translateY(-8px);
  }
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(var(--gold-rgb), 0.4);
  z-index: 4;
}

.pricing-card-head {
  margin-bottom: 22px;
}
.pricing-tag {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 10px;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}
.pricing-sub {
  color: var(--ink-soft);
  font-size: 14px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  color: var(--ink);
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.pricing-card.is-featured .pricing-amount {
  border-bottom-color: rgba(249, 246, 238, 0.14);
}
.pricing-amount .currency {
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-dark);
}
.pricing-amount b {
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}
.pricing-amount .price-plus {
  font-size: 15px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  margin-left: 2px;
}
.pricing-card.is-featured .pricing-amount .price-plus {
  color: rgba(249, 246, 238, 0.55);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-grow: 1;
  height: 400px;
  overflow-y: auto;
}
.pricing-features li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1px dashed var(--border);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 14px;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.pricing-card.is-featured .btn-ghost {
  border-color: rgba(249, 246, 238, 0.3);
  color: var(--deep-text);
}

.pricing-viewall {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}

/* ---------- Pricing page hero ---------- */
.pricing-hero-title {
  font-size: clamp(38px, 6.2vw, 82px);
  line-height: 1.1;
  max-width: 20ch;
}
.pricing-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.pricing-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 9px 18px 9px 14px;
  border-radius: 40px;
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.pricing-trust-row span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: inline-block;
  flex-shrink: 0;
}

/* ---------- Featured "Top Choice" package (pricing.php) ---------- */
.featured-package {
  position: relative;
  background: var(--deep);
  color: var(--deep-text);
  border-radius: var(--radius-l);
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
}
.featured-package-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.28),
    transparent 70%
  );
  top: -260px;
  right: -160px;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.featured-package-glow-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(var(--terracotta-rgb), 0.22),
    transparent 70%
  );
  top: auto;
  bottom: -220px;
  right: auto;
  left: -140px;
}
.featured-package-head {
  position: relative;
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  z-index: 1;
}
.featured-package-badge {
  position: static;
  display: inline-flex;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(var(--gold-rgb), 0.35);
}
.featured-package-head h2 {
  color: var(--deep-text);
  font-size: clamp(28px, 4.4vw, 46px);
  margin-bottom: 16px;
}
.featured-package-head .body-soft {
  color: rgba(249, 246, 238, 0.65);
  max-width: 56ch;
  margin: 0 auto 30px;
}
.featured-package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.featured-package-price .currency {
  font-size: 26px;
  color: var(--gold);
}
.featured-package-price b {
  font-size: 64px;
  font-weight: 500;
  color: var(--deep-text);
}
.featured-package-price-label {
  display: block;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 246, 238, 0.45);
  margin-bottom: 30px;
}
.featured-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 34px;
}
.featured-tags span {
  background: rgba(249, 246, 238, 0.07);
  border: 1px solid rgba(249, 246, 238, 0.16);
  padding: 7px 16px;
  border-radius: 40px;
  font-family: var(--font-label);
  font-size: 12px;
  color: rgba(249, 246, 238, 0.8);
}

/* ---------- Included items — CARD GRID (replaces old accordion) ---------- */
.top-package-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.top-package-card--wide {
  grid-column: 1 / -1;
}
.top-package-card {
  /* glass / frosted-paper look on the dark featured background */
  background: rgba(249, 246, 238, 0.045);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: rgba(249, 246, 238, 0.14);
  padding: 30px 30px 8px;
}
.top-package-card:hover {
  background: rgba(249, 246, 238, 0.075);
  border-color: rgba(214, 178, 76, 0.45);
  transform: translateY(-6px);
}
.top-package-card-top {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}
.top-package-index {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
}
.top-package-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--deep-text);
}
.top-package-card .pricing-features {
  margin-bottom: 0;
}
.top-package-card .pricing-features li {
  color: rgba(249, 246, 238, 0.8);
  border-bottom: 1px dashed rgba(249, 246, 238, 0.12);
  font-size: 14px;
}
.top-package-card .pricing-features li::before {
  color: var(--gold);
}
.top-package-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 34px;
}

@media (max-width: 900px) {
  .top-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-package-cols-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .top-package-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Full plan archive filter grid (pricing.php) ---------- */
.pricing-filters-wrap {
  display: flex;
}
.pricing-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.pricing-item-wrap {
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
  will-change: transform, opacity;
}
.pricing-item-wrap .pricing-card {
  height: 100%;
}
@media (max-width: 1024px) {
  .pricing-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .pricing-full-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   TOP-CHOICE PACKAGE CARDS — equal height + internal scroll fix
   ========================================================================== */

.top-package-grid {
  /* TUNABLE: was align-items:start by default — stretch makes every
     card in the same row equal height */
  align-items: stretch;
}

.top-package-card {
  display: flex;
  flex-direction: column;
  /* TUNABLE: caps how tall a single card can get before its list scrolls */
  max-height: 480px;
}

.top-package-card .pricing-features {
  flex: 1 1 auto;
  min-height: 0; /* required for flex children to actually scroll instead of overflowing */
  overflow-y: auto;
  padding-right: 6px; /* keeps text off the scrollbar */
}

/* The full-width "Professional Website" card has way more items (30+),
   so give it a taller cap than the single-column cards */
.top-package-card--wide {
  max-height: 640px;
}

/* Themed thin scrollbar (WebKit) so it matches the gold/dark palette
   instead of the default browser scrollbar */
.top-package-card .pricing-features::-webkit-scrollbar {
  width: 5px;
}
.top-package-card .pricing-features::-webkit-scrollbar-track {
  background: transparent;
}
.top-package-card .pricing-features::-webkit-scrollbar-thumb {
  background: rgba(var(--gold-rgb), 0.4);
  border-radius: 10px;
}
.top-package-card .pricing-features::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--gold-rgb), 0.65);
}
/* Firefox */
.top-package-card .pricing-features {
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--gold-rgb), 0.4) transparent;
}

@media (max-width: 900px) {
  .top-package-card {
    max-height: 420px;
  }
  .top-package-card--wide {
    max-height: 520px;
  }
}

.pricing-card .pricing-features::-webkit-scrollbar {
  width: 5px;
}
.pricing-card .pricing-features::-webkit-scrollbar-track {
  background: transparent;
}
.pricing-card .pricing-features::-webkit-scrollbar-thumb {
  background: rgba(var(--gold-rgb), 0.4);
  border-radius: 10px;
}
.pricing-card .pricing-features::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--gold-rgb), 0.65);
}
/* Firefox */
.pricing-card .pricing-features {
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--gold-rgb), 0.4) transparent;
}
