/* ═══════════════════════════════════════════════════
   EXACT NAMMA DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  /* Light mode — Namma uses #e4e4e4 / #f5f5f5 background, #111 text */
  --bg:      #e8e8e4;
  --bg-nav:  rgba(232,232,228,0.92);
  --fg:      #111111;
  --mid:     #666660;
  --mid-new: rgba(228,228,228,0.5);
  --dim:     #99998f;
  --line:    rgba(17,17,17,0.1);
  --blue:    #2563ff; /* Namma's signature blue cursor */

  /* FONTS — mirroring Namma exactly */
  --display: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  --mono:    'Space Mono', 'Courier New', monospace;
  --body:    'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg:      #111111;
  --bg-nav:  rgba(17,17,17,0.92);
  --fg:      #e4e4e4;
  --mid:     #888882;
  --mid-new: #666660;
  --dim:     #555550;
  --line:    rgba(228,228,228,0.1);
}

[data-theme="dark"] .nav-top img {
    filter: invert(1);
}

/* Active link styling */
.nav-mid.active {
    color: var(--blue); /* Namma blue */
    opacity: 1;
    font-weight: 500;
}

/* Optional: Underline effect for active link */
.nav-mid.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--blue);
    margin-top: 2px;
}

label.form-checkbox-label a {
    color: var(--fg);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  transition: background 0.4s, color 0.4s;
  -webkit-font-smoothing: antialiased;
}
html::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; }

/* ═══════════════════════════════
   CUSTOM CURSOR — Namma blue dot
═══════════════════════════════ */
#cur {
  position: fixed; z-index: 9999;
  width: 16px; height: 16px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease);
  mix-blend-mode: normal;
}
#cur.grow { width: 48px; height: 48px; }

/* ═══════════════════════════════
   PAGE LOAD VEIL
═══════════════════════════════ */
#veil {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--fg);
  animation: veilUp 1s 0.3s var(--ease) forwards;
}
@keyframes veilUp { to { transform: translateY(-100%); } }

/* ═══════════════════════════════
   NAV — Two-bar Namma layout
═══════════════════════════════ */
/* TOP BAR */
.nav-top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.2rem;
  transition: background 0.4s;
}
.nav-top.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
/* BOTTOM BAR */
.nav-bottom {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2.2rem;
  border-top: 1px solid var(--line);
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
}

.nav-mono {
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--fg);
  text-decoration: none;
  text-transform: uppercase;
  cursor: none;
}

a.nav-mono img {
    width: 150px;
    height: auto;
}

.nav-mid { color: var(--fg); }

/* Theme toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: none;
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}

/* CTA pill */
.nav-cta {
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--fg);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s;
  cursor: none;
}
.nav-cta:hover { opacity: 0.7; }

/* City/time in bottom bar */
.cities { display: flex; gap: 2.5rem; }
.city-pair { display: flex; gap: 0.8rem; }
.city-name, .city-time {
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════
   FULLSCREEN MENU OVERLAY
═══════════════════════════════ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: var(--fg); color: var(--bg);
  display: flex; flex-direction: column;
  padding: 2rem 2.2rem;
  transform: translateY(-100%);
  transition: transform 0.8s var(--ease);
}
.menu-overlay.open { transform: translateY(0); }

.menu-close {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bg); background: none; border: none; cursor: none;
  align-self: flex-end; margin-bottom: 3rem;
}
.menu-links {
  display: flex; flex-direction: column; gap: 0;
  flex: 1; justify-content: center;
}
.menu-link {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 1; letter-spacing: 0.01em;
  color: var(--bg); text-decoration: none;
  border-bottom: 1px solid rgba(228,228,228,0.1);
  padding: 0.4rem 0;
  display: flex; justify-content: space-between; align-items: baseline;
  transition: opacity .3s;
}
.menu-link:hover { opacity: 0.5; }
.menu-link-num {
  font-family: var(--mono); font-size: 0.65rem;
  color: rgba(228,228,228,0.4); letter-spacing: 0.06em;
}

/* ═══════════════════════════════
   HERO — Namma-exact layout
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 8.5rem 2.2rem 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Tiny label above hero text — Namma has "CREATIVE STUDIO BUILDING PREMIUM BRANDS" */
.hero-label {
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* THE STATEMENT — massive Namma-style lines */
.hero-statement {
  flex: 1; display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
}
.hero-giant {
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 13vw);
  line-height: 0.88; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--fg);
  display: block; overflow: hidden;
}
.hero-giant-line {
  display: block;
  transform: translateY(110%);
  animation: slideUp 1s var(--ease-out) forwards;
}
.hero-giant-line:nth-child(1) { animation-delay: 0.1s; }
.hero-giant-line:nth-child(2) { animation-delay: 0.22s; }
.hero-giant-line:nth-child(3) { animation-delay: 0.34s; }
.hero-giant-line:nth-child(4) { animation-delay: 0.46s; }
.hero-giant-line:nth-child(5) { animation-delay: 0.58s; }
@keyframes slideUp { to { transform: translateY(0); } }

/* Underline hover words like Namma */
.hero-underline {
  text-decoration: underline;
  text-underline-offset: 0.08em;
  text-decoration-thickness: 3px;
}

/* Hero bottom bar */
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid var(--line); padding-top: 1.5rem;
  margin-top: 2rem;
  opacity: 0; animation: fadeIn .8s 0.9s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-desc {
  font-family: var(--body);
  font-size: 30px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  max-width: 1000px;
}
.hero-scroll a {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.scroll-anim {
  width: 1.5rem; height: 1px; background: var(--mid);
  position: relative; overflow: hidden;
}
.scroll-anim::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--fg); animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{left:-100%} 50%{left:100%} 51%{left:-100%} 100%{left:-100%} }

/* ═══════════════════════════════
   MARQUEE
═══════════════════════════════ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 0.9rem 0;
}
.marquee-inner {
  display: inline-flex; gap: 2.5rem; white-space: nowrap;
  animation: scroll 30s linear infinite;
}
.marquee-item {
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.marquee-dot { color: var(--blue); font-size: 0.5rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ═══════════════════════════════
   INTRO STATEMENT — the big manifesto section
   (Namma: "It's never just a website. Every DETAIL matters.")
═══════════════════════════════ */
.intro-section {
  border-top: 1px solid var(--line);
  padding: 2rem 2.2rem;
}
.intro-mono {
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 3rem;
}
.intro-text {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 6.5vw);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--fg);
  max-width: 1100px;
  margin: 0.2em 0 0 0;
}
/* Inline underline words */
.intro-text .word-under {
  text-decoration: underline;
  text-underline-offset: 0.06em;
  text-decoration-thickness: 2px;
  cursor: none;
}

/* Reveal utility */
.rev {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.rev.on { opacity: 1; transform: translateY(0); }
.rev.d1 { transition-delay: .1s; } .rev.d2 { transition-delay: .2s; }
.rev.d3 { transition-delay: .3s; } .rev.d4 { transition-delay: .4s; }

.intro-on{display:grid;grid-template-columns:1fr 1fr;gap:4rem;margin-top:4rem}

/* ═══════════════════════════════
   SERVICES — hover-reveals with display type
═══════════════════════════════ */
.section-mono {
  font-family: var(--mono);
  font-size: 30px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 2.5rem 2.2rem;
  border-top: 1px solid var(--line);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 5vw);
  text-transform: uppercase; line-height: 1; letter-spacing: 0.01em;
}

/* Service accordion */
.svc-list { border-top: 1px solid var(--line); }
.svc-item { border-bottom: 1px solid var(--line); overflow: hidden; }

.svc-header {
  display: flex; align-items: center;
  padding: 1.8rem 2.2rem; cursor: none; gap: 2rem;
  transition: background .3s;
}
.svc-header:hover { background: rgba(17,17,17,0.03); }
[data-theme="dark"] .svc-header:hover { background: rgba(228,228,228,0.03); }

.svc-n {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--dim);
  letter-spacing: 0.06em;
  min-width: 2rem;
}
.svc-name {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 4.5vw);
  text-transform: uppercase; line-height: 1; letter-spacing: 0.01em; flex: 1;
  transition: opacity .3s;
}
.svc-header:hover .svc-name { opacity: 0.5; }
.svc-tag {
  font-family: var(--mono);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid);
  min-width: 80px;
  text-align: right;
}
.svc-plus {
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 1rem; color: var(--mid); flex-shrink: 0;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.svc-item.open .svc-plus {
  transform: rotate(45deg); background: var(--fg); color: var(--bg); border-color: var(--fg);
}

.svc-body { max-height: 0; overflow: hidden; transition: max-height .6s var(--ease); }
.svc-item.open .svc-body { max-height: 500px; }
.svc-body-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem; padding: 2rem 2.2rem;
  border-top: 1px solid var(--line);
}
.svc-desc {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}
.svc-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.svc-bullets li {
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--mid);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.svc-bullets li::before { content: '—'; color: var(--fg); }
.svc-cta-wrap { display: flex; align-items: flex-end; justify-content: flex-end; }
.svc-link {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap .3s;
  cursor: none;
}
.svc-link:hover { gap: 0.8rem; }
.svc-link::after { content: '→'; font-family: var(--body); }

/* ═══════════════════════════════
   STATS — impact numbers
═══════════════════════════════ */
.stats-section {
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-cell {
  border-right: 1px solid var(--line); padding: 4rem 2.2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  position: relative; transition: background .3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(17,17,17,0.03); }
[data-theme="dark"] .stat-cell:hover { background: rgba(228,228,228,0.03); }

.stat-label {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 10vw);
  line-height: 0.85; text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--fg);
}

/* ═══════════════════════════════
   WORK — Namma-style list rows
═══════════════════════════════ */
.work-list { border-top: 1px solid var(--line); }
.work-row {
  display: grid; grid-template-columns: 3rem 1fr auto auto;
  gap: 2rem; align-items: center;
  padding: 1.5rem 2.2rem; border-bottom: 1px solid var(--line);
  cursor: none; text-decoration: none; color: var(--fg);
  transition: background .3s;
  position: relative; overflow: hidden;
}

.work-row:hover { background: rgba(17,17,17,0.04); }
[data-theme="dark"] .work-row:hover { background: rgba(228,228,228,0.04); }

.wr-n {font-family: var(--mono);font-size: 1rem;color: var(--dim);}
.wr-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.5vw, 3.5vw);
  text-transform: uppercase; line-height: 1; letter-spacing: 0.01em;
  transition: transform .4s var(--ease);
}
.work-row:hover .wr-title { transform: translateX(8px); }
.wr-genre {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}
.wr-year {
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--dim);
}

/* Hover preview */
.work-preview {
  position: fixed; z-index: 400; pointer-events: none;
  width: 200px; aspect-ratio: 3/4; border-radius: 3px; overflow: hidden;
  opacity: 0; transform: scale(0.9) rotate(-2deg);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.work-preview.show { opacity: 1; transform: scale(1) rotate(-1deg); }
.wp-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem;
}
.wp-letter {
  font-family: var(--display);
  font-size: 5rem; line-height: 1; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.wp-genre-label {
  font-family: var(--mono); font-size: 0.55rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45);
}

#wpInner {
  width: 207px; /* Adjust as needed */
  height: 269px; /* Adjust as needed */
}

/* ═══════════════════════════════
   PROCESS — horizontal scroll (Namma style)
═══════════════════════════════ */
.process-track { overflow-x: auto; scrollbar-width: none; cursor: grab; }
.process-track::-webkit-scrollbar { display: none; }
.process-inner {
  display: flex; width: max-content;
  border-top: 1px solid var(--line);
}
.proc-step {
  width: 360px; flex-shrink: 0; padding: 3rem 2.2rem;
  border-right: 1px solid var(--line);
}
.proc-step:last-child { border-right: none; background: var(--fg); color: var(--bg); }
.proc-num {
  font-family: var(--display);
  font-size: 5rem; line-height: 1; text-transform: uppercase;
  color: var(--line); margin-bottom: 2rem; letter-spacing: 0.01em;
  transition: color .3s;
}
.proc-step:hover .proc-num { color: var(--fg); opacity: 0.2; }
.proc-step:last-child .proc-num { color: var(--bg); opacity: 0.15; }
.proc-title {
  font-family: var(--display);
  font-size: 1.8rem; text-transform: uppercase; line-height: 1; letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}
.proc-text {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.proc-step:last-child .proc-text { color: var(--mid-new); }
.proc-bullets { display: flex; flex-direction: column; gap: 0.4rem; }
.proc-bullet {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--mid);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.proc-step:last-child .proc-bullet { color: rgba(228,228,228,0.4); }
.proc-bullet::before { content: '—'; color: var(--fg); }
.proc-step:last-child .proc-bullet::before { color: var(--bg); }

/*PORTFOLIO*/

.portfolio-wrapper {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none; /* Firefox */
      justify-content: center;
      flex-wrap: wrap;
    }
    .portfolio-wrapper::-webkit-scrollbar { display: none; }

    .portfolio-card {
      min-width: 400px;
      height: 500px;
      border-radius: 15px;
      overflow: hidden;
      position: relative;
      background: #111;
      border: 1px solid rgba(255,255,255,0.05);
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      cursor: pointer;
    }
    
    .portfolio-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.8s ease;
    }

    .portfolio-card:hover {
      transform: scale(0.98);
      border-color: var(--lilac);
    }

    .portfolio-card:hover img {
      filter: grayscale(0) brightness(1);
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
        body {
    cursor: none !important;
    }    
    div#cur {
    display: none !important;
}
      .portfolio-card { min-width: 300px; height: 400px; }
    }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.test-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
}
.test-card {
  border-right: 1px solid var(--line); padding: 3rem 2.2rem;
  transition: background .3s;
}
.test-card:last-child { border-right: none; }
.test-card:hover { background: rgba(17,17,17,0.03); }
[data-theme="dark"] .test-card:hover { background: rgba(228,228,228,0.03); }

.tc-stars {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.tc-quote {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}
.tc-byline { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.tc-name {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.tc-loc {
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--mid);
  text-transform: uppercase;
}

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr;
  border-top: 1px solid var(--line);
}
.faq-left {
  padding: 4rem 2.2rem; border-right: 1px solid var(--line);
  position: sticky; top: 5rem; align-self: start;
}
.faq-left-body {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.faq-cta {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg); text-decoration: none;
  border-bottom: 1px solid var(--fg); padding-bottom: 0.15rem;
  display: inline-flex; align-items: center; gap: 0.4rem; transition: gap .3s;
  cursor: none;
}
.faq-cta:hover { gap: 0.8rem; }
.faq-cta::after { content: '→'; font-family: var(--body); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2.2rem;
  cursor: none;
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  gap: 1rem;
  transition: background .3s;
}
.faq-q:hover { background: rgba(17,17,17,0.03); }
[data-theme="dark"] .faq-q:hover { background: rgba(228,228,228,0.03); }
.faq-plus {
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.9rem; color: var(--mid); flex-shrink: 0;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--fg); color: var(--bg); border-color: var(--fg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  transition: max-height .5s var(--ease), padding .5s;
  padding: 0 2.2rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 2.2rem 1.5rem; }

/* ═══════════════════════════════
   SPECIFIC PRICING SECTION
═══════════════════════════════ */

/* Price Text: Mono font adjustment */
#pricing .faq-q span:nth-child(2) {
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
  text-transform: uppercase;
  margin-left: auto;
  padding-right: 1.2rem;
  transition: opacity 0.3s var(--ease);
}

#pricing .faq-item:hover .faq-q span:nth-child(2) {
  opacity: 1;
}

/* ═══════════════════════════════
   RESPONSIVE PRICING (MOBILE)
═══════════════════════════════ */
@media (max-width: 900px) {
    body {
    cursor: none !important;
    }    
    div#cur {
    display: none !important;
}
  /* Layout reset */
  #pricing .faq-wrap { 
    grid-template-columns: 1fr; 
  }

  /* Header adjustments */
  #pricing .faq-q {
    flex-wrap: wrap;
    padding: 1.5rem 1.4rem;
    gap: 0.4rem;
    position: relative;
  }

  /* Package Name */
  #pricing .faq-q span:first-child {
    width: 90%; /* Taake plus icon ke liye jagah rahe */
    font-size: 1rem;
    line-height: 1.3;
  }

  /* Price Tag on Mobile */
  #pricing .faq-q span:nth-child(2) {
    margin-left: 0 !important;
    width: 100%;
    font-size: 0.75rem !important;
    padding-right: 0;
    order: 3; /* Price ko title ke niche laane ke liye */
  }

  /* Plus icon alignment */
  #pricing .faq-plus {
    position: absolute;
    right: 1.4rem;
    top: 1.5rem; /* Title ke samne align */
  }

  /* Body Content */
  #pricing .faq-item.open .faq-a {
    max-height: 1000px; /* Allow long lists */
    padding: 0 1.4rem 2rem;
  }

  /* List & Button Fix */
  #pricing .svc-bullets {
    margin-bottom: 2rem;
  }

  #pricing .svc-cta-wrap {
    margin-top: 0 !important; /* Negative margin remove */
    justify-content: flex-start !important;
  }

  #pricing .svc-link {
    font-size: 0.85rem;
  }
  .intro-on{
      grid-template-columns:1fr;
      gap:1rem;
      margin-top: 0rem;
  }
  .foot-logo-display{
      font-size: clamp(8rem, 16vw, 18vw) !important;
  }
  .foot-socials{
      gap: 1rem !important;
  }
  .foot-logo-wrap{
      padding: 0 0 2rem 0 !important;
  }
  .section-title-privacy{
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 480px) {
    body {
    cursor: none !important;
    }    
    div#cur {
    display: none !important;
}
  #pricing .faq-left {
    padding: 3rem 1.4rem;
  }
  
  #pricing .faq-left-body {
    font-size: 0.95rem;
  }
}

/* ═══════════════════════════════
   CTA — "Let's work together"
   Namma uses display font huge + "say hello" small link
═══════════════════════════════ */
.cta-section {
  border-top: 1px solid var(--line);
  padding: 8rem 2.2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
}
.cta-heading {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 12vw);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.01em;
}
.cta-right { display: flex; flex-direction: column; gap: 2rem; }
.cta-body {
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  max-width: 360px;
}
.say-hello {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  transition: gap .3s;
  cursor: none;
}
.say-hello:hover { gap: 1rem; }
.say-hello::after { content: '→'; font-family: var(--body); }

/* ═══════════════════════════════
   FOOTER — Namma layout exactly
═══════════════════════════════ */
footer {
  border-top: 1px solid var(--line);
  padding: 3rem 2.2rem 6rem; /* extra bottom for fixed nav-bottom */
}
.foot-top {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}
.foot-col-title {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.2rem;
  display: block;
}
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.foot-links a {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .25s;
  cursor: none;
}
.foot-links a:hover { color: var(--fg); }
.foot-tagline {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.foot-email {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .25s;
  cursor: none;
}
.foot-email:hover { color: var(--fg); }

/* Namma's stretched NAMMA logo in footer */
.foot-logo-wrap {
  padding-top: 2rem;
}
.foot-logo-display {
  font-family: var(--display);
  font-size: clamp(6rem, 16vw, 18vw);
  text-transform: uppercase; line-height: 0.85; letter-spacing: 0.01em;
  color: var(--fg); user-select: none;
  display: block; text-align: center;
  opacity: 0.08;
}

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.foot-copy {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}
.foot-socials {display: flex;gap: 1.8rem;position : relative;}
.foot-socials a {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color .25s;
  cursor: none;
}
.foot-socials a:hover { color: var(--fg); }

/* ═══════════════════════════════
   CONTACT PANEL
═══════════════════════════════ */
.panel-bg {
  position: fixed; inset: 0; z-index: 700;
  background: rgba(17,17,17,0.5);
  opacity: 0; pointer-events: none; transition: opacity .5s;
}
.panel-bg.open { opacity: 1; pointer-events: all; }
.contact-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 800;
  width: min(480px,95vw); background: var(--bg);
  border-left: 1px solid var(--line); padding: 2.5rem;
  overflow-y: auto; transform: translateX(100%);
  transition: transform .65s var(--ease);
}
.panel-bg.open .contact-panel { transform: translateX(0); }

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0rem;
}
.panel-top-label {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid);
}
.panel-x {
  background: none; border: 1px solid var(--line); border-radius: 50%;
  width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.9rem; color: var(--mid);
  cursor: none; transition: background .3s, color .3s, border-color .3s;
}
.panel-x:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.panel-heading {
  font-family: var(--display);
  font-size: 3rem; text-transform: uppercase;
  line-height: 0.9; letter-spacing: 0.01em; margin-bottom: 2.5rem;
}

.form-row { margin-bottom: 1.5rem; }
.form-label {
  font-family: var(--mono); font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid);
  display: block; margin-bottom: 0.5rem;
}
.form-input {
  width: 100%; background: none; border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0; font-family: var(--body); font-size: 0.9rem;
  color: var(--fg); outline: none; transition: border-color .3s;
}
.form-input:focus { border-color: var(--fg); }
.form-input::placeholder { color: var(--dim); }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.chip {
  font-family: var(--mono); font-size: 0.58rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 0.4rem 0.9rem; cursor: none; background: none; color: var(--mid);
  transition: all .25s;
}
.chip.on { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.form-submit {
  width: 100%; background: var(--fg); color: var(--bg);
  border: none; border-radius: 100px; padding: 1rem;
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: none; margin-top: 1rem; transition: opacity .3s;
}
.form-submit:hover { opacity: 0.7; }

/* ═══════════════════════════════
   GRAIN OVERLAY — Namma has film grain
═══════════════════════════════ */
#grain {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: grainShift 0.12s steps(1) infinite;
}
[data-theme="dark"] #grain { opacity: 0.055; }
@keyframes grainShift {
  0%  { transform: translate(0,0) scale(1.08); }
  20% { transform: translate(-4px, 2px) scale(1.08); }
  40% { transform: translate(3px, -3px) scale(1.08); }
  60% { transform: translate(-2px, 4px) scale(1.08); }
  80% { transform: translate(4px, -1px) scale(1.08); }
  100%{ transform: translate(-1px, 3px) scale(1.08); }
}

/* ═══════════════════════════════
   AMBIENT MOUSE ORB
═══════════════════════════════ */
#orb {
  position: fixed; z-index: 1; pointer-events: none;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,255,0.07) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: opacity .5s;
  opacity: 0;
}
body:hover #orb { opacity: 1; }

/* ═══════════════════════════════
   CURSOR TRAIL DOTS
═══════════════════════════════ */
.trail-dot {
  position: fixed; z-index: 9988; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); opacity: 0;
  transform: translate(-50%,-50%);
}

/* ═══════════════════════════════
   AVAILABILITY PULSE — live indicator
═══════════════════════════════ */
.avail-bar {
  padding: 2rem 2.2rem;
  background: var(--fg); color: var(--bg);
  display: flex; align-items: center; gap: 0.8rem;
  overflow: hidden;
}
.avail-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.avail-text {
  font-family: var(--mono); font-size: 1rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bg);
  white-space: nowrap;
}
.avail-marquee { overflow: hidden; flex: 1; }
.avail-inner {
  display: inline-flex; gap: 4rem; white-space: nowrap;
  animation: avScroll 22s linear infinite;
}
@keyframes avScroll { to { transform: translateX(-50%); } }

/* ═══════════════════════════════
   HERO MOUSE PARALLAX LAYER
═══════════════════════════════ */
.hero-parallax { will-change: transform; }

/* ═══════════════════════════════
   STAGGERED LINE REVEAL — manifesto
═══════════════════════════════ */
.intro-text .split-line {
  display: block; overflow: hidden;
}
.intro-text .split-inner {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease-out);
}
.intro-text.revealed .split-inner { transform: translateY(0); }
.intro-text .split-line:nth-child(1) .split-inner { transition-delay: 0s; }
.intro-text .split-line:nth-child(2) .split-inner { transition-delay: 0.09s; }
.intro-text .split-line:nth-child(3) .split-inner { transition-delay: 0.18s; }
.intro-text .split-line:nth-child(4) .split-inner { transition-delay: 0.27s; }
.intro-text .split-line:nth-child(5) .split-inner { transition-delay: 0.36s; }

/* ═══════════════════════════════
   SERVICE ROW — sweeping line
═══════════════════════════════ */
.svc-header { position: relative; }
.svc-header::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0%; background: var(--fg);
  transition: width 0.5s var(--ease-out);
}
.svc-header:hover::after { width: 100%; }

/* ═══════════════════════════════
   WORK ROW — left accent bar
═══════════════════════════════ */
.work-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0px; background: var(--blue);
  transition: width 0.35s var(--ease-out);
}
.work-row:hover::before { width: 3px; }

/* ═══════════════════════════════
   STAT CELL — count line
═══════════════════════════════ */
.stat-cell::after {
  content: ''; position: absolute; bottom: 0; left: 2.2rem; right: 2.2rem;
  height: 1px; background: var(--fg); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.stat-cell:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════
   TYPING CURSOR IN HERO DESC
═══════════════════════════════ */
.type-cursor {
  display: inline-block; width: 2px; height: 1em;
  background: var(--fg); margin-left: 2px; vertical-align: text-bottom;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ═══════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════ */
#progress {
  position: fixed; top: 0; left: 0; z-index: 9997;
  height: 2px; width: 0%; background: var(--blue);
  transition: width 0.05s linear;
}

/* ═══════════════════════════════
   SECTION ENTRANCE — clip path wipe
═══════════════════════════════ */
.wipe-in {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ease-out);
}
.wipe-in.on { clip-path: inset(0 0% 0 0); }

/* ═══════════════════════════════
   TEST CARD — quote mark animate
═══════════════════════════════ */
.tc-card-wrap { position: relative; overflow: hidden; }
.tc-quote-mark {
  position: absolute; top: 1rem; left: 1.5rem;
  font-family: var(--display); font-size: 6rem; line-height: 1;
  color: var(--fg); opacity: 0.04; user-select: none;
  transition: opacity .4s, transform .4s;
}
.test-card:hover .tc-quote-mark { opacity: 0.09; transform: scale(1.08); }

/* ═══════════════════════════════
   NAV CTA — shimmer
═══════════════════════════════ */
.nav-cta { position: relative; overflow: hidden; }
.nav-cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%{left:-100%} 100%{left:200%} }

/* ═══════════════════════════════
   FOOTER LOGO — fade in on scroll
═══════════════════════════════ */
.foot-logo-display {
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
  transform: translateY(20px);
}
.foot-logo-display.on { transform: translateY(0); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 600;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu overlay ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 550;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.2rem;
  gap: 0;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(2.8rem, 12vw, 5rem);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  width: 100%;
  padding: 0.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  transition: opacity 0.3s;
}
.mobile-menu a:hover { opacity: 0.5; }
.mobile-menu a::after {
  content: '↗';
  font-family: var(--body);
  font-size: 1rem;
  color: var(--mid);
}
.mobile-menu-cta {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.65rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: var(--fg);
  padding: 0.8rem 1.8rem !important;
  border-radius: 100px;
  border-bottom: none !important;
  width: auto !important;
  display: inline-flex !important;
}
.mobile-menu-cta::after { display: none !important; }

.nav-hamburger.open span:nth-child(1) { 
  transform: translateY(6.5px) rotate(45deg); 
}
.nav-hamburger.open span:nth-child(2) { 
  opacity: 0; 
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) { 
  transform: translateY(-6.5px) rotate(-45deg); 
}

@media(max-width: 900px) {
  body {
    cursor: none !important;
    }    
    div#cur {
    display: none !important;
}
  /* NAV */
  .nav-top { padding: 1rem 1.4rem; }
  .nav-top .theme-toggle,
  .nav-top .nav-mid,
  .nav-top .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* HERO */
  .hero {padding: 8rem 1.4rem 2rem; min-height: 80vh;}
  .hero-desc { font-size: 1.1rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  /* MARQUEE */
  .marquee-item { font-size: 0.9rem; }

  /* INTRO */
  .intro-section { padding: 1rem 1.4rem; }
  
  .intro-text .split-inner{padding: 20px 0;line-height: 0px;}

  /* SECTION HEADER */
  .section-header { padding: 1.8rem 1.4rem; flex-direction: column; gap: 0.5rem; }
  .section-mono { font-size: 0.75rem; }
  
  #testimonials .section-header{padding: 2.5rem 1.4rem !important;}

  /* SERVICES */
  .svc-header { padding: 1.2rem 1.4rem; gap: 1rem; }
  .svc-tag { display: none; }
  .svc-body-inner { grid-template-columns: 1fr; padding: 1.5rem 1.4rem; }

  /* STATS */
  .stats-section { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 2rem 1.4rem; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--line); }
  .stat-cell:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }

  /* WORK */
  .work-list { border-top: none; }
  .work-row { grid-template-columns: 2rem 1fr; padding: 1.2rem 1.4rem; gap: 1rem; }
  .wr-genre, .wr-year { display: none; }

  /* PROCESS */
  .process-track { cursor: default; }
  .proc-step { width: 280px; padding: 2rem 1.4rem; }

  /* TESTIMONIALS */
  .test-grid { grid-template-columns: 1fr; }
  .test-card { border-right: none; border-bottom: 1px solid var(--line); padding: 2rem 1.4rem; }
  .test-card:last-child { border-bottom: none; }

  /* FAQ / PRICING */
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-left { position: static; border-right: none; border-bottom: 1px solid var(--line); padding: 2rem 1.4rem; }
  .faq-q { padding: 1.2rem 1.4rem; font-size: 0.85rem; }
  .faq-a { padding: 0 1.4rem; }
  .faq-item.open .faq-a { padding: 0 1.4rem 1.2rem; }

  /* CTA */
  .cta-section { grid-template-columns: 1fr; padding: 4rem 1.4rem; gap: 2rem; }

  /* FOOTER */
  .foot-top { grid-template-columns: 1fr 1fr; padding-bottom: 0rem; gap: 1.5rem; }
  footer { padding: 0rem 2.2rem 6rem; }

  /* NAV BOTTOM */
  .cities { gap: 1rem; }
  .nav-bottom { padding: 0.7rem 1.4rem; }
  .nav-bottom .tagline-text { display: none; }

  /* COOKIE */
  .cookie-buttons { margin-right: 0; }
  .cookie-container { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

@media(max-width: 480px) {
    body {
    cursor: none !important;
    }    
    div#cur {
    display: none !important;
}
  .hero-giant {font-size: clamp(4rem, 14vw, 5rem);}
  .intro-text {font-size: clamp(2rem, 4vw, 3rem);}
  .foot-top { grid-template-columns: 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .proc-step { width: 85vw; }
  .city-pair:nth-child(3),
  .city-pair:nth-child(4) { display: none; }
}

.cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    display: none; 
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-container p {
    margin: 0;
    font-size: 14px;
}

.cookie-container a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-right: 130px;
}

.btn {
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

.accept {
    border-radius: 20px;
    background: #000000;
    color: white;
    padding: 10px 30px;
}
.decline {
    border-radius: 20px;
    background: #000000;
    color: white;
    padding: 10px 30px;
}

.btn:hover { opacity: 0.8; }


/* ═══════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════ */

#testimonials {
  border-top: 1px solid var(--line);
}

#testimonials .section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2.5rem 2.2rem;
  border-top: none;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.test-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

/* Last column — no right border */
.test-card:nth-child(3n) {
  border-right: none;
}

/* Last row — no bottom border */
.test-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.test-card:hover {
  background: rgba(17, 17, 17, 0.03);
}
[data-theme="dark"] .test-card:hover {
  background: rgba(228, 228, 228, 0.03);
}

/* Decorative quote mark */
.tc-quote-mark {
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--fg);
  opacity: 0.08;
  user-select: none;
  pointer-events: none;
  margin-bottom: 0.8rem;
  display: block;
  transition: opacity 0.4s;
}
.test-card:hover .tc-quote-mark {
  opacity: 0.15;
}

/* Stars */
.tc-stars {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #c9a84c;
  margin-bottom: 1.2rem;
  display: block;
}

/* Quote text */
.tc-quote {
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 2rem;
  font-style: italic;
  flex: 1;
}

/* Author byline — pinned to bottom */
.tc-byline {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin-top: auto;
}

.tc-name {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.tc-loc {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ═══════════════════════════════
   TESTIMONIALS — RESPONSIVE
═══════════════════════════════ */

@media (max-width: 900px) {
    body {
    cursor: none !important;
    }    
    div#cur {
    display: none !important;
}
  .test-grid {
    grid-template-columns: 1fr;
  }

  /* Reset all nth-child border rules for mobile */
  .test-card,
  .test-card:nth-child(3n),
  .test-card:nth-last-child(-n+3) {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: unset;
    padding: 2.5rem 1.4rem;
  }

  .test-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
    body {
    cursor: none !important;
    }    
    div#cur {
    display: none !important;
}
  .test-card {
    padding: 2rem 1.4rem;
  }
  .tc-quote {
    font-size: 0.88rem;
  }
  .tc-quote-mark {
    font-size: 3.5rem;
  }
}

a.test-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}