:root {
    --white: #FAFAF8;
    --off-white: #F4F2EE;
    --text: #1a1a18;
    --muted: #7a7a75;
    --accent: #FF5C35;
    --accent2: #6C63FF;
    --glass-bg: rgba(255,255,255,0.55);
    --glass-border: rgba(255,255,255,0.75);
    --glass-shadow: 0 8px 40px rgba(0,0,0,0.08);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── BG BLOBS ── */
  .blob-wrap {
    position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
  }
  .blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
    animation: drift 18s ease-in-out infinite alternate;
  }
  .blob-1 { width: 520px; height: 520px; background: #FFD6CC; top: -120px; left: -100px; animation-delay: 0s; }
  .blob-2 { width: 400px; height: 400px; background: #D4CCFF; top: 30%; right: -80px; animation-delay: -6s; }
  .blob-3 { width: 320px; height: 320px; background: #C8F5E8; bottom: 10%; left: 20%; animation-delay: -12s; }
  .blob-4 { width: 280px; height: 280px; background: #FFE8B0; bottom: -60px; right: 15%; animation-delay: -4s; }

  @keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.08); }
  }

  /* ── LAYOUT HELPERS ── */
  section { position: relative; z-index: 1; }
  .container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(250,250,248,0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.6);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600; letter-spacing: 0.02em;
    color: var(--text);
  }
  .nav-logo span { color: var(--accent); }
  .nav-mobile-btn { display: none; }
  .nav-links a {
    font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 40px 80px;
    max-width: 1120px; margin: 0 auto;
  }
  .hero-label {
    font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); font-weight: 500; margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-label::before {
    content: ''; display: block; width: 32px; height: 1px; background: var(--accent);
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 300; line-height: 1.08; letter-spacing: -0.01em;
    margin-bottom: 32px; max-width: 820px;
  }
  .hero-title em { font-style: italic; color: var(--accent); }
  .hero-title .accent2 { color: var(--accent2); }
  .hero-sub {
    font-size: 1.25rem; color: var(--muted); line-height: 1.8;
    max-width: 580px; margin-bottom: 52px; font-weight: 300;
  }
  .hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 100px;
    background: var(--accent); color: #fff;
    font-size: 0.88rem; letter-spacing: 0.04em; font-weight: 500;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(255,92,53,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,92,53,0.4); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 100px;
    border: 1px solid rgba(26,26,24,0.18); color: var(--text);
    font-size: 0.88rem; letter-spacing: 0.04em; font-weight: 400;
    text-decoration: none; transition: border-color 0.2s, background 0.2s;
    background: rgba(255,255,255,0.5); backdrop-filter: blur(10px);
  }
  .btn-secondary:hover { border-color: var(--accent2); background: rgba(108,99,255,0.06); }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    font-size: 0.72rem; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrolldown 2s ease-in-out infinite;
  }
  @keyframes scrolldown { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.15)} }

  /* ── CATEGORIES ── */
  #portfolio { padding: 60px 0; }
  .section-header {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 0; padding: 0 40px;
    flex-wrap: wrap;
  }
  .section-header .section-tag { align-self: center; }
  .section-header .section-title { align-self: center; }
  .section-tag {
    font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); font-weight: 500;
    font-family: 'DM Sans', sans-serif;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300; letter-spacing: -0.01em;
    color: var(--text);
  }

  /* Gender toggle */
  .gender-toggle {
    display: flex; align-items: center;
    margin-left: auto;
    background: var(--glass-bg);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 100px; padding: 4px;
    position: relative;
  }
  .gender-tab {
    padding: 9px 22px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer; color: var(--muted);
    transition: color 0.25s; position: relative; z-index: 1;
    user-select: none;
  }
  .gender-tab.active { color: #fff; }
  .gender-slider {
    position: absolute; top: 4px; bottom: 4px; border-radius: 100px;
    background: linear-gradient(135deg, var(--accent), #FF8C6B);
    box-shadow: 0 3px 12px rgba(255,92,53,0.3);
    transition: left 0.3s cubic-bezier(0.22,1,0.36,1), width 0.3s cubic-bezier(0.22,1,0.36,1);
    z-index: 0;
  }

  /* 6 equal columns — compact landscape cards */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 40px;
    margin-top: 32px;
  }

  /* Category card — landscape 4:3 ratio, not full-height portrait */
  .cat-card {
    border-radius: 16px; overflow: hidden;
    position: relative; cursor: pointer;
    aspect-ratio: 4 / 3;
    display: block; text-decoration: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.36s cubic-bezier(0.22,1,0.36,1), box-shadow 0.36s;
  }
  .cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.16);
  }
  .cat-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  }
  .cat-card:hover img { transform: scale(1.06); }
  .cat-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    z-index: 1;
  }
  .cat-card-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2; padding: 20px 18px 16px;
    display: flex; flex-direction: column; gap: 4px;
  }
  .cat-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 400; color: #fff;
    line-height: 1.2;
  }
  .cat-card-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s, gap 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .cat-card:hover .cat-card-cta { color: #fff; gap: 10px; }

  /* placeholder for empty cat */
  .cat-card .cat-placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, #f0ede8, #e2ddd6);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
  }

  /* Gender panel show/hide */
  .gender-panel { display: none; }
  .gender-panel.active { display: contents; }

  /* ── USE CASES ── */
  #usecases { padding: 100px 0; background: transparent; }
  .cases-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; padding: 0 40px;
    margin-top: 56px;
  }
  .case-card {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }
  .case-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad);
    opacity: 0; transition: opacity 0.3s;
  }
  .case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
  .case-card:hover::before { opacity: 1; }
  .case-card:nth-child(1) { --grad: linear-gradient(90deg, #FF5C35, #FF9F7A); }
  .case-card:nth-child(2) { --grad: linear-gradient(90deg, #6C63FF, #A29CFF); }
  .case-card:nth-child(3) { --grad: linear-gradient(90deg, #0DCFAA, #6EDFC6); }
  .case-card:nth-child(4) { --grad: linear-gradient(90deg, #F59E0B, #FCD34D); }
  .case-card:nth-child(5) { --grad: linear-gradient(90deg, #EC4899, #F9A8D4); }
  .case-card:nth-child(6) { --grad: linear-gradient(90deg, #3B82F6, #93C5FD); }
  .case-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 24px;
    background: var(--grad);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .case-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 600; margin-bottom: 12px;
    line-height: 1.3;
  }
  .case-desc { font-size: 1.1rem; color: var(--muted); line-height: 1.75; }

  /* ── PROCESS ── */
  #process { padding: 60px 0; }
  .process-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; padding: 0 40px;
    margin-top: 56px;
  }
  .process-text p {
    font-size: 1.1rem; color: var(--muted); line-height: 1.8;
    margin-bottom: 28px; font-weight: 300;
  }
  .process-text strong { color: var(--text); font-weight: 500; }
  .steps {
    display: flex; flex-direction: column; gap: 0;
  }
  .step {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background 0.2s;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300; color: var(--accent);
    line-height: 1; min-width: 44px; letter-spacing: -0.02em;
  }
  .step-content h4 {
    font-size: 0.92rem; font-weight: 500; margin-bottom: 6px; letter-spacing: 0.01em;
  }
  .step-content p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

  /* ── ABOUT ── */
  #about { padding: 60px 0; }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; padding: 0 40px;
    margin-top: 56px;
  }
  .about-visual {
    position: relative;
  }
  .about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 52px 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    position: relative; overflow: hidden;
  }
  .about-card::after {
    content: 'P';
    font-family: 'Cormorant Garamond', serif;
    font-size: 18rem; font-weight: 600;
    position: absolute; right: -20px; top: -40px;
    color: var(--off-white); line-height: 1;
    pointer-events: none; z-index: 0;
  }
  .about-card > * { position: relative; z-index: 1; }
  .about-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300; line-height: 1.1;
    margin-bottom: 8px;
  }
  .about-name span { color: var(--accent); font-style: italic; }
  .about-role {
    font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 32px;
  }
  .about-stats {
    display: flex; gap: 32px; margin-bottom: 32px;
  }
  .stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 300; color: var(--accent2);
    line-height: 1;
  }
  .stat-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; margin-top: 4px; }
  .about-text {
    font-size: 1.2rem; line-height: 1.8; color: var(--muted);
    font-weight: 300;
  }
  .about-text p { margin-bottom: 16px; }
  .about-text strong { color: var(--text); font-weight: 500; }

  /* ── CONTACT ── */
  #contact { padding: 60px 0 80px; }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; padding: 0 40px;
    margin-top: 56px;
  }
  .contact-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300; line-height: 1.2; margin-bottom: 28px;
  }
  .contact-tagline em { font-style: italic; color: var(--accent2); }
  .contact-note { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
  .contact-cards {
    display: flex; flex-direction: column; gap: 16px;
  }
  .contact-card {
    display: flex; align-items: center; gap: 20px;
    padding: 28px 32px; border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    text-decoration: none; color: var(--text);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }
  .contact-card::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--hover-bg);
    opacity: 0; transition: opacity 0.3s;
  }
  .contact-card:nth-child(1) { --hover-bg: linear-gradient(135deg, rgba(39,174,230,0.06), rgba(39,174,230,0.02)); }
  .contact-card:nth-child(2) { --hover-bg: linear-gradient(135deg, rgba(255,92,53,0.06), rgba(255,92,53,0.02)); }
  .contact-card:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
  .contact-card:hover::before { opacity: 1; }
  .contact-icon {
    width: 52px; height: 52px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
    position: relative; z-index: 1;
  }
  .icon-tg { background: linear-gradient(135deg, #27AEE6, #1A96CF); }
  .icon-mail { background: linear-gradient(135deg, #FF5C35, #FF3D00); }
  .contact-info { position: relative; z-index: 1; }
  .contact-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
  .contact-value { font-size: 1.05rem; font-weight: 500; color: var(--text); }
  .contact-arrow {
    margin-left: auto; color: var(--muted);
    position: relative; z-index: 1;
    transition: transform 0.2s, color 0.2s;
  }
  .contact-card:hover .contact-arrow { transform: translate(4px, -4px); color: var(--accent); }

  /* ── FOOTER ── */
  footer {
    text-align: center; padding: 32px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em;
  }

  /* ── FADE IN ── */
  .fade-up {
    opacity: 0; transform: translateY(28px);
    animation: fadeup 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  @keyframes fadeup {
    to { opacity: 1; transform: translateY(0); }
  }
  .d1 { animation-delay: 0.1s; }
  .d2 { animation-delay: 0.22s; }
  .d3 { animation-delay: 0.34s; }
  .d4 { animation-delay: 0.46s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); padding: 0 24px; }
    .process-inner { gap: 48px; }
  }
  @media (max-width: 900px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    #hero { padding: 100px 20px 60px; }
    .section-header { padding: 0 20px; margin-bottom: 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 10px; }
    .cases-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
    .process-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
    .about-card { padding: 36px 28px; }
    .about-stats { gap: 20px; }
    .gender-toggle { margin-left: 0; margin-top: 16px; }
  }
  @media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; gap: 8px; }
    #hero { padding: 88px 16px 52px; }
    .hero-title { font-size: clamp(2.4rem, 9vw, 3rem); }
    .hero-sub { font-size: 0.95rem; }
    .btn-primary, .btn-secondary { padding: 13px 22px; font-size: 0.84rem; }
    .section-header { padding: 0 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
    .cases-grid { grid-template-columns: 1fr; padding: 0 16px; }
    .process-inner, .about-inner, .contact-inner { padding: 0 16px; }
    .contact-card { padding: 18px 18px; }
    .about-card::after { font-size: 10rem; }
    .gender-toggle { margin-left: 0; width: 100%; justify-content: center; }
  }
  @media (max-width: 380px) {
    .gallery-grid { grid-template-columns: 1fr; }
  }

  /* ── PRICING ── */
  #pricing { padding: 60px 0; }
  .pricing-wrap { padding: 0 40px; margin-top: 56px; }

  .pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-radius: 28px; overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 56px rgba(0,0,0,0.08);
  }
  .tier {
    padding: 40px 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    display: flex; flex-direction: column;
    position: relative;
    border-right: 1px solid var(--glass-border);
    transition: background 0.3s;
  }
  .tier:last-child { border-right: none; }
  .tier.popular { background: rgba(255,255,255,0.82); }

  .tier-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, var(--accent), #FF8C6B);
    color: #fff; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px;
    width: fit-content; margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(255,92,53,0.3);
  }
  .tier-badge::before { content: '★ '; }
  .tier-spacer { height: 37px; }

  .tier-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem; font-weight: 400; margin-bottom: 6px; color: var(--text);
  }
  .tier-sub { font-size: 1rem; color: var(--muted); line-height: 1.6; margin-bottom: 28px; }

  .tier-price-group {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px; padding-bottom: 28px;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
  }
  .tier:hover .tier-price-group { transform: translateY(-2px); }

  .tier-main, .tier-secondary { display: flex; align-items: baseline; gap: 6px; }
  
  .tier-from { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
  .tier-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem; font-weight: 300; line-height: 1;
    color: var(--text); letter-spacing: -0.02em;
  }
  .tier-currency { font-size: 1rem; color: var(--muted); font-weight: 300; }
  .tier.popular .tier-amount { color: var(--accent); }
  
  .tier-price-divider {
    width: 1px; height: 40px;
    background: var(--glass-border);
    transform: rotate(20deg);
    opacity: 0.6;
  }

  .tier-amount-alt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 300; line-height: 1;
    color: var(--text); opacity: 0.65; letter-spacing: -0.01em;
  }

  .tier-features {
    list-style: none; display: flex; flex-direction: column;
    gap: 10px; flex: 1; margin-bottom: 32px;
  }
  .tier-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 1.05rem; color: var(--muted); line-height: 1.5;
  }
  .tier-features li::before {
    content: ''; flex-shrink: 0; margin-top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
  }
  .tier-features li strong { color: var(--text); font-weight: 500; }

  .tier-cta {
    display: block; text-align: center;
    padding: 12px 20px; border-radius: 100px;
    font-size: 0.84rem; font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .tier-cta-outline {
    border: 1px solid rgba(0,0,0,0.14); color: var(--text);
    background: rgba(255,255,255,0.3);
  }
  .tier-cta-outline:hover { border-color: var(--accent2); background: rgba(108,99,255,0.06); }
  .tier-cta-fill {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 16px rgba(255,92,53,0.3);
  }
  .tier-cta-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,92,53,0.4); }

  @media (max-width: 900px) {
    .pricing-wrap { padding: 0 20px; }
    .pricing-row { grid-template-columns: 1fr; border-radius: 24px; }
    .tier { border-right: none; border-bottom: 1px solid var(--glass-border); }
    .tier:last-child { border-bottom: none; }
    .tier.popular { background: rgba(255,255,255,0.82); }
  }
  @media (max-width: 600px) {
    .pricing-wrap { padding: 0 16px; }
    .tier { padding: 32px 28px; }
    .tier-amount { font-size: 3rem; }
  }

  /* ── REVIEWS CTA ── */
  #reviews-cta { padding: 80px 20px; position: relative; overflow: hidden; }
  
  .reviews-cta-card {
    max-width: 1120px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 40px;
    padding: 80px;
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 80px; align-items: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
  }

  .reviews-cta-content { position: relative; z-index: 2; }
  
  .reviews-cta-desc {
    font-size: 1.25rem; color: var(--muted); line-height: 1.7;
    margin: 24px 0 40px; font-weight: 300;
  }

  .reviews-cta-visual {
    position: relative;
    height: 300px;
    display: flex; align-items: center; justify-content: center;
  }

  /* Decorative Chat Bubbles */
  .chat-decor {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--muted);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    animation: float 6s ease-in-out infinite;
  }
  .chat-decor:nth-child(1) { top: 0; left: 10%; transform: rotate(-5deg); animation-delay: 0s; }
  .chat-decor:nth-child(2) { top: 40%; right: 5%; transform: rotate(3deg); animation-delay: 1s; background: var(--accent2); color: #fff; border: none; }
  .chat-decor:nth-child(3) { bottom: 10%; left: 20%; transform: rotate(-2deg); animation-delay: 2s; }
  
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-15px) rotate(var(--rot, 0deg)); }
  }
  .chat-decor:nth-child(1) { --rot: -5deg; }
  .chat-decor:nth-child(2) { --rot: 3deg; }
  .chat-decor:nth-child(3) { --rot: -2deg; }

  @media (max-width: 900px) {
    .reviews-cta-card { grid-template-columns: 1fr; padding: 60px 40px; text-align: center; }
    .reviews-cta-desc { margin: 20px auto 32px; }
    .reviews-cta-visual { height: 200px; margin-top: 40px; }
  }

  /* ── SCRATCH CARDS ── */
  #promos { padding: 60px 0; }

  .scratch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 40px;
    margin-top: 56px;
  }

  .scratch-card {
    border-radius: 28px; overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
  }

  /* Top info area */
  .scratch-info {
    padding: 32px 36px 28px;
    border-bottom: 1px solid var(--glass-border);
  }
  .scratch-icon {
    font-size: 2rem; margin-bottom: 16px; display: block;
  }
  .scratch-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem; font-weight: 600;
    line-height: 1.2; margin-bottom: 10px;
    color: var(--text);
  }
  .scratch-desc {
    font-size: 1.1rem; color: var(--muted); line-height: 1.8;
  }
  .scratch-badge {
    display: inline-block; margin-top: 14px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
    padding: 5px 14px; border-radius: 100px;
    background: var(--badge-bg); color: var(--badge-color);
  }
  .scratch-card:nth-child(1) { --badge-bg: rgba(255,92,53,0.1); --badge-color: #FF5C35; --scratch-from: #FF5C35; --scratch-to: #FF9B5C; }
  .scratch-card:nth-child(2) { --badge-bg: rgba(108,99,255,0.1); --badge-color: #6C63FF; --scratch-from: #6C63FF; --scratch-to: #A29CFF; }
  .scratch-card:nth-child(3) { --badge-bg: rgba(13,207,170,0.1); --badge-color: #0DCFAA; --scratch-from: #0DCFAA; --scratch-to: #6EDFC6; }
  .scratch-card:nth-child(4) { --badge-bg: rgba(245,158,11,0.1); --badge-color: #F59E0B; --scratch-from: #F59E0B; --scratch-to: #FCD34D; }

  /* Scratch zone */
  .scratch-zone {
    position: relative; padding: 28px 36px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .scratch-hint {
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); text-align: center;
  }
  .scratch-canvas-wrap {
    position: relative; width: 100%; max-width: 320px; margin: 0 auto; border-radius: 16px; overflow: hidden;
    cursor: crosshair; touch-action: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  /* Revealed promo underneath */
  .scratch-reveal {
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--scratch-from), var(--scratch-to));
    text-align: center; border-radius: 16px;
    min-height: 80px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 6px;
  }
  .scratch-reveal-label {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
  .scratch-reveal-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: #fff;
    letter-spacing: 0.08em; line-height: 1;
  }
  .scratch-reveal-sub {
    font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-top: 2px;
  }
  /* Canvas sits on top */
  .scratch-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border-radius: 16px;
  }
  .scratch-done-msg {
    font-size: 0.78rem; color: var(--muted); text-align: center;
    opacity: 0; transition: opacity 0.4s; height: 0; overflow: hidden;
    transition: opacity 0.4s, height 0.3s;
  }
  .scratch-done-msg.visible { opacity: 1; height: auto; }
  .copy-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 20px; border-radius: 100px;
    background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.35);
    color: #fff; font-size: 0.78rem; font-weight: 500;
    cursor: pointer; transition: background 0.2s;
    margin-top: 8px;
  }
  .copy-btn:hover { background: rgba(255,255,255,0.32); }
  .copy-btn.copied { background: rgba(255,255,255,0.4); }

  @media (max-width: 900px) {
    .scratch-grid { grid-template-columns: 1fr; padding: 0 20px; max-width: 520px; margin: 56px auto 0; }
  }
  @media (max-width: 600px) {
    .scratch-grid { padding: 0 16px; }
    .scratch-info { padding: 24px 24px 20px; }
    .scratch-zone { padding: 20px 24px; }
  }

  /* ── LIGHTBOX ── */
  .lightbox {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .lightbox.active { opacity: 1; pointer-events: auto; }
  .lightbox-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .lightbox-content {
    position: relative; z-index: 1;
    max-width: 90vw; max-height: 90vh;
    transform: scale(0.9); transition: transform 0.3s;
  }
  .lightbox.active .lightbox-content { transform: scale(1); }
  .lightbox-content img {
    max-width: 100%; max-height: 90vh;
    border-radius: 12px; box-shadow: 0 30px 100px rgba(0,0,0,0.5);
    display: block;
  }
  .lightbox-close {
    position: absolute; top: -50px; right: 0;
    background: none; border: none;
    color: #fff; font-size: 2.5rem; cursor: pointer;
    opacity: 0.7; transition: opacity 0.2s;
  }
  .lightbox-close:hover { opacity: 1; }
  @media (max-width: 600px) {
    .lightbox-close { top: -60px; right: 10px; font-size: 3rem; }
  }

  /* ── DARK THEME ── */
  @media (prefers-color-scheme: dark) {
    :root {
      --white: #111110;
      --off-white: #1a1917;
      --text: #F0EDE8;
      --muted: #8a8a84;
      --accent: #FF6B47;
      --accent2: #8B84FF;
      --glass-bg: rgba(255,255,255,0.06);
      --glass-border: rgba(255,255,255,0.1);
      --glass-shadow: 0 8px 40px rgba(0,0,0,0.3);
    }

    /* Blobs — more saturated, slightly brighter for dark bg */
    .blob-1 { background: #5C2A1E; opacity: 0.5; }
    .blob-2 { background: #2A2560; opacity: 0.5; }
    .blob-3 { background: #0D3D2E; opacity: 0.45; }
    .blob-4 { background: #4A3800; opacity: 0.45; }

    /* Nav */
    nav {
      background: rgba(17,17,16,0.8);
      border-bottom-color: rgba(255,255,255,0.08);
    }

    /* Mobile menu dropdown */
    #mobileMenu {
      background: rgba(17,17,16,0.97) !important;
      border-bottom-color: rgba(255,255,255,0.08) !important;
    }
    #mobileMenu a { color: var(--text) !important; border-bottom-color: rgba(255,255,255,0.07) !important; }
    #mobileMenu a:last-child { color: var(--accent) !important; }

    /* Buttons */
    .btn-secondary {
      border-color: rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.06);
      color: var(--text);
    }
    .btn-secondary:hover { border-color: var(--accent2); background: rgba(139,132,255,0.1); }

    /* Gallery cards */
    .photo-card .placeholder {
      background: linear-gradient(145deg, #1e1c1a, #171614);
    }

    /* Photo tag badge */
    .photo-card .tag {
      background: rgba(20,19,17,0.75);
      border-color: rgba(255,255,255,0.12);
      color: var(--text);
    }

    /* Upload hint */
    .upload-hint {
      border-color: rgba(139,132,255,0.25);
    }

    /* Steps dividers */
    .step {
      border-bottom-color: rgba(255,255,255,0.07);
    }

    /* About card watermark letter */
    .about-card::after { color: #1e1c1a; }

    /* Lightbox */
    .lightbox-img-wrap .placeholder { background: #1e1c1a; }

    /* Nav mobile btn */
    .nav-mobile-btn {
      border-color: rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.07);
    }
    .nav-mobile-btn span { background: var(--text); }

    /* Footer border */
    footer { border-top-color: rgba(255,255,255,0.07); }

    /* Section tag colour — keep readable */
    .hero-scroll { color: var(--muted); }

    /* Pricing popular tier */
    .tier.popular { background: rgba(255,255,255,0.1); }
    .tier-cta-outline { border-color: rgba(255,255,255,0.15); color: var(--text); background: rgba(255,255,255,0.05); }
  }

/* ── RESETS FOR SEMANTIC TAGS ── */
button { border: none; background: transparent; font-family: inherit; padding: 0; outline: none; cursor: pointer; }
.photo-item { text-align: left; }
.gender-tab { appearance: none; -webkit-appearance: none; outline: none; }
.nav-mobile-btn { appearance: none; -webkit-appearance: none; outline: none; padding: 4px; cursor: pointer; }


/* ── CATEGORY PAGE SPECIFIC CSS ── */
.nav-back { display:inline-flex; align-items:center; gap:8px; font-size:0.82rem; letter-spacing:0.06em; color:var(--muted); text-decoration:none; transition:color 0.2s; }
.nav-back:hover { color:var(--accent); }
.nav-back:hover svg { transform:translateX(-3px); }
.nav-back svg { transition:transform 0.2s; }
.cat-header { padding:130px 40px 48px; max-width:1120px; margin:0 auto; position:relative; z-index:1; }
.cat-breadcrumb { font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); margin-bottom:16px; }
.cat-breadcrumb a { color:var(--muted); text-decoration:none; }
.cat-breadcrumb a:hover { color:var(--accent); }
.cat-header-row { display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:20px; margin-bottom:16px; }
.cat-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.4rem,5vw,4.2rem); font-weight:300; line-height:1.1; letter-spacing:-0.01em; }
.cat-title em { font-style:italic; color:var(--accent); }
.cat-desc { font-size:0.95rem; color:var(--muted); line-height:1.7; max-width:480px; }
.cat-count { display:inline-flex; align-items:center; gap:8px; margin-top:16px; font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); }
.cat-count::before { content:''; display:block; width:24px; height:1px; background:var(--muted); }
.cat-grid { columns:3; column-gap:14px; padding:0 40px 100px; max-width:1120px; margin:0 auto; position:relative; z-index:1; }
.photo-item { break-inside:avoid; border-radius:16px; overflow:hidden; position:relative; cursor:pointer; margin-bottom:14px; background:var(--glass-bg); border:1px solid var(--glass-border); box-shadow:var(--glass-shadow); transition:transform 0.36s cubic-bezier(0.22,1,0.36,1),box-shadow 0.36s; display:block; width:100%; text-align:left; padding:0; }
.photo-item:hover { transform:translateY(-6px); box-shadow:0 24px 64px rgba(0,0,0,0.15); }
.photo-item img { width:100%; height:auto; display:block; transition:transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.photo-item:hover img { transform:scale(1.03); }
.photo-item .overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.3) 0%,transparent 55%); opacity:0; transition:opacity 0.3s; z-index:1; }
.photo-item:hover .overlay { opacity:1; }
.photo-item .zoom { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(0.7); width:46px; height:46px; border-radius:50%; background:rgba(255,255,255,0.9); display:flex; align-items:center; justify-content:center; opacity:0; z-index:2; transition:opacity 0.25s,transform 0.25s cubic-bezier(0.22,1,0.36,1); }
.photo-item:hover .zoom { opacity:1; transform:translate(-50%,-50%) scale(1); }
.photo-placeholder { width:100%; aspect-ratio:2/3; background:linear-gradient(145deg,#f0ede8,#e2ddd6); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:var(--muted); }
.photo-placeholder svg { opacity:0.2; }
.photo-placeholder p { font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; opacity:0.4; }
.lightbox { position:fixed; inset:0; z-index:1000; background:rgba(12,11,10,0.92); backdrop-filter:blur(24px); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.3s cubic-bezier(0.22,1,0.36,1); }
.lightbox.open { opacity:1; pointer-events:all; }
.lb-inner { position:relative; max-width:60vw; width:100%; transform:scale(0.9) translateY(20px); transition:transform 0.35s cubic-bezier(0.22,1,0.36,1); }
.lightbox.open .lb-inner { transform:scale(1) translateY(0); }
.lb-img { border-radius:20px; overflow:hidden; box-shadow:0 40px 100px rgba(0,0,0,0.5); max-height:85vh; display:flex; align-items:center; justify-content:center; }
.lb-img img { width:100%; height:auto; max-height:85vh; object-fit:contain; display:block; }
.lb-close { position:absolute; top:-16px; right:-16px; width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; cursor:pointer; color:#fff; z-index:10; transition:background 0.2s; padding:0; }
.lb-close:hover { background:rgba(255,255,255,0.22); }
.lb-nav { position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center; cursor:pointer; color:#fff; transition:background 0.2s; padding:0; }
.lb-nav:hover { background:rgba(255,255,255,0.2); }
.lb-prev { left:-60px; } .lb-next { right:-60px; }
.lb-dots { display:flex; gap:8px; justify-content:center; margin-top:16px; }
.lb-dot { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.25); cursor:pointer; transition:background 0.2s,transform 0.2s; border:none; padding:0; }
.lb-dot.active { background:#fff; transform:scale(1.3); }


@media(max-width:900px){
  .cat-header{padding:110px 20px 40px;}
  .cat-grid{columns:2;column-gap:10px;padding:0 20px 80px;}
  .lb-prev{left:-44px;}.lb-next{right:-44px;}
}
@media(max-width:600px){
  .cat-header{padding:90px 16px 32px;}
  .cat-grid{columns:2;column-gap:8px;padding:0 16px 60px;}
  .cat-header-row{flex-direction:column;align-items:flex-start;gap:16px;}
  .lb-prev,.lb-next{display:none;}
  .lb-inner{max-width:94vw;}
  .gender-tab{padding:8px 16px;font-size:0.75rem;}
}
@media(max-width:420px){
  .cat-grid{columns:1;}
}
@media(prefers-color-scheme:dark){
  .photo-placeholder{background:linear-gradient(145deg,#1e1c1a,#171614);}
}

/* ── SKELETON LOADER ── */
.skeleton-row { columns:3; column-gap:14px; width:100%; }
.skeleton-item { 
  break-inside:avoid; border-radius:16px; margin-bottom:14px;
  height:240px; background:var(--glass-bg); 
  border:1px solid var(--glass-border); position:relative; overflow:hidden;
}
.skeleton-item::after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transform:translateX(-100%);
  animation:shimmer 1.5s infinite;
}
@keyframes shimmer { 100% { transform:translateX(100%); } }

@media(max-width:900px){ .skeleton-row { columns:2; } }
@media(max-width:420px){ .skeleton-row { columns:1; } }

/* ── CATEGORY NAV ── */
.cat-nav-wrap { display:flex; justify-content:space-between; align-items:center; margin-top:40px; padding-top:32px; border-top:1px solid var(--glass-border); gap:20px; }
.cat-nav-btn { display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--text); transition:transform 0.2s, color 0.2s; max-width:45%; }
.cat-nav-btn:hover { color:var(--accent); }
.cat-nav-btn.prev:hover { transform:translateX(-4px); }
.cat-nav-btn.next:hover { transform:translateX(4px); }
.cat-nav-text { display:flex; flex-direction:column; line-height:1.2; }
.cat-nav-text span { font-size:0.65rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--muted); margin-bottom:4px; }
.cat-nav-text strong { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:400; }
.cat-nav-btn svg { color:var(--muted); transition:color 0.2s; }
.cat-nav-btn:hover svg { color:var(--accent); }

@media(max-width:600px) {
  .cat-nav-text strong { font-size:0.95rem; }
  .cat-nav-wrap { margin-top:32px; padding-top:24px; }
}

