:root {
    /* Inverted scheme: navy is the paper, white is the accent */
    --navy: #ffffff;            /* accent (was navy) → now white */
    --navy-deep: #f0f0f0;       /* hover state for white CTAs */
    --navy-soft: rgba(255,255,255,0.6);
    --navy-tint: rgba(255,255,255,0.06);  /* subtle white wash */
    --navy-line: rgba(255,255,255,0.18);  /* divider lines on navy */
    --paper: #1a416a;           /* main background (was white) */
    --paper-warm: #15375a;      /* slightly deeper section bg */
    --ink: #ffffff;             /* main text colour */
    --ink-soft: rgba(255,255,255,0.78);
    --muted: rgba(255,255,255,0.5);
    /* Inverted block (formerly the navy section) */
    --inv-bg: #ffffff;
    --inv-line: #d8e2ec;
    --inv-ink: #0f1c2b;
    --inv-ink-soft: #4a5b6f;
    --inv-muted: #8896a6;
    --inv-accent: #1a416a;
    --inv-accent-deep: #122e4c;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  ::selection { background: var(--navy); color: var(--paper); }

  /* === SCROLL PROGRESS BAR === */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, rgba(255,255,255,0.4), #ffffff);
    z-index: 100;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(255,255,255,0.5);
  }

  /* === CUSTOM CURSOR === */
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    width: 7px; height: 7px;
    background: #ffffff;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.8);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  }
  .cursor-ring.hovering {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
  }
  @media (hover: none), (max-width: 1024px) {
    .cursor-dot, .cursor-ring { display: none; }
  }

  @media (hover: hover) and (pointer: fine) {
    * { cursor: none !important; }
  }

  /* === FLOATING SHAPE CANVAS === */
  .shape-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .shape {
    position: absolute;
    opacity: 0.5;
    will-change: transform;
  }
  .shape-ring {
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.14);
  }
  .shape-disc {
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
  }
  .shape-blob {
    background: rgba(255,255,255,0.04);
    filter: blur(2px);
  }
  .shape-cross {
    border: none;
  }
  .shape-cross::before, .shape-cross::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.16);
  }
  .shape-cross::before {
    left: 50%; top: 0;
    width: 1.5px; height: 100%;
    transform: translateX(-50%);
  }
  .shape-cross::after {
    top: 50%; left: 0;
    height: 1.5px; width: 100%;
    transform: translateY(-50%);
  }
  .shape-tri {
    width: 0 !important; height: 0 !important;
    background: none !important;
  }

  @keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(24px, -36px) rotate(120deg); }
    66% { transform: translate(-30px, 20px) rotate(240deg); }
  }
  @keyframes pulse-soft {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.12); }
  }
  @keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* === SCROLL REVEAL SYSTEM === */
  .sr {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
    will-change: opacity, transform;
  }
  .sr.sr-up    { transform: translateY(48px); }
  .sr.sr-down  { transform: translateY(-48px); }
  .sr.sr-left  { transform: translateX(-56px); }
  .sr.sr-right { transform: translateX(56px); }
  .sr.sr-scale { transform: scale(0.88); }
  .sr.sr-blur  { filter: blur(14px); transform: translateY(28px); }
  .sr.sr-rotate { transform: translateY(40px) rotate(-4deg); }

  .sr.visible {
    opacity: 1;
    transform: translate(0,0) scale(1) rotate(0deg);
    filter: blur(0);
  }
  .sr.d1 { transition-delay: 0.08s; }
  .sr.d2 { transition-delay: 0.16s; }
  .sr.d3 { transition-delay: 0.24s; }
  .sr.d4 { transition-delay: 0.32s; }
  .sr.d5 { transition-delay: 0.40s; }
  .sr.d6 { transition-delay: 0.48s; }

  @media (prefers-reduced-motion: reduce) {
    .sr { opacity: 1 !important; transform: none !important; filter: none !important; }
    .shape { animation: none !important; }
  }

  /* === NAV === */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: rgba(26,65,106,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  nav.scrolled { border-bottom-color: var(--navy-line); }

  /* === LOGO LOCKUPS ===
     The logo file has a black background baked in; mix-blend-mode: screen
     makes the black drop out on the navy site so only the white logo shows. */
  .logo-lockup {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-lockup img {
    display: block;
    height: 48px;
    width: 48px;
    object-fit: contain;
    mix-blend-mode: screen;
  }

  /* Hero — large, prominent placement */
  .hero-logo {
    display: block;
    width: auto;
    max-width: 360px;
    height: auto;
    margin-bottom: 28px;
    mix-blend-mode: screen;
    filter: drop-shadow(0 12px 36px rgba(255,255,255,0.08));
  }

  /* Contact — slightly larger hero-style logo */
  .contact-logo {
    display: block;
    width: auto;
    max-width: 280px;
    height: auto;
    margin: 0 auto 40px;
    mix-blend-mode: screen;
  }

  /* Inverted block (white #photo-package section) — logo needs a different blend */
  .logo-on-light img,
  .logo-on-light {
    mix-blend-mode: multiply;
  }

  /* Mobile responsive logo sizing */
  @media (max-width: 600px) {
    .logo-lockup img { height: 40px; width: 40px; }
    .hero-logo { max-width: 240px; }
    .contact-logo { max-width: 200px; }
  }

  /* Hide the old fallback styles cleanly */
  .nav-mark, .hero-mark, .contact-mark,
  .nav-mark img, .hero-mark img, .contact-mark img,
  .nav-mark

  .nav-links {
    display: flex;
    gap: 36px;
    font-size: 13px;
  }
  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
  }
  .nav-links a:hover { color: var(--navy); }

  .nav-cta {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 22px;
    background: #ffffff;
    color: var(--inv-accent);
    text-decoration: none;
    transition: background 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
    font-weight: 600;
    will-change: transform;
  }
  .nav-cta:hover { background: rgba(255,255,255,0.85); }

  /* === HERO === */
  .hero {
    min-height: 100vh;
    padding: 160px 48px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--paper);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .hero > * { position: relative; z-index: 2; }

  /* Hero floating geometry — reacts to mouse */
  .hero-geo {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  .hero-geo .gshape {
    position: absolute;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }
  .geo-ring-lg {
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.16);
    top: 8%; right: 6%;
  }
  .geo-ring-lg::after {
    content: '';
    position: absolute;
    inset: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .geo-disc {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    bottom: 16%; right: 22%;
    animation: pulse-soft 9s ease-in-out infinite;
  }
  .geo-dots {
    bottom: 22%; left: 8%;
    width: 120px; height: 120px;
    background-image: radial-gradient(rgba(255,255,255,0.28) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.6;
  }
  .geo-cross-h {
    top: 24%; left: 4%;
    width: 46px; height: 46px;
  }
  .geo-cross-h::before, .geo-cross-h::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.3);
  }
  .geo-cross-h::before { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
  .geo-cross-h::after { top: 50%; left: 0; height: 1.5px; width: 100%; transform: translateY(-50%); }
  .geo-arc {
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: rgba(255,255,255,0.22);
    border-right-color: rgba(255,255,255,0.22);
    top: 40%; right: 38%;
    animation: spin-slow 28s linear infinite;
  }
  .hero-mark

  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--navy);
  }

  h1.hero-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(48px, 9vw, 148px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 36px;
    max-width: 1300px;
    color: var(--ink);
  }
  h1.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
  }

  .hero-sub {
    font-size: 17px;
    line-height: 1.65;
    max-width: 540px;
    color: var(--ink-soft);
    margin-bottom: 44px;
  }

  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  .btn-primary, .btn-ghost {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 32px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    position: relative;
    will-change: transform;
  }
  .btn-primary {
    background: #ffffff;
    color: var(--inv-accent);
    border: 1px solid #ffffff;
  }
  .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 16px 40px -10px rgba(255,255,255,0.4);
  }
  .btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
  }
  .btn-ghost:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.08);
  }

  .hero-meta {
    position: absolute;
    bottom: 48px; right: 48px;
    text-align: right;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.8;
    z-index: 1;
  }
  .hero-meta strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
  }

  /* === NAV TABS (pill bar embedded in top nav) === */
  .nav-tabs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-tabs::-webkit-scrollbar { display: none; }

  .tab-bar-inner {
    display: flex;
    gap: 4px;
    align-items: center;
    background: rgba(255,255,255,0.06);
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .tab-link {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
    border-radius: 999px;
    transition: all 0.3s;
    white-space: nowrap;
  }
  .tab-link:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
  }
  .tab-link.active {
    background: #ffffff;
    color: var(--inv-accent);
    font-weight: 600;
  }

  /* === MARQUEE === */
  .marquee {
    background: #ffffff;
    color: var(--inv-accent);
    overflow: hidden;
    padding: 26px 0;
  }
  .marquee-track {
    display: flex;
    gap: 80px;
    animation: scroll 50s linear infinite;
    white-space: nowrap;
  }
  .marquee-track span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    color: var(--inv-accent);
    font-weight: 300;
  }
  .marquee-track span::before {
    content: '✦';
    margin-right: 80px;
    font-style: normal;
    opacity: 0.5;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* === SECTIONS === */
  section {
    padding: 140px 48px;
    position: relative;
    scroll-margin-top: 70px;
    z-index: 1;
  }

  /* Animated hairline divider that draws in on reveal */
  .section-label::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--navy);
    transform-origin: left;
    transition: transform 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s;
  }
  .sr .section-label::before { transform: scaleX(0); }
  .sr.visible .section-label::before { transform: scaleX(1); }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
  }
  .section-label::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--navy);
  }

  .section-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 900px;
    color: var(--ink);
  }
  .section-title em { font-style: italic; color: var(--navy); }

  .section-intro {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 600px;
    line-height: 1.65;
    margin-bottom: 80px;
  }

  /* === SERVICES === */
  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--navy-line);
    border: 1px solid var(--navy-line);
  }
  .service {
    background: var(--paper);
    padding: 56px 40px;
    transition: background 0.5s;
  }
  .service:hover { background: var(--paper-warm); }

  .service-num {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--navy);
    letter-spacing: 0.2em;
    margin-bottom: 32px;
    font-weight: 500;
  }
  .service h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--ink);
  }
  .service h3 em { font-style: italic; color: var(--navy); }
  .service p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
  }

  /* === PACKAGES === */
  #packages { background: var(--paper-warm); }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
  }

  .package {
    background: var(--paper-warm);
    border: 1px solid var(--navy-line);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.4s;
    overflow: hidden;
    will-change: transform;
  }
  .package::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
  }
  .package > * { position: relative; z-index: 1; }

  .package:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.4);
  }

  /* Bronze tier — warm copper tones */
  .package.tier-bronze {
    border-color: rgba(184, 115, 51, 0.5);
  }
  .package.tier-bronze::before {
    background: linear-gradient(160deg, rgba(184,115,51,0.18) 0%, rgba(74,40,24,0.08) 60%, rgba(0,0,0,0) 100%);
  }
  .package.tier-bronze:hover {
    border-color: rgba(184, 115, 51, 0.9);
  }

  /* Silver tier (featured) — cool steel tones */
  .package.tier-silver {
    border-color: rgba(220, 226, 232, 0.7);
    transform: scale(1.04);
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.4);
  }
  .package.tier-silver::before {
    background: linear-gradient(160deg, rgba(220,226,232,0.22) 0%, rgba(140,150,160,0.1) 55%, rgba(0,0,0,0) 100%);
  }
  .package.tier-silver:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 32px 56px -16px rgba(0,0,0,0.55);
    border-color: #ffffff;
  }

  /* Gold tier — rich champagne gold tones */
  .package.tier-gold {
    border-color: rgba(212, 175, 55, 0.55);
  }
  .package.tier-gold::before {
    background: linear-gradient(160deg, rgba(212,175,55,0.22) 0%, rgba(160,112,40,0.1) 55%, rgba(0,0,0,0) 100%);
  }
  .package.tier-gold:hover {
    border-color: rgba(212, 175, 55, 1);
  }

  .package-flag {
    position: absolute;
    top: -1px; right: 24px;
    background: #ecedef;
    color: var(--inv-accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 16px;
  }

  .package-tier {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .package.tier-bronze .package-tier { color: #e3a86c; }
  .package.tier-silver .package-tier { color: #ecedef; }
  .package.tier-gold .package-tier { color: #f3dd8a; }

  /* === TIER PALETTE SWATCHES (small accent indicator) === */
  .palette {
    display: flex;
    gap: 5px;
    margin-bottom: 24px;
    align-items: center;
  }
  .palette-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    transition: transform 0.3s;
  }
  .package:hover .palette-swatch:nth-child(1) { transform: translateY(-2px); }
  .package:hover .palette-swatch:nth-child(2) { transform: translateY(-2px); transition-delay: 0.05s; }
  .package:hover .palette-swatch:nth-child(3) { transform: translateY(-2px); transition-delay: 0.1s; }
  .package:hover .palette-swatch:nth-child(4) { transform: translateY(-2px); transition-delay: 0.15s; }

  .palette-label {
    margin-left: 10px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
  }
  .package.tier-bronze .palette-label { color: #e3a86c; }
  .package.tier-silver .palette-label { color: #ecedef; }
  .package.tier-gold .palette-label { color: #f3dd8a; }

  /* Bronze palette */
  .palette.bronze .palette-swatch:nth-child(1) { background: #3a2418; }
  .palette.bronze .palette-swatch:nth-child(2) { background: #7a4a2a; }
  .palette.bronze .palette-swatch:nth-child(3) { background: #b87333; }
  .palette.bronze .palette-swatch:nth-child(4) { background: #e3a86c; }

  /* Silver palette */
  .palette.silver .palette-swatch:nth-child(1) { background: #4a5560; }
  .palette.silver .palette-swatch:nth-child(2) { background: #8a949e; }
  .palette.silver .palette-swatch:nth-child(3) { background: #c0c5cc; }
  .palette.silver .palette-swatch:nth-child(4) { background: #ecedef; }

  /* Gold palette */
  .palette.gold .palette-swatch:nth-child(1) { background: #4a3818; }
  .palette.gold .palette-swatch:nth-child(2) { background: #a07028; }
  .palette.gold .palette-swatch:nth-child(3) { background: #d4af37; }
  .palette.gold .palette-swatch:nth-child(4) { background: #f3dd8a; }

  .package-name {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 44px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .package-name em { font-style: italic; color: var(--navy); }
  .package.tier-bronze .package-name { color: #f0d4ad; }
  .package.tier-silver .package-name { color: #ffffff; }
  .package.tier-gold .package-name { color: #f3dd8a; }

  .package-desc {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 24px;
    min-height: 44px;
  }

  .package-price {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 64px;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.025em;
  }
  .package.tier-bronze .package-price { color: #f0d4ad; }
  .package.tier-silver .package-price { color: #ffffff; }
  .package.tier-gold .package-price { color: #f3dd8a; }

  .package-price-suffix {
    font-size: 24px;
    color: var(--muted);
    margin-left: 4px;
    font-weight: 300;
  }

  .package-price-meta {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
    font-weight: 600;
  }

  .package-divider {
    height: 1px;
    background: var(--navy-line);
    margin-bottom: 32px;
  }
  .package.tier-bronze .package-divider { background: rgba(184,115,51,0.4); }
  .package.tier-silver .package-divider { background: rgba(255,255,255,0.35); }
  .package.tier-gold .package-divider { background: rgba(212,175,55,0.45); }

  .deliverables {
    list-style: none;
    margin-bottom: 36px;
    flex-grow: 1;
  }
  .deliverables li {
    padding: 14px 0;
    border-bottom: 1px solid var(--navy-line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-size: 14px;
  }
  .deliverables li:last-child { border-bottom: none; }
  .package.tier-bronze .deliverables li { border-bottom-color: rgba(184,115,51,0.18); }
  .package.tier-silver .deliverables li { border-bottom-color: rgba(255,255,255,0.18); }
  .package.tier-gold .deliverables li { border-bottom-color: rgba(212,175,55,0.18); }

  .deliv-label { color: var(--ink-soft); }
  .deliv-value {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--ink);
    white-space: nowrap;
  }
  .package.tier-bronze .deliv-value { color: #f0d4ad; }
  .package.tier-silver .deliv-value { color: #ffffff; }
  .package.tier-gold .deliv-value { color: #f3dd8a; }

  .deliv-unit {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 4px;
  }

  .package-cta {
    display: block;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    font-weight: 600;
  }

  /* Bronze CTA — copper border, copper text */
  .package.tier-bronze .package-cta {
    border-color: rgba(184,115,51,0.6);
    color: #e3a86c;
  }
  .package.tier-bronze .package-cta:hover {
    border-color: #b87333;
    background: rgba(184,115,51,0.12);
    color: #f0d4ad;
  }

  /* Silver CTA — solid silver fill (it's the recommended tier, should pop) */
  .package.tier-silver .package-cta {
    background: #ecedef;
    color: var(--inv-accent);
    border-color: #ecedef;
  }
  .package.tier-silver .package-cta:hover {
    background: #ffffff;
    border-color: #ffffff;
  }

  /* Gold CTA — gold border, gold text */
  .package.tier-gold .package-cta {
    border-color: rgba(212,175,55,0.7);
    color: #f3dd8a;
  }
  .package.tier-gold .package-cta:hover {
    border-color: #d4af37;
    background: rgba(212,175,55,0.12);
    color: #f8e8b0;
  }

  .package-note {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin-top: 16px;
    letter-spacing: 0.06em;
  }

  /* === PORTFOLIO === */
  #portfolio {
    background: var(--paper-warm);
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
  }

  .portfolio-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.45s, border-color 0.4s;
  }
  .portfolio-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
  }

  .portfolio-item img,
  .portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Placeholder shown when slot is empty */
  .portfolio-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--serif);
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    z-index: 0;
  }
  .portfolio-placeholder svg {
    width: 34px;
    height: 34px;
    opacity: 0.5;
  }
  .portfolio-placeholder .ph-label {
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.08em;
  }
  .portfolio-placeholder .ph-slot {
    font-family: var(--sans);
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  /* === TESTIMONIALS === */
  #testimonials {
    background: var(--paper);
    position: relative;
    overflow: hidden;
  }
  #testimonials::before {
    content: '"';
    position: absolute;
    top: -80px;
    right: 40px;
    font-family: var(--serif);
    font-size: 520px;
    font-style: italic;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
  }
  #testimonials > * { position: relative; z-index: 1; }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
  }

  .testimonial {
    background: var(--paper-warm);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s, border-color 0.4s;
  }
  .testimonial:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.25);
  }

  .testimonial-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 64px;
    line-height: 0.5;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    height: 24px;
  }

  .testimonial-quote {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 19px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 32px;
    flex-grow: 1;
    letter-spacing: -0.005em;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.18);
  }

  .testimonial-name {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 2px;
  }
  .testimonial-role {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
  }

  /* === PHOTO PACKAGE (inverted block — white on navy site) === */
  #photo-package {
    background: var(--inv-bg);
    color: var(--inv-ink);
  }
  #photo-package .section-label { color: var(--inv-accent); }
  #photo-package .section-label::before { background: var(--inv-accent); }

  .photo-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }

  .photo-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    color: var(--inv-ink);
  }
  .photo-title em {
    font-style: italic;
    color: var(--inv-accent);
    opacity: 1;
  }

  .photo-content > p {
    color: var(--inv-ink-soft);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 480px;
  }

  .photo-includes { list-style: none; margin-bottom: 40px; }
  .photo-includes li {
    padding: 14px 0;
    border-top: 1px solid var(--inv-line);
    color: var(--inv-ink-soft);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .photo-includes li:last-child { border-bottom: 1px solid var(--inv-line); }
  .photo-includes li::before {
    content: '✦';
    color: var(--inv-accent);
    font-size: 12px;
    opacity: 1;
  }

  .photo-price-card {
    background: var(--inv-accent);
    color: var(--paper);
    padding: 56px 48px;
    text-align: center;
    position: relative;
  }
  .photo-price-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    pointer-events: none;
  }

  .photo-price-tier {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-weight: 600;
  }
  .photo-price-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 36px;
    color: #ffffff;
  }
  .photo-price-name em { color: rgba(255,255,255,0.7); }

  .photo-price {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 96px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
  }
  .photo-price-fixed {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    font-weight: 600;
  }
  .photo-price-cta {
    display: block;
    padding: 16px;
    background: #ffffff;
    color: var(--inv-accent);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
    font-weight: 600;
    will-change: transform;
  }
  .photo-price-cta:hover { background: rgba(255,255,255,0.85); }

  /* === PROCESS === */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--navy-line);
  }
  .process-step {
    padding: 48px 32px 48px 0;
    border-right: 1px solid var(--navy-line);
    position: relative;
  }
  .process-step:last-child { border-right: none; padding-right: 0; }
  .process-step:not(:first-child) { padding-left: 32px; }

  .process-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
  .process-step h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--ink);
  }
  .process-step p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
  }

  /* === CONTACT === */
  #contact {
    background: var(--paper);
    text-align: center;
    padding: 160px 48px;
  }
  .contact-mark

  .contact-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(48px, 8vw, 120px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 40px;
    color: var(--ink);
  }
  .contact-title em { font-style: italic; color: var(--navy); }

  .contact-email {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(28px, 4vw, 48px);
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 6px;
    transition: color 0.3s, border-color 0.3s;
    display: inline-block;
    margin-bottom: 56px;
  }
  .contact-email:hover { color: rgba(255,255,255,0.85); border-color: #ffffff; }

  .contact-meta {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.08em;
  }
  .contact-meta strong {
    display: block;
    color: var(--navy);
    font-family: var(--serif);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    text-transform: none;
    font-style: italic;
  }

  /* === FOOTER === */
  footer {
    background: #0d2944;
    color: rgba(255,255,255,0.7);
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .footer-logo {
    height: 32px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
    opacity: 0.85;
  }

  /* === RESPONSIVE === */
  @media (max-width: 1024px) {
    nav { padding: 16px 24px; }
    .nav-tabs { display: none; }
    .tab-bar { padding: 12px 20px; justify-content: flex-start; }
    .tab-bar-inner { padding: 4px; }
    .tab-link { padding: 8px 16px; font-size: 11px; letter-spacing: 0.06em; }
    section { padding: 100px 32px; }
    .hero { padding: 140px 32px 80px; }
    .hero-meta { display: none; }
    .services { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .package.featured, .package.tier-silver { transform: none; }
    .package.featured:hover, .package.tier-silver:hover { transform: translateY(-6px); }
    .photo-card { grid-template-columns: 1fr; gap: 48px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step { border-right: none; border-bottom: 1px solid var(--navy-line); }
    .process-step:not(:first-child) { padding-left: 0; }
    .process-step { padding: 36px 0; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    #testimonials::before { font-size: 320px; right: 0; }
  }
  @media (max-width: 600px) {
    nav { padding: 14px 18px; }
    .nav-cta { padding: 8px 16px; font-size: 11px; }
    section { padding: 80px 20px; }
    .hero { padding: 120px 20px 60px; }
    .process-grid { grid-template-columns: 1fr; }
    footer { padding: 32px 20px; flex-direction: column; text-align: center; }
    .package { padding: 36px 24px; }
    .photo-price-card { padding: 40px 28px; }
    .photo-price { font-size: 72px; }
    .package-price { font-size: 52px; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .testimonial { padding: 32px 24px; }
    .testimonial-quote { font-size: 17px; }
  }

  /* === ENTRANCE ANIMATIONS === */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: reveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .reveal.d1 { animation-delay: 0.1s; }
  .reveal.d2 { animation-delay: 0.25s; }
  .reveal.d3 { animation-delay: 0.4s; }
  .reveal.d4 { animation-delay: 0.55s; }
  .reveal.d5 { animation-delay: 0.7s; }

  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
