  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #0d0d0d;
    --paper: #f5f2ed;
    --cream: #ede9e1;
    --gold: #b8975a;
    --gold-light: #d4b47a;
    --muted: #6b6660;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,151,90,0.15);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 3rem; list-style: none; }
  .nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    transition: background 0.3s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.5rem;
    position: relative;
    z-index: 2;
  }
  .logo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.35em;
    color: var(--gold);
  }
  .logo-sub {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 0.25rem;
  }
  .hero-headline { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 4rem 0; }
  .hero-headline .eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
  }
  .hero-headline h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.0;
    color: var(--white);
  }
  .hero-headline h1 em { font-style: italic; color: var(--gold-light); }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3.5rem;
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.5rem;
    width: fit-content;
    transition: color 0.3s, border-color 0.3s;
  }
  .hero-cta:hover { color: var(--gold-light); border-color: var(--gold-light); }
  .hero-cta .arrow { font-size: 1rem; transition: transform 0.3s; }
  .hero-cta:hover .arrow { transform: translateX(4px); }
  .hero-foot {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--muted);
  }
  .hero-right { position: relative; overflow: hidden; }
  .hero-right-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 70% 30%, rgba(184,151,90,0.18) 0%, transparent 60%),
      linear-gradient(160deg, #1a1814 0%, #2c2620 50%, #1a1814 100%);
  }
  .hero-right-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(184,151,90,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184,151,90,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-right-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; padding: 3.5rem; text-align: center;
  }
  .hero-badge {
    border: 1px solid rgba(184,151,90,0.4);
    padding: 2.5rem;
    position: relative;
    max-width: 340px;
  }
  .hero-badge::before, .hero-badge::after {
    content: ''; position: absolute;
    width: 20px; height: 20px;
    border-color: var(--gold); border-style: solid;
  }
  .hero-badge::before { top:-1px; left:-1px; border-width: 1px 0 0 1px; }
  .hero-badge::after  { bottom:-1px; right:-1px; border-width: 0 1px 1px 0; }
  .hero-badge p { font-size: 1.05rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.7; }
  .hero-badge .author {
    margin-top: 1.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    font-style: normal;
  }

  /* ── HERO GALLERY STRIP ── */
  .hero-strip {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    height: 220px;
    overflow: hidden;
  }
  .hero-strip-img {
    overflow: hidden;
    position: relative;
  }
  .hero-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s, transform 0.5s;
  }
  .hero-strip-img:hover img { filter: grayscale(0%); transform: scale(1.08); }

  /* ── RULE ── */
  .rule-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem 3.5rem;
    background: var(--ink);
  }
  .rule-text {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    white-space: nowrap;
  }
  .rule-line { flex: 1; height: 1px; background: rgba(184,151,90,0.3); }

  /* ── PACKAGES ── */
  .packages-section { padding: 8rem 3.5rem; max-width: 1400px; margin: 0 auto; }
  .section-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ink);
  }
  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .section-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2.5rem, 4vw, 4.5rem); line-height: 1.05; }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-count { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--cream); line-height: 1; letter-spacing: 0.05em; }

  /* cards */
  .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--ink); }
  .card {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--ink);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
  }
  .card:last-child { border-right: none; }
  .card.featured { background: var(--ink); color: var(--white); }

  .card-tier {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }
  .card.featured .card-tier { color: var(--gold); }
  .card-name { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; letter-spacing: 0.05em; line-height: 1; margin-bottom: 0.5rem; }
  .card.featured .card-name { color: var(--white); }
  .card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid;
  }
  .card:not(.featured) .card-price { border-bottom-color: var(--ink); }
  .card.featured .card-price { border-bottom-color: rgba(255,255,255,0.2); }
  .card-price .amount { font-size: 2.2rem; font-weight: 600; }

  /* VIEW PHOTOS button */
  .view-photos-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: none;
    border: 1px solid rgba(184,151,90,0.4);
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
  }
  .view-photos-btn:hover { background: rgba(184,151,90,0.1); border-color: var(--gold); }

  .card-section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .card:not(.featured) .card-section-label { color: var(--muted); }
  .card.featured .card-section-label { color: var(--gold); }

  .card ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
  .card ul li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; font-weight: 300; line-height: 1.4; }
  .card:not(.featured) ul li { color: var(--ink); }
  .card.featured ul li { color: rgba(255,255,255,0.85); }
  .bullet { flex-shrink: 0; width: 16px; height: 1px; background: var(--gold); margin-top: 0.6em; }
  .card.featured .bullet { background: var(--gold-light); }

  .card-payment {
    margin-top: auto;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid;
  }
  .card:not(.featured) .card-payment { border-top-color: var(--ink); }
  .card.featured .card-payment { border-top-color: rgba(255,255,255,0.2); }
  .payment-row {
    display: flex;
    justify-content: space-between;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0.4rem 0;
  }
  .card:not(.featured) .payment-row { color: var(--muted); }
  .card.featured .payment-row { color: rgba(255,255,255,0.6); }
  .payment-row span:last-child { color: var(--gold); font-weight: 400; }

  .card-cta {
    display: block;
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    text-align: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid;
  }
  .card:not(.featured) .card-cta { border-color: var(--ink); color: var(--ink); }
  .card:not(.featured) .card-cta:hover { background: var(--ink); color: var(--white); }
  .card.featured .card-cta { background: var(--gold); border-color: var(--gold); color: var(--ink); }
  .card.featured .card-cta:hover { background: var(--gold-light); border-color: var(--gold-light); }

  .platinum-note {
    padding: 2rem 2.5rem;
    border: 1px solid var(--ink);
    border-top: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--cream);
  }
  .platinum-note p { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; color: var(--muted); line-height: 1.7; }
  .platinum-note strong { color: var(--gold); font-weight: 400; }

  /* ── MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,13,13,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .modal-overlay.active { display: flex; }

  .modal {
    background: var(--paper);
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
  }

  .modal-header {
    background: var(--ink);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .modal-header-text {}
  .modal-tier {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--white); letter-spacing: 0.05em; }

  .modal-close {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
  }
  .modal-close:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

  .modal-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 300px;
  }
  .modal-img-wrap { overflow: hidden; position: relative; }
  .modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
  .modal-img-wrap:hover img { transform: scale(1.06); }
  .modal-img-wrap .img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1rem 0.75rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .modal-img-wrap:hover .img-caption { opacity: 1; }

  .modal-body { padding: 2.5rem; }
  .modal-desc {
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ink);
  }
  .modal-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .modal-highlight {
    padding: 1.2rem;
    border: 1px solid rgba(0,0,0,0.12);
    background: var(--cream);
  }
  .modal-highlight-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .modal-highlight-val { font-size: 1rem; font-weight: 300; color: var(--ink); }

  .modal-cta {
    display: block;
    text-align: center;
    padding: 1.1rem 2rem;
    background: var(--gold);
    color: var(--ink);
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
  }
  .modal-cta:hover { background: var(--gold-light); }

  /* ── PROCESS ── */
  .process-section { background: var(--ink); padding: 8rem 3.5rem; }
  .process-inner { max-width: 1400px; margin: 0 auto; }
  .process-section .section-label { color: var(--gold); }
  .process-section .section-title { color: var(--white); }
  .process-section .section-title em { color: var(--gold-light); }
  .process-section .section-header { border-bottom-color: rgba(255,255,255,0.15); margin-bottom: 4rem; }
  .process-section .section-count { color: rgba(255,255,255,0.05); }
  .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.1); }
  .process-item { padding: 2.5rem; border-right: 1px solid rgba(255,255,255,0.1); }
  .process-item:last-child { border-right: none; }
  .process-num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: rgba(184,151,90,0.15); line-height: 1; margin-bottom: 1.5rem; }
  .process-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 0.75rem; }
  .process-desc { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; }

  /* ── CONTACT ── */
  .contact-section { padding: 8rem 3.5rem; max-width: 1400px; margin: 0 auto; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--ink); }
  .contact-left { padding: 4rem; border-right: 1px solid var(--ink); }
  .contact-right { padding: 4rem; background: var(--cream); display: flex; flex-direction: column; justify-content: center; gap: 2.5rem; }
  .contact-label { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
  .contact-value { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--ink); text-decoration: none; display: block; transition: color 0.3s; }
  .contact-value:hover { color: var(--gold); }
  .contact-left h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: 1.1; margin-bottom: 1.5rem; }
  .contact-left h2 em { font-style: italic; color: var(--gold); }
  .contact-left p { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 380px; }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    padding: 2.5rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(184,151,90,0.3);
    flex-wrap: wrap;
    gap: 1rem;
  }
  footer .f-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.35em; color: var(--gold); }
  footer .f-copy { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--muted); }
  footer .f-designed {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: var(--muted);
  }
  footer .f-designed a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
  footer .f-designed a:hover { color: var(--gold-light); }

  /* animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-up { opacity: 0; animation: fadeUp 0.8s ease forwards; }
  .delay-1 { animation-delay: 0.15s; }
  .delay-2 { animation-delay: 0.3s; }
  .delay-3 { animation-delay: 0.45s; }
  .delay-4 { animation-delay: 0.6s; }

  /* ── PORTFOLIO GALLERY ── */
  .gallery-section {
    padding: 8rem 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
  }
  .filter-btn {
    background: none;
    border: none;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    position: relative;
    transition: color 0.3s ease;
  }
  .filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(-50%);
  }
  .filter-btn:hover {
    color: var(--ink);
  }
  .filter-btn.active {
    color: var(--ink);
    font-weight: 600;
  }
  .filter-btn.active::after {
    width: 80%;
  }
  .gallery-grid {
    columns: 3 320px;
    column-gap: 2rem;
    width: 100%;
  }
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    opacity: 1;
    transform: scale(1);
  }
  .gallery-item-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(13, 13, 13, 0.1);
    background: var(--cream);
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
  }
  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0.2) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 1.8rem;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
  }
  .gallery-item-category {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .gallery-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--white);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.05s;
  }
  .gallery-item:hover .gallery-item-category,
  .gallery-item:hover .gallery-item-title {
    transform: translateY(0);
  }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.98);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    user-select: none;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .lightbox.active {
    display: flex;
    opacity: 1;
  }
  .lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid rgba(184, 151, 90, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .lightbox.active .lightbox-content img {
    transform: scale(1);
  }
  .lightbox-info {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--white);
  }
  .lightbox-counter {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
  }
  .lightbox-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
  }
  .lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
    line-height: 1;
    z-index: 2010;
  }
  .lightbox-close:hover {
    opacity: 1;
    color: var(--gold);
  }
  .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.4;
    padding: 2.5rem 1.5rem;
    transition: opacity 0.3s, color 0.3s, transform 0.3s;
    font-family: 'DM Mono', monospace;
    z-index: 2010;
  }
  .lightbox-prev:hover, .lightbox-next:hover {
    opacity: 1;
    color: var(--gold);
  }
  .lightbox-prev { left: 2rem; }
  .lightbox-prev:hover { transform: translateY(-50%) translateX(-6px); }
  .lightbox-next { right: 2rem; }
  .lightbox-next:hover { transform: translateY(-50%) translateX(6px); }

  /* responsive */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { min-height: 100vh; padding: 7.5rem 1.5rem 3.5rem; }
    .packages-section { padding: 5rem 1.5rem; }
    .contact-section { padding: 5rem 1.5rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .card { border-right: none; border-bottom: 1px solid var(--ink); padding: 3rem 1.5rem; }
    .card:last-child { border-bottom: none; }
    .platinum-note { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
    .process-grid { grid-template-columns: 1fr; }
    .process-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 2rem 1.5rem; }
    .process-item:last-child { border-bottom: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-left { border-right: none; border-bottom: 1px solid var(--ink); padding: 3rem 1.5rem; }
    .contact-right { padding: 3rem 1.5rem; }
    .section-header { grid-template-columns: 1fr; margin-bottom: 3rem; }
    .section-count { display: none; }
    footer { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
    .rule-section { display: flex; flex-direction: column; gap: 0.75rem; padding: 2.5rem 1.5rem; text-align: center; }
    .rule-line { display: none; }
    .rule-text { white-space: normal; letter-spacing: 0.2em; font-size: 0.58rem; }
    .process-section { padding: 5rem 1.5rem; }
    .hero-strip { grid-template-columns: repeat(4, 1fr); height: 140px; }
    .hero-strip .hero-strip-img:nth-child(n+5) { display: none; }
    .modal-images {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      height: 380px;
      gap: 0;
      -webkit-overflow-scrolling: touch;
    }
    .modal-images::-webkit-scrollbar {
      display: none;
    }
    .modal-img-wrap {
      flex: 0 0 100%;
      scroll-snap-align: start;
      height: 100%;
    }
    .modal-img-wrap img {
      object-position: center 15%;
    }
    .modal-img-wrap .img-caption {
      opacity: 1;
      background: linear-gradient(transparent, rgba(0,0,0,0.85));
    }
    .modal-highlights { grid-template-columns: 1fr; }

    /* Gallery & Lightbox Mobile Styles */
    .gallery-section {
      padding: 5rem 1.5rem;
    }
    .gallery-filters {
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .filter-btn {
      font-size: 0.65rem;
      padding: 0.4rem 0.8rem;
    }
    .gallery-grid {
      columns: 2 160px;
      column-gap: 1rem;
    }
    .gallery-item {
      margin-bottom: 1rem;
    }
    .gallery-item-overlay {
      padding: 1.5rem 1rem;
      opacity: 1; /* Keep captions visible on touch devices */
      background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.1) 80%);
    }
    .gallery-item-category {
      transform: none;
    }
    .gallery-item-title {
      font-size: 1rem;
      transform: none;
    }
    .lightbox-prev, .lightbox-next {
      display: none;
    }
    .lightbox-close {
      top: 1.5rem;
      right: 1.5rem;
      font-size: 2rem;
    }
    .lightbox-content {
      max-width: 90vw;
    }
    .lightbox-content img {
      max-height: 60vh;
    }
  }

