  :root {
    --teal: #8b1c2d;
    --teal-dark: #000000;
    --teal-light: #c41e3a;
    --teal-pale: #1a0606;
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --gold-pale: #1a0f00;
    --beige: #0d0d0d;
    --beige-dark: #3a2820;
    --white: #ffffff;
    --cream: #000000;
    --text-dark: #f5e6c8;
    --text-mid: #c9b88c;
    --text-light: #8a7d5a;
    --panel: #0d0d0d;
    --panel-2: #141414;
    --gold-grad: linear-gradient(135deg, #b8862b 0%, #f5d76e 35%, #fff4c2 50%, #f5d76e 65%, #b8862b 100%);
    --font-display: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Jost', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  /* SEO/a11y — visible to Google + screen readers, hidden visually */
  .sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
  }

  /* Keyboard focus ring — visible for keyboard users, hidden for mouse */
  :focus { outline: none; }
  :focus-visible {
    outline: 2px solid #f5d76e;
    outline-offset: 3px;
    border-radius: 2px;
  }
  a:focus-visible, button:focus-visible, .nav-cta:focus-visible,
  .btn-primary:focus-visible, .btn-outline:focus-visible, .btn-gold:focus-visible {
    box-shadow: 0 0 0 3px rgba(212,175,55,0.45);
  }
  input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.3) !important;
    border-color: #d4af37 !important;
  }

  /* Mobile menu backdrop — covers everything below the open menu */
  .mobile-backdrop {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .mobile-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Lock body scroll while menu is open */
  body.menu-open { overflow: hidden; }

  /* Respect reduced-motion OS preference (WCAG 2.3.3) */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* scroll-behavior managed by JS to avoid double-easing — see showPage() */

  body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─────────────────────────── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--beige); }
  ::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 10px; }

  /* ─── NAV ───────────────────────────────── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(253,250,246,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,169,110,0.2);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }

  .nav-logo {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--teal-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--teal-dark); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 2px;
    font-weight: 400 !important;
    transition: background 0.3s !important;
  }
  .nav-cta:hover { background: var(--teal-dark) !important; }
  .nav-cta::after { display: none !important; }

  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .hamburger span {
    width: 24px; height: 1.5px; background: var(--text-dark);
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none; position: fixed; top: 72px; left: 0;
    width: 100%; background: var(--cream);
    border-bottom: 1px solid var(--beige-dark);
    padding: 24px 32px; z-index: 999;
    flex-direction: column; gap: 20px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-body); font-weight: 300;
    font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-mid); text-decoration: none;
  }

  /* ─── SECTION HELPERS ───────────────────── */
  section { position: relative; }

  .section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
  }

  .section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 18px;
  }

  .section-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 520px;
  }

  .divider {
    width: 50px; height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--teal-light));
    margin: 20px 0;
  }
  .divider.center { margin: 20px auto; }

  .btn-primary {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 14px 38px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--teal);
    transition: all 0.3s;
    cursor: pointer;
  }
  .btn-primary:hover {
    background: transparent;
    color: var(--teal-dark);
    border-color: var(--teal-dark);
  }

  .btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--teal-dark);
    padding: 13px 36px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--teal);
    transition: all 0.3s;
    cursor: pointer;
  }
  .btn-outline:hover {
    background: var(--teal);
    color: var(--white);
  }

  .btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 14px 38px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.3s;
    cursor: pointer;
  }
  .btn-gold:hover {
    background: transparent;
    color: var(--gold);
  }

  /* ─── PAGE SECTIONS (hidden by default) ── */
  .page-section { display: none; }
  .page-section.active { display: block; }

  /* ─── HERO ──────────────────────────────── */
  #hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--cream) 0%, #e8f4ee 40%, var(--gold-pale) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 32px 80px;
    position: relative;
    overflow: hidden;
  }

  #hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse at 20% 30%, rgba(26,107,69,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 70%, rgba(201,168,92,0.12) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-ornament {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
    will-change: transform, opacity;
  }
  .hero-ornament.float-ready {
    animation: floatSmooth 6s ease-in-out infinite;
    will-change: transform;
    opacity: 1;
  }

  .hero-title {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 9vw, 7rem);
    color: var(--teal-dark);
    line-height: 1.1;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
  }

  .hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
  }

  .hero-divider {
    display: flex; align-items: center; gap: 16px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s forwards;
  }
  .hero-divider span {
    display: block; width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }
  .hero-divider span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
  }
  .hero-divider i {
    font-style: normal; color: var(--gold); font-size: 0.6rem;
  }

  .hero-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
  }

  .hero-cta {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 1s forwards;
  }

  .hero-scroll {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-light);
    opacity: 0; animation: fadeUp 1s 1.4s forwards;
  }
  .hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
  }

  /* ─── FEATURES STRIP ─────────────────────── */
  #features-strip {
    background: #0e4a2e;
    padding: 28px 48px;
    display: flex; justify-content: center; gap: 60px;
    flex-wrap: wrap;
  }
  .feature-item {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.85);
  }
  .feature-icon {
    font-size: 1.2rem; color: var(--gold-light);
  }
  .feature-text {
    font-family: var(--font-body); font-weight: 300;
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  }

  /* ─── SERVICES PREVIEW ───────────────────── */
  #services-preview {
    padding: 100px 48px;
    background: var(--cream);
    text-align: center;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: var(--beige-dark);
    margin-top: 64px;
    border: 1px solid var(--beige-dark);
  }
  .service-card {
    background: var(--white);
    padding: 50px 36px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .service-card:hover { background: var(--teal-pale); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 300;
    color: var(--beige-dark);
    line-height: 1;
    margin-bottom: 16px;
  }
  .service-name {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 400;
    color: var(--teal-dark);
    margin-bottom: 12px;
  }
  .service-desc {
    font-size: 0.85rem; font-weight: 300;
    line-height: 1.8; color: var(--text-mid);
  }

  /* ─── WHY CHOOSE ME ──────────────────────── */
  #why-choose {
    padding: 100px 48px;
    background: linear-gradient(135deg, #e8f4ee 0%, var(--gold-pale) 100%);
    display: flex; align-items: center;
    gap: 80px; flex-wrap: wrap;
  }
  .why-content { flex: 1; min-width: 300px; }
  .why-grid { flex: 1; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .why-item {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 28px 24px;
    border: 1px solid rgba(201,169,110,0.2);
    transition: transform 0.3s;
  }
  .why-item:hover { transform: translateY(-4px); }
  .why-icon { font-size: 1.6rem; margin-bottom: 12px; }
  .why-title {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 500;
    color: var(--teal-dark); margin-bottom: 8px;
  }
  .why-text {
    font-size: 0.82rem; font-weight: 300;
    line-height: 1.7; color: var(--text-mid);
  }

  /* ─── TESTIMONIALS ───────────────────────── */
  #testimonials-preview {
    padding: 100px 48px;
    background: var(--white);
    text-align: center;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px; margin-top: 64px;
  }
  .testimonial-card {
    background: var(--cream);
    padding: 44px 36px;
    border: 1px solid var(--beige-dark);
    position: relative;
    transition: transform 0.3s;
  }
  .testimonial-card:hover { transform: translateY(-6px); }
  .testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem; font-weight: 300;
    color: var(--teal-light);
    position: absolute; top: 12px; left: 24px;
    line-height: 1;
  }
  .testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem; font-weight: 300;
    line-height: 1.8; color: var(--text-mid);
    margin-bottom: 24px; padding-top: 20px;
  }
  .testimonial-name {
    font-size: 0.75rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
  }
  .stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 10px; }

  /* ─── PORTFOLIO PREVIEW ──────────────────── */
  #portfolio-preview {
    padding: 100px 48px;
    background: #0a3d22;
    text-align: center;
  }
  #portfolio-preview .section-label { color: var(--gold-light); }
  #portfolio-preview .section-title { color: var(--white); }
  #portfolio-preview .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto; }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px; margin-top: 60px;
  }
  .portfolio-item {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--teal);
    cursor: pointer;
  }
  .portfolio-item:first-child { grid-row: span 2; aspect-ratio: auto; }
  .portfolio-item .portfolio-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-style: italic; font-size: 1rem;
    color: rgba(255,255,255,0.5);
  }
  .portfolio-overlay {
    position: absolute; inset: 0;
    background: rgba(61,122,124,0.8);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s;
    gap: 8px;
  }
  .portfolio-item:hover .portfolio-overlay { opacity: 1; }
  .portfolio-overlay-title {
    font-family: var(--font-display);
    font-style: italic; font-size: 1.2rem;
    color: var(--white);
  }
  .portfolio-overlay-line {
    width: 30px; height: 1px; background: var(--gold-light);
  }

  /* ─── INSTAGRAM STRIP ────────────────────── */
  #instagram-strip {
    padding: 80px 48px;
    background: var(--cream);
    text-align: center;
  }
  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px; margin-top: 40px;
  }
  .insta-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--teal-pale), var(--gold-pale));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; cursor: pointer;
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .insta-item:hover { transform: scale(0.97); opacity: 0.85; }

  /* ─── CTA BANNER ─────────────────────────── */
  #cta-banner {
    padding: 100px 48px;
    background: linear-gradient(135deg, #0a3d22 0%, #1a6b45 50%, #2d8a5a 100%);
    text-align: center;
    position: relative; overflow: hidden;
  }
  #cta-banner::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,0.15), transparent 70%);
    pointer-events: none;
  }
  #cta-banner .section-label { color: var(--gold-light); }
  #cta-banner .section-title { color: var(--white); }
  #cta-banner .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }

  /* ─── ABOUT PAGE ─────────────────────────── */
  #about-page {
    padding: 140px 48px 100px;
    max-width: 1200px; margin: 0 auto;
  }
  .about-hero {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-bottom: 100px;
  }
  .about-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
  }
  .about-artist-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .about-values {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; margin-top: 60px;
  }
  .value-item {
    text-align: center; padding: 40px 24px;
    border: 1px solid var(--beige-dark);
    background: var(--white);
    transition: transform 0.3s;
  }
  .value-item:hover { transform: translateY(-6px); }
  .value-icon { font-size: 2rem; margin-bottom: 16px; }
  .value-title {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 500;
    color: var(--teal-dark); margin-bottom: 10px;
  }
  .value-text {
    font-size: 0.85rem; font-weight: 300;
    line-height: 1.8; color: var(--text-mid);
  }

  /* ─── SERVICES PAGE ──────────────────────── */
  #services-page {
    padding: 140px 48px 100px;
    max-width: 1200px; margin: 0 auto;
  }
  .services-list { margin-top: 60px; }
  .service-full {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 48px; align-items: start;
    padding: 48px 0;
    border-bottom: 1px solid var(--beige-dark);
  }
  .service-full:last-child { border-bottom: none; }
  .service-full-name {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 400;
    color: var(--teal-dark); margin-bottom: 12px;
  }
  .service-full-desc {
    font-size: 0.9rem; font-weight: 300;
    line-height: 1.9; color: var(--text-mid);
    margin-bottom: 20px;
  }
  .service-full-includes {
    list-style: none; display: flex; flex-direction: column; gap: 6px;
  }
  .service-full-includes li {
    font-size: 0.82rem; font-weight: 300;
    color: var(--text-mid); padding-left: 16px;
    position: relative;
  }
  .service-full-includes li::before {
    content: '—'; position: absolute; left: 0;
    color: var(--gold);
  }
  .service-pricing {
    text-align: right; padding: 28px 24px;
    border: 1px solid var(--beige-dark);
    background: var(--white); align-self: center;
  }
  .price-from {
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-light);
    display: block; margin-bottom: 6px;
  }
  .price-amount {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 300;
    color: var(--teal-dark);
  }
  .price-note {
    font-size: 0.72rem; font-weight: 300;
    color: var(--text-light); margin-top: 8px;
  }
  .custom-quote-banner {
    background: linear-gradient(135deg, var(--teal-pale), var(--gold-pale));
    border: 1px solid var(--beige-dark);
    padding: 50px 40px; margin-top: 60px;
    text-align: center;
  }

  /* ─── PORTFOLIO PAGE ─────────────────────── */
  #portfolio-page {
    padding: 140px 48px 100px;
  }
  .portfolio-header { text-align: center; margin-bottom: 60px; }
  .portfolio-filter {
    display: flex; gap: 8px; justify-content: center;
    margin-bottom: 40px; flex-wrap: wrap;
  }
  .filter-btn {
    padding: 8px 24px;
    font-family: var(--font-body); font-size: 0.72rem;
    font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
    background: transparent; border: 1px solid var(--beige-dark);
    color: var(--text-mid); cursor: pointer; transition: all 0.3s;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--teal); color: var(--white);
    border-color: var(--teal);
  }
  .portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
  }
  .portfolio-full-item {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--teal-pale), var(--gold-pale));
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; cursor: pointer;
    transition: transform 0.3s;
  }
  .portfolio-full-item:nth-child(3n) {
    background: linear-gradient(135deg, var(--gold-pale), var(--beige));
  }
  .portfolio-full-item:nth-child(5n) {
    background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
  }
  .portfolio-full-item:hover { transform: scale(0.98); }
  .portfolio-placeholder-text {
    font-family: var(--font-display);
    font-style: italic; font-size: 1rem;
    color: var(--teal-light); text-align: center; padding: 20px;
  }

  /* ─── BOOKING PAGE ───────────────────────── */
  #booking-page {
    padding: 140px 48px 100px;
    max-width: 800px; margin: 0 auto;
  }
  .booking-header { text-align: center; margin-bottom: 60px; }
  .booking-note {
    background: var(--teal-pale);
    border-left: 3px solid var(--teal);
    padding: 20px 24px; margin-bottom: 44px;
    font-size: 0.85rem; font-weight: 300;
    line-height: 1.7; color: var(--teal-dark);
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group.full { grid-column: span 2; }
  .form-group label {
    font-size: 0.72rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-mid); font-weight: 400;
  }
  .form-group input, .form-group select, .form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--beige-dark);
    background: var(--white);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
    color: var(--text-dark); outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--teal);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit { margin-top: 32px; text-align: center; }
  .deposit-note {
    margin-top: 20px;
    font-size: 0.78rem; font-weight: 300;
    color: var(--text-light); text-align: center;
    font-style: italic;
  }

  /* ─── TESTIMONIALS PAGE ──────────────────── */
  #testimonials-page {
    padding: 140px 48px 100px;
  }
  .testimonials-header { text-align: center; margin-bottom: 80px; }
  .testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px; max-width: 1200px; margin: 0 auto;
  }
  .testimonial-full-card {
    background: var(--white);
    border: 1px solid var(--beige-dark);
    padding: 48px 40px;
    position: relative; transition: transform 0.3s;
  }
  .testimonial-full-card:hover { transform: translateY(-6px); }
  .testimonial-full-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 6rem; font-weight: 300;
    color: var(--teal-light); opacity: 0.5;
    position: absolute; top: 8px; left: 24px; line-height: 1;
  }
  .testimonial-full-text {
    font-family: var(--font-display);
    font-style: italic; font-size: 1.05rem;
    font-weight: 300; line-height: 1.9;
    color: var(--text-mid); margin-bottom: 28px;
    padding-top: 30px;
  }
  .testimonial-full-meta { border-top: 1px solid var(--beige-dark); padding-top: 20px; }
  .testimonial-full-name {
    font-size: 0.8rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--teal-dark);
    font-weight: 500; margin-bottom: 4px;
  }
  .testimonial-full-event {
    font-size: 0.78rem; font-weight: 300;
    color: var(--text-light);
  }

  /* ─── CONTACT PAGE ───────────────────────── */
  #contact-page {
    padding: 140px 48px 100px;
  }
  .contact-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; max-width: 1100px; margin: 60px auto 0;
  }
  .contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 400;
    color: var(--teal-dark); margin-bottom: 16px;
  }
  .contact-info p {
    font-size: 0.88rem; font-weight: 300;
    line-height: 1.8; color: var(--text-mid);
    margin-bottom: 36px;
  }
  .contact-detail {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 24px;
  }
  /* .contact-detail-icon — full rule lives in the override block to avoid !important wars */
  .contact-detail-content label {
    font-size: 0.68rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-light);
    display: block; margin-bottom: 4px;
  }
  .contact-detail-content span {
    font-size: 0.9rem; font-weight: 300; color: var(--text-dark);
  }
  .social-links {
    display: flex; gap: 12px; margin-top: 36px;
  }
  /* .social-link — full rule lives in the override block to avoid !important wars */

  /* ─── FOOTER ─────────────────────────────── */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 48px 32px;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
  }
  .footer-brand .footer-logo {
    font-family: var(--font-script);
    font-size: 2.2rem; color: var(--white);
    display: block; margin-bottom: 12px;
  }
  .footer-brand p {
    font-size: 0.82rem; font-weight: 300;
    line-height: 1.8; max-width: 260px;
  }
  .footer-col h4 {
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    margin-bottom: 20px; font-weight: 400;
  }
  .footer-col a {
    display: block; color: rgba(255,255,255,0.55);
    text-decoration: none; font-size: 0.85rem; font-weight: 300;
    margin-bottom: 10px; transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom p { font-size: 0.78rem; font-weight: 300; }
  .footer-tagline {
    font-family: var(--font-display);
    font-style: italic; color: var(--gold-light);
    font-size: 0.9rem;
  }

  /* ─── ANIMATIONS ─────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
  }
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes floatSmooth {
    0%   { transform: translate3d(0, 0px, 0); }
    50%  { transform: translate3d(0, -7px, 0); }
    100% { transform: translate3d(0, 0px, 0); }
  }
  @keyframes floatGently {
    0%   { transform: translate3d(0, 0px, 0); }
    50%  { transform: translate3d(0, -8px, 0); }
    100% { transform: translate3d(0, 0px, 0); }
  }
  @keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,92,0); }
    50% { box-shadow: 0 0 0 8px rgba(201,168,92,0.15); }
  }
  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
  }
  @keyframes borderDraw {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0% 0 0); }
  }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
  }
  @keyframes rippleAnim {
    to { transform: scale(2.5); opacity: 0; }
  }

  /* hero ornament float triggered via JS after fadeUp completes */

  /* Scroll indicator pulse */
  .hero-scroll-line { animation: scrollPulse 2s infinite; }

  /* Shimmer on gold dividers */
  .divider {
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
  }

  /* Fade-in base (scroll triggered) */
  .fade-in {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
                transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* Staggered children */
  .fade-in:nth-child(1) { transition-delay: 0s; }
  .fade-in:nth-child(2) { transition-delay: 0.1s; }
  .fade-in:nth-child(3) { transition-delay: 0.2s; }
  .fade-in:nth-child(4) { transition-delay: 0.3s; }
  .fade-in:nth-child(5) { transition-delay: 0.4s; }
  .fade-in:nth-child(6) { transition-delay: 0.5s; }

  /* Slide variants */
  .slide-left {
    opacity: 0; transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
                transform 0.8s cubic-bezier(0.22,1,0.36,1);
  }
  .slide-left.visible { opacity: 1; transform: translateX(0); }
  .slide-right {
    opacity: 0; transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
                transform 0.8s cubic-bezier(0.22,1,0.36,1);
  }
  .slide-right.visible { opacity: 1; transform: translateX(0); }

  /* Scale in */
  .scale-in {
    opacity: 0; transform: scale(0.94);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
                transform 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .scale-in.visible { opacity: 1; transform: scale(1); }

  /* Service cards hover — lift + glow */
  .service-card {
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
                background 0.4s, box-shadow 0.4s;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26,107,69,0.1);
  }

  /* Why items hover */
  .why-item {
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.4s;
  }
  .why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(201,168,92,0.15);
  }

  /* Testimonial cards */
  .testimonial-card, .testimonial-full-card {
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.4s;
  }
  .testimonial-card:hover, .testimonial-full-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(26,107,69,0.1);
  }

  /* Portfolio hover */
  .portfolio-item, .portfolio-full-item {
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  }

  /* Buttons — smooth press effect */
  .btn-primary, .btn-outline, .btn-gold {
    transition: all 0.3s cubic-bezier(0.22,1,0.36,1),
                transform 0.15s ease;
  }
  .btn-primary:active, .btn-outline:active, .btn-gold:active {
    transform: scale(0.97);
  }
  .btn-primary:hover, .btn-gold:hover {
    box-shadow: 0 8px 30px rgba(26,107,69,0.25);
    transform: translateY(-2px);
  }

  /* Nav CTA pulse on load */
  .nav-cta { animation: pulseGold 3s 2s ease-in-out infinite; }

  /* Form inputs — smooth focus */
  .form-group input, .form-group select, .form-group textarea {
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(26,107,69,0.08);
    transform: translateY(-1px);
  }

  /* Page transition */
  .page-section.active {
    animation: scaleIn 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
  }

  /* Instagram grid hover */
  .insta-item {
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.35s, opacity 0.3s;
  }
  .insta-item:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 36px rgba(26,107,69,0.15);
    opacity: 1 !important;
  }

  /* Value items */
  .value-item {
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.4s;
  }
  .value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(201,168,92,0.12);
  }

  /* Social links — consolidated into override block */

  /* Features strip items */
  .feature-item {
    transition: transform 0.3s;
  }
  .feature-item:hover { transform: translateY(-3px); }

  /* Filter buttons */
  .filter-btn {
    transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  }
  .filter-btn:hover, .filter-btn.active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,107,69,0.2);
  }

  /* Floating gold dots decoration */
  #hero::after {
    content: '✦';
    position: absolute;
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0.3;
    top: 25%;
    right: 10%;
    animation: floatGently 5s ease-in-out infinite,
               sparkle 5s ease-in-out infinite;
  }

  /* Success modal entrance */
  #successModal > div {
    animation: scaleIn 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
  }

  /* Smooth page-section hide/show */
  .page-section { transition: opacity 0.2s; }
  .page-section:not(.active) { pointer-events: none; }

  /* ─── RESPONSIVE ─────────────────────────── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    #hero { padding: 120px 24px 80px; }
    #features-strip { padding: 24px; gap: 24px; }
    #services-preview, #why-choose, #testimonials-preview,
    #portfolio-preview, #instagram-strip, #cta-banner { padding: 70px 24px; }

    .why-choose-inner { flex-direction: column; }
    #why-choose { flex-direction: column; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-item:first-child { grid-row: span 1; aspect-ratio: 3/4; }
    .instagram-grid { grid-template-columns: repeat(3,1fr); }

    #about-page, #services-page, #booking-page,
    #testimonials-page { padding: 120px 24px 80px; }
    .about-hero { grid-template-columns: 1fr; gap: 40px; }
    .about-values { grid-template-columns: 1fr; }
    .service-full { grid-template-columns: 1fr; }
    .service-pricing { text-align: left; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }

    #contact-page { padding: 120px 24px 80px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }

    footer { padding: 48px 24px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: span 2; }

    .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-full-grid { grid-template-columns: 1fr; }

    #portfolio-page { padding: 120px 24px 80px; }
  }

  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
  }


@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =======================================================
   BINDER PORTFOLIO
======================================================= */
.binder-scene {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 680px;
  margin: 48px 0 60px;
}

/* COVER */
.binder-cover {
  display: flex;
  cursor: pointer;
  filter: drop-shadow(8px 8px 24px rgba(0,0,0,0.18));
}

.binder-spine {
  width: 28px;
  height: 660px;
  background: var(--teal-dark);
  border-radius: 4px 0 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 120px 0;
  box-shadow: inset -2px 0 6px rgba(0,0,0,0.3);
}

.binder-ring {
  width: 18px;
  height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  opacity: 0.85;
}

.binder-front {
  width: 440px;
  height: 660px;
  background: #0c3d28;
  border-radius: 0 4px 4px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 0 20px rgba(0,0,0,0.2);
}

.binder-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 26px, rgba(255,255,255,0.025) 26px, rgba(255,255,255,0.025) 28px);
  pointer-events: none;
}

.binder-front::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--teal-dark);
}

.binder-border {
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(201,168,92,0.65);
  pointer-events: none;
  z-index: 1;
}

.binder-border::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 0.75px solid rgba(201,168,92,0.22);
}

.binder-front-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 36px;
  gap: 8px;
}

.binder-brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gold-light);
  text-align: center;
  margin: 0;
}

.binder-studio-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-align: center;
  margin: 0;
}

.binder-ornament-line {
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2px 0 6px;
}

.binder-hero-photo {
  width: 420px;
  height: 280px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,92,0.18);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.binder-hero-photo span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

.binder-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  text-align: center;
  margin: 6px 0 0;
}

.binder-year {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.65;
  margin: 0;
}

.binder-open-btn {
  margin-top: 18px;
  padding: 12px 38px;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,92,0.55);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.binder-open-btn:hover { background: rgba(201,168,92,0.15); }

/* OPEN STATE */
.binder-open {
  display: none;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.binder-index {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

.binder-index-header {
  background: var(--teal-dark);
  padding: 28px 40px 24px;
  text-align: center;
  border-bottom: 2px solid rgba(201,168,92,0.25);
}

.binder-index-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--gold-light);
  margin: 0 0 6px;
}

.binder-index-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(253,250,246,0.6);
  letter-spacing: 0.08em;
  margin: 0;
}

.binder-index-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 36px 40px 32px;
}

.binder-cat-card {
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--beige-dark);
  position: relative;
}

.binder-cat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(14,74,46,0.14); }

.binder-cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  z-index: 1;
}

.binder-cat-photo {
  height: 170px;
  background: var(--beige-dark);
  position: relative;
  overflow: hidden;
}

.binder-cat-photo img { width: 100%; height: 100%; object-fit: cover; display: block; image-rendering: auto; }

.binder-cat-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(14,74,46,0.52));
  pointer-events: none;
}

.binder-cat-script-overlay {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-light);
  z-index: 2;
  margin: 0;
}

.binder-cat-info { padding: 14px 14px 36px; }

.binder-cat-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--teal-dark);
  margin: 0 0 8px;
}

.binder-cat-line {
  width: 26px; height: 1px;
  background: var(--gold);
  margin-bottom: 7px;
  opacity: 0.75;
}

.binder-cat-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.4;
}

.binder-cat-arrow {
  position: absolute;
  bottom: 12px; right: 12px;
  color: var(--teal);
  font-size: 1rem;
  transition: transform 0.2s;
}
.binder-cat-card:hover .binder-cat-arrow { transform: translateX(3px); }

.binder-close-btn {
  display: block;
  margin: 18px auto 0;
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px 16px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.binder-close-btn:hover { color: var(--teal-dark); }

/* PAGE SPREAD */
.binder-spread { display: none; }

.binder-spread-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 18px;
}

.binder-back-btn {
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--teal);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.binder-back-btn:hover { opacity: 0.7; }

.binder-spread-cat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0;
}

.binder-spread-pages {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin: 0;
}

.binder-pages {
  display: flex;
  background: var(--beige-dark);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0,0,0,0.12);
  min-height: 500px;
}

.binder-page-left, .binder-page-right {
  flex: 1;
  background: var(--cream);
  padding: 32px 32px 48px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.binder-center-spine {
  width: 16px;
  background: var(--beige-dark);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 100px 0;
}

.binder-ring-hole {
  width: 10px; height: 14px;
  background: var(--beige);
  border: 1.5px solid var(--teal-light);
  border-radius: 50%;
  opacity: 0.5;
}

.binder-page-photo {
  width: 100%; height: 100%;
  object-fit: contain;
  background: var(--beige);
  border-radius: 2px; display: block; image-rendering: auto;
}

.binder-page-photo-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}

.binder-page-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.5);
  pointer-events: none;
  border-radius: 2px;
}

.binder-page-cat-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--teal);
  margin: 0 0 10px;
}

.binder-page-ornament { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.binder-page-orn-line { width: 38px; height: 1px; background: var(--gold); opacity: 0.65; }
.binder-page-orn-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); opacity: 0.65; flex-shrink: 0; }

.binder-page-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.binder-page-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.binder-page-num {
  position: absolute;
  bottom: 16px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
}
.binder-page-left .binder-page-num  { left: 32px; }
.binder-page-right .binder-page-num { right: 32px; }

.binder-page-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex: 1; gap: 8px; opacity: 0.4; text-align: center;
}
.binder-page-empty p { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-light); margin: 0; }

.binder-page-nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 0; }

.binder-prev, .binder-next {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 9px 22px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.binder-prev:hover, .binder-next:hover { background: var(--teal); color: var(--white); }
.binder-prev:disabled, .binder-next:disabled { opacity: 0.3; cursor: default; }

/* FLIP ANIMATION */
.flip-forward.binder-flip-out  { animation: pageFlipOutFwd  0.35s ease-in  forwards; }
.flip-forward.binder-flip-in   { animation: pageFlipInFwd   0.35s ease-out forwards; }
.flip-backward.binder-flip-out { animation: pageFlipOutBwd  0.35s ease-in  forwards; }
.flip-backward.binder-flip-in  { animation: pageFlipInBwd   0.35s ease-out forwards; }

@keyframes pageFlipOutFwd {
  0%   { opacity: 1; transform: perspective(900px) rotateY(0deg)   translateX(0)    scaleX(1); }
  100% { opacity: 0; transform: perspective(900px) rotateY(-28deg) translateX(-24px) scaleX(0.88); }
}
@keyframes pageFlipInFwd {
  0%   { opacity: 0; transform: perspective(900px) rotateY(28deg)  translateX(24px)  scaleX(0.88); }
  100% { opacity: 1; transform: perspective(900px) rotateY(0deg)   translateX(0)    scaleX(1); }
}
@keyframes pageFlipOutBwd {
  0%   { opacity: 1; transform: perspective(900px) rotateY(0deg)   translateX(0)    scaleX(1); }
  100% { opacity: 0; transform: perspective(900px) rotateY(28deg)  translateX(24px)  scaleX(0.88); }
}
@keyframes pageFlipInBwd {
  0%   { opacity: 0; transform: perspective(900px) rotateY(-28deg) translateX(-24px) scaleX(0.88); }
  100% { opacity: 1; transform: perspective(900px) rotateY(0deg)   translateX(0)    scaleX(1); }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .binder-index-cards { grid-template-columns: repeat(3, 1fr); }
  .binder-front { width: 340px; }
}
@media (max-width: 720px) {
  .binder-index-cards { grid-template-columns: repeat(2, 1fr); }
  .binder-front { width: 300px; height: 580px; }
  .binder-spine { height: 580px; }
  .binder-scene { min-height: 580px; }
  .binder-hero-photo { width: 230px; height: 160px; }
  .binder-pages { flex-direction: column; }
  .binder-center-spine { display: none; }
  .binder-page-right { border-top: 1px solid var(--beige-dark); }
  .binder-index-cards { padding: 24px 20px 20px; }
  .binder-index-header { padding: 22px 20px 18px; }
}
@media (max-width: 480px) {
  .binder-index-cards { grid-template-columns: 1fr; }
  .binder-front { width: 270px; height: 520px; }
  .binder-spine { height: 520px; }
}

/* =======================================================
   BINDER 3D ENHANCEMENTS
======================================================= */
.binder-scene {
  perspective: 1400px;
  perspective-origin: 55% 38%;
}

.binder-cover {
  transform: rotateY(-14deg) rotateX(4deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.35,0,0.15,1);
  will-change: transform;
}

.binder-cover:hover {
  transform: rotateY(-9deg) rotateX(2deg) translateY(-6px) translateZ(0);
}

/* bottom book-edge face */
.binder-cover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 24px;
  right: 0;
  height: 5px;
  background: linear-gradient(to bottom, #082a1a, #041410);
  border-radius: 0 0 3px 0;
  transform-origin: top;
  transform: rotateX(-90deg);
  pointer-events: none;
}

/* directional light shading on front cover */
.binder-front {
  box-shadow:
    6px 0 24px rgba(0,0,0,0.22),
    inset -32px 0 60px rgba(0,0,0,0.18),
    2px 10px 24px rgba(0,0,0,0.28);
}

/* deeper spine shadow for 3D feel */
.binder-spine {
  box-shadow: -3px 0 10px rgba(0,0,0,0.45), inset -3px 0 8px rgba(0,0,0,0.3);
}

/* 3D page flip — override flat animation */
@keyframes binderFlipOut {
  0%   { opacity:1; transform: perspective(900px) rotateY(0deg)   scale(1); }
  60%  { opacity:0; transform: perspective(900px) rotateY(-10deg) scale(0.985); }
  100% { opacity:0; transform: perspective(900px) rotateY(-14deg) scale(0.98); }
}

@keyframes binderFlipIn {
  0%   { opacity:0; transform: perspective(900px) rotateY(14deg)  scale(0.98); }
  40%  { opacity:0; transform: perspective(900px) rotateY(10deg)  scale(0.985); }
  100% { opacity:1; transform: perspective(900px) rotateY(0deg)   scale(1); }
}

/* =======================================================
   BINDER — PHYSICAL 3D OPENING (overrides previous rules)
======================================================= */

.binder-scene {
  perspective: 1800px !important;
  perspective-origin: 50% 32% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  padding-top: 20px;
  min-height: 920px !important;
  margin: 48px 0 60px !important;
}

/* The whole binder as a 3D object */
.binder-body {
  position: relative;
  width: 590px;
  height: 820px;
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-8deg);
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.binder-body:not(.is-open):hover {
  transform: rotateX(3deg) rotateY(-5deg) translateY(-8px);
}

/* Spine */
.binder-body > .binder-spine {
  position: absolute;
  left: 0; top: 0;
  width: 30px;
  height: 820px;
  z-index: 20;
  border-radius: 4px 0 0 4px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.5), inset -3px 0 8px rgba(0,0,0,0.3);
}

/* Back cover */
.binder-back {
  position: absolute;
  left: 30px; top: 4px;
  width: 560px; height: 816px;
  background: #071e12;
  border-radius: 0 4px 4px 0;
  z-index: 1;
  box-shadow: 4px 6px 24px rgba(0,0,0,0.45);
}

/* Page stack edge visible on the right side */
.binder-back::before {
  content: '';
  position: absolute;
  top: 10px; right: -5px;
  width: 5px; height: calc(100% - 20px);
  background: repeating-linear-gradient(
    to bottom,
    #f5f0e8 0px, #f5f0e8 2px,
    #e6ddd0 2px, #e6ddd0 3px
  );
  border-radius: 0 1px 1px 0;
}

/* Interior — revealed when cover swings open */
.binder-interior {
  position: absolute;
  left: 30px; top: 0;
  width: 560px; height: 820px;
  z-index: 5;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 0 4px 4px 0;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.65s;
  /* pull out of 3D scene so text/images render at native resolution */
  transform: translateZ(2px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  isolation: isolate;
}

.binder-body.is-open .binder-interior {
  opacity: 1;
  pointer-events: auto;
}

/* Zoom in once cover has fully opened */
.binder-body.is-open {
  transform: rotateX(0deg) rotateY(0deg) scale(1.22) translateY(-10px) !important;
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1) 0.85s !important;
}

/* Front cover — the rotating panel */
.binder-cover {
  position: absolute !important;
  left: 30px !important; top: 0 !important;
  width: 560px !important; height: 820px !important;
  display: block !important;
  transform-style: preserve-3d;
  transform-origin: 0% 50%;
  transform: rotateY(0deg) !important;
  transition: transform 1.15s cubic-bezier(0.4,0,0.15,1) !important;
  z-index: 10;
  cursor: pointer !important;
  filter: none !important;
}

.binder-body.is-open .binder-cover {
  transform: rotateY(-172deg) !important;
  cursor: default !important;
}

/* Cover faces */
.binder-cover-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Outside — leather */
.binder-cover-outside {
  background: #0c3d28;
  border-radius: 0 4px 4px 0;
  overflow: hidden;
  transform: rotateY(0deg);
  box-shadow: 6px 0 28px rgba(0,0,0,0.25), inset -32px 0 60px rgba(0,0,0,0.18);
}

.binder-cover-outside::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 26px,
    rgba(255,255,255,0.025) 26px, rgba(255,255,255,0.025) 28px
  );
  pointer-events: none;
}

.binder-cover-outside::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--teal-dark);
}

/* Inside — cream lining visible when fully open */
.binder-cover-inside {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #fdfbf7 0%, #f0ebe2 100%);
  border-radius: 0 4px 4px 0;
  border-left: 3px solid var(--beige-dark);
  box-shadow: inset 3px 0 16px rgba(0,0,0,0.06);
}

/* Interior layout — compact for 440px width */
.binder-interior .binder-index {
  height: auto;
  min-height: 100%;
  overflow-y: visible;
  background: var(--white);
  border-radius: 0 4px 4px 0;
  box-shadow: none !important;
}

.binder-interior .binder-index-header {
  padding: 18px 20px 14px !important;
  border-radius: 0 !important;
}

.binder-interior .binder-index-title {
  font-size: 1.35rem !important;
}

.binder-interior .binder-index-sub {
  font-size: 0.72rem !important;
}

.binder-interior .binder-index-cards {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  padding: 18px 16px 14px !important;
}

.binder-interior .binder-cat-photo {
  height: 110px !important;
}

.binder-interior .binder-cat-info {
  padding: 10px 10px 30px !important;
}

.binder-interior .binder-cat-label {
  font-size: 0.58rem !important;
}

.binder-interior .binder-cat-script {
  font-size: 0.8rem !important;
}

.binder-interior .binder-close-btn {
  margin: 6px auto 14px !important;
  font-size: 0.72rem !important;
}

/* Spread inside binder */
.binder-interior .binder-spread {
  padding: 10px 8px;
  display: none;
}

.binder-interior .binder-spread.is-visible {
  display: block;
}

.binder-interior .binder-spread-header {
  padding: 6px 0 10px !important;
}

.binder-interior .binder-spread-cat {
  font-size: 1rem !important;
}

.binder-interior .binder-pages {
  flex-direction: row !important;
  min-height: 560px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
}

.binder-interior .binder-center-spine { display: flex !important; }

.binder-interior .binder-page-left,
.binder-interior .binder-page-right {
  padding: 12px 12px 36px !important;
}

.binder-interior .binder-page-title {
  font-size: 1.1rem !important;
}

.binder-interior .binder-page-nav {
  padding: 10px 0 0 !important;
}

.binder-interior .binder-prev,
.binder-interior .binder-next {
  padding: 7px 14px !important;
  font-size: 0.7rem !important;
}

/* Tablet / small laptop */
@media (max-width: 900px) and (min-width: 561px) {
  .binder-body {
    width: 490px;
    height: 700px;
    transform: rotateX(4deg) rotateY(-7deg);
  }
  .binder-body > .binder-spine { width: 28px; height: 700px; }
  .binder-back  { left: 28px !important; width: 462px !important; height: 696px !important; }
  .binder-interior { left: 28px !important; width: 462px !important; height: 700px !important; }
  .binder-cover { left: 28px !important; width: 462px !important; height: 700px !important; }
  .binder-hero-photo { width: 340px !important; height: 230px !important; }
  .binder-scene { min-height: 780px !important; }
}

/* Mobile */
@media (max-width: 560px) {
  .binder-body {
    width: 340px;
    height: 560px;
    transform: rotateX(4deg) rotateY(-6deg);
  }
  .binder-body > .binder-spine { width: 24px; height: 560px; }
  .binder-back  { left: 24px !important; width: 316px !important; height: 556px !important; }
  .binder-interior { left: 24px !important; width: 316px !important; height: 560px !important; }
  .binder-cover { left: 24px !important; width: 316px !important; height: 560px !important; }
  .binder-hero-photo { width: 230px !important; height: 155px !important; }
  .binder-brand-name { font-size: 1.25rem !important; }
  .binder-scene { min-height: 620px !important; }
  .binder-interior .binder-index-cards { grid-template-columns: 1fr !important; }
}

/* When binder is open, inside face sits behind viewport — keep it but ensure interior shows above */
.binder-body.is-open .binder-cover { z-index: 4; }
.binder-body.is-open .binder-interior { z-index: 6; }

/* Tablet: slightly smaller zoom */
@media (max-width: 900px) and (min-width: 561px) {
  .binder-body.is-open {
    transform: rotateX(0deg) rotateY(0deg) scale(1.1) translateY(-8px) !important;
  }
}

/* Mobile: no zoom, just flatten tilt */
@media (max-width: 560px) {
  .binder-body.is-open {
    transform: rotateX(0deg) rotateY(0deg) scale(1.0) !important;
  }
}

/* ══════════════════════════════════════════
   DARK / METALLIC-GOLD THEME OVERRIDES
   ══════════════════════════════════════════ */

body { background: #000; color: var(--text-dark); }

::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* Nav — dark glass */
nav {
  background: rgba(0,0,0,0.85) !important;
  border-bottom: 1px solid rgba(212,175,55,0.25) !important;
}
.nav-links a { color: var(--text-mid) !important; }
.nav-links a:hover { color: var(--gold-light) !important; }
.nav-cta,
.nav-links a.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  border: 1px solid var(--gold) !important;
  font-weight: 600 !important;
}
.nav-cta:hover,
.nav-links a.nav-cta:hover { background: var(--gold-light) !important; color: #000 !important; }
.hamburger span { background: var(--gold-light); }
.mobile-menu { background: #0a0a0a; border-bottom: 1px solid rgba(212,175,55,0.2); }
.mobile-menu a { color: var(--text-mid); }

/* Metallic-gold gradient text — headings + hero */
.section-title,
.hero-title,
.footer-brand .footer-logo,
.service-name,
.service-full-name,
.value-title,
.why-title,
.price-amount,
.contact-info h3,
.portfolio-overlay-title,
.testimonial-full-name {
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  animation: shimmer 6s linear infinite;
}

/* Gold script accents */
.hero-ornament, .hero-tagline, .nav-logo { color: var(--gold-light) !important; }

/* Hero — deep black with red glow */
#hero {
  background: radial-gradient(ellipse at center, #1a0606 0%, #000 70%) !important;
}
#hero::before {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(196,30,58,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(212,175,55,0.15) 0%, transparent 60%) !important;
}
.hero-text { color: var(--text-mid) !important; }

/* Brand banner image */
.brand-banner {
  display: block;
  max-width: 1100px;
  width: 95%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(212,175,55,0.18), 0 0 0 1px rgba(212,175,55,0.2);
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}

/* Logo circle treatment in nav/footer (the new round logo) */
nav img[src*="logo.jpeg"],
footer img[src*="logo.jpeg"] {
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.4);
}

/* Sections — dark backgrounds */
#services-preview,
#testimonials-preview,
#instagram-strip { background: #000 !important; }

#features-strip {
  background: #0a0303 !important;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.feature-item { color: var(--text-mid); }

#portfolio-preview {
  background: linear-gradient(180deg, #0a0303 0%, #000 100%) !important;
}

#why-choose {
  background: linear-gradient(135deg, #0d0303 0%, #000 50%, #0a0a05 100%) !important;
}
.why-item {
  background: rgba(20,20,20,0.7) !important;
  border: 1px solid rgba(212,175,55,0.25) !important;
}
.why-text { color: var(--text-mid); }

#cta-banner {
  background: linear-gradient(135deg, #1a0606 0%, #000 50%, #2a0a10 100%) !important;
}
#cta-banner::before {
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%) !important;
}

/* Cards / panels */
.service-card,
.value-item,
.testimonial-card,
.testimonial-full-card,
.service-pricing {
  background: var(--panel) !important;
  border: 1px solid rgba(212,175,55,0.18) !important;
}
.service-card:hover { background: var(--panel-2) !important; }
.services-grid { background: #1a1a1a !important; border-color: rgba(212,175,55,0.2) !important; }
.service-num { color: rgba(212,175,55,0.25) !important; -webkit-text-fill-color: rgba(212,175,55,0.25) !important; }
.service-desc, .value-text, .testimonial-text, .testimonial-full-text { color: var(--text-mid) !important; }
.testimonial-card::before, .testimonial-full-card::before { color: var(--gold) !important; opacity: 0.35; }
.testimonial-name { color: var(--gold-light) !important; }
.stars { color: var(--gold-light) !important; }

/* Form inputs — dark */
.form-group input,
.form-group select,
.form-group textarea {
  background: #0d0d0d !important;
  border: 1px solid rgba(212,175,55,0.25) !important;
  color: var(--text-dark) !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12) !important;
}
.form-group label { color: var(--text-mid); }
.booking-note {
  background: #1a0606 !important;
  border-left: 3px solid var(--gold) !important;
  color: var(--text-dark) !important;
}

/* Buttons — metallic gold primary */
.btn-primary {
  background: var(--gold-grad) !important;
  background-size: 200% auto;
  color: #000 !important;
  border: 1px solid var(--gold) !important;
  font-weight: 500;
}
.btn-primary:hover {
  background-position: right center;
  color: #000 !important;
}
.btn-outline {
  background: transparent !important;
  color: var(--gold-light) !important;
  border: 1px solid var(--gold) !important;
}
.btn-outline:hover {
  background: var(--gold) !important;
  color: #000 !important;
}
.btn-gold {
  background: var(--gold-grad) !important;
  background-size: 200% auto;
  color: #000 !important;
  border: 1px solid var(--gold) !important;
  font-weight: 500;
}
.btn-gold:hover { background-position: right center; color: #000 !important; }

/* Portfolio */
.portfolio-item, .portfolio-full-item { background: #0d0d0d; }
.portfolio-overlay { background: rgba(0,0,0,0.7) !important; }
.filter-btn { background: transparent; border: 1px solid rgba(212,175,55,0.25); color: var(--text-mid); }
.filter-btn.active, .filter-btn:hover {
  background: var(--gold) !important;
  color: #000 !important;
  border-color: var(--gold) !important;
}

/* Footer */
footer { background: #000 !important; border-top: 1px solid rgba(212,175,55,0.2); }
.footer-col a:hover { color: var(--gold-light) !important; }

/* Contact — consolidated rules (originals deleted, no !important needed) */
.contact-detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: #1a0606;
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-content span { color: var(--text-dark); }
.social-link {
  width: 44px; height: 44px;
  background: var(--gold);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.social-link:hover { background: var(--gold-light); transform: translateY(-4px) scale(1.1); }

/* Inline white FB panel override (still needed for the Facebook embed wrapper) */
[style*="background:white"] { background: #0d0d0d !important; border: 1px solid rgba(212,175,55,0.2); }

/* Booking-policy cards (replaced fragile inline background:white) */
.policy-card {
  background: #0d0d0d;
  padding: 20px 22px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 2px;
}

/* Custom-quote / services banner */
.custom-quote-banner {
  background: linear-gradient(135deg, #1a0606, #1a0f00) !important;
  border: 1px solid rgba(212,175,55,0.3) !important;
}

/* Page title em — italic gold */
.section-title em, .hero-title em { font-style: italic; }

/* Binder category cards — drop the photos, keep elegant typographic covers */
.binder-cat-photo img { display: none !important; }
.binder-cat-photo {
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.10) 0%, transparent 65%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0606 100%) !important;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}
.binder-cat-photo::before {
  content: '✦';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.7;
}
.binder-cat-photo::after {
  background: none !important;
  height: auto !important;
  bottom: 10px !important;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  content: '✦' !important;
  position: absolute;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.7;
  pointer-events: none;
}
.binder-cat-script-overlay {
  position: static !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem !important;
  letter-spacing: 0.02em;
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  animation: shimmer 6s linear infinite;
  text-align: center;
  padding: 0 16px;
}

/* Portfolio images — fill the tile, keep faces in frame */
.portfolio-item img,
.portfolio-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img,
.portfolio-full-item:hover img { transform: scale(1.04); }

/* ══════════════════════════════════════════
   MAGAZINE PORTFOLIO — maroon cover, gold interior
   ══════════════════════════════════════════ */

/* Portfolio page wrapper — soft dark stage so the magazine pops */
#portfolio-page {
  background: radial-gradient(ellipse at top, #1a0808 0%, #000 70%);
}

/* Spine: thin maroon binding instead of 3-ring binder */
.binder-body > .binder-spine {
  background: linear-gradient(90deg, #2a0608 0%, #5a0e1a 50%, #2a0608 100%) !important;
  box-shadow: inset -2px 0 6px rgba(0,0,0,0.7), inset 2px 0 6px rgba(0,0,0,0.7) !important;
  padding: 0 !important;
}
.binder-body > .binder-spine .binder-ring {
  display: none !important;
}

/* Back cover — deep maroon */
.binder-back {
  background: linear-gradient(135deg, #4a0c16 0%, #5a0e1a 50%, #3a080f 100%) !important;
}
.binder-back::before {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent 60%) !important;
}

/* FRONT COVER — maroon magazine cover (GPU-friendly flat fill) */
.binder-cover {
  will-change: transform;
}
.binder-cover-face {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* no transform here — would clobber .binder-cover-inside's rotateY(180deg) */
}
.binder-cover-outside {
  background: #5a0e1a !important;
  box-shadow: 6px 0 28px rgba(0,0,0,0.35) !important;
}
.binder-cover-outside::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%, rgba(0,0,0,0.18) 100%) !important;
  pointer-events: none !important;
  opacity: 1 !important;
  width: auto !important; height: auto !important;
  border-radius: 0 !important;
}
.binder-cover-outside::after {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0;
  height: 4px !important;
  background: linear-gradient(90deg, #b8862b, #f5d76e, #b8862b) !important;
  width: auto !important;
  border-radius: 0 !important;
  pointer-events: none;
}

/* Gold inner border frame */
.binder-cover-outside .binder-border {
  inset: 22px !important;
  border: 1.5px solid rgba(212,175,55,0.7) !important;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.3);
}
.binder-cover-outside .binder-border::after {
  inset: 7px !important;
  border: 0.5px solid rgba(212,175,55,0.35) !important;
}

/* Masthead typography on the cover */
.binder-brand-name {
  font-family: var(--font-script) !important;
  font-style: normal !important;
  font-size: 2.4rem !important;
  background: linear-gradient(135deg, #b8862b, #f5d76e 50%, #fff4c2 60%, #f5d76e 70%, #b8862b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  letter-spacing: 0.01em !important;
  text-shadow: none;
}
.binder-studio-label {
  color: rgba(245,215,110,0.85) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.42em !important;
}
.binder-ornament-line {
  background: linear-gradient(90deg, transparent, #f5d76e, transparent) !important;
  width: 200px !important;
  opacity: 0.9;
}

/* Replace the placeholder hero photo with a clean editorial block */
.binder-hero-photo {
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.08), transparent 70%),
    rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(212,175,55,0.35) !important;
  position: relative;
  flex-direction: column;
}
.binder-hero-photo::before {
  content: 'PORTFOLIO' !important;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: 0.45em;
  padding-left: 0.45em;
  background: linear-gradient(135deg, #b8862b, #f5d76e 50%, #fff4c2 60%, #f5d76e 70%, #b8862b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.binder-hero-photo::after {
  content: 'VOL. I  —  THEDZ MAKEUP CHAIR';
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  color: rgba(245,215,110,0.7);
}
.binder-hero-photo span { display: none !important; }

/* Cover tagline + year */
.binder-tagline {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  color: rgba(245,230,200,0.92) !important;
  font-size: 1.1rem !important;
}
.binder-year {
  color: rgba(245,215,110,0.85) !important;
  letter-spacing: 0.32em !important;
  opacity: 1 !important;
}

/* "Open Portfolio" CTA — metallic gold pill */
.binder-open-btn {
  background: linear-gradient(135deg, #b8862b, #f5d76e 50%, #b8862b) !important;
  background-size: 200% auto !important;
  color: #2a060a !important;
  border: 1px solid #f5d76e !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 13px 42px !important;
  box-shadow: 0 6px 20px rgba(212,175,55,0.25);
  transition: background-position 0.5s, transform 0.2s, box-shadow 0.3s !important;
}
.binder-open-btn:hover {
  background-position: right center !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,175,55,0.4);
}

/* INTERIOR — metallic gold pages (single gradient for smooth repaint) */
.binder-cover-inside {
  background: linear-gradient(135deg, #b8862b 0%, #f5d76e 50%, #b8862b 100%) !important;
  color: #2a060a !important;
  will-change: transform;
  /* keep the original rotateY(180deg) — required so the face is visible after flip */
}
.binder-interior {
  background: linear-gradient(135deg, #b8862b 0%, #f5d76e 50%, #b8862b 100%) !important;
  color: #2a060a !important;
  /* keep the original transform: translateZ(2px) — required so content sits above back cover */
}

/* Index header — magazine table of contents */
.binder-interior .binder-index {
  background: transparent !important;
  box-shadow: none !important;
}
.binder-interior .binder-index-header { background: transparent !important; }
.binder-interior .binder-index-title {
  font-family: var(--font-display) !important;
  font-style: italic;
  color: #2a060a !important;
  font-size: 1.6rem !important;
  text-align: center;
  letter-spacing: 0.04em;
}
.binder-interior .binder-index-sub {
  color: rgba(42,6,10,0.7) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

/* Category cards on gold — maroon panels */
.binder-interior .binder-cat-card {
  background: linear-gradient(135deg, #4a0c16 0%, #2a060a 100%) !important;
  border: 1px solid rgba(42,6,10,0.4) !important;
  box-shadow: 0 6px 18px rgba(42,6,10,0.25) !important;
  overflow: hidden;
}
.binder-interior .binder-cat-card::before {
  background: linear-gradient(90deg, transparent, #f5d76e, transparent) !important;
  opacity: 0.9 !important;
}
.binder-interior .binder-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(42,6,10,0.5) !important;
}
.binder-interior .binder-cat-photo {
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.18) 0%, transparent 70%),
    linear-gradient(135deg, #3a080f 0%, #2a060a 100%) !important;
  border-bottom: 1px solid rgba(212,175,55,0.35) !important;
}
.binder-interior .binder-cat-script-overlay {
  font-size: 1.5rem !important;
}
.binder-interior .binder-cat-label {
  color: #f5d76e !important;
  -webkit-text-fill-color: #f5d76e !important;
}
.binder-interior .binder-cat-line {
  background: rgba(245,215,110,0.6) !important;
}
.binder-interior .binder-cat-script {
  color: rgba(245,230,200,0.85) !important;
}
.binder-interior .binder-cat-arrow {
  color: #f5d76e !important;
}

/* Close binder button on the gold page */
.binder-interior .binder-close-btn {
  background: transparent !important;
  color: #2a060a !important;
  border: 1px solid rgba(42,6,10,0.4) !important;
  padding: 8px 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem !important;
  border-radius: 2px;
  font-weight: 500;
}
.binder-interior .binder-close-btn:hover {
  background: rgba(42,6,10,0.08) !important;
}

/* Spread (photo pages inside) */
.binder-interior .binder-spread-header {
  border-bottom: 1px solid rgba(42,6,10,0.25) !important;
}
.binder-interior .binder-spread-cat {
  font-family: var(--font-display) !important;
  font-style: italic;
  color: #2a060a !important;
  font-size: 1.3rem !important;
}
.binder-interior .binder-spread-pages {
  color: rgba(42,6,10,0.7) !important;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
}
.binder-interior .binder-back-btn {
  color: #2a060a !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* Center spine — slim maroon ribbon, no holes */
.binder-interior .binder-center-spine {
  background: linear-gradient(180deg, transparent, rgba(42,6,10,0.25), transparent) !important;
  width: 2px !important;
}
.binder-interior .binder-ring-hole { display: none !important; }

/* Page content — soft cream over the gold so photos breathe */
.binder-interior .binder-page-left,
.binder-interior .binder-page-right {
  background: rgba(255,250,235,0.55) !important;
  border: 1px solid rgba(42,6,10,0.12);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(245,215,110,0.4);
  padding: 14px 14px 38px !important; /* extra bottom space so page number doesn't overlap desc */
}
.binder-interior .binder-page-title {
  color: #2a060a !important;
  font-family: var(--font-display);
  font-style: italic;
}
.binder-interior .binder-page-desc {
  color: #4a1c20 !important;          /* dark warm maroon — readable on cream */
  font-weight: 400 !important;
}
.binder-interior .binder-page-num {
  color: rgba(42,6,10,0.5) !important;
  bottom: 12px !important;
}

/* Prev/Next buttons */
.binder-interior .binder-prev,
.binder-interior .binder-next {
  background: linear-gradient(135deg, #4a0c16, #2a060a) !important;
  color: #f5d76e !important;
  border: 1px solid rgba(245,215,110,0.4) !important;
  padding: 8px 22px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.binder-interior .binder-prev:hover,
.binder-interior .binder-next:hover {
  background: linear-gradient(135deg, #5a0e1a, #3a080f) !important;
  color: #fff4c2 !important;
}

/* Subtle page-flip glow for that magazine feel */
.binder-body.is-open {
  filter: drop-shadow(0 30px 60px rgba(212,175,55,0.15));
}

/* Smooth pop-in for Next/Previous instead of the perspective flip */
.flip-forward.binder-flip-out,
.flip-backward.binder-flip-out {
  animation: magPopOut 0.28s cubic-bezier(0.4,0,1,1) forwards !important;
}
.flip-forward.binder-flip-in,
.flip-backward.binder-flip-in {
  animation: magPopIn 0.42s cubic-bezier(0.22,1,0.36,1) forwards !important;
}
@keyframes magPopOut {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.97); }
}
@keyframes magPopIn {
  0%   { opacity: 0; transform: scale(0.97); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}
