:root {
    --black: #0a0a0a;
    --off-white: #f5f2ed;
    --cream: #ede8e0;
    --gold: #c9a84c;
    --gold-light: #e8c87a;
    --gray: #6b6b6b;
    --light-gray: #e0ddd8;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ─── NAV ─── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.97);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    width: 100%;
    box-sizing: border-box;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
  }
  .nav-logo img {
    width: 44px; height: 44px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: invert(1) sepia(0.3) saturate(1.2) brightness(0.92);
  }
  .nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--off-white);
    line-height: 1;
  }
  .nav-logo-text span { color: var(--gold); }
    .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-shrink: 1;
    overflow: hidden;
  }
    .nav-links a {
    text-decoration: none;
    color: var(--off-white);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover { opacity: 1; color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 22px;
    border-radius: 2px;
    opacity: 1 !important;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    padding: 80px 24px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.10) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 60%),
      linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 50%, #0a0a0a 100%);
  }
  .hero-noise {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  }
  .hero-logo-mark {
    width: 140px; height: 140px; margin-bottom: 32px;
    position: relative; z-index: 1;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: invert(1) sepia(0.3) saturate(1.2) brightness(0.92);
    animation: fadeUp 0.9s ease both;
  }
  .hero-eyebrow {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 18px; position: relative; z-index: 1;
    animation: fadeUp 0.9s 0.1s ease both;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    letter-spacing: 0.04em; line-height: 0.9;
    position: relative; z-index: 1;
    animation: fadeUp 0.9s 0.2s ease both;
  }
  .hero-title em {
    font-style: italic; font-family: 'Playfair Display', serif;
    color: var(--gold); font-size: 0.6em;
    display: block;
  }
  .hero-sub {
    font-size: 1rem; color: rgba(245,242,237,0.6);
    max-width: 480px; line-height: 1.7; margin-top: 24px;
    position: relative; z-index: 1;
    animation: fadeUp 0.9s 0.35s ease both;
  }
  .hero-actions {
    display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; justify-content: center;
    position: relative; z-index: 1;
    animation: fadeUp 0.9s 0.5s ease both;
  }
  .btn-primary {
    background: var(--gold); color: var(--black);
    padding: 15px 36px; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--off-white);
    padding: 14px 36px; border: 1px solid rgba(245,242,237,0.3);
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none; border-radius: 2px;
    transition: border-color 0.2s, transform 0.15s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 100px 48px; }
  .section-eyebrow {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.05em; line-height: 1;
    margin-bottom: 20px;
  }
  .section-body {
    font-size: 1rem; color: rgba(245,242,237,0.6);
    line-height: 1.75; max-width: 560px;
  }
  .divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  }

  /* ─── SERVICES ─── */
  #services { background: #0d0d0d; }
  .services-header { text-align: center; margin-bottom: 64px; }
  .services-header .section-body { margin: 0 auto; }
  .services-note {
    font-size: 0.75rem; color: rgba(245,242,237,0.4);
    margin-top: 10px; text-align: center; font-style: italic;
  }

  .packages-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px; max-width: 1200px; margin: 0 auto;
  }
  .package-card {
    background: #111; padding: 48px 36px;
    border: 1px solid rgba(255,255,255,0.04);
    position: relative; transition: transform 0.25s, border-color 0.25s;
    overflow: hidden;
  }
  .package-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.25); }
  .package-card.featured {
    background: linear-gradient(160deg, #161410 0%, #111 100%);
    border-color: rgba(201,168,76,0.35);
  }
  .package-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--gold); color: var(--black);
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
  }
  .package-tier {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  }
  .package-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
    letter-spacing: 0.05em; margin-bottom: 8px;
  }
  .package-tagline {
    font-size: 0.85rem; color: rgba(245,242,237,0.5);
    margin-bottom: 28px; line-height: 1.5;
  }
  .package-price {
    font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
    color: var(--gold); line-height: 1; margin-bottom: 4px;
  }
  .package-price span { font-size: 1.5rem; vertical-align: super; }
  .package-price-note {
    font-size: 0.7rem; color: rgba(245,242,237,0.4);
    margin-bottom: 28px; letter-spacing: 0.05em;
  }
  .package-divider {
    width: 40px; height: 2px; background: var(--gold);
    margin-bottom: 24px; opacity: 0.5;
  }
  .package-includes {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 36px;
  }
  .package-includes li {
    font-size: 0.85rem; color: rgba(245,242,237,0.7);
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
  }
  .package-includes li::before {
    content: '✓'; color: var(--gold); font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
  }
  .package-includes li.excluded { color: rgba(245,242,237,0.3); }
  .package-includes li.excluded::before { content: '—'; color: rgba(245,242,237,0.2); }
  .package-cta {
    display: block; text-align: center; padding: 13px 24px;
    background: transparent; border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold); font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 2px; transition: background 0.2s, color 0.2s;
  }
  .package-cta:hover { background: var(--gold); color: var(--black); }
  .package-card.featured .package-cta {
    background: var(--gold); color: var(--black); border-color: var(--gold);
  }
  .package-card.featured .package-cta:hover { background: var(--gold-light); }

  /* Add-ons */
  .addons-section { max-width: 1200px; margin: 60px auto 0; }
  .addons-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
    letter-spacing: 0.08em; margin-bottom: 24px; text-align: center;
    color: rgba(245,242,237,0.5);
  }
  .addons-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px; background: rgba(255,255,255,0.04);
  }
  .addon-item {
    background: #111; padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .addon-name { font-size: 0.85rem; color: rgba(245,242,237,0.65); }
  .addon-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--gold); }

  /* ─── ABOUT ─── */
  #about {
    background: transparent;
  }
  .about-image-wrap {
    position: relative;
  }
  .about-image-wrap::before {
    content: ''; position: absolute;
    top: -20px; left: -20px; right: 20px; bottom: 20px;
    border: 1px solid rgba(201,168,76,0.2);
    pointer-events: none; z-index: 0;
  }
  .about-img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    object-position: center top;
    display: block; position: relative; z-index: 1;
    filter: grayscale(20%);
  }
  .about-gold-bar {
    position: absolute; bottom: -1px; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    z-index: 2;
  }
  .about-content .section-title { margin-bottom: 24px; }
  .about-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 1.25rem;
    color: var(--gold); line-height: 1.6;
    margin-bottom: 24px; padding-left: 20px;
    border-left: 2px solid var(--gold);
  }
  .about-body {
    font-size: 0.95rem; color: rgba(245,242,237,0.65);
    line-height: 1.8; margin-bottom: 16px;
  }
  .about-stats {
    display: flex; gap: 40px; margin-top: 36px;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem;
    color: var(--gold); line-height: 1;
  }
  .stat-label { font-size: 0.75rem; color: rgba(245,242,237,0.45); letter-spacing: 0.1em; }

  /* ─── GALLERY ─── */
  #gallery { background: #0d0d0d; }
  .gallery-header { text-align: center; margin-bottom: 56px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 4px; max-width: 1200px; margin: 0 auto;
  }
  .gallery-item {
    background: #1a1a1a;
    position: relative; overflow: hidden;
    cursor: pointer;
  }
  .gallery-item:first-child {
    grid-row: 1 / 3; /* tall left item */
  }
  .gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    border: 1px dashed rgba(201,168,76,0.2);
    transition: border-color 0.2s;
  }
  .gallery-item:hover .gallery-placeholder { border-color: rgba(201,168,76,0.5); }
  .gallery-placeholder svg { opacity: 0.25; }
  .gallery-placeholder-label {
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(245,242,237,0.25);
  }
  .before-after-badge {
    position: absolute; top: 12px; left: 12px;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
  }
  .badge-before { background: rgba(0,0,0,0.7); color: rgba(245,242,237,0.5); }
  .badge-after { background: var(--gold); color: var(--black); }
  .gallery-cta { text-align: center; margin-top: 32px; }
  .gallery-cta p {
    font-size: 0.85rem; color: rgba(245,242,237,0.4);
    margin-bottom: 16px;
  }

  /* ─── BOOKING / CONTACT ─── */
  #book {
    background: var(--black);
    max-width: 700px; margin: 0 auto; text-align: center;
  }
  #book .section-title { margin-bottom: 16px; }
  #book .section-body { margin: 0 auto 48px; }
  .contact-methods {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2px; margin-bottom: 48px; text-align: left;
  }
  .contact-card {
    background: #111; padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.2s;
  }
  .contact-card:hover { border-color: rgba(201,168,76,0.3); }
  .contact-icon { font-size: 1.5rem; margin-bottom: 12px; }
  .contact-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .contact-value { font-size: 0.95rem; color: var(--off-white); font-weight: 500; }
  .contact-value a { color: inherit; text-decoration: none; }
  .contact-value a:hover { color: var(--gold); }
  .service-area {
    font-size: 0.8rem; color: rgba(245,242,237,0.4);
    margin-top: 32px; line-height: 1.6;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #070707; padding: 40px 48px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
    letter-spacing: 0.15em; color: rgba(245,242,237,0.4);
  }
  .footer-logo span { color: var(--gold); }
  .footer-copy { font-size: 0.75rem; color: rgba(245,242,237,0.25); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
50%       { opacity: 1; transform: scaleY(1.3); }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    #about { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap::before { display: none; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(3, 220px);
    }
    .gallery-item:first-child { grid-row: auto; }
    footer { flex-direction: column; text-align: center; padding: 32px 24px; }
  }
  @media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(5, 200px);
    }
    .packages-grid { grid-template-columns: 1fr; }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 480px) {
    .nav-links { display: none !important; }
    .nav-logo-text { font-size: 1.1rem; }
  }