/* Base */
      :root {
        --bg: #f7f2ec;
        --surface: rgba(255, 255, 255, 0.52);
        --surface-stroke: rgba(255, 255, 255, 0.54);
        --text: #111111;
        --muted: rgba(17, 17, 17, 0.68);
        --shadow: 0 24px 80px rgba(34, 26, 17, 0.12);
        --shadow-soft: 0 18px 40px rgba(34, 26, 17, 0.1);
        --radius-lg: 28px;
        --container: min(1180px, calc(100vw - 2rem));
        --space-xs: 0.5rem;
        --space-sm: 1rem;
        --space-md: 1.8rem;
        --space-lg: 3rem;
        --space-xl: 5rem;
}
      

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        min-height: 100vh;
        overflow-x: hidden;
        font-family: "Outfit", sans-serif;
        color: var(--text);
        background:
          radial-gradient(circle at 15% 20%, rgba(255, 169, 197, 0.58), transparent 28%),
          radial-gradient(circle at 84% 18%, rgba(167, 213, 255, 0.56), transparent 22%),
          radial-gradient(circle at 78% 78%, rgba(255, 214, 161, 0.56), transparent 20%),
          radial-gradient(circle at 25% 82%, rgba(196, 255, 228, 0.5), transparent 24%),
          linear-gradient(180deg, #f9f5f0 0%, #f3eee7 100%);
      }

      body::before,
      body::after {
        content: "";
        position: fixed;
        width: 30rem;
        height: 30rem;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.75;
        pointer-events: none;
        z-index: 0;
      }

      body::before {
        top: -10rem;
        right: -8rem;
        background: rgba(255, 167, 188, 0.52);
      }

      body::after {
        bottom: -11rem;
        left: -10rem;
        background: rgba(155, 214, 255, 0.44);
      }

      .page-shell {
        position: relative;
        isolation: isolate;
      }

      .page-shell::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image:
          linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
          linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 80%);
        pointer-events: none;
        z-index: -1;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .container {
        width: var(--container);
        margin: 0 auto;
      }

      section {
        position: relative;
        z-index: 1;
      }

      /* Navigation */
      .site-nav {
        position: sticky;
        top: 1rem;
        z-index: 20;
        width: var(--container);
        margin: 1rem auto 0;
      }

      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.9rem 1.15rem;
        border: 1px solid var(--surface-stroke);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.48);
        backdrop-filter: blur(18px);
        box-shadow: var(--shadow-soft);
      }

      .brand {
        font-family: "Syne", sans-serif;
        font-size: 0.94rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .nav-links {
        display: none;
        align-items: center;
        gap: 1.25rem;
        color: var(--muted);
        font-size: 0.95rem;
      }

      .nav-links a {
        transition: color 220ms ease;
      }

      .nav-links a:hover,
      .nav-links a:focus-visible {
        color: var(--text);
      }

      /* Hero */
      .hero {
        padding: 5.75rem 0 3rem;
      }

      .hero-layout {
        display: grid;
        gap: 2rem;
        align-items: center;
      }

      .hero-copy {
        padding: 1.35rem 0;
      }

      /* Section blocks */
      .portfolio,
      .about,
      .contact {
        padding: 3rem 0;
      }

      .contact {
        padding-bottom: 4rem;
      }

      .section-heading {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.45rem 0.8rem;
        margin-bottom: 1rem;
        border: 1px solid rgba(17, 17, 17, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.42);
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(17, 17, 17, 0.72);
      }

      .section-kicker::before {
        content: "";
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 999px;
        background: linear-gradient(135deg, #111111, rgba(17, 17, 17, 0.42));
      }

      .section-title,
      .contact-title {
        margin: 0;
        font-family: "Syne", sans-serif;
        line-height: 0.98;
        letter-spacing: -0.05em;
      }

      .section-title {
        font-size: clamp(2rem, 4vw, 3.6rem);
      }

      .contact-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
        line-height: 0.94;
      }

      .section-copy,
      .contact-copy,
      .hero-description {
        color: var(--muted);
        line-height: 1.7;
      }

      .section-copy {
        max-width: 32rem;
        margin: 0;
      }

      .hero-description {
        max-width: 34rem;
        margin: 0;
        font-size: clamp(1rem, 2.3vw, 1.12rem);
        line-height: 1.75;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.55rem 0.9rem;
        border: 1px solid rgba(17, 17, 17, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.46);
        backdrop-filter: blur(18px);
        color: rgba(17, 17, 17, 0.72);
        font-size: 0.8rem;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        box-shadow: var(--shadow-soft);
      }

      .eyebrow::before {
        content: "";
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
        background: linear-gradient(135deg, #f46095, #ffb27b);
      }

      .hero-title {
        margin: 1.15rem 0 1rem;
        font-family: "Syne", sans-serif;
        font-size: clamp(3.5rem, 11vw, 7.6rem);
        line-height: 0.9;
        letter-spacing: -0.085em;
      }

      .hero-title span {
        display: block;
      }

      .hero-actions,
      .about-tags,
      .contact-links,
      .hero-meta {
        display: flex;
        flex-wrap: wrap;
      }

      .hero-actions {
        gap: 0.9rem;
        margin-top: 1.8rem;
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 3.5rem;
        padding: 0 1.35rem;
        border: 1px solid transparent;
        border-radius: 999px;
        font-weight: 600;
        transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
      }

      .button-primary {
        color: #ffffff;
        background: linear-gradient(135deg, #111111, #2b2b2b);
        box-shadow: 0 16px 36px rgba(17, 17, 17, 0.22);
      }

      .button-secondary {
        border-color: rgba(17, 17, 17, 0.08);
        background: rgba(255, 255, 255, 0.42);
        backdrop-filter: blur(18px);
      }

      .button:hover,
      .button:focus-visible,
      .contact-link:hover,
      .contact-link:focus-visible {
        transform: translateY(-3px);
      }

      .button-primary:hover,
      .button-primary:focus-visible {
        box-shadow: 0 24px 50px rgba(17, 17, 17, 0.26);
      }

      .button-secondary:hover,
      .button-secondary:focus-visible {
        box-shadow: var(--shadow-soft);
        border-color: rgba(17, 17, 17, 0.16);
      }

      /* Glass panels */
      .hero-frame,
      .about-panel,
      .contact-panel {
        border: 1px solid var(--surface-stroke);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.24));
        backdrop-filter: blur(24px);
      }

      .hero-frame {
        position: relative;
        min-height: 25rem;
        padding: 1rem;
        border-radius: 2rem;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .hero-frame::before,
      .contact-panel::before {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
      }

      .hero-frame::before {
        inset: auto -15% -10% auto;
        width: 16rem;
        height: 16rem;
        background: rgba(255, 191, 117, 0.34);
        filter: blur(36px);
      }

      .hero-poster {
        position: absolute;
        width: clamp(12rem, 30vw, 15rem);
        aspect-ratio: 3 / 4;
        border-radius: 1.45rem;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(17, 17, 17, 0.18);
      }

      .hero-poster::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.28);
      }

      .hero-poster-main {
        top: 9%;
        left: 8%;
        background:
          radial-gradient(circle at 22% 20%, rgba(255, 236, 206, 0.92), transparent 24%),
          radial-gradient(circle at 78% 26%, rgba(255, 153, 191, 0.9), transparent 28%),
          linear-gradient(180deg, #1f2230 0%, #0f1118 100%);
        transform: rotate(-7deg);
      }

      .hero-poster-main .poster-label {
        top: 8%;
        left: 8%;
      }

      .hero-poster-main .poster-word {
        top: 52%;
        left: 10%;
        font-size: clamp(2rem, 5vw, 3.2rem);
      }

      .poster-shape {
        position: absolute;
        border-radius: 999px;
      }

      .poster-shape.one {
        width: 58%;
        height: 16%;
        bottom: 11%;
        left: -6%;
        background: linear-gradient(90deg, #ffb86f, #ff6f91);
      }

      .poster-shape.two {
        width: 52%;
        height: 48%;
        top: 16%;
        right: -8%;
        border-radius: 48% 52% 56% 44%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
        border: 1px solid rgba(255, 255, 255, 0.18);
      }

      .hero-poster-accent {
        right: 8%;
        bottom: 10%;
        background:
          linear-gradient(165deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
          linear-gradient(180deg, #dce9ff 0%, #9fd7f4 54%, #2a6e8a 100%);
        transform: rotate(10deg);
      }

      .hero-poster-accent .poster-label {
        top: 8%;
        right: 8%;
      }

      .hero-poster-accent .poster-word {
        left: 10%;
        bottom: 9%;
        font-size: clamp(1.9rem, 4vw, 2.8rem);
      }

      .poster-circle {
        position: absolute;
        inset: 16% 18% auto auto;
        width: 58%;
        aspect-ratio: 1;
        border-radius: 50%;
        background:
          radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 32%),
          linear-gradient(160deg, #ffffff, rgba(255, 255, 255, 0.18));
        mix-blend-mode: screen;
      }

      .poster-label,
      .poster-word {
        position: absolute;
        margin: 0;
        color: #ffffff;
      }

      .poster-label {
        font-size: 0.7rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.78;
      }

      .poster-word,
      .work-card-title {
        font-family: "Syne", sans-serif;
        line-height: 0.9;
        letter-spacing: -0.06em;
      }

      .hero-meta {
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        gap: 0.7rem;
      }

      .meta-chip,
      .about-tag {
        border-radius: 999px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .meta-chip {
        padding: 0.7rem 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.34);
        background: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(18px);
        font-size: 0.78rem;
      }

      /* Portfolio grid */
      .portfolio-grid {
        display: grid;
        gap: 1rem;
      }

      .work-card {
        position: relative;
        min-height: 24rem;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.48);
        border-radius: 1.4rem;
        background: rgba(255, 255, 255, 0.28);
        box-shadow: var(--shadow-soft);
        isolation: isolate;
        transition: transform 320ms ease, box-shadow 320ms ease;
      }

      .work-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 35%, rgba(17, 17, 17, 0.08) 100%);
        opacity: 0;
        transition: opacity 320ms ease;
      }

      .work-card:hover,
      .work-card:focus-within {
        transform: translateY(-6px);
        box-shadow: 0 28px 60px rgba(34, 26, 17, 0.16);
      }

      .work-card:hover::after,
      .work-card:focus-within::after {
        opacity: 1;
      }

      .work-art {
        position: absolute;
        inset: 0;
        overflow: hidden;
      }

      .work-art::before,
      .work-art::after {
        content: "";
        position: absolute;
        inset: 0;
        transition: transform 600ms cubic-bezier(0.2, 0.9, 0.2, 1);
      }

      /* Poster variations */
      .poster-one::before {
        background:
          radial-gradient(circle at 22% 18%, rgba(255, 237, 204, 0.92), transparent 18%),
          radial-gradient(circle at 74% 22%, rgba(255, 142, 185, 0.92), transparent 24%),
          linear-gradient(180deg, #232230 0%, #12131c 100%);
      }

      .poster-one::after {
        inset: 12%;
        border-radius: 1rem;
        background:
          linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.16) 52%, transparent 52%),
          linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.16) 52%, transparent 52%);
      }

      .poster-two::before {
        background:
          radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.88), transparent 16%),
          linear-gradient(200deg, #d8f3ff 0%, #9bc5f2 42%, #315576 100%);
      }

      .poster-two::after {
        inset: 10%;
        border-radius: 1.2rem;
        background:
          radial-gradient(circle at 65% 36%, rgba(255, 255, 255, 0.92), transparent 18%),
          radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.42), transparent 28%),
          linear-gradient(180deg, transparent 0 48%, rgba(255, 255, 255, 0.14) 48% 52%, transparent 52% 100%);
      }

      .poster-three::before {
        background:
          radial-gradient(circle at 18% 22%, rgba(255, 193, 121, 0.9), transparent 18%),
          radial-gradient(circle at 82% 18%, rgba(255, 112, 149, 0.8), transparent 22%),
          linear-gradient(155deg, #1c1824 0%, #08090e 100%);
      }

      .poster-three::after {
        inset: 14% 16%;
        border-radius: 999px 999px 1rem 1rem;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
          linear-gradient(120deg, rgba(255, 184, 96, 0.8), rgba(255, 102, 153, 0.12));
      }

      .poster-four::before {
        background:
          radial-gradient(circle at 22% 74%, rgba(255, 212, 143, 0.74), transparent 18%),
          radial-gradient(circle at 76% 16%, rgba(176, 248, 221, 0.9), transparent 22%),
          linear-gradient(180deg, #f5f1e7 0%, #d8d2c9 100%);
      }

      .poster-four::after {
        inset: 12%;
        border-radius: 1.15rem;
        background:
          linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.28)),
          linear-gradient(180deg, transparent 68%, rgba(255, 255, 255, 0.18) 68%);
      }

      .poster-five::before {
        background:
          radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.9), transparent 14%),
          radial-gradient(circle at 32% 74%, rgba(167, 255, 229, 0.56), transparent 24%),
          linear-gradient(165deg, #101f2b 0%, #132c38 54%, #264d58 100%);
      }

      .poster-five::after {
        inset: 14%;
        border-radius: 50%;
        background:
          radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.12) 40%, transparent 42%),
          linear-gradient(180deg, transparent 0 45%, rgba(255, 255, 255, 0.14) 45% 55%, transparent 55%);
      }

      .poster-six::before {
        background:
          radial-gradient(circle at 28% 24%, rgba(255, 228, 166, 0.88), transparent 16%),
          radial-gradient(circle at 78% 72%, rgba(255, 165, 190, 0.74), transparent 18%),
          linear-gradient(135deg, #efe6de 0%, #dccfc5 100%);
      }

      .poster-six::after {
        inset: 12%;
        border-radius: 1.2rem;
        background:
          linear-gradient(145deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.16)),
          radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.2), transparent 18%);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
      }

      .poster-seven::before {
        background:
          radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.92), transparent 14%),
          radial-gradient(circle at 78% 26%, rgba(255, 178, 74, 0.78), transparent 20%),
          linear-gradient(180deg, #d0ebff 0%, #7cc7ef 46%, #254d6b 100%);
      }

      .poster-seven::after {
        inset: 14%;
        border-radius: 999px;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.08)),
          radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.66), transparent 55%);
      }

      .poster-eight::before {
        background:
          radial-gradient(circle at 28% 24%, rgba(255, 170, 194, 0.78), transparent 18%),
          radial-gradient(circle at 78% 74%, rgba(255, 223, 172, 0.86), transparent 22%),
          linear-gradient(160deg, #241c27 0%, #0f1015 100%);
      }

      .poster-eight::after {
        inset: 12%;
        border-radius: 1.2rem;
        background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 10%, transparent 10% 22%, rgba(255, 255, 255, 0.08) 22% 32%, transparent 32% 44%, rgba(255, 255, 255, 0.08) 44% 54%, transparent 54% 66%, rgba(255, 255, 255, 0.08) 66% 76%, transparent 76% 100%);
      }

      .poster-nine::before {
        background:
          radial-gradient(circle at 24% 72%, rgba(255, 222, 179, 0.72), transparent 18%),
          radial-gradient(circle at 82% 18%, rgba(176, 234, 255, 0.84), transparent 18%),
          linear-gradient(180deg, #f3eee6 0%, #ddd5c7 100%);
      }

      .poster-nine::after {
        inset: 14%;
        border-radius: 1.3rem;
        background:
          linear-gradient(180deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.06)),
          radial-gradient(circle at 62% 24%, rgba(255, 255, 255, 0.22), transparent 20%);
      }

      .work-card:hover .work-art::before,
      .work-card:hover .work-art::after,
      .work-card:focus-within .work-art::before,
      .work-card:focus-within .work-art::after {
        transform: scale(1.06);
      }

      .work-card-meta {
        position: absolute;
        inset: auto 1rem 1rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.9rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 1rem;
        background: rgba(17, 17, 17, 0.26);
        backdrop-filter: blur(16px);
        color: #ffffff;
        transform: translateY(12px);
        opacity: 0.96;
        transition: transform 300ms ease;
      }

      .work-card:hover .work-card-meta,
      .work-card:focus-within .work-card-meta {
        transform: translateY(0);
      }

      .work-card-title {
        margin: 0;
        font-size: 1.15rem;
      }

      .work-card-index {
        font-size: 0.78rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        opacity: 0.82;
      }

      /* About and contact */
      .about-panel,
      .contact-panel {
        display: grid;
        gap: 1.4rem;
        padding: 1.6rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
      }

      .about-copy {
        max-width: 42rem;
        margin: 0;
        font-size: clamp(1.06rem, 2vw, 1.2rem);
        line-height: 1.9;
        color: rgba(17, 17, 17, 0.82);
      }

      .about-tags,
      .contact-links {
        gap: 0.8rem;
      }

      .about-tag {
        padding: 0.8rem 1rem;
        border: 1px solid rgba(17, 17, 17, 0.08);
        background: rgba(255, 255, 255, 0.54);
        font-size: 0.84rem;
        color: rgba(17, 17, 17, 0.7);
      }

      .contact-panel {
        position: relative;
        gap: 1.5rem;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .contact-panel::before {
        top: -6rem;
        right: -4rem;
        width: 18rem;
        height: 18rem;
        background: rgba(255, 182, 196, 0.3);
        filter: blur(40px);
      }

      .contact-copy {
        max-width: 28rem;
        margin: 0;
      }

      .contact-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 3.3rem;
        padding: 0 1.1rem;
        border: 1px solid rgba(17, 17, 17, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.5);
        box-shadow: var(--shadow-soft);
        font-weight: 500;
        transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
      }

      .contact-link:hover,
      .contact-link:focus-visible {
        border-color: rgba(17, 17, 17, 0.16);
        box-shadow: 0 20px 40px rgba(34, 26, 17, 0.14);
      }

      .footer-note {
        margin: 0;
        color: rgba(17, 17, 17, 0.56);
        font-size: 0.92rem;
      }

      /* Responsive */
      @media (min-width: 768px) {
        .nav-links {
          display: flex;
        }

        .hero {
          padding-top: 6.5rem;
        }

        .hero-layout {
          grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
          gap: 2.5rem;
        }

        .hero-frame {
          min-height: 34rem;
        }

        .portfolio-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (min-width: 1024px) {
        .portfolio-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .work-card:nth-child(2),
        .work-card:nth-child(5),
        .work-card:nth-child(8) {
          transform: translateY(2rem);
        }

        .work-card:nth-child(2):hover,
        .work-card:nth-child(5):hover,
        .work-card:nth-child(8):hover,
        .work-card:nth-child(2):focus-within,
        .work-card:nth-child(5):focus-within,
        .work-card:nth-child(8):focus-within {
          transform: translateY(calc(2rem - 6px));
        }
      }

      @media (max-width: 767px) {
        .site-nav {
          top: 0.6rem;
        }

        .hero-title {
          max-width: 8ch;
        }

        .hero-frame {
          min-height: 27rem;
        }

        .hero-poster-main {
          top: 10%;
          left: 4%;
        }

        .hero-poster-accent {
          right: 4%;
          bottom: 17%;
        }

        .section-heading {
          flex-direction: column;
          align-items: start;
        }
      }
      .work-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.work-card:hover .work-art img {
  transform: scale(1.08);
}
.work-card::before {
  content: "View Project";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  font-weight: bold;
  opacity: 0;
  background: rgba(0,0,0,0.4);
  transition: 0.3s;
}

.work-card:hover::before {
  opacity: 1;
}
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: zoom-out;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive refresh */
img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100vw - 2rem));
}

.site-nav {
  top: 0.6rem;
}

.nav-inner {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 1.5rem;
}

.brand {
  align-self: flex-start;
  font-size: clamp(0.8rem, 2vw, 0.94rem);
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
  font-size: 0.9rem;
}

.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-layout {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.hero-copy {
  padding: 0.25rem 0 0;
}

.hero-title {
  max-width: 7ch;
  margin: 1rem 0 0.85rem;
  font-size: clamp(2.85rem, 14vw, 4.8rem);
}

.hero-description {
  font-size: clamp(0.98rem, 3.6vw, 1.12rem);
}

.hero-actions {
  flex-direction: column;
  gap: 0.75rem;
}

.button,
.contact-link {
  min-height: 3.25rem;
}

.button {
  width: 100%;
  padding-inline: 1.25rem;
}

.hero-frame {
  min-height: clamp(21rem, 82vw, 29rem);
  padding: 0.875rem;
}

.hero-poster {
  width: clamp(10rem, 43vw, 13.5rem);
}

.hero-poster-main {
  top: 8%;
  left: 4%;
}

.hero-poster-accent {
  right: 4%;
  bottom: 16%;
}

.hero-meta {
  gap: 0.55rem;
}

.meta-chip {
  padding: 0.65rem 0.8rem;
}

.portfolio,
.about,
.contact {
  padding: 2.5rem 0;
}

.section-heading {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.section-title,
.contact-title {
  font-size: clamp(1.95rem, 9vw, 3.2rem);
}

.section-copy,
.contact-copy,
.about-copy {
  max-width: 100%;
}

.section-copy,
.contact-copy {
  font-size: clamp(0.98rem, 3.1vw, 1.05rem);
}

.about-copy {
  font-size: clamp(1rem, 3.3vw, 1.15rem);
}

.portfolio-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.work-card {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.work-card::before,
.work-card::after {
  pointer-events: none;
}

.work-art {
  position: absolute;
  inset: 0;
}

.work-art::before,
.work-art::after {
  content: none;
}

.work-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.work-card-meta {
  inset: auto 0.75rem 0.75rem 0.75rem;
  padding: 0.8rem 0.9rem;
  transform: none;
}

.work-card-title {
  font-size: clamp(1rem, 3vw, 1.15rem);
}

.about-panel,
.contact-panel {
  padding: clamp(1.15rem, 4vw, 1.8rem);
}

.contact-links {
  flex-direction: column;
}

.contact-link {
  width: 100%;
}

.footer-note {
  font-size: 0.88rem;
}

.work-card:hover,
.work-card:focus-within {
  transform: none;
  box-shadow: var(--shadow-soft);
}

.work-card:hover::after,
.work-card:focus-within::after,
.work-card:hover::before,
.work-card:focus-within::before {
  opacity: 0;
}

.work-card:hover .work-art img,
.work-card:focus-within .work-art img {
  transform: scale(1);
}

#lightbox img {
  width: auto;
  max-width: min(92vw, 1100px);
  max-height: 85vh;
}

@media (hover: hover) and (pointer: fine) {
  .work-card-meta {
    transform: translateY(12px);
  }

  .work-card:hover,
  .work-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(34, 26, 17, 0.16);
  }

  .work-card:hover::after,
  .work-card:focus-within::after,
  .work-card:hover::before,
  .work-card:focus-within::before {
    opacity: 1;
  }

  .work-card:hover .work-card-meta,
  .work-card:focus-within .work-card-meta {
    transform: translateY(0);
  }

  .work-card:hover .work-art img,
  .work-card:focus-within .work-art img {
    transform: scale(1.08);
  }
}

@media (min-width: 48.0625rem) {
  .container {
    width: min(1180px, calc(100vw - 2rem));
  }

  .site-nav {
    top: 1rem;
  }

  .nav-inner {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.15rem;
    border-radius: 999px;
  }

  .nav-links {
    display: flex;
    width: auto;
    gap: 1rem;
    font-size: 0.95rem;
  }

  .nav-links a {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero {
    padding: 5.5rem 0 3rem;
  }

  .section-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(4rem, 8vw, 6.4rem);
  }

  .hero-actions {
    flex-direction: row;
  }

  .button {
    width: auto;
  }

  .hero-frame {
    min-height: 31rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .contact-links {
    flex-direction: row;
  }

  .contact-link {
    width: auto;
  }
}

@media (min-width: 64.0625rem) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    gap: 2.75rem;
  }

  .hero-frame {
    min-height: 34rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-card:nth-child(2),
  .work-card:nth-child(5),
  .work-card:nth-child(8) {
    transform: translateY(2rem);
  }
}

@media (min-width: 64.0625rem) and (hover: hover) and (pointer: fine) {
  .work-card:nth-child(2):hover,
  .work-card:nth-child(5):hover,
  .work-card:nth-child(8):hover,
  .work-card:nth-child(2):focus-within,
  .work-card:nth-child(5):focus-within,
  .work-card:nth-child(8):focus-within {
    transform: translateY(calc(2rem - 6px));
  }
}
.contact-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-left h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Syne", sans-serif;
}

.contact-left p {
  color: #555;
  margin: 1rem 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: 0.3s;
}

.contact-info a:hover {
  transform: translateX(5px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  padding: 0.9rem;
  border: none;
  border-radius: 999px;
  background: black;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: #222;
}
@media (min-width: 768px) {
  .contact-box {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
  }
}
.site-footer {
  margin-top: 3rem;
  padding: 2rem 1rem;
  text-align: center;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.watermark {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.05em;
}
.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.6));
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
}

/* 🔥 MAIN BRAND LINK */
.watermark-link {
  text-decoration: none;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}

.watermark-link strong {
  color: black;
  margin-left: 5px;
  position: relative;
}

/* ✨ Hover Effect */
.watermark-link:hover {
  transform: translateY(-2px);
  color: black;
}

.watermark-link:hover strong {
  color: #ff4d6d;
}

/* 🔥 underline animation */
.watermark-link strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #ff4d6d;
  transition: 0.3s;
}

.watermark-link:hover strong::after {
  width: 100%;
}
section {
  padding: var(--space-lg) 0;
}

.hero {
  padding: var(--space-xl) 0 var(--space-lg);
}

.section-heading {
  margin-bottom: var(--space-md);
}

.contact-box {
  padding: var(--space-md);
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.button {
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
}
.work-card {
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.work-card:hover {
  transform: translateY(-8px) scale(1.01);
}
.work-art img {
  transition: transform 0.8s ease;
}

.work-card:hover img {
  transform: scale(1.1) rotate(0.5deg);
}
html {
  scroll-behavior: smooth;
}

body {
  transition: background 0.5s ease;
}
@media (min-width: 1024px) {
  .work-card:nth-child(2) {
    transform: translateY(40px);
  }

  .work-card:nth-child(5) {
    transform: translateY(60px);
  }

  .work-card:nth-child(8) {
    transform: translateY(30px);
  }
}
.work-card {
  transform: perspective(1000px) translateY(0);
}

.work-card:hover {
  transform: perspective(1000px) translateY(-10px) rotateX(4deg);
}
.work-card:nth-child(odd) {
  border-radius: 24px 32px 20px 28px;
}

.work-card:nth-child(even) {
  border-radius: 32px 20px 28px 24px;
}
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 0, 150, 0.15), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.work-card:hover::after {
  opacity: 1;
}
.portfolio-grid {
  gap: 1.5rem;
}
.work-art img {
  filter: contrast(1.05) saturate(1.1);
  transition: all 0.6s ease;
}

.work-card:hover img {
  transform: scale(1.12);
  filter: contrast(1.15) saturate(1.2);
}
.watermark-link {
  font-size: clamp(1rem, 2vw, 1.3rem);
}
.watermark-link strong {
  font-size: 1.2em;
  font-weight: 700;
}
.watermark-link strong {
  background: nt(90deg, #ff4d6d, #7b61ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.watermark-link:hover {
  transform: translateY(-3px) scale(1.03);
}
.site-footer {
  margin-top: 5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: transparent;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT TEXT */
.copyright {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.5);
}

/* RIGHT SIGNATURE */
.watermark-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}

/* YOUR NAME (MAIN FOCUS) */
.watermark-link strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: black;
  letter-spacing: -0.02em;
  transition: 0.3s;
}

/* HOVER MAGIC */
.watermark-link:hover strong {
  transform: translateX(4px);
  color: #ff4d6d;
}

.watermark-link:hover {
  color: black;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
  .watermark-link {
    justify-content: center;
  }
}
.site-footer {
  margin-top: 6rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: transparent;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT SIDE (quiet info) */
.footer-left {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.08em;
}

/* RIGHT SIDE (YOUR SIGNATURE) */
.footer-right {
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.02em;
  position: relative;
  transition: 0.3s ease;
}

/* subtle underline animation */
.footer-right::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #111;
  transition: 0.3s ease;
}

.footer-right:hover::after {
  width: 100%;
}

/* subtle movement */
.footer-right:hover {
  transform: translateY(-1px);
}
.contact-wrapper {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.contact-text h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.contact-text p {
  color: rgba(0,0,0,0.6);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}
.contact-links {
  display: flex;
  gap: 1rem;
}

.contact-links a {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  position: relative;
}

.contact-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: black;
  transition: 0.3s;
}

.contact-links a:hover::after {
  width: 100%;
}
.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 0.8rem 0;
  font-size: 1rem;
  background: transparent;
  outline: none;
}

.input-group label {
  position: absolute;
  left: 0;
  top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.5);
  transition: 0.3s;
  pointer-events: none;
}
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -0.6rem;
  font-size: 0.7rem;
  color: black;
}
.contact-form button {
  margin-top: 1rem;
  padding: 0.9rem 1.5rem;
  border: none;
  background: black;
  color: white;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: #222;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-btn {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* hover effect */
.contact-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.2);
}

/* subtle brand colors */
.whatsapp:hover {
  background: #25D366;
  color: white;
}

.email:hover {
  background: #111;
  color: white;
}

.phone:hover {
  background: #007bff;
  color: white;
}

.insta:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: white;
}
.input-group input:focus,
.input-group textarea:focus {
  border-bottom: 1px solid black;
}
.contact-form button {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-form button:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
/* VIDEO SECTION */
.video-grid {
  display: grid;
  gap: 1.5rem;
}

.video-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.video-card video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
}

/* hover effect */
.video-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

/* responsive */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* VIDEO CARD */
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* hover zoom */
.video-card:hover video {
  transform: scale(1.08);
}

/* overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.3);
  color: white;
  font-weight: 600;
  opacity: 0;
  transition: 0.3s;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

/* MODAL PLAYER */
#videoModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#videoModal video {
  width: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* ─── Web Design Section ─────────────────────────────────────── */

.web-design-section {
  padding: 3rem 0;
}

/* Grid: 1 col mobile → 2 col tablet → 3 col desktop */
.web-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .web-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .web-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Card */
.web-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform 320ms ease, box-shadow 320ms ease;
  outline: none;
}

.web-card:hover,
.web-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(34, 26, 17, 0.16);
}

.web-card:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.3);
  outline-offset: 2px;
}

/* Thumbnail wrapper */
.web-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.06);
}

.web-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.web-card:hover .web-card-thumb img,
.web-card:focus-visible .web-card-thumb img {
  transform: scale(1.06);
}

/* Hover overlay "View Live Site" */
.web-card-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.44);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 280ms ease;
}

.web-card:hover .web-card-hover-overlay,
.web-card:focus-visible .web-card-hover-overlay {
  opacity: 1;
}

.web-card-hover-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transform: translateY(6px);
  transition: transform 280ms ease;
}

.web-card:hover .web-card-hover-label,
.web-card:focus-visible .web-card-hover-label {
  transform: translateY(0);
}

/* Info panel below the image */
.web-card-info {
  padding: 1rem 1.1rem 1.15rem;
}

.web-card-title {
  margin: 0 0 0.65rem;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

/* Tag pills */
.web-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.web-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.68);
}

/* CTA block */
.web-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-top: 3rem;
  padding: 2.4rem 2rem;
  border: 1px solid var(--surface-stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.24));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

@media (min-width: 640px) {
  .web-cta {
    flex-direction: row;
    justify-content: center;
    gap: 1.8rem;
  }
}

.web-cta-text {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
}

.web-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
}