/* ================================================================
   THE FOURTH WALL — FINAL REFINEMENT OVERRIDES
   Art-directed improvements: hero, team hover, footer, language,
   contact panel, mobile responsiveness.
   ================================================================ */

/* ————— HERO: Larger editorial image, no heavy shadow ————— */
.hero-split {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-split__container {
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero-split__frame {
  height: clamp(500px, 70vh, 700px);
  border-radius: var(--radius-lg);
  box-shadow: none;
  border: none;
  background: transparent;
}

.hero-split__frame img {
  filter: saturate(0.72) contrast(0.96) brightness(0.97);
  transition: none; /* remove scale on scroll for calm feel */
}

/* Remove decorative elements from hero */
.hero-split__sticker,
.hero-split__badge,
.hero-split__meta {
  display: none;
}

/* Subtle bottom transition into next section */
.hero-split__transition {
  display: block;
  height: 72px;
  background: linear-gradient(to bottom, transparent, #E5DDD0);
  pointer-events: none;
  position: relative;
  z-index: 1;
}

/* ————— TEAM: Per-person inline image preview ————— */

/* Hide old shared fixed-position preview entirely */
#teamPreview,
.team-typo__preview {
  display: none !important;
}

/* Per-row preview inside each item */
.team-typo__item {
  position: relative;
  overflow: visible;
}

.team-typo__inline-preview {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.94) translateX(10px);
  width: 160px;
  height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
  z-index: 20;
  box-shadow: 0 10px 28px -6px rgba(14, 56, 50, 0.16);
}

.team-typo__item:hover .team-typo__inline-preview,
.team-typo__item.active .team-typo__inline-preview {
  opacity: 1;
  transform: translateY(-50%) scale(1) translateX(0);
}

.team-typo__inline-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.04);
}

/* Mobile image reveal — stacked below the row */
.team-typo__mobile-img {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 350ms var(--ease-smooth), opacity 350ms var(--ease-smooth), padding 350ms var(--ease-smooth);
  padding: 0;
}

.team-typo__item.active .team-typo__mobile-img {
  max-height: 240px;
  opacity: 1;
  padding-bottom: 0.75rem;
}

.team-typo__mobile-img img {
  width: auto;
  max-width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  filter: saturate(0.62) contrast(1.04);
  display: block;
}

@media (min-width: 769px) {
  .team-typo__mobile-img {
    display: none;
  }
}

@media (max-width: 768px) {
  .team-typo__inline-preview {
    display: none;
  }
}

/* ————— FOOTER: 4-column clean structure ————— */
.mag-footer__brand-title {
  font-family: var(--font-sans) !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  color: var(--color-primary) !important;
  margin-bottom: 0.6rem !important;
}

/* Override existing 3-col to new 4-col */
.mag-footer__grid {
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr !important;
  gap: 2.5rem !important;
}

/* Footer column headings */
.mag-footer__grid h4 {
  font-family: var(--font-sans) !important;
  font-size: 0.66rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  color: var(--color-text-muted) !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

/* Footer links */
.mag-footer__grid a {
  font-size: 0.88rem;
  color: var(--color-text-light);
  padding: 0.2rem 0;
}

/* Social icons row */
.mag-footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
  line-height: 1;
}

.footer-social-link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Footer bar: copyright + legal + language */
.mag-footer__bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  flex-direction: row !important;
}

.mag-footer__legal-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mag-footer__legal-row a {
  display: inline !important;
  font-size: 0.78rem !important;
  color: var(--color-text-muted) !important;
  padding: 0 !important;
  text-decoration: none;
  transition: color var(--duration-fast);
}

.mag-footer__legal-row a:hover {
  color: var(--color-primary) !important;
}

.mag-footer__legal-row span {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

/* ————— LANGUAGE SELECTOR ————— */
.lang-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-selector__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.3em 0.75em;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color var(--duration-fast), color var(--duration-fast);
  white-space: nowrap;
}

.lang-selector__btn:hover,
.lang-selector__btn[aria-expanded="true"] {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.lang-selector__chevron {
  transition: transform var(--duration-fast);
  flex-shrink: 0;
}

.lang-selector__btn[aria-expanded="true"] .lang-selector__chevron {
  transform: rotate(180deg);
}

.lang-selector__dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--duration-fast), transform var(--duration-fast), visibility var(--duration-fast);
  z-index: 500;
}

.lang-selector__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-selector__dropdown li {
  padding: 0.5em 1em;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--color-text-light);
  cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.lang-selector__dropdown li:hover,
.lang-selector__dropdown li[aria-selected="true"] {
  background: rgba(14, 56, 50, 0.05);
  color: var(--color-primary);
}

.lang-selector__dropdown li[aria-selected="true"] {
  font-weight: 600;
}

/* Dropdown position when placed in header navigation */
.mag-nav .lang-selector__dropdown {
  top: calc(100% + 8px);
  bottom: auto;
}

/* ————— HIDE GOOGLE TRANSLATE EMBED BAR & POPUPS ————— */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-text-highlight {
  display: none !important;
}

body {
  top: 0px !important;
}

#google_translate_element,
.goog-te-gadget {
  display: none !important;
}

/* ————— CONTACT: Editorial left panel ————— */
.contact-editorial-intro {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-top: 0.8rem;
  margin-bottom: 2.5rem;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Larger, more editorial info values */
.contact-info-block__value {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem) !important;
}

/* ————— WHAT WE DO: Inline Editorial Deliverables List ————— */
.what-we-do-item__desc,
.what-we-do-item__sub,
.what-we-do-item__deliverables {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* ————— PROCESS: Stronger intro statement ————— */
.process-statement-quote {
  font-style: normal;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.process-statement-sub {
  display: none; /* replaced by concise statement only */
}

/* ————— ABOUT: Reduce spacing before beliefs section ————— */
.beliefs-section-tight {
  padding-top: 1.5rem !important;
}

/* ————— GLOBAL: Hero desc slightly more refined ————— */
.hero-split__desc {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  opacity: 0.8;
  max-width: 520px;
}

/* ————— RESPONSIVE REFINEMENTS ————— */
@media (max-width: 1200px) {
  .team-typo__inline-preview {
    width: 130px;
    height: 170px;
  }
}

@media (max-width: 1024px) {
  .mag-footer__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 991px) {
  .hero-split__frame {
    height: clamp(300px, 52vw, 460px);
  }

  .hero-split__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Footer */
  .mag-footer__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.8rem !important;
  }

  .mag-footer__bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
  }

  /* Language selector — open upward, left-aligned */
  .lang-selector__dropdown {
    right: auto;
    left: 0;
  }

  /* Hero */
  .hero-split__title {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }

  .hero-split__actions {
    margin-bottom: 0;
  }

  /* Contact form rows */
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mag-footer__grid {
    grid-template-columns: 1fr !important;
  }

  .hero-split__title {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .hero-split__frame {
    height: clamp(240px, 70vw, 360px);
  }

  /* Ensure no horizontal overflow */
  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
  }
}

/* ================================================================
   HARSHALUCKNOWI CASE STUDY PAGE STYLES (MATCHING USER REFERENCE)
   Harmonious blend of Fourth Wall Teal & Beige + Client Soft Pastel Pink & Beige
   ================================================================ */

:root {
  --harsha-pink-soft: #FAECEF;
  --harsha-pink-accent: #E8B4BD;
  --harsha-pink-deep: #C87D8A;
  --harsha-beige: #F9F5EE;
  --harsha-tape: rgba(230, 218, 198, 0.7);
}

.harsha-page {
  background: var(--bg-primary, #E3D3C4) url('../assets/images/beige_paper_texture.jpg') repeat;
  background-size: 1024px auto;
  color: #1E2827;
  overflow-x: hidden;
}

.harsha-page .reveal,
.harsha-page .stagger > *,
.harsha-page .img-reveal {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  visibility: visible !important;
}

/* Back Link */
.harsha-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: transform var(--duration-fast), color var(--duration-fast);
}

.harsha-back-link:hover {
  transform: translateX(-4px);
  color: var(--harsha-pink-deep);
}

/* Hero Section */
.harsha-hero {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.harsha-hero .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.harsha-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.harsha-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.08;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.harsha-hero__title em,
.harsha-hero__title span.italic {
  font-family: 'Instrument Serif', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.harsha-hero__accent-wrap {
  margin-top: -6.8rem;
  margin-left: auto;
  margin-right: -0.5rem;
  width: clamp(140px, 14vw, 180px);
  display: block;
  position: relative;
  z-index: 4;
}

@media (max-width: 768px) {
  .harsha-hero__accent-wrap {
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 700px) {
  /* The case-study hero was still retaining its desktop two-column split,
     which left the work image too small on a phone. */
  .harsha-hero {
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
  }

  .harsha-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .harsha-hero__title {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .harsha-hero__visual,
  .harsha-hero__main-img {
    width: 100%;
  }
}

.harsha-hero__accent-img {
  width: 100%;
  display: block;
}

/* Taped Paper Card */
.harsha-paper-card {
  position: relative;
  background: #FAF7F2;
  border: 1px solid rgba(14, 56, 50, 0.15);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 14px 40px -8px rgba(14, 56, 50, 0.12), 0 2px 8px rgba(0,0,0,0.04);
  max-width: 440px;
  margin-top: 1rem;
}

/* Masking Tape at Top */
.harsha-tape-top {
  position: absolute;
  top: -14px;
  left: 40px;
  width: 100px;
  height: 26px;
  background: rgba(228, 214, 190, 0.85);
  transform: rotate(-3deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  border: 1px solid rgba(186, 148, 72, 0.2);
  z-index: 2;
}

.harsha-paper-card__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.harsha-paper-card__brand {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.harsha-paper-card__category {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--harsha-pink-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(14, 56, 50, 0.18);
}

.harsha-paper-card__roles-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.harsha-paper-card__roles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.harsha-paper-card__roles-list li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Cute Doodle Stamp Badge */
.harsha-stamp-badge {
  position: absolute;
  right: -25px;
  bottom: -20px;
  width: 105px;
  height: 105px;
  border: 1.5px dashed var(--color-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 0.88rem;
  line-height: 1.15;
  color: var(--color-primary);
  transform: rotate(-10deg);
  background: var(--harsha-pink-soft);
  box-shadow: 0 6px 16px rgba(14, 56, 50, 0.1);
  z-index: 5;
  pointer-events: none;
}

/* Hero Showcase Right */
.harsha-hero__visual {
  position: relative;
}

.harsha-hero__main-img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
}

.harsha-hero__polaroid {
  position: absolute;
  bottom: -25px;
  right: -20px;
  width: 160px;
  background: #FFF;
  padding: 8px 8px 24px 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transform: rotate(6deg);
  border-radius: 2px;
}

.harsha-hero__polaroid img {
  width: 100%;
  border-radius: 2px;
}

/* Section: Results Banner (Teal Background) */
.harsha-metrics-banner {
  background-color: var(--color-primary);
  color: #EFE9DF;
  padding: clamp(2.2rem, 3.8vw, 3.2rem) 0;
  position: relative;
}

.harsha-metrics-banner .mag-container {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 4vw, 4.5rem);
}

.harsha-metrics__header {
  margin-bottom: 0;
  flex-shrink: 0;
  max-width: 240px;
}

.harsha-metrics__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: #EFE9DF;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.25;
}

.harsha-metrics__title svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--color-accent-light, #C5A880);
}

.harsha-metrics__grid {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  flex: 1;
}

.harsha-metric-item {
  border-right: 1px solid rgba(239, 233, 223, 0.15);
  padding-right: clamp(1.5rem, 3vw, 3rem);
  flex: 1;
}

.harsha-metric-item:last-child {
  border-right: none;
  padding-right: 0;
}

.harsha-metric-item__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.6rem;
  color: var(--color-accent-light, #C5A880);
}

.harsha-metric-item__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(239, 233, 223, 0.6);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.harsha-metric-item__value {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #FFF;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.harsha-metric-item__sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(239, 233, 223, 0.65);
  line-height: 1.35;
}

@media (max-width: 768px) {
  .harsha-metrics-banner .mag-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .harsha-metrics__header {
    max-width: none;
  }

  .harsha-metrics__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}


.harsha-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 2rem;
}

/* Step Timeline */
.harsha-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.harsha-timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(14, 56, 50, 0.12);
  z-index: 1;
}

.harsha-timeline-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.1rem;
  position: relative;
  z-index: 2;
}

.harsha-timeline-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(14, 56, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-light, #C5A880);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.harsha-timeline-step__icon svg {
  width: 20px;
  height: 20px;
}

.harsha-timeline-step__num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent-light, #C5A880);
  text-transform: uppercase;
}

.harsha-timeline-step__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.harsha-timeline-step__desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

/* 2x2 Showcase Gallery (legacy) */
.harsha-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.harsha-gallery-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.harsha-gallery-card__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(14, 56, 50, 0.1);
  background: #E8E2D7;
  aspect-ratio: 4/5;
  position: relative;
}

.harsha-gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.harsha-gallery-card:hover .harsha-gallery-card__image img {
  transform: scale(1.04);
}

.harsha-gallery-card__caption {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ─────────────────────────────────────────────────────────
   A CLOSER LOOK — Bento Gallery Section
───────────────────────────────────────────────────────── */

/* Header: title + subtitle above, filter tabs below */
.closer-look-header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.closer-look-header__text {
  flex-shrink: 0;
}

.closer-look-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.closer-look-subtitle {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--color-text-light);
  font-weight: 400;
  line-height: 1.5;
}

/* Filter tabs */
.closer-look-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.closer-look-filter {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

.closer-look-filter:hover {
  background: rgba(14, 56, 50, 0.06);
}

.closer-look-filter.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Bento Grid */
.closer-look-bento {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 1.25rem;
  min-height: 480px;
}

/* Cards */
.closer-look-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.closer-look-card__image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #E8E2D7;
}

.closer-look-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}

.closer-look-card:hover .closer-look-card__image img {
  transform: scale(1.03);
}

.closer-look-card__caption {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* Large card — fills full height of left column */
.closer-look-card--large {
  height: 100%;
}

.closer-look-card--large .closer-look-card__image {
  flex: 1;
  height: 100%;
}

/* Right column — image aligned to top */
.closer-look-right-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.closer-look-card--small .closer-look-card__image {
  aspect-ratio: 4/3;
}

/* Section: Community Growth & Website Preview */
.harsha-results-showcase {
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}

.harsha-results-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.harsha-feature-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2.2rem;
  border: 1px solid rgba(14, 56, 50, 0.08);
  box-shadow: 0 12px 36px -6px rgba(14, 56, 50, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.harsha-feature-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

/* Chart visualization */
.harsha-chart-box {
  background: #FFF;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px dashed rgba(14, 56, 50, 0.15);
  position: relative;
  margin-bottom: 1rem;
}

.harsha-chart-svg {
  width: 100%;
  height: 180px;
  overflow: visible;
}

/* Sticky Pink Note */
.harsha-sticky-pink {
  position: absolute;
  bottom: 20px;
  right: 25px;
  background: var(--harsha-pink-soft);
  border: 1px solid var(--harsha-pink-accent);
  padding: 1rem 1.2rem;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(200, 125, 138, 0.15);
  transform: rotate(3deg);
  max-width: 200px;
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.35;
  z-index: 3;
}

.harsha-sticky-pink::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30%;
  width: 50px;
  height: 18px;
  background: var(--harsha-tape);
  transform: rotate(-2deg);
}

/* Sticky Beige Note */
.harsha-sticky-beige {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: var(--bg-card);
  border: 1px solid rgba(14, 56, 50, 0.12);
  padding: 1.1rem 1.3rem;
  border-radius: 2px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: rotate(3deg);
  max-width: 230px;
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--color-primary);
  line-height: 1.4;
  z-index: 3;
}

.harsha-sticky-beige::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 25%;
  width: 60px;
  height: 20px;
  background: var(--harsha-tape);
  transform: rotate(-2deg);
}

/* Laptop Mockup Wrapper */
.harsha-laptop-wrapper {
  position: relative;
  margin-top: 1rem;
}

.harsha-laptop-screen {
  background: #000;
  border-radius: 10px 10px 0 0;
  padding: 8px 8px 0 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.harsha-laptop-screen img {
  width: 100%;
  display: block;
  border-radius: 4px 4px 0 0;
}

.harsha-laptop-base {
  height: 14px;
  background: linear-gradient(to bottom, #d6d6d6, #aaaaaa);
  border-radius: 0 0 8px 8px;
  position: relative;
}

.harsha-laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 42%;
  width: 16%;
  height: 4px;
  background: #888;
  border-radius: 0 0 4px 4px;
}

/* Call to Action Banner */
.harsha-cta-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid rgba(14, 56, 50, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(14, 56, 50, 0.04);
}

.harsha-cta-card__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.harsha-cta-card__sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 460px;
}

.harsha-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-primary);
  color: #FFF;
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-fast);
  white-space: nowrap;
}

.harsha-cta-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14, 56, 50, 0.2);
}

/* ————— ABOUT PAGE: WHY THE FOURTH WALL & MISSION REFINEMENTS ————— */
.why-body-editorial {
  max-width: 580px;
  margin-bottom: 2rem;
}

.why-lead-paragraph {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.why-mission-block {
  border-left: 2px solid var(--color-accent-light);
  padding-left: 1.5rem;
  margin-top: 2rem;
  max-width: 580px;
}

.why-mission-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-accent-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.why-mission-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #FFF;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.why-mission-sub {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(239, 233, 223, 0.78);
}

/* Section: What We Did & A Closer Look (Side by Side) */
.harsha-work-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.harsha-work__grid {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

@media (max-width: 1024px) {
  .harsha-work__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.harsha-work__timeline-col {
  position: relative;
  z-index: 2;
}

.harsha-work__cluster-col {
  position: relative;
  width: 100%;
}

/* ————— A CLOSER LOOK: SCATTERED FLOATING CLUSTER SHOWCASE (SIDE BY SIDE) ————— */
.closer-look-cluster-wrapper {
  position: relative;
  min-height: clamp(580px, 52vw, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Content & Filters */
.closer-look-cluster__center {
  text-align: center;
  max-width: 380px;
  position: relative;
  z-index: 10;
  padding: 1rem;
}

.closer-look-cluster__center .closer-look-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.closer-look-cluster__center .closer-look-subtitle {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.45;
  margin-bottom: 1.1rem;
}

.closer-look-cluster__center .closer-look-filters {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* 7 Floating Constellation Cards */
.closer-look-cluster-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.closer-look-cluster-grid .closer-look-item {
  position: absolute;
  pointer-events: auto;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closer-look-cluster-grid .closer-look-item__image {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(14, 56, 50, 0.12);
  border: 1px solid rgba(14, 56, 50, 0.08);
  background: var(--bg-card);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.closer-look-cluster-grid .closer-look-item:hover .closer-look-item__image {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 18px 38px rgba(14, 56, 50, 0.2);
}

.closer-look-cluster-grid .closer-look-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.closer-look-cluster-grid .closer-look-item__title {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-top: 0.35rem;
  white-space: nowrap;
}

/* Specific Positions Matching Reference Composition */
/* 1. Mid-Left: Harsha Logo */
.closer-look-item--pos-1 {
  top: 32%;
  left: 0%;
  width: clamp(120px, 11vw, 155px);
}

/* 2. Top-Left: Instagram Feed */
.closer-look-item--pos-2 {
  top: 2%;
  left: 18%;
  width: clamp(125px, 11.5vw, 160px);
}

/* 3. Top-Center / Right: Website Look */
.closer-look-item--pos-3 {
  top: 0%;
  left: 50%;
  transform: translateX(-15%);
  width: clamp(130px, 12vw, 170px);
}

/* 4. Top-Right: Posters & Exhibition Creatives */
.closer-look-item--pos-4 {
  top: 14%;
  right: 1%;
  width: clamp(135px, 12.5vw, 175px);
}

/* 5. Bottom-Left: Social Media Reels & Posts */
.closer-look-item--pos-5 {
  bottom: 3%;
  left: 14%;
  width: clamp(135px, 12.5vw, 175px);
}

/* 6. Bottom-Center / Right: Mobile Website Screen */
.closer-look-item--pos-6 {
  bottom: 0%;
  left: 55%;
  width: clamp(130px, 12vw, 170px);
}

/* 7. Mid / Far-Right: Brand Book */
.closer-look-item--pos-7 {
  bottom: 20%;
  right: 0%;
  width: clamp(125px, 11.5vw, 160px);
}

/* Category Filter Ghosting on Constellation */
.closer-look-cluster-grid .closer-look-item.hiding,
.closer-look-cluster-grid .closer-look-item.hidden {
  opacity: 0.15;
  filter: grayscale(85%);
  transform: scale(0.93);
  pointer-events: none;
  display: flex !important;
}

/* Responsive: Medium & Small Screens */
@media (max-width: 992px) {
  .closer-look-cluster-wrapper {
    min-height: auto;
    flex-direction: column;
    gap: 2.2rem;
  }

  .closer-look-cluster__center {
    position: relative;
    max-width: none;
    padding: 0;
  }

  .closer-look-cluster-grid {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    width: 100%;
  }

  .closer-look-cluster-grid .closer-look-item {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
  }

  .closer-look-cluster-grid .closer-look-item.hidden {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .closer-look-cluster-grid {
    /* Full-width work cards let the visual detail breathe on a phone. */
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .closer-look-cluster-grid .closer-look-item__image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .closer-look-cluster-grid .closer-look-item__title {
    font-size: 1.15rem;
    margin-top: 0.55rem;
  }
}

.closer-look-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 56, 50, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 280ms var(--ease-out);
  border-radius: 16px;
}

.closer-look-item:hover .closer-look-item__overlay {
  opacity: 1;
}

.closer-look-item__zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transform: scale(0.85);
  transition: transform 280ms var(--ease-out);
}

.closer-look-item:hover .closer-look-item__zoom-icon {
  transform: scale(1);
}

.closer-look-item__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
}

/* ————— MINI CAROUSEL / SLIDER FOR MULTI-POSTERS ————— */
.closer-look-slider {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.closer-look-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.closer-look-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms ease, transform 350ms ease;
  transform: scale(0.97);
  z-index: 1;
}

.closer-look-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.closer-look-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Clean Controls Below the Image */
.closer-look-slider-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.35rem;
}

.closer-look-slider-controls .closer-look-slider-nav {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(14, 56, 50, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(14, 56, 50, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  box-shadow: none;
}

.closer-look-slider-controls .closer-look-slider-nav:hover {
  background: var(--color-primary);
  color: var(--color-accent-light, #C5A880);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.closer-look-slider-controls .closer-look-slider-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.closer-look-slider-controls .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(14, 56, 50, 0.25);
  transition: all 0.2s ease;
}

.closer-look-slider-controls .dot.active {
  background: var(--color-primary);
  transform: scale(1.35);
}

.closer-look-slider-controls .closer-look-slider-count {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  margin-left: 2px;
}

/* ————— LIGHTBOX MODAL ————— */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease-out), visibility 300ms var(--ease-out);
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 27, 24, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-lightbox__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92vw;
  max-width: 1240px;
  max-height: 90vh;
  gap: 1rem;
}

.gallery-lightbox__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 85vh;
}

.gallery-lightbox__frame {
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  background: rgba(0,0,0,0.2);
}

.gallery-lightbox__img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.gallery-lightbox__caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-lightbox__category {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--harsha-pink-accent);
  text-transform: uppercase;
  display: block;
}

.gallery-lightbox__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #FFF;
  margin-top: 0.1rem;
}

.gallery-lightbox__counter {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
}

.gallery-lightbox__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
  z-index: 10;
}

.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.gallery-lightbox__nav {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
  flex-shrink: 0;
}

.gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

/* ————— CONNECTED BRAND STORY SECTION ————— */
.harsha-story-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: transparent;
}

.harsha-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.harsha-story-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.12;
  margin-top: 0.4rem;
}

.harsha-story-title .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--harsha-pink-deep);
}

.harsha-story-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-top: 0.8rem;
  max-width: 540px;
}

.harsha-story-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.harsha-story-pillar {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(14, 56, 50, 0.08);
  box-shadow: 0 4px 16px rgba(14, 56, 50, 0.03);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.harsha-story-pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 56, 50, 0.06);
}

.harsha-story-pillar__num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--harsha-pink-deep);
  margin-top: 0.1rem;
}

.harsha-story-pillar__title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.harsha-story-pillar__desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

.harsha-feature-card--visual {
  padding: 2rem;
}

.harsha-visual-badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--harsha-pink-deep);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ————— HARSHA FULL-WIDTH SPLIT CTA BANNER ————— */
.cta-banner--split {
  background: var(--bg-gradient-dark);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-banner--split::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 10%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 155, 94, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner--split .cta-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.cta-banner--split .cta-banner__content {
  max-width: 720px;
}

.cta-banner--split .cta-banner__tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-accent-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.cta-banner--split .cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: #FFF;
  line-height: 1.12;
  margin-bottom: 0.4rem;
  text-align: left;
}

.cta-banner--split .cta-banner__lead {
  font-family: var(--font-hand);
  font-style: normal;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--color-accent-light);
  margin-bottom: 0;
  display: block;
  text-align: left;
}

.cta-banner--split .cta-banner__desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(239, 233, 223, 0.85);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

.cta-banner--split .cta-banner__action {
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .cta-banner--split .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

/* ————— RESPONSIVE OVERRIDES ————— */
@media (min-width: 768px) and (max-width: 1023px) {
  .closer-look-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem;
  }
}

@media (max-width: 991px) {
  .harsha-work__grid {
    grid-template-columns: 1fr;
  }

  .harsha-story-grid {
    grid-template-columns: 1fr;
  }

  .harsha-cta-card--pink {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .closer-look-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem;
  }

  .closer-look-filters {
    display: flex;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .closer-look-filters::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 600px) {
  .gallery-lightbox__container {
    width: 96vw;
    flex-direction: column;
    justify-content: center;
  }

  .gallery-lightbox__nav {
    display: none !important;
  }

  .gallery-lightbox__close {
    top: -42px;
    right: 10px;
  }

  .gallery-lightbox__caption-bar {
    padding: 0.6rem 0.8rem;
  }

  .gallery-lightbox__title {
    font-size: 1rem;
  }
}

/* Client and studio portal entry on the home page */
.portal-entry { background: var(--color-primary); color: #f7f0e6; padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 8vw, 9rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.portal-entry h2 { color: #f7f0e6; font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 3.2rem); margin: .45rem 0; }
.portal-entry p { max-width: 37rem; margin: 0; color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.6; }
.portal-entry__actions { display: grid; gap: .85rem; min-width: 12rem; text-align: center; }
.portal-entry__admin { color: #f7f0e6; font-size: .7rem; letter-spacing: .12em; font-weight: 700; text-decoration: none; }
@media (max-width: 700px) { .portal-entry { display: grid; } .portal-entry__actions { justify-self: stretch; } }
