:root {
      --white: #FFFFFF;
      --off-white: #FAFAF8;
      --black: #0A0A0A;
      --green-deep: #1A4A2E;
      --green-mid: #2D6A4F;
      --green-light: #52B788;
      --green-pale: #D8F3DC;
      --gray-100: #F4F4F2;
      --gray-200: #E8E8E4;
      --gray-400: #9A9A94;
      --gray-600: #5A5A54;
      --serif: 'Cormorant Garant', Georgia, serif;
      --sans: 'DM Sans', system-ui, sans-serif;
      --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      overflow-x: hidden;
    }

    body {
      background: var(--off-white);
      color: var(--black);
      font-family: var(--sans);
      font-weight: 300;
      overflow-x: hidden;
      max-width: 100vw;
      cursor: none;
    }

    /* ─── CUSTOM CURSOR ─── */
    .cursor {
      width: 10px;
      height: 10px;
      background: var(--green-light);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.15s var(--transition), background 0.2s;
      transform: translate(-50%, -50%);
    }

    .cursor-ring {
      width: 36px;
      height: 36px;
      border: 1px solid var(--green-light);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.35s var(--transition), opacity 0.2s;
      transform: translate(-50%, -50%);
      opacity: 0.5;
    }

    body:hover .cursor,
    body:hover .cursor-ring {
      opacity: 1;
    }

    /* Hide cursor completely on touch/mobile devices */
    @media (hover: none), (pointer: coarse) {
      .cursor, .cursor-ring { display: none !important; }
      body { cursor: auto !important; }
      button, a, .painting-card, .filter-btn, select, input, textarea {
        cursor: auto !important;
      }
    }

    /* ─── NOISE TEXTURE ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9000;
      opacity: 0.4;
    }

    /* ─── SCROLL PROGRESS BAR ─── */
    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: linear-gradient(to right, var(--green-mid), var(--green-light));
      z-index: 9999;
      transition: width 0.12s linear, opacity 0.3s;
      pointer-events: none;
      opacity: 0;
    }

    /* ─── NAVIGATION ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 4rem;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s var(--transition), box-shadow 0.4s;
    }

    @media (max-width: 768px) {
      nav { height: 60px; top: 0; }
    }

    nav.scrolled {
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 1px 0 var(--gray-200);
    }

    nav.scrolled::before {
      content: '';
      position: absolute;
      inset: 0;
      background: inherit;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: -1;
      pointer-events: none;
    }

    .nav-logo {
      font-family: var(--serif);
      font-size: 1.25rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--black);
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      /* Leave room for burger button */
      max-width: calc(100% - 60px);
      position: relative;
      z-index: 10;
    }

    @media (max-width: 480px) {
      .nav-logo { font-size: 0.95rem; }
    }

    nav.scrolled .nav-logo { color: var(--black); }

    .nav-logo span { color: var(--green-light); }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray-600);
      text-decoration: none;
      transition: color 0.2s;
    }

    #nav.scrolled ~ .nav-links a { color: var(--gray-600); }

    .nav-links a:hover,
    #nav.scrolled ~ .nav-links a:hover { color: var(--green-mid); }

    /* ─── NAV BURGER ─── */
    .nav-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 6px;
      /* Burger sits ABOVE the slide panel */
      position: relative;
      z-index: 1200;
      flex-shrink: 0;
    }

    .nav-burger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: transform 0.35s var(--transition), opacity 0.3s, background 0.3s;
      transform-origin: center;
    }

    /* When scrolled the burger lines go dark */
    nav.scrolled .nav-burger span { background: var(--black); }
    /* When menu open keep lines dark (panel is white bg) */
    .nav-burger.open span { background: var(--black); }

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

    /* Mobile menu overlay — dims page when menu opens */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 1090;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s, visibility 0.35s;
      pointer-events: none;
    }
    .nav-overlay.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    /* Desktop: links sit in the top bar (sibling of nav, not inside it) */
    @media (min-width: 769px) {
      .nav-links {
        position: fixed;
        top: 0;
        right: 4rem;
        height: 72px;
        display: flex;
        align-items: center;
        gap: 2.5rem;
        z-index: 1001;
        list-style: none;
        margin: 0;
        padding: 0;
        transform: none;
        width: auto;
        background: transparent;
        box-shadow: none;
      }
    }

    @media(max-width:768px) {
      nav { padding: 0 1rem 0 1.25rem; }

      .nav-burger { display: flex; }

      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(300px, 82vw);
        background: var(--white);
        box-shadow: -8px 0 48px rgba(0,0,0,0.18);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 5rem 2.5rem 3rem;
        list-style: none;
        margin: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--transition);
        z-index: 1095;
        visibility: hidden;
        pointer-events: none;
      }

      .nav-links.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
      }

      .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
      }

      .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        letter-spacing: 0.08em;
        color: var(--black) !important;
        text-transform: uppercase;
      }

      .nav-links a:hover { color: var(--green-mid) !important; }

      .nav-overlay { display: block; }
    }

    /* ─── NAV over dark hero (not yet scrolled) ─── */
    nav:not(.scrolled) .nav-logo { color: var(--white); }
    nav:not(.scrolled) .nav-logo span { color: var(--green-light); }
    #nav:not(.scrolled) ~ .nav-links a { color: rgba(255,255,255,0.75); }
    #nav:not(.scrolled) ~ .nav-links a:hover { color: var(--green-light); }
    html.nav-menu-open #nav:not(.scrolled) ~ .nav-links a,
    html.nav-menu-open #nav:not(.scrolled) ~ .nav-links a:hover {
      color: var(--black) !important;
    }
    html.nav-menu-open #nav:not(.scrolled) ~ .nav-links a:hover {
      color: var(--green-mid) !important;
    }
    /* Burger lines stay white on hero unless open */
    nav:not(.scrolled) .nav-burger:not(.open) span { background: var(--white); }

    /* ─── HERO with photo background ─── */
    #hero {
      min-height: 100svh;
      background-color: var(--black);
      background-image: url('https://images.unsplash.com/photo-1579783902614-a3fb3927b6a5?auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center 30%;
      background-attachment: scroll;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 5rem 1.5rem 3rem;
    }

    /* Gradient overlay over the photo */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(8, 8, 8, 0.68) 0%,
        rgba(15, 40, 25, 0.60) 40%,
        rgba(8, 8, 8, 0.82) 100%
      );
      z-index: 1;
    }

    /* Decorative blobs (hidden on photo bg) */
    .hero-shapes {
      display: none;
    }

    .hero-shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0;
    }

    .hero-shape--1, .hero-shape--2, .hero-shape--3 { display: none; }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 760px;
      width: 100%;
      padding: 1.75rem 2.5rem;
      background: rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 4px;
    }

    /* Badge pill */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--green-light);
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.4rem 1.1rem;
      border-radius: 100px;
      margin-bottom: 1.2rem;
      opacity: 0;
      animation: fadeUp 0.7s var(--transition) 0.1s forwards;
      backdrop-filter: blur(8px);
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-light);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    /* Heading */
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 5.5vw, 4.8rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 0.9rem;
      opacity: 0;
      animation: fadeUp 0.9s var(--transition) 0.3s forwards;
      text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 4px 32px rgba(0,0,0,0.4);
    }

    .hero-title-line {
      display: inline-block;
      position: relative;
      white-space: nowrap;
    }

    .hero-title em {
      font-style: italic;
      color: var(--green-light);
    }

    .hero-underline {
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 12px;
      pointer-events: none;
    }

    /* Subtext */
    .hero-sub {
      font-family: var(--sans);
      font-size: clamp(0.85rem, 1.5vw, 0.98rem);
      font-weight: 300;
      color: rgba(255, 255, 255, 0.90);
      line-height: 1.65;
      margin-bottom: 1.4rem;
      opacity: 0;
      animation: fadeUp 0.8s var(--transition) 0.6s forwards;
      text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    }

    /* CTA group */
    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 1.6rem;
      opacity: 0;
      animation: fadeUp 0.8s var(--transition) 0.8s forwards;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.85rem 2rem;
      background: var(--green-mid);
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      box-shadow: 0 4px 20px rgba(45, 106, 79, 0.25);
    }

    .hero-cta:hover {
      background: var(--green-deep);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(26, 74, 46, 0.3);
    }

    .hero-cta span { position: relative; z-index: 1; }
    .hero-cta svg  { position: relative; z-index: 1; transition: transform 0.25s; }
    .hero-cta:hover svg { transform: translateX(4px); }

    .hero-cta-ghost {
      display: inline-flex;
      align-items: center;
      padding: 0.85rem 1.8rem;
      border: 1px solid rgba(255, 255, 255, 0.35);
      color: rgba(255, 255, 255, 0.85);
      font-family: var(--sans);
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-decoration: none;
      border-radius: 4px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      backdrop-filter: blur(4px);
    }

    .hero-cta-ghost:hover {
      border-color: var(--green-light);
      color: var(--green-light);
      background: rgba(82, 183, 136, 0.12);
    }

    /* Stats row */
    .hero-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding-top: 1.2rem;
      opacity: 0;
      animation: fadeUp 0.8s var(--transition) 1s forwards;
    }

    .hero-stat {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      max-width: 160px;
    }

    .hero-stat-num {
      font-family: var(--serif);
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      font-weight: 300;
      color: var(--white);
      letter-spacing: -0.01em;
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.65);
    }

    .hero-stat-divider {
      width: 1px;
      height: 30px;
      background: rgba(255, 255, 255, 0.15);
      margin: 0 1.5rem;
      flex-shrink: 0;
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      opacity: 0;
      animation: fadeIn 0.8s var(--transition) 1.5s forwards;
    }

    .hero-scroll span {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--green-light), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50%       { opacity: 1;   transform: scaleY(1.15); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    /* ── Responsive hero ── */
    @media (max-width: 1024px) {
      #hero { padding: 5rem 2rem 3rem; }
      .hero-content { padding: 1.5rem 2rem; }
    }

    @media (max-width: 768px) {
      #hero { padding: 4.5rem 1rem 3rem; }
      .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
      .hero-content { padding: 1.25rem 1.25rem; }
      .hero-actions { gap: 0.5rem; }
      .hero-stat-divider { margin: 0 0.85rem; }
      .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1rem;
      }
      .hero-scroll { display: none; }
    }

    @media (max-width: 600px) {
      #hero { padding: 4rem 0.75rem 2.5rem; }
      .hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
      .hero-content { padding: 1rem 1rem; }
      .hero-sub { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.2rem; }
      .hero-stats { gap: 0; }
      .hero-stat-divider { margin: 0 0.6rem; height: 24px; }
      .hero-stat-num { font-size: clamp(1.1rem, 5vw, 1.5rem); }
      .hero-stat-label { font-size: 0.58rem; letter-spacing: 0.06em; }
      .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 0.07em;
        white-space: nowrap;
        margin-bottom: 0.8rem;
      }
      .hero-br { display: none; }
      .hero-cta, .hero-cta-ghost { width: 100%; justify-content: center; }
      .hero-actions { gap: 0.4rem; margin-bottom: 1.2rem; }
    }

    @media (max-width: 390px) {
      #hero { padding: 3.5rem 0.5rem 2rem; }
      .hero-title { font-size: clamp(1.6rem, 10vw, 2.2rem); }
      .hero-content { padding: 0.85rem 0.85rem; }
      .hero-stats { padding-top: 0.85rem; }
      .hero-badge { display: none; }
    }



    /* ─── MARQUEE STRIP ─── */
    .marquee-strip {
      width: 100%;
      background: var(--green-deep);
      overflow: hidden;
      padding: 0;
      position: relative;
      border-top: 1px solid rgba(82, 183, 136, 0.2);
      border-bottom: 1px solid rgba(82, 183, 136, 0.2);
    }

    /* Soft fade masks on edges */
    .marquee-strip::before,
    .marquee-strip::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .marquee-strip::before {
      left: 0;
      background: linear-gradient(to right, var(--green-deep), transparent);
    }

    .marquee-strip::after {
      right: 0;
      background: linear-gradient(to left, var(--green-deep), transparent);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marqueeScroll 32s linear infinite;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .marquee-content {
      display: flex;
      align-items: center;
      padding: 0;
      flex-shrink: 0;
    }

    .marquee-item {
      font-family: var(--serif);
      font-size: clamp(0.9rem, 2vw, 1.05rem);
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.85);
      white-space: nowrap;
      padding: 1.1rem 2rem;
      transition: color 0.3s;
    }

    .marquee-track:hover .marquee-item {
      color: var(--green-light);
    }

    .marquee-dot {
      font-size: 0.35rem;
      color: var(--green-light);
      opacity: 0.7;
      flex-shrink: 0;
      line-height: 1;
      vertical-align: middle;
    }

    /* Respect reduced-motion preference */
    @media (prefers-reduced-motion: reduce) {
      .marquee-track {
        animation: none;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
      }
    }



    section {
      position: relative;
    }

    .section-label {
      font-family: var(--sans);
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 1rem;
    }

    /* ─── ABOUT ─── */
    #about {
      background: var(--black);
      color: var(--white);
      padding: 8rem 4rem;
    }

    .about-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .about-text .section-label {
      color: var(--green-light);
    }

    .about-title {
      font-family: var(--serif);
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
    }

    .about-title em {
      font-style: italic;
      color: var(--green-light);
    }

    .about-body {
      font-size: 0.95rem;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 2rem;
    }

    .about-accent-line {
      width: 48px;
      height: 2px;
      background: var(--green-light);
      margin-bottom: 1.5rem;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 2.5rem;
      margin-top: 2.5rem;
    }

    .stat-num {
      font-family: var(--serif);
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--green-light);
      line-height: 1;
      margin-bottom: 0.4rem;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }

    .about-visual {
      position: relative;
    }

    .about-image-frame {
      aspect-ratio: 3/4;
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }

    .about-image-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(82, 183, 136, 0.1) 0%, transparent 50%);
    }

    .about-image-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      mix-blend-mode: luminosity;
      opacity: 0.6;
    }

    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      left: -1.5rem;
      width: 120px;
      height: 120px;
      background: var(--green-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .about-badge .num {
      font-family: var(--serif);
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--black);
      line-height: 1;
    }

    .about-badge .text {
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      text-align: center;
    }

    @media(max-width: 1024px) {
      #about { padding: 6rem 2.5rem; }
      .about-inner { gap: 4rem; }
    }

    @media(max-width: 900px) {
      #about { padding: 5rem 1.5rem; }
      .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .about-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
      }
    }

    @media(max-width: 600px) {
      #about { padding: 4rem 1rem; }
      .about-inner { gap: 2rem; }
      .about-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
      .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
      }
      .stat-num { font-size: 1.8rem; }
      .stat-label { font-size: 0.65rem; letter-spacing: 0.1em; }
      .about-visual { max-width: 100%; }
      .about-badge {
        width: 80px;
        height: 80px;
        left: 0.5rem;
        bottom: 0.5rem;
      }
      .about-badge .num { font-size: 1.6rem; }
      .about-badge .text { font-size: 0.52rem; }
      .about-body { font-size: 0.9rem; line-height: 1.75; }
    }

    @media(max-width: 390px) {
      #about { padding: 3.5rem 0.85rem; }
      .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
      .stat-num { font-size: 1.5rem; }
    }

    /* ─── GALLERY ─── */
    #gallery {
      background: var(--off-white);
      padding: 8rem 4rem;
    }

    .gallery-header {
      max-width: 1280px;
      margin: 0 auto 4rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .gallery-title {
      font-family: var(--serif);
      font-size: clamp(2.4rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.01em;
    }

    .gallery-sub {
      font-size: 0.88rem;
      color: var(--gray-400);
      max-width: 320px;
      line-height: 1.7;
      text-align: right;
    }

    /* Filter tabs */
    .gallery-filters {
      max-width: 1280px;
      margin: 0 auto 2.5rem;
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 0.45rem 1.2rem;
      border: 1px solid var(--gray-200);
      background: transparent;
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-400);
      cursor: none;
      transition: all 0.2s;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--green-mid);
      border-color: var(--green-mid);
      color: var(--white);
    }

    .gallery-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }

    .painting-card {
      background: var(--white);
      position: relative;
      overflow: hidden;
      transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
      cursor: none;
    }

    .painting-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .card-image {
      aspect-ratio: 3/4;
      overflow: hidden;
      position: relative;
      background: var(--gray-100);
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--transition);
      display: block;
    }

    .painting-card:hover .card-image img {
      transform: scale(1.04);
    }

    /* Hover overlay */
    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(26, 74, 46, 0.4) 60%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem;
    }

    .painting-card:hover .card-overlay {
      opacity: 1;
    }

    /* Zoom icon indicator */
    .card-overlay::after {
      content: '';
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      width: 64px;
      height: 64px;
      background-color: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      backdrop-filter: blur(4px);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 28px;
      opacity: 0;
      transition: opacity 0.3s var(--transition), transform 0.3s var(--transition);
      pointer-events: none;
    }

    .painting-card:hover .card-overlay::after {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .overlay-artist {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green-light);
      margin-bottom: 0.3rem;
    }

    .overlay-title {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 0.3rem;
    }

    .overlay-details {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 1rem;
    }

    .overlay-price {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--green-light);
    }

    .card-body {
      padding: 1.5rem;
      border-top: 1px solid var(--gray-100);
    }

    .card-artist {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 0.4rem;
    }

    .card-title {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--black);
      line-height: 1.25;
      margin-bottom: 0.3rem;
    }

    .card-meta {
      font-size: 0.78rem;
      color: var(--gray-400);
      margin-bottom: 1rem;
    }

    .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .card-price {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 300;
      color: var(--black);
    }

    .card-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 1.1rem;
      background: var(--green-deep);
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: none;
      transition: background 0.2s, transform 0.2s;
    }

    .card-btn:hover {
      background: var(--green-light);
      color: var(--black);
    }

    /* Image placeholder */
    .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
      color: var(--gray-400);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      gap: 0.75rem;
    }

    .img-placeholder svg {
      opacity: 0.4;
    }

    @media(max-width: 1024px) {
      #gallery { padding: 6rem 2.5rem; }
    }

    @media(max-width: 768px) {
      #gallery { padding: 5rem 1.25rem; }
      .gallery-header { flex-direction: column; align-items: flex-start; }
      .gallery-sub { text-align: left; max-width: 100%; }
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .gallery-filters { gap: 0.4rem; }
      .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.7rem; }
    }

    @media(max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
      .card-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
      .card-btn { width: 100%; justify-content: center; }
    }

    /* ─── WHY US ─── */
    #why {
      background: var(--white);
      padding: 8rem 4rem;
      border-top: 1px solid var(--gray-200);
    }

    .why-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .why-header {
      text-align: center;
      margin-bottom: 5rem;
    }

    .why-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.5vw, 3.2rem);
      font-weight: 300;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
    }

    .why-sub {
      font-size: 0.9rem;
      color: var(--gray-400);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }

    .why-item {
      padding: 2.5rem 2rem;
      border: 1px solid var(--gray-100);
      position: relative;
      transition: border-color 0.3s, transform 0.3s var(--transition);
    }

    .why-item:hover {
      border-color: var(--green-light);
      transform: translateY(-4px);
    }

    .why-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--green-light);
      transition: width 0.4s var(--transition);
    }

    .why-item:hover::before {
      width: 100%;
    }

    .why-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 1.5rem;
      color: var(--green-mid);
    }

    .why-item-title {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
    }

    .why-item-text {
      font-size: 0.88rem;
      color: var(--gray-600);
      line-height: 1.8;
    }

    @media(max-width: 1024px) {
      #why { padding: 6rem 2.5rem; }
      .why-grid { gap: 1.5rem; }
      .why-header { margin-bottom: 4rem; }
    }

    @media(max-width: 768px) {
      #why { padding: 5rem 1.5rem; }
      .why-header { margin-bottom: 3rem; text-align: left; }
      .why-title { font-size: clamp(2rem, 7vw, 2.6rem); }
      .why-sub { font-size: 0.88rem; }

      /* 2 columns on tablet */
      .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
      }

      .why-item {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .why-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
      }

      .why-item-title { font-size: 1.1rem; margin-bottom: 0; }
      .why-item-text { font-size: 0.84rem; line-height: 1.75; }
    }

    @media(max-width: 560px) {
      #why { padding: 4rem 1rem; }
      .why-header { margin-bottom: 2rem; }

      /* Full width single column on mobile */
      .why-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border: 1px solid var(--gray-100);
      }

      .why-item {
        padding: 1.5rem 1.25rem;
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto auto;
        column-gap: 1.1rem;
        row-gap: 0.35rem;
        border: none;
        border-bottom: 1px solid var(--gray-100);
        border-left: 3px solid transparent;
        transition: border-left-color 0.3s, background 0.3s;
        align-items: start;
      }

      /* Remove last border */
      .why-item:last-child { border-bottom: none; }

      /* Accent left bar instead of top bar on mobile */
      .why-item::before { display: none; }

      /* Tap highlight */
      .why-item:active {
        background: rgba(82, 183, 136, 0.04);
        border-left-color: var(--green-light);
      }

      .why-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0;
        grid-row: 1 / 3;
        grid-column: 1;
        align-self: center;
        color: var(--green-light);
      }

      .why-item-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.05rem;
        margin-bottom: 0;
        font-weight: 500;
        align-self: end;
      }

      .why-item-text {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.83rem;
        line-height: 1.7;
        color: var(--gray-600);
        align-self: start;
      }

      /* No lift animation on touch */
      .why-item:hover { transform: none; }
    }

    @media(max-width: 390px) {
      #why { padding: 3.5rem 0.85rem; }
      .why-item { padding: 1.25rem 1rem; column-gap: 0.9rem; }
      .why-item-title { font-size: 1rem; }
      .why-item-text { font-size: 0.8rem; }
    }

    /* ─── CONTACT ─── */
    #contact {
      background: var(--off-white);
      padding: 8rem 4rem;
      border-top: 1px solid var(--gray-200);
    }

    .contact-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 6rem;
      align-items: start;
    }

    .contact-info .section-label {
      margin-bottom: 0.8rem;
    }

    .contact-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.5vw, 3.2rem);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    .contact-body {
      font-size: 0.9rem;
      color: var(--gray-600);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      font-size: 0.88rem;
      color: var(--gray-600);
    }

    .contact-detail svg {
      color: var(--green-mid);
      flex-shrink: 0;
    }

    a.contact-detail {
      text-decoration: none;
      transition: color 0.2s;
    }

    a.contact-detail:hover {
      color: var(--green-mid);
    }

    /* Form */
    .inquiry-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      background: var(--white);
      border: 1px solid var(--gray-200);
      padding: 2.5rem;
      border-radius: 2px;
    }

    .form-title {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--black);
      margin-bottom: 0.25rem;
    }

    .form-subtitle {
      font-size: 0.82rem;
      color: var(--gray-400);
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .field label {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray-600);
      font-weight: 400;
    }

    .phone-input-wrap {
      position: relative;
      display: flex;
      align-items: stretch;
    }

    .phone-prefix {
      display: flex;
      align-items: center;
      padding: 0 1rem;
      background: var(--gray-100);
      border: 1px solid var(--gray-200);
      border-right: none;
      font-family: var(--sans);
      font-size: 0.9rem;
      color: var(--gray-600);
      white-space: nowrap;
      flex-shrink: 0;
      border-radius: 0;
      user-select: none;
    }

    .phone-input-wrap input {
      flex: 1;
      border-radius: 0;
    }

    .field input,
    .field select,
    .field textarea {
      background: var(--white);
      border: 1px solid var(--gray-200);
      padding: 0.9rem 1rem;
      font-family: var(--sans);
      font-size: 0.9rem;
      color: var(--black);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      cursor: auto;
      appearance: none;
      -webkit-appearance: none;
      width: 100%;
      border-radius: 0;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--green-light);
      box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1);
    }

    .field textarea {
      resize: vertical;
      min-height: 110px;
    }

    .select-wrap {
      position: relative;
    }

    .select-wrap::after {
      content: '';
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid var(--gray-400);
      pointer-events: none;
    }

    .submit-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1.1rem 2.5rem;
      background: var(--green-deep);
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      align-self: stretch;
      border-radius: 0;
      box-shadow: 0 4px 20px rgba(26, 74, 46, 0.2);
    }

    .submit-btn:hover {
      background: var(--green-light);
      color: var(--black);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(26, 74, 46, 0.25);
    }

    @media(max-width: 1024px) {
      #contact { padding: 6rem 2.5rem; }
      .contact-inner { gap: 4rem; }
    }

    @media(max-width: 900px) {
      #contact { padding: 5rem 1.5rem; }
      .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .inquiry-form { padding: 2rem; }
    }

    @media(max-width: 600px) {
      #contact { padding: 4rem 1rem; }
      .inquiry-form { padding: 1.5rem 1.25rem; gap: 1rem; }
      .contact-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.45);
      padding: 4rem 4rem 2rem;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 2rem;
    }

    .footer-brand .logo-text {
      font-family: var(--serif);
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 0.8rem;
    }

    .footer-brand .logo-text span {
      color: var(--green-light);
    }

    .footer-brand p {
      font-size: 0.82rem;
      line-height: 1.75;
      max-width: 260px;
    }

    .footer-col h4 {
      font-family: var(--sans);
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 1.2rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-col ul li a {
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: var(--green-light);
    }

    .footer-requisites {
      font-size: 0.82rem;
      line-height: 1.85;
      padding-bottom: 2rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-requisites strong {
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
    }

    .footer-requisites a {
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-requisites a:hover {
      color: var(--green-light);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: 0.78rem;
    }

    .footer-bottom .green {
      color: var(--green-light);
    }

    @media(max-width: 1024px) {
      footer { padding: 4rem 2.5rem 2rem; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media(max-width: 768px) {
      footer { padding: 3rem 1.25rem 1.5rem; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    }

    @media(max-width: 480px) {
      .footer-top { grid-template-columns: 1fr; }
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    .reveal-delay-5 {
      transition-delay: 0.5s;
    }

    /* ─── BACK TO TOP BUTTON ─── */
    #back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
      background: var(--green-deep);
      border: 1px solid rgba(82, 183, 136, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 800;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.35s var(--transition), transform 0.35s var(--transition), background 0.25s, box-shadow 0.25s;
      pointer-events: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    }

    #back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    #back-to-top:hover {
      background: var(--green-light);
      box-shadow: 0 8px 28px rgba(26, 74, 46, 0.3);
    }

    #back-to-top svg {
      width: 20px;
      height: 20px;
      color: var(--white);
      transition: transform 0.2s;
    }

    #back-to-top:hover svg {
      transform: translateY(-2px);
    }

    @media(max-width: 768px) {
      #back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 44px;
        height: 44px;
      }
    }

    /* ─── LIGHTBOX ─── */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 10, 0.95);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      backdrop-filter: blur(8px);
    }

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

    .lightbox-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      transform: scale(0.95);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .lightbox.open .lightbox-content {
      transform: scale(1);
    }

    #lightbox-img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
      border-radius: 4px;
      user-select: none;
    }

    .lightbox-caption {
      color: var(--white);
      margin-top: 1rem;
      font-family: var(--serif);
      font-size: 1.1rem;
      letter-spacing: 0.02em;
      text-align: center;
      opacity: 0.85;
    }

    .lightbox-close {
      position: absolute;
      top: 2rem;
      right: 2.5rem;
      background: transparent;
      border: none;
      color: var(--white);
      font-size: 2.5rem;
      line-height: 1;
      cursor: pointer;
      opacity: 0.6;
      transition: opacity 0.2s, transform 0.2s;
      z-index: 10000;
      padding: 10px;
    }

    .lightbox-close:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
      }
      .lightbox-caption {
        font-size: 0.95rem;
      }
    }