/* ============================================================
   RACHANATMAK — Design System v2
   Studio Feixen-inspired: minimal, grid, bold, premium
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700&family=Noto+Sans+Devanagari:wght@700;800;900&display=swap");

:root {
    --summer-sun: #E1B053;
    --oranges: #CD6200;
    --sand: #E3D6AD;
    --sky-blue: #93C3DB;
    --blood-orange: #CD5000;
  --bg: #fff8ef;
  --bg-alt: #f6d3ad;
  --bg-card: #fff2e3;
  --black: #3a2a1d;
  --gray-dark: #6f583e;
  --gray-mid: #a2763f;
  --gray-light: #e7c7a4;
  --accent: #df8246;
  --accent-warm: #f1aaa2;
  --sky: #aecce7;
  --gold: #a76c09;
  --white: #fffdf7;
  --nav-h: 58px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Cormorant Garamond", "Noto Serif Devanagari", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-devanagari: "Noto Sans Devanagari", "Mangal", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

main {
  padding-top: var(--nav-h);
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--blood-orange);
  pointer-events: none;
  transform: translateY(100%);
  will-change: transform;
}

.page-transition-overlay.page-enter {
  animation: pt-enter 0.55s var(--ease-out) forwards;
}

.page-transition-overlay.page-exit {
  animation: pt-exit 0.55s var(--ease-out) forwards;
}

@keyframes pt-enter {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes pt-exit {
  from { transform: translateY(0); }
  to { transform: translateY(-100%); }
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar,
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 36px;
  background: var(--blood-orange);
  border-bottom: 1.5px solid var(--black);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled,
.site-nav.scrolled,
.site-nav.has-shadow {
  background: var(--blood-orange);
  box-shadow: 0 2px 24px rgba(122, 74, 20, 0.1);
}

/* ============================================================
   CLEAN NAVBAR LOGO
   ============================================================ */

.logo,
.footer-logo,
.hero-title {
  color: var(--bg);
  font-family: var(--font-devanagari);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.navbar-brand {
  flex-shrink: 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;

  transform: none !important;
  animation: none !important;
  transition: none !important;
  filter: none !important;
}

.navbar-logo img {
  width: 130px;
  height: auto;
  display: block;
  object-fit: contain;

  transform: none !important;
  animation: none !important;
  transition: none !important;
  filter: none !important;
  box-shadow: none !important;
}

.navbar-right {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-left: 10px;
  text-transform: uppercase;
}

.navbar-links,
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 20px;
}
/* ============================================================
   CONTACT LARGE LOGO
   ============================================================ */

.contact-logo-large {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-left: -52px;
  margin-bottom: 80px;
}

.contact-logo-large img {
  width: min(520px, 90%);
  height: auto;
  display: block;
  object-fit: contain;
}
/* ============================================================
   PREMIUM OVERLAP NAV HOVER
============================================================ */

.navbar-links a,
.nav-links a {

  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 24px;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  overflow: hidden;

  transition:
    color 0.35s ease,
    transform 0.35s ease;

  z-index: 1;
}

/* OVERLAP BLOCK */

.navbar-links a::before,
.nav-links a::before {

  content: "";

  position: absolute;

  inset: 0;

  background: #E1B053;

  transform: scaleY(0);

  transform-origin: bottom;

  transition:
    transform 0.35s cubic-bezier(.4,2,.6,1);

  z-index: -1;
}

/* HOVER EFFECT */

.navbar-links a:hover,
.nav-links a:hover {

  color: var(--blood-orange);

  transform: translateY(-2px);
}

/* SHOW BLOCK */

.navbar-links a:hover::before,
.nav-links a:hover::before {

  transform: scaleY(1);
}

@keyframes nav-link-pop {
  0%   { transform: scale(1) rotate(0); }
  60%  { transform: scale(1.18) rotate(-3deg); }
  100% { transform: scale(1.12) rotate(-2deg); }
}

.navbar-right {
  margin-left: auto;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: none;
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.navbar-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.navbar-mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  right: 0;
  left: 0;
  z-index: 190;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 36px;
  background: var(--blood-orange);
  border-bottom: 1.5px solid var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.navbar-mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


@media (max-width: 768px) {

  .work-section-top {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 20px;
    gap: 16px;
  }

  .section-bg-video {
    position: relative !important;
    inset: auto !important;

    width: 100%;
    height: 250px;

    object-fit: cover;
    transform: none;
  }

  .insight-card {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: none;

    background: #fff;
    color: #111;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .insight-card,
  .insight-card *,
  .insight-card li,
  .insight-card li strong {
    color: #111 !important;}
  }
  .navbar-mobile-drawer a {
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.3s;
}
 

.navbar-mobile-drawer a:hover {
  color: var(--sky-blue) !important;
  text-shadow: 0 2px 16px var(--sky-blue), 0 0 2px #fff;
}

/* ============================================================
   HERO — left panel SAND, right panel warm illustrated canvas
   ============================================================ */

.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  overflow: hidden;
  border-bottom: 1.5px solid var(--black);
}

/* ── UPDATED: soft gradient left panel ── */
.hero-left,
.hero-copy {

  position: relative;

  overflow: hidden;

  background: var(--bg);
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 80px 48px 80px 36px;
  border-right: 1.5px solid var(--black);
}
.hero-logo img{
  width: 700px;
  max-width: 100%;
  display: block;
  transform: translate(-55px, -90px);
}
.hero-bg-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.45;

    z-index: 0;

    pointer-events: none;
}

.hero-eyebrow,
.hero-title,
.hero-desc,
.hero-services,
.hero-cta {

    position: relative;
      position: relative;

  top: -90px;

    z-index: 2;
}
.hero-eyebrow,
.eyebrow {
  color: var(--gray-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title,
.brand-mark {
  display: block;
  color: var(--blood-orange);
  font-family: var(--font-devanagari);
  font-size: clamp(62px, 8vw, 116px);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.95;
  -webkit-text-stroke: 1.8px var(--black);
  text-shadow: 3px 3px 0 var(--accent), 6px 6px 0 var(--sky);
}

.hero-desc,
.hero-text {
  max-width: 420px;
  color: var(--gray-dark);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

/* Service tags — dark outlined on sand */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-services span {
  border: 1px solid rgba(58, 42, 29, 0.3);
  border-radius: 2px;
  color: var(--gray-dark);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 7px 16px;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, background 0.25s, text-shadow 0.25s;
}

.hero-services span:hover {
  background: rgba(147, 195, 219, 0.18);
  border-color: var(--sky-blue);
  color: var(--sky-blue);
  text-shadow: 0 2px 12px var(--sky-blue);
}

/* CTA link — dark on sand, sky-blue hover */
.hero-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-bottom: 1px solid rgba(58, 42, 29, 0.4);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease), border-color 0.25s, color 0.25s, text-shadow 0.25s;
}

.hero-cta a:hover {
  gap: 18px;
  border-color: var(--sky-blue);
  color: var(--sky-blue);
  text-shadow: 0 2px 16px var(--sky-blue), 0 0 2px #fff;
}

.hero-right,
.hero-panel {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 170, 162, 0.32), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(174, 204, 231, 0.36), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #f8d9bb 100%);
}
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 42% 58%;
  border-bottom: 1.5px solid var(--black);
}

.hero-left {
  border-right: 1.5px solid var(--black);
  position: relative;
  z-index: 2;
}

.hero-right {
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wall {
  width: 100%;
  max-width: 1100px;

  height: 100%;
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 6px;

  margin: 0;
}

.hero-video-wall video {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  border-radius: 3px;
}
.hero-video-wall video {
  filter:
    sepia(0.15)
    saturate(0.9)
    brightness(1.02)
    contrast(0.95);
}


/* ============================================================
   SECTION HEADINGS & PAGE HEADS
   ============================================================ */

.section-heading,
.section-title,
.page-title {
  color: var(--black);
  font-family: var(--font-body);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.section-heading {
  padding: 0;
  text-align: left;
}

main > .section-heading {
  padding: 72px 36px 22px;
}

.works-page-intro {
  max-width: 560px;
  padding: 0 36px 42px;
  color: var(--gray-dark);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.section-head,
.page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 64px 36px 52px;
  background: var(--bg);
}

.featured-head {
  padding-top: 54px;
  padding-bottom: 38px;
}

.text-link {
  color: var(--gray-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
}

.text-link:hover {
  color: var(--sky-blue);
  text-shadow: 0 2px 12px var(--sky-blue);
}

/* ============================================================
   WORKS / FILTER BAR
   ============================================================ */

.works-filter-bar,
.filter-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 14px 36px;
  background: var(--bg);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar,
.works-filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  border: 1px solid transparent;
  border-radius: 2px;
  color: #2B2118;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, background 0.2s, text-shadow 0.2s;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: #2B2118;
  background: #fbd569;
  color: #2B2118;
  text-shadow: none;
}

.filter-btn.active,
.filter-btn.is-active {
  background: #fbd569;
  border-color: #2B2118;
  color: #2B2118;
  text-shadow: none;
  box-shadow: none;
}

/* ============================================================
   WORKS GRID
   ============================================================ */

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-light);
  background: var(--bg);
}

body[data-page="Portfolio"] .works-grid {
  display: block;
  border-top: 1px solid var(--gray-light);
  background: var(--bg);
}

.work-category-section {
  grid-column: 1 / -1;
  border-bottom: 1.5px solid var(--black);
  background: var(--bg);
}

.work-category-section.is-hidden {
  display: none;
}

.work-section-top {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 40px;

  padding: 40px 36px;
}
.work-section-top {
  position: relative;
  min-height: 420px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.section-bg-video {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;


  object-fit: cover;

  z-index: 0;
}
 .canvas-paintings .section-bg-video {
    object-position: center 40%;
}
.wardrobes .section-bg-video {
    object-position: center 40%;
}
   
.work-section-top {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  align-items: start;
}

.category-video-wrap {
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  border: 1.5px solid var(--black);
}

.category-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .work-section-top {
    grid-template-columns: 1fr;
  }

  .category-video-wrap {
    min-height: 260px;
  }
}

.work-section-title-block {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 24px;

  align-self: start;

  min-height: auto;

  overflow: visible;
}
/* =========================================================
   WORK SECTION ABSTRACT DOODLES
   ========================================================= */

.work-section-title-block::before {

  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  left: -40px;

  top: 120px;

  opacity: 0.16;

  background:
    radial-gradient(circle at center,
      rgba(205,98,0,0.28) 0%,
      rgba(205,98,0,0.28) 60%,
      transparent 62%);

  border-radius: 44% 56% 60% 40% / 50% 42% 58% 50%;

  filter: blur(2px);

  z-index: 0;
}

.work-section-title-block::after {

  content: "";

  position: absolute;

  width: 180px;

  height: 180px;

  left: 180px;

  bottom: 20px;

  opacity: 0.18;

  background:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 25%,
      rgba(147,195,219,0.8) 25%,
      rgba(147,195,219,0.8) 38%,
      transparent 38%,
      transparent 55%,
      rgba(147,195,219,0.8) 55%,
      rgba(147,195,219,0.8) 68%,
      transparent 68%
    );

  border-radius: 28px;

  transform: rotate(-12deg);

  z-index: 0;
}

/* KEEP TEXT ABOVE DOODLES */

.work-section-title-block > * {

  position: relative;

  z-index: 2;
}

.work-section-title {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.work-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-light);
}

.work-card,
.work-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-card);
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  cursor: pointer;
  transition: opacity 0.35s, transform 0.35s;
}

.work-card:focus-visible,
.work-item:focus-visible {
  outline: 3px solid var(--sky-blue);
  outline-offset: -8px;
}

.work-card:nth-child(4n),
.work-item:nth-child(4n) {
  border-right: none;
}

.work-card img,
.work-media,
.work-media img {
  width: 100%;
  height: 100%;
}

.work-media {
  overflow: hidden;
}

.work-card img,
.work-media img {
  object-fit: cover;
  transition: transform 0.75s var(--ease);
  will-change: transform;
}

.work-card:hover img,
.work-item:hover .work-media img {
  transform: scale(1.07);
}

.work-card-overlay,
.work-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(to top, rgba(58, 42, 29, 0.86), rgba(122, 74, 20, 0.36) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.work-card:hover .work-card-overlay,
.work-item:hover .work-info {
  opacity: 1;
}

.work-card-title,
.work-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.15;
  transform: translateY(10px);
  transition: transform 0.45s var(--ease-out);
}

.work-card:hover .work-card-title,
.work-item:hover .work-title {
  transform: translateY(0);
}

.work-card-cat,
.work-meta {
  color: var(--sky-blue);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-top: 6px;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.45s 0.06s var(--ease-out);
}

.work-card:hover .work-card-cat,
.work-item:hover .work-meta {
  transform: translateY(0);
}

.work-card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(147, 195, 219, 0.25);
  color: white;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
  backdrop-filter: blur(4px);
}

.work-card-arrow:focus-visible {
  outline: 2px solid var(--sky-blue);
  outline-offset: 3px;
}

.work-card:hover .work-card-arrow,
.work-item:hover .work-card-arrow {
  opacity: 1;
  transform: scale(1);
}

.filtered-out {
  opacity: 0.18;
  pointer-events: none;
  transform: scale(0.97);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 58px 36px;
  color: var(--gray-mid);
  background: var(--bg);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox-open {
  overflow: hidden;
}

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}

.work-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.work-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 42, 29, 0.78);
  backdrop-filter: blur(12px);
}

.work-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(96vw, 1180px);
  max-height: 92vh;
  margin: 0;
  padding: 16px;
  background: var(--bg);
  border: 1.5px solid var(--black);
  box-shadow:
    -14px 14px 0 var(--sky),
    0 28px 80px rgba(58, 42, 29, 0.34);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s var(--ease-out);
}

.work-lightbox.open .work-lightbox-panel {
  transform: translateY(0) scale(1);
}

.work-lightbox-image {
  width: 100%;
  max-height: calc(92vh - 104px);
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(246, 211, 173, 0.5), rgba(174, 204, 231, 0.38)),
    var(--white);
}

.work-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  background: var(--accent-warm);
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(58, 42, 29, 0.24);
}

.work-lightbox-close:focus-visible {
  outline: 3px solid var(--sky-blue);
  outline-offset: 3px;
}

.work-lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--black);
  font-size: 14px;
}

.work-lightbox-caption span {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.work-lightbox-caption small {
  color: var(--sky-blue);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================
   REVEAL
   ============================================================ */

.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ABOUT & CONTACT SECTIONS
   ============================================================ */

.about-section,
.about-grid,
.contact-section,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  border-bottom: 1.5px solid var(--black);
}

.about-left,
.about-portrait {
  min-height: 60vh;
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 36px;
  background: var(--bg-alt);
  border-right: 1.5px solid var(--black);
}

.about-left {
  padding: 54px 36px 76px;
  place-items: center;
  background: #e1b053;
}

.about-portrait {
  width: min(100%, 560px);
  min-height: 620px;
  isolation: isolate;
  padding: 42px;
  background: var(--blood-orange);
  border: 1.5px solid var(--black);
  overflow: visible;
}

.about-portrait::before,
.about-portrait::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1.5px solid var(--black);
}

.about-portrait::before {
  top: 34px;
  right: -26px;
  width: 72%;
  height: 54%;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0 2px, transparent 2px 14px),
    var(--sky);
}

.about-portrait::after {
  right: 24px;
  bottom: -28px;
  width: 64%;
  height: 36%;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.36), transparent 22%),
    var(--sky-blue);
}

.about-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-portrait span {
  position: relative;
  z-index: 4;
  max-width: 360px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 300;
  line-height: 0.9;
  text-shadow: 0 2px 18px rgba(58, 42, 29, 0.26);
}

.about-picture-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

.about-artist-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-bg {
  position: absolute;
  inset: 0;

  background-image:
    url("../assets/works/abstract-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  filter: none;

  z-index: 0;
}

.about-image {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  position: relative;

  z-index: 2;

  transform: scale(0.82);

  border-radius: 2px;

  box-shadow: 0 18px 42px rgba(58, 42, 29, 0.18);
}

.about-picture-card {
  position: absolute;
  border: 12px solid var(--white);
  box-shadow: 0 22px 44px rgba(58, 42, 29, 0.22);
}

.picture-card-one {
  top: 88px;
  right: -42px;
  width: 46%;
  aspect-ratio: 0.82;
  background:
    radial-gradient(circle at 50% 28%, #fffdf7 0 9%, transparent 10%),
    linear-gradient(180deg, #f8dfcd 0 34%, #f1aaa2 34% 64%, #aecce7 64%);
  transform: rotate(4deg);
}

.picture-card-two {
  right: 34px;
  bottom: 62px;
  width: 52%;
  aspect-ratio: 1.1;
  background:
    linear-gradient(135deg, rgba(58, 42, 29, 0.08) 25%, transparent 25% 50%, rgba(58, 42, 29, 0.08) 50% 75%, transparent 75%),
    var(--bg);
  background-size: 28px 28px;
  transform: rotate(-3deg);
}

.picture-card-three {
  bottom: 140px;
  left: -24px;
  width: 42%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 28% 36%, #df8246 0 13%, transparent 14%),
    radial-gradient(circle at 68% 64%, #aecce7 0 16%, transparent 17%),
    var(--bg-alt);
  transform: rotate(-7deg);
}

.about-right,
.about-copy,
.contact-left,
.contact-copy,
.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 80px 48px;
  background: var(--bg);
}

.about-intro-card {
  position: relative;
  width: min(100%, 650px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1.5px solid var(--black);
 box-shadow:
  -22px 22px 0 #e1b053,
  22px -22px 0 #e1b053;
}

.about-intro-card::before {
  display: none;
}

.about-eyebrow,
.contact-info-label {
  color: var(--blood-orange);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-title,
.contact-heading,
.large-copy {
  color: var(--black);
  font-family: var(--font-body);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.about-bio,
.body-copy {
  max-width: 520px;
  color: var(--gray-dark);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.about-bio {
  display: grid;
  gap: 16px;
  max-width: 100%;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 8px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
  max-width: 650px;
  transform: translateX(24px);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 16px;
  background: var(--bg-card);
}

.about-stat-num {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
}

.about-stat-label {
  color: var(--gray-mid);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   WORK INSIGHTS SECTION
   ============================================================ */

/* ============================================================
   WORK INSIGHTS SECTION
   ============================================================ */

.work-insights-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 88px;
  border-bottom: 1.5px solid var(--black);
  background: var(--bg);
}

.work-insights-section::before {
  display: none;
}

.work-insights-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 22px 36px 0;
}

/* BASE CARD */

.insight-card {
  position: relative;
  min-height: 0;
  padding: clamp(30px, 3vw, 48px);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  color: #000;
  transform: none;
}

.insight-card::before {
  display: none;
}

/* ALL CARD VARIANTS — share same frosted style */

.insight-card-murals,
.insight-Canvas-Paintings,
.insight-card-texture,
.insight-card-wardrobes {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  color: #000;
  transform: none;
}

/* ALL TEXT BLACK */

.insight-card li,
.insight-card li strong,
.insight-card li span,
.insight-card-murals li,
.insight-card-murals li strong,
.insight-card-murals .insight-kicker {
  color: #000 !important;
}

.insight-kicker {
  display: block;
  max-width: 240px;
  margin-bottom: 24px;
  color: #000;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
}

.insight-card ul {
  display: grid;
  gap: 16px;
  padding-left: 0;
  list-style: none;
}

.insight-card li {
  display: grid;
  gap: 4px;
  color: #000;
  font-size: 14px;
  line-height: 1.55;
}

.insight-card li strong {
  color: #000;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card li span {
  display: block;
  color: #000;
}
/* REMOVE TITLE STROKE ANIMATIONS */

.work-section-title-block::before,
.work-section-title-block::after {
  display: none !important;
}
/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-left {
  border-right: 1.5px solid var(--black);
  position: relative;
}

.contact-info,
.contact-services-list {
  display: flex;
  flex-direction: column;
  gap: -8px;
}
.contact-left {
  position: relative;
}


.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: none;
}

.contact-info-value {
  color: var(--black);
  font-size: 15px;
}
.location-text {
  color: #CD5000;
}

.contact-info-value a {
  transition: color 0.2s, text-shadow 0.2s;
}

.contact-info-value a:hover {
  color: var(--sky-blue);
  text-shadow: 0 2px 12px var(--sky-blue);
}

.contact-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gray-dark);
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}

.contact-service-item:hover {
  color: var(--sky-blue);
  transform: translateX(4px);
}

.contact-service-item::before {
  content: "";
  width: 24px;
  height: 1px;
  flex-shrink: 0;
  background: var(--sky-blue);
}

/* ============================================================
   FORMS
   ============================================================ */

.contact-form,
.admin-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group,
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label,
.field span {
  color: var(--gray-mid);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select,
input,
textarea,
select {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-light);
  border-radius: 0;
  color: var(--black);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder,
input::placeholder,
textarea::placeholder {
  color: rgba(162, 118, 63, 0.62);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--sky-blue);
}

.form-textarea,
textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit,
.button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1.5px solid var(--black);
  border-radius: 2px;
  background: var(--blood-orange);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, gap 0.3s var(--ease), text-shadow 0.3s;
}

.form-submit:hover,
.button:hover {
  gap: 20px;
  background: transparent;
  color: var(--sky-blue);
  text-shadow: 0 2px 12px var(--sky-blue);
}

.form-submit-status,
.form-status {
  min-height: 18px;
  color: var(--sky-blue);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer,
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1.5px solid var(--black);
  background: var(--blood-orange);
  color: #fff;
}

.footer::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 80%, rgba(174, 204, 231, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(174, 204, 231, 0.10), transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 40px 40px, 40px 40px;
  pointer-events: none;
}

.footer-botanical {
  position: absolute;
  right: 5%;
  bottom: 0;
  z-index: 1;
  width: clamp(180px, 22vw, 300px);
  opacity: 0.07;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 72px 36px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand,
.footer-contact,
.footer-side,
.footer-logo-block,
.footer-col {
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-devanagari);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(58, 42, 29, 0.5);
  paint-order: stroke fill;
  text-shadow: 2px 2px 0 var(--accent), 4px 4px 0 var(--sky);
  transition: text-shadow 0.3s var(--ease);
}
.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 300px;
  margin-left: -36px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;

  transform: none !important;
  animation: none !important;
  transition: none !important;
  filter: none !important;
  box-shadow: none !important;
}

.footer-tagline {
  margin: 0;
  padding-left: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-logo:hover {
  text-shadow: 3px 3px 0 var(--accent), 6px 6px 0 var(--sky-blue);
}

.footer-tagline {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-kicker,
.footer-col h4 {
  color: var(--sky-blue);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-services-list span {
  align-items: center;
  display: flex;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.3s, transform 0.2s;
}

.footer-services-list span:hover {
  color: var(--sky-blue);
  text-shadow: 0 2px 16px var(--sky-blue), 0 0 2px #fff;
  transform: translateX(4px);
}

.footer-services-list span::before {
  content: "";
  width: 16px;
  height: 1px;
  margin-right: 10px;
  flex-shrink: 0;
  background: var(--sky-blue);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 2;
  transition: color 0.2s, text-shadow 0.3s, transform 0.2s;
}

.footer-contact a:hover {
  color: var(--sky-blue);
  text-shadow: 0 2px 16px var(--sky-blue), 0 0 2px #fff;
  animation: footer-link-pop 0.32s cubic-bezier(.4,2,.6,1) 1;
  transform: translateX(4px);
}

.footer-side {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.footer-meta {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.7;
}
.footer-socials {

  display: flex;

  gap: 18px;

  margin-top: 0px;
}

.footer-socials a {

  color: #ffffff;

  font-size: 22px;

  transition: all 0.3s ease;
}

.footer-socials a:hover {

  color: #E3D6AD;

  transform: translateY(-3px);
}
.footer-nav,
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav a,
.footer-nav-links a {
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 2;
  transition: color 0.2s, text-shadow 0.3s, transform 0.2s;
}

.footer-nav a:hover,
.footer-nav-links a:hover {
  color: var(--sky-blue);
  text-shadow: 0 2px 16px var(--sky-blue), 0 0 2px #fff;
  animation: footer-link-pop 0.32s cubic-bezier(.4,2,.6,1) 1;
  transform: translateX(4px);
}

@keyframes footer-link-pop {
  0%   { transform: translateX(0); }
  60%  { transform: translateX(7px); }
  100% { transform: translateX(4px); }
}

.qr-card {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.32);
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ============================================================
   ADMIN
   ============================================================ */

.admin-shell {
  min-height: 100vh;
  padding: 90px 28px 28px;
  background: var(--bg);
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.admin-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 112px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 24px;
  align-items: start;
}

.admin-card {
  padding: 28px;
  background: var(--bg-alt);
  border: 1px solid var(--gray-light);
}

.admin-work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.admin-work {
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--gray-light);
}

.admin-work img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.admin-work-body {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.delete-btn {
  border: 1px solid #b73e2d;
  color: #b73e2d;
  font-size: 13px;
  padding: 9px 10px;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(3%, -4%) scale(1.04); }
  66%  { transform: translate(-4%, 3%) scale(0.97); }
  100% { transform: translate(2%, 2%) scale(1.02); }
}

@keyframes float-text {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

@keyframes floating-canvas {
  0%, 100% {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  }
  50% {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-16px);
  }
}




/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .works-grid,
  .work-section-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-section-top {
    grid-template-columns: 1fr;
  }

  .work-insights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .insight-card,
  .insight-card-canvas,
  .insight-card-texture {
    margin-left: 0;
    min-height: auto;
    transform: none;
  }

  .work-card:nth-child(4n),
  .work-item:nth-child(4n) {
    border-right: 1px solid var(--gray-light);
  }

  .work-card:nth-child(3n),
  .work-item:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 900px) {
  .hero,
  .about-section,
  .about-grid,
  .contact-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .hero-copy,
  .about-left,
  .contact-left {
    border-right: 0;
    border-bottom: 1.5px solid var(--black);
  }

  .about-portrait {
    border-right: 1.5px solid var(--black);
  }

  .hero-right,
  .hero-panel {
    min-height: 55vw;
  }

  .art-in-motion-card,
  .signature-card {
    width: min(88%, 620px);
    min-height: 440px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-links,
  .nav-links,
  .navbar-right {
    display: none;
  }

  .navbar-hamburger {
    display: flex;
  }

  .works-grid,
  .work-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card:nth-child(3n),
  .work-item:nth-child(3n) {
    border-right: 1px solid var(--gray-light);
  }

  .work-card:nth-child(2n),
  .work-item:nth-child(2n) {
    border-right: none;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
  }

  .about-stats,
  .form-row,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .about-stats {
    transform: none;
  }
}

@media (max-width: 480px) {
  .navbar,
  .site-nav {
    padding: 0 22px;
  }

  .hero-left,
  .hero-copy,
  .about-right,
  .about-copy,
  .contact-left,
  .contact-copy,
  .contact-right {
    padding: 48px 24px;
  }

  .section-head,
  .page-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 48px 24px 30px;
  }

  main > .section-heading {
    padding: 52px 24px 16px;
  }

  .works-page-intro {
    padding: 0 24px 32px;
  }

  .work-section-top {
    gap: 24px;
    padding: 24px 24px 24px;
  }

  .about-left {
    padding: 36px 24px 54px;
  }

  .about-portrait {
    min-height: 500px;
    padding: 28px;
  }

  .about-portrait::before {
    right: -12px;
  }

  .about-intro-card {
    box-shadow:
      -10px 10px 0 var(--sky),
      10px -10px 0 var(--sky-blue);
  }

  .about-intro-card::before {
    display: none;
  }

  .work-insights-grid {
    padding: 12px 24px 0;
  }

  .work-lightbox {
    padding: 18px;
  }

  .work-lightbox-panel {
    padding: 10px;
    box-shadow:
      -8px 8px 0 var(--sky),
      0 18px 54px rgba(58, 42, 29, 0.34);
  }

  .work-lightbox-close {
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
  }

  .work-lightbox-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .art-in-motion-card,
  .signature-card {
    width: 90%;
    min-height: 360px;
  }

  .works-grid,
  .work-section-grid,
  .admin-work-list {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-item {
    aspect-ratio: 4 / 3;
    border-right: none !important;
  }

  .footer-inner {
    padding: 56px 24px 36px;
  }
}
/* FORCE WHITE TEXT ON BOTANICAL SECTION */

.artist-title {

  color: #ffffff !important;

  text-shadow:
    0 4px 18px rgba(0,0,0,0.28) !important;
}

.artist-description {
  background: rgba(0, 0, 0, 0.18);
backdrop-filter: blur(4px);
padding: 32px;
border-radius: 8px;

  color: rgba(255,255,255,0.92) !important;
}

.artist-eyebrow {

  color: rgba(255,255,255,0.72) !important;
}
@media (max-width: 768px) {

  .navbar-links a:active::before,
  .navbar-links a:focus::before,

  .nav-links a:active::before,
  .nav-links a:focus::before {

    transform: scaleY(1);
    background: #E1B053;
  }

}
@media (max-width: 768px) {

  .about-intro-card {
    box-shadow:
      -16px 16px 0 #E1B053,
      16px -16px 0 #E1B053 !important;
  }

}
@media (max-width: 768px) {

  .nav-links a::before,
  .navbar-links a::before {
    transform: scaleY(1);
    background: #E1B053;
  }

}
@media (max-width: 768px) {

  .hero-right {
    min-height: 520px !important;
  }

  .hero-video-wall {
    height: 520px !important;
  }

  .hero-video-wall video {
    height: 100%;
    object-fit: cover;
  }

}
.hero-video-wall video {
  filter:
    sepia(0.15)
    saturate(0.9)
    brightness(1.02)
    contrast(0.95);
}
.hero-video-wall {
  position: relative;
}

.hero-video-wall::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(225,176,83,0.18);

  pointer-events: none;
  z-index: 5;
}