  :root {
      --black: #0a0a0a;
      --white: #f8f5ee;
      --gold: #c9a84c;
      --gold-light: #e8d08a;
      --gold-dim: rgba(201,168,76,0.15);
      --gray: #1c1c1c;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background-color: var(--black);
      color: var(--white);
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 5vw;
      background: rgba(10,10,10,0.82);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.18);
      transition: background 0.4s;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--gold);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      z-index: 101;
    }
    .nav-logo svg { width: 48px; height: 48px; flex-shrink: 0; }
    .nav-links {
      list-style: none;
      display: flex;
      gap: 2.5rem;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--white);
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.35s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--gold); }
    .nav-links a.active::after { width: 100%; }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px; height: 36px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 101;
    }
    .hamburger span {
      display: block;
      height: 1px; width: 100%;
      background: var(--gold);
      transition: transform 0.35s ease, opacity 0.35s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,10,10,0.97);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 8vw, 3rem);
      font-weight: 300;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu-line { width: 40px; height: 1px; background: rgba(201,168,76,0.3); }

    /* ─── PAGE HERO ─── */
    .page-hero {
      min-height: 55vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(ellipse at 55% 50%, #1a1508 0%, var(--black) 65%);
      padding: 11rem 1.5rem 6rem;
      text-align: center;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    /* Decorative lily stems */
    .hero-lily {
      position: absolute;
      bottom: -50px;
      width: 380px;
      opacity: 0.1;
      pointer-events: none;
    }
    .hero-lily-left  { left: -50px;  transform: rotate(-14deg); }
    .hero-lily-right { right: -50px; transform: rotate(18deg) scaleX(-1); }

    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(36px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      animation: fadeUp 1.1s 0.1s ease both;
    }
    .page-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 5.5vw, 6rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: 0.04em;
      margin-bottom: 1.6rem;
      animation: fadeUp 1.1s 0.25s ease both;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold); }
    .page-hero p {
      font-size: clamp(0.8rem, 1.8vw, 1rem);
      letter-spacing: 0.14em;
      line-height: 1.95;
      color: rgba(248,245,238,0.58);
      max-width: 580px;
      margin: 0 auto;
      animation: fadeUp 1.1s 0.4s ease both;
    }

    /* ─── SERVICES GRID SECTION ─── */
    .services-hub {
      padding: 8rem 5vw 7rem;
      background: var(--black);
    }
    .services-hub-intro {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 5.5rem;
    }
    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.14;
      margin-bottom: 1.2rem;
    }
    .services-hub-intro p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: rgba(248,245,238,0.55);
    }

    /* Cards */
    .hub-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.12);
      max-width: 960px;
      margin: 0 auto;
    }

    .hub-card {
      background: var(--black);
      padding: 3.5rem 2.8rem;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: background 0.45s ease;
      cursor: pointer;
    }
    .hub-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s ease;
    }
    .hub-card:hover { background: #110f08; }
    .hub-card:hover::before { transform: scaleX(1); }
    .hub-card:hover .card-arrow { transform: translateX(6px); opacity: 1; }
    .hub-card:hover .card-icon-wrap { border-color: rgba(201,168,76,0.5); }

    /* Coming soon card */
    .hub-placeholder {
      grid-column: 1 / -1;
      background: var(--black);
      padding: 1.4rem 2.8rem;
      display: flex;
      align-items: center;
      gap: 0.9rem;
      border-top: 1px solid rgba(201,168,76,0.08);
    }
    .hub-placeholder span {
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.3);
    }

    .card-icon-wrap {
      width: 58px; height: 58px;
      border: 1px solid rgba(201,168,76,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      transition: border-color 0.4s;
      flex-shrink: 0;
    }
    .card-icon-wrap svg { width: 28px; height: 28px; }

    .card-tag {
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 400;
      color: var(--gold-light);
      line-height: 1.15;
      letter-spacing: 0.03em;
      margin-bottom: 1.1rem;
    }

    .card-desc {
      font-size: 0.88rem;
      line-height: 1.82;
      color: rgba(248, 245, 238, 0.863);
      flex: 1;
      margin-bottom: 2rem;
    }

    .card-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 2.2rem;
    }
    .card-pill {
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.7);
      border: 1px solid rgba(201,168,76,0.25);
      padding: 0.28rem 0.75rem;
    }

    .card-cta {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .card-arrow {
      width: 28px; height: 1px;
      background: var(--gold);
      position: relative;
      transition: transform 0.35s ease, opacity 0.35s ease;
      opacity: 0.55;
    }
    .card-arrow::after {
      content: '';
      position: absolute;
      right: 0; top: -3px;
      width: 6px; height: 6px;
      border-top: 1px solid var(--gold);
      border-right: 1px solid var(--gold);
      transform: rotate(45deg);
    }




    /* ─── WHY US STRIP ─── */
    .why-strip {
      background: var(--gray);
      padding: 6rem 5vw;
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .why-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      gap: 5rem;
      flex-wrap: wrap;
    }
    .why-text { flex: 1; min-width: 260px; }
    .why-text p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: rgba(248,245,238,0.6);
      max-width: 480px;
      margin-top: 1rem;
    }
    .why-list {
      flex: 1;
      min-width: 260px;
      display: flex;
      flex-direction: column;
      gap: 1.6rem;
      margin-top: 0.5rem;
    }
    .why-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
    }
    .why-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: rgba(201, 168, 76, 0.397);
      line-height: 1;
      flex-shrink: 0;
      width: 2.4rem;
    }
    .why-item-text h4 {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }
    .why-item-text p {
      font-size: 0.86rem;
      line-height: 1.75;
      color: rgba(248, 245, 238, 0.815)
    }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: var(--gold);
      padding: 5.5rem 5vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-lily {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 300px;
      opacity: 0.06;
      pointer-events: none;
    }
    .cta-band h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 500;
      color: var(--black);
      margin-bottom: 1rem;
      position: relative;
    }
    .cta-band p {
      font-size: 1rem;
      letter-spacing: 0.18em;
      color: rgba(10,10,10,0.6);
      margin-bottom: 2.5rem;
      position: relative;
    }

        .btn-dark {
      display: inline-block;
      padding: 0.9rem 2.8rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
      transition: color 0.4s;
      animation: fadeUp 1.2s 0.65s ease both;
      background-color: var(--black);
    }
    .btn-dark::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gray);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: -1;
    }
    .btn-dark:hover { 
        color: var(--gold); 
    }
     .btn-dark:hover::before { transform: scaleX(1); } 


    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      padding: 3rem 5vw;
      text-align: center;
      border-top: 1px solid rgba(201,168,76,0.1);
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 0.14em;
      color: var(--gold);
      display: block;
      margin-bottom: 1.5rem;
    }
    .footer-links {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }
    .footer-links a {
      text-decoration: none;
      color: rgba(248,245,238,0.4);
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    footer p {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      color: rgba(248,245,238,0.2);
    }

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

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
      .hub-grid { grid-template-columns: 1fr; }
      .why-inner { flex-direction: column; gap: 3rem; }
    }

    :root {
      --black: #0a0a0a;
      --white: #f8f5ee;
      --gold: #c9a84c;
      --gold-light: #e8d08a;
      --gold-dim: rgba(201,168,76,0.15);
      --gray: #1c1c1c;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background-color: var(--black);
      color: var(--white);
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 5vw;
      background: rgba(10,10,10,0.82);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.18);
      transition: background 0.4s;
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--gold);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      z-index: 101;
    }
    .nav-logo svg { width: 48px; height: 48px; flex-shrink: 0; }

    /* Desktop links */
    .nav-links {
      list-style: none;
      display: flex;
      gap: 2.5rem;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--white);
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.35s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    /* Hamburger button */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 101;
    }
    .hamburger span {
      display: block;
      height: 1px;
      width: 100%;
      background: var(--gold);
      transition: transform 0.35s ease, opacity 0.35s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Mobile overlay menu */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,10,10,0.97);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 8vw, 3rem);
      font-weight: 300;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu-line {
      width: 40px;
      height: 1px;
      background: rgba(201,168,76,0.3);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(ellipse at 60% 50%, #1a1508 0%, var(--black) 65%);
      padding: 8rem 1.5rem 4rem;
    }

    .hero-lily-left, .hero-lily-right {
      position: absolute;
      bottom: -40px;
      width: 420px;
      opacity: 0.18;
      pointer-events: none;
    }
    .hero-lily-left { left: -60px; transform: rotate(-15deg); }
    .hero-lily-right { right: -60px; transform: rotate(20deg) scaleX(-1); }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 700px;
      animation: fadeUp 1.2s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.6rem;
      animation: fadeUp 1.2s 0.2s ease both;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 1.8rem;
      animation: fadeUp 1.2s 0.35s ease both;
    }
    .hero-title em { font-style: italic; color: var(--gold); }
    .hero-tagline {
      font-size: clamp(0.8rem, 2vw, 1.1rem);
      letter-spacing: 0.15em;
      color: rgba(248,245,238,0.65);
      margin-bottom: 3rem;
      animation: fadeUp 1.2s 0.5s ease both;
    }

    .btn-primary {
      display: inline-block;
      padding: 0.9rem 2.8rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
      transition: color 0.4s;
      animation: fadeUp 1.2s 0.65s ease both;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: -1;
    }
    .btn-primary:hover { color: var(--black); }
    .btn-primary:hover::before { transform: scaleX(1); }

    .hero-divider {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    /* ─── SECTION COMMON ─── */
    section {
      position: relative;
      padding: 7rem 5vw;
    }

    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 3.4rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }

    /* ─── ABOUT STRIP ─── */
    .about-strip {
      background: var(--gray);
      display: flex;
      align-items: center;
      gap: 4rem;
      flex-wrap: wrap;
      border-top: 1px solid rgba(201,168,76,0.12);
      border-bottom: 1px solid rgba(201,168,76,0.12);
    }
    .about-text { flex: 1; min-width: 260px; }
    .about-text p {
      font-size: 1rem;
      line-height: 1.85;
      color: rgba(248,245,238,0.9);
      max-width: 540px;
    }
    .about-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
    .stat h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 3rem);
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }
    .stat p {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(248,245,238,0.5);
      margin-top: 0.3rem;
    }

    /* ─── SERVICES ─── */
    .services { background: var(--black); }
    .services-intro { max-width: 520px; margin-bottom: 4rem; }
    .services-intro p {
      color: rgba(248,245,238,0.6);
      line-height: 1.8;
      font-size: 0.95rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5px;
      border: 1.5px solid rgba(201,168,76,0.15);
    }
    .service-card {
      padding: 2.8rem 2rem;
      background: var(--black);
      border: 1px solid rgba(201,168,76,0.08);
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s ease;
    }
    .service-card:hover { background: #111008; }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon { width: 44px; height: 44px; margin-bottom: 1.6rem; opacity: 0.85; }
    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--gold-light);
      margin-bottom: 0.9rem;
    }
    .service-card p {
      font-size: 0.88rem;
      line-height: 1.75;
      color: rgb(255, 255, 255);
    }

    /* ─── PROCESS ─── */
    .process {
      background: #0d0c08;
      border-top: 1px solid rgba(201,168,76,0.12);
    }
    .process-steps {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      margin-top: 4rem;
    }
    .step {
      flex: 1;
      min-width: 180px;
      padding: 2rem 2rem 2rem 2rem;
      border-left: 1px solid rgba(201,168,76,0.2);
      position: relative;
    }
    .step-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      color: rgba(201, 168, 76, 0.397);
      font-weight: 300;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .step h4 {
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }
    .step p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: rgba(248, 245, 238, 0.815);
    }

    /* ─── GALLERY ─── */
    .gallery-section {
      border-top: 1px solid rgba(201,168,76,0.12);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5px;
      margin-top: 3rem;
      border: 1px solid rgba(201,168,76,0.12);
    }
.gallery-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.07);
  overflow: hidden;
  position: relative;
  transition: opacity 0.4s ease;
}
    .gallery-note {
      margin-top: 1.5rem;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      color: rgba(248,245,238,0.25);
      text-transform: uppercase;
    }

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-cell:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-grid:hover .gallery-cell {
  opacity: 0.5;
}

.gallery-grid .gallery-cell:hover {
  opacity: 1;
}

.gallery-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0);
  transition: border-color 0.4s ease;
}

.gallery-cell:hover::after {
  border-color: rgba(201,168,76,0.4);
}

    /* ─── CTA BAND ─── */
    .cta-band {
      background: var(--gold);
      padding: 5rem 5vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band-lily {
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%) rotate(30deg);
      opacity: 0.1;
      width: 380px;
      pointer-events: none;
    }
    .cta-band h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 300;
      color: var(--black);
      margin-bottom: 1rem;
    }
    .cta-band p {
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      color: rgba(10,10,10,0.65);
      margin-bottom: 2.5rem;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(201,168,76,0.15);
      padding: 3.5rem 5vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--gold);
      letter-spacing: 0.12em;
    }
    footer p {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      color: rgba(248,245,238,0.3);
      text-transform: uppercase;
    }
    .footer-links {
      list-style: none;
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      text-decoration: none;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(248,245,238,0.4);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── MOBILE BREAKPOINTS ─── */
    @media (max-width: 768px) {
      /* Nav */
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }

      nav { padding: 1.1rem 5vw; }

      /* Hero */
      .hero { padding: 7rem 1.5rem 4rem; }
      .hero-lily-left, .hero-lily-right { width: 200px; opacity: 0.1; }
      .hero-lily-left { left: -40px; }
      .hero-lily-right { right: -40px; }

      /* Sections */
      section { padding: 4.5rem 6vw; }

      /* About */
      .about-strip { gap: 3rem; }
      .about-stats { gap: 2rem; }

      /* Process steps — stack vertically */
      .process-steps { flex-direction: column; }
      .step {
        border-left: none;
        border-top: 1px solid rgba(201,168,76,0.2);
        padding: 1.8rem 0;
      }
      .step:first-child { border-top: none; }

      /* Services grid — 1 column on very small screens */
      .services-grid { grid-template-columns: 1fr; }

      /* Gallery */
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }

      /* Footer */
      footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
      }
      .footer-links { gap: 1.2rem; }

      /* CTA lily */
      .cta-band-lily { display: none; }
    }

    @media (max-width: 480px) {
      .nav-logo { font-size: 1.2rem; }
      .about-stats { gap: 1.5rem; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
    }

    :root {
      --black: #0a0a0a;
      --white: #f8f5ee;
      --gold: #c9a84c;
      --gold-light: #e8d08a;
      --gold-dim: rgba(201,168,76,0.15);
      --gray: #1c1c1c;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background-color: var(--black);
      color: var(--white);
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 5vw;
      background: rgba(10,10,10,0.82);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.18);
      transition: background 0.4s;
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--gold);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      z-index: 101;
    }
    .nav-logo svg { width: 48px; height: 48px; flex-shrink: 0; }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 2.5rem;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--white);
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.35s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--gold); }
    .nav-links a.active::after { width: 100%; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px; height: 36px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 101;
    }
    .hamburger span {
      display: block;
      height: 1px; width: 100%;
      background: var(--gold);
      transition: transform 0.35s ease, opacity 0.35s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,10,10,0.97);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 8vw, 3rem);
      font-weight: 300;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu-line {
      width: 40px; height: 1px;
      background: rgba(201,168,76,0.3);
    }

    /* ─── PAGE HERO ─── */
    .page-hero {
      min-height: 52vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(ellipse at 60% 50%, #1a1508 0%, var(--black) 65%);
      padding: 10rem 1.5rem 5rem;
      text-align: center;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .hero-lily-bg {
      position: absolute;
      bottom: -60px;
      width: 340px;
      opacity: 0.1;
      pointer-events: none;
    }
    .hero-lily-bg-left { left: -40px; transform: rotate(-12deg); }
    .hero-lily-bg-right { right: -40px; transform: rotate(16deg) scaleX(-1); }

    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
      animation: fadeUp 1.2s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.4rem;
      animation: fadeUp 1.2s 0.15s ease both;
    }
    .page-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: 0.04em;
      margin-bottom: 1.4rem;
      animation: fadeUp 1.2s 0.3s ease both;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold); }
    .page-hero p {
      font-size: clamp(0.8rem, 2vw, 1rem);
      letter-spacing: 0.14em;
      color: rgba(248,245,238,0.6);
      line-height: 1.9;
      animation: fadeUp 1.2s 0.45s ease both;
    }

    /* ─── SECTION COMMON ─── */
    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 3.4rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }

    /* ─── INTRO STRIP ─── */
    .intro-strip {
      background: var(--gray);
      padding: 5rem 5vw;
      border-bottom: 1px solid rgba(201,168,76,0.12);
      text-align: center;
    }
    .intro-strip p {
      max-width: 600px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: 1.9;
      color: rgba(248,245,238,0.65);
    }

    /* ─── PACKAGES SECTION ─── */
    .packages-section {
      padding: 7rem 5vw;
      background: var(--black);
    }
    .packages-intro {
      max-width: 520px;
      margin-bottom: 5rem;
    }
    .packages-intro p {
      color: rgba(248,245,238,0.8);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.15);
    }

    .package-card {
      background: var(--black);
      padding: 3rem 2.4rem;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: background 0.4s;
    }
    .package-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s ease;
    }
    .package-card:hover { background: #111008; }
    .package-card:hover::before { transform: scaleX(1); }

    /* Popular card */
    .package-card.featured {
      background: #0e0d07;
    }
    .package-card.featured::before {
      transform: scaleX(1);
    }
    .featured-badge {
      display: inline-block;
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--gold);
      padding: 0.3rem 0.9rem;
      margin-bottom: 1.6rem;
      font-weight: 400;
      align-self: flex-start;
    }

    .package-icon {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
      line-height: 1;
    }
    .package-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 400;
      color: var(--gold-light);
      letter-spacing: 0.04em;
      margin-bottom: 0.4rem;
    }
    .package-best-for {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(248,245,238,0.7);
      margin-bottom: 1.6rem;
      line-height: 1.6;
    }
    .package-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4vw, 3rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .package-price span {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(248,245,238,0.4);
      margin-left: 0.4rem;
    }

    .package-divider {
      width: 40px;
      height: 1px;
      background: rgba(201,168,76,0.35);
      margin: 1.8rem 0;
    }

    .package-includes-label {
      font-size: 0.6rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }

    .package-features {
      list-style: none;
      flex: 1;
    }
    .package-features li {
      font-size: 1rem;
      line-height: 1.65;
      color: rgba(248,245,238,0.7);
      padding: 0.45rem 0;
      padding-left: 1.4rem;
      position: relative;
      border-bottom: 1px solid rgba(201,168,76,0.06);
    }
    .package-features li:last-child { border-bottom: none; }
    .package-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.55;
    }
    .package-features li.highlight {
      color: rgba(248,245,238,0.85);
    }
    .package-features li.highlight::before {
      opacity: 1;
    }

    .package-cta {
      display: inline-block;
      margin-top: 2.4rem;
      padding: 0.85rem 2.2rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
      transition: color 0.4s;
      align-self: flex-start;
    }
    .package-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: -1;
    }
    .package-cta:hover { color: var(--black); }
    .package-cta:hover::before { transform: scaleX(1); }

    /* ─── COMPARISON NOTE ─── */
    .comparison-note {
      padding: 4rem 5vw;
      background: #0d0c08;
      border-top: 1px solid rgba(201,168,76,0.12);
      border-bottom: 1px solid rgba(201,168,76,0.12);
      text-align: center;
    }
    .comparison-note p {
      max-width: 560px;
      margin: 0 auto;
      font-size: 0.9rem;
      line-height: 1.9;
      color: rgba(248,245,238,0.5);
    }
    .comparison-note p strong {
      color: var(--gold);
      font-weight: 400;
      letter-spacing: 0.05em;
    }

    /* ─── FAQ / ADD-ONS ─── */
    .addons-section {
      padding: 7rem 5vw;
      background: var(--gray);
    }
    .addons-intro { max-width: 520px; margin-bottom: 4rem; }
    .addons-intro p {
      color: rgba(248,245,238,0.9);
      line-height: 1.8;
      font-size: 0.95rem;
    }
    .addons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.1);
    }
    .addon-card {
      background: var(--gray);
      padding: 2rem 1.8rem;
      transition: background 0.3s;
    }
    .addon-card:hover { background: #222; }
    .addon-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--gold-light);
      margin-bottom: 0.5rem;
    }
    .addon-card p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(248,245,238,0.7);
    }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: var(--gold);
      padding: 5.5rem 5vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band-lily {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 280px;
      opacity: 0.06;
      pointer-events: none;
    }
    .cta-band h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 300;
      color: var(--black);
      margin-bottom: 1rem;
      position: relative;
    }
    .cta-band p {
      font-size: 1rem;
      letter-spacing: 0.18em;
      color: rgba(10,10,10,0.65);
      margin-bottom: 2.5rem;
      position: relative;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      padding: 3rem 5vw;
      text-align: center;
      border-top: 1px solid rgba(201,168,76,0.12);
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 0.14em;
      color: var(--gold);
      display: block;
      margin-bottom: 1.5rem;
    }
    .footer-links {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }
    .footer-links a {
      text-decoration: none;
      color: rgba(248,245,238,0.4);
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    footer p {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      color: rgba(248,245,238,0.2);
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
      .packages-grid { grid-template-columns: 1fr; }
    }

     :root {
      --black: #0a0a0a;
      --white: #f8f5ee;
      --gold: #c9a84c;
      --gold-light: #e8d08a;
      --gold-dim: rgba(201,168,76,0.15);
      --gray: #1c1c1c;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background-color: var(--black);
      color: var(--white);
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 5vw;
      background: rgba(10,10,10,0.82);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.18);
      transition: background 0.4s;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--gold);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      z-index: 101;
    }
    .nav-logo svg { width: 48px; height: 48px; flex-shrink: 0; }
    .nav-links {
      list-style: none;
      display: flex;
      gap: 2.5rem;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--white);
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.35s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--gold); }
    .nav-links a.active::after { width: 100%; }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px; height: 36px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 101;
    }
    .hamburger span {
      display: block;
      height: 1px; width: 100%;
      background: var(--gold);
      transition: transform 0.35s ease, opacity 0.35s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,10,10,0.97);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 8vw, 3rem);
      font-weight: 300;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu-line { width: 40px; height: 1px; background: rgba(201,168,76,0.3); }

    /* ─── PAGE HERO ─── */
    .page-hero {
      min-height: 58vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(ellipse at 55% 50%, #1a1508 0%, var(--black) 65%);
      padding: 11rem 1.5rem 6rem;
      text-align: center;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .hero-lily {
      position: absolute;
      bottom: -50px;
      width: 360px;
      opacity: 0.1;
      pointer-events: none;
    }
    .hero-lily-left  { left: -50px;  transform: rotate(-14deg); }
    .hero-lily-right { right: -50px; transform: rotate(18deg) scaleX(-1); }

    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(36px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.4rem;
      animation: fadeUp 1.1s 0.1s ease both;
    }
    .page-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 5.5vw, 6rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: 0.04em;
      margin-bottom: 1.6rem;
      animation: fadeUp 1.1s 0.25s ease both;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold); }
    .page-hero p {
      font-size: clamp(0.82rem, 1.8vw, 1rem);
      letter-spacing: 0.12em;
      line-height: 1.95;
      color: rgba(248,245,238,0.58);
      max-width: 600px;
      margin: 0 auto;
      animation: fadeUp 1.1s 0.4s ease both;
    }

    /* ─── SECTION COMMON ─── */
    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.14;
      margin-bottom: 1.2rem;
    }

    /* ─── PACKAGES SECTION ─── */
    .packages-section {
      padding: 8rem 5vw 7rem;
      background: var(--black);
    }
    .packages-intro {
      text-align: center;
      max-width: 580px;
      margin: 0 auto 6rem;
    }
    .packages-intro p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: rgba(248,245,238,0.55);
    }

    /* ─── PACKAGE BLOCK ─── */
    /* Each package is a full-width row with a header + content area */
    .pkg {
      max-width: 1100px;
      margin: 0 auto 3px;
      border: 1px solid rgba(201,168,76,0.12);
      background: var(--black);
      position: relative;
      overflow: hidden;
    }
    .pkg + .pkg { border-top: none; }

    .pkg-header {
      display: flex;
      align-items: flex-start;
      gap: 2rem;
      padding: 3rem 3rem 2.5rem;
      border-bottom: 1px solid rgba(201,168,76,0.1);
      position: relative;
    }
    .pkg-header::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }
    .pkg:hover .pkg-header::before { transform: scaleX(1); }

    .pkg-emoji {
      font-size: 2rem;
      line-height: 1;
      flex-shrink: 0;
      margin-top: 0.2rem;
    }
    .pkg-header-text { flex: 1; }
    .pkg-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      font-weight: 400;
      color: var(--gold-light);
      letter-spacing: 0.03em;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }
    .pkg-tagline {
      font-size: 0.9rem;
      line-height: 1.75;
      color: rgba(248,245,238,0.6);
      letter-spacing: 0.06em;
      max-width: 560px;
    }

    /* Sub-packages grid inside each pkg */
    .pkg-body {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1px;
      background: rgba(201,168,76,0.07);
    }

    /* Single-column body (for packages with only one sub-item) */
    .pkg-body.single { grid-template-columns: 1fr; background: none; }

    .sub-pkg {
      background: var(--black);
      padding: 2.6rem 3rem;
      transition: background 0.35s;
    }
    .sub-pkg:hover { background: #0e0d07; }

    .sub-pkg-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--white);
      letter-spacing: 0.04em;
      margin-bottom: 1.4rem;
      padding-bottom: 0.9rem;
      border-bottom: 1px solid rgba(201,168,76,0.12);
    }

    .sub-pkg ul {
      list-style: none;
      margin-bottom: 1.6rem;
    }
    .sub-pkg ul li {
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(248,245,238,0.9);
      padding: 0.35rem 0 0.35rem 1.3rem;
      position: relative;
      border-bottom: 1px solid rgba(201,168,76,0.05);
    }
    .sub-pkg ul li:last-child { border-bottom: none; }
    .sub-pkg ul li::before {
      content: '';
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%);
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.5;
    }

    /* Nested list (e.g. "Each concept includes:") */
    .sub-pkg ul li ul {
      margin: 0.5rem 0 0.2rem 0.5rem;
    }
    .sub-pkg ul li ul li {
      font-size: 0.95rem;
      color: rgba(248,245,238,0.9);
      padding-left: 1.1rem;
      border-bottom: none;
    }
    .sub-pkg ul li ul li::before {
      width: 3px; height: 3px;
      opacity: 0.5;
    }

    .sub-pkg-note {
      font-size: 0.8rem;
      line-height: 1.7;
      color: rgba(248,245,238,0.7);
      margin-bottom: 1.4rem;
      font-style: italic;
      letter-spacing: 0.04em;
    }

    .investment-tag {
      display: inline-flex;
      align-items: baseline;
      gap: 0.5rem;
      margin-top: 0.4rem;
    }
    .investment-label {
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(201,168,76,1);
    }
    .investment-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }
    .investment-amount small {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      color: rgba(201,168,76,0.6);
      margin-left: 0.3rem;
    }

    /* ─── CUSTOM NOTE BAND ─── */
    .custom-note {
      background: var(--gray);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      padding: 4rem 5vw;
      text-align: center;
    }
    .custom-note p {
      max-width: 560px;
      margin: 0 auto;
      font-size: 0.9rem;
      line-height: 1.9;
      color: rgba(248,245,238,0.9);
    }
    .custom-note p strong {
      color: var(--gold);
      font-weight: 400;
      letter-spacing: 0.04em;
    }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: var(--gold);
      padding: 5.5rem 5vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-lily {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 300px;
      opacity: 0.06;
      pointer-events: none;
    }
    .cta-band h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 300;
      color: var(--black);
      margin-bottom: 1rem;
      position: relative;
    }
    .cta-band p {
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      color: rgba(10,10,10,0.6);
      margin-bottom: 2.5rem;
      position: relative;
    }


    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      padding: 3rem 5vw;
      text-align: center;
      border-top: 1px solid rgba(201,168,76,0.1);
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 0.14em;
      color: var(--gold);
      display: block;
      margin-bottom: 1.5rem;
    }
    .footer-links {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }
    .footer-links a {
      text-decoration: none;
      color: rgba(248,245,238,0.4);
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    footer p {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      color: rgba(248,245,238,0.2);
    }

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

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
      .pkg-header { flex-direction: column; gap: 0.8rem; padding: 2rem 1.6rem 1.8rem; }
      .sub-pkg { padding: 2rem 1.6rem; }
      .pkg-body { grid-template-columns: 1fr; }
    }
    .picture1 {
        /* position: relative; */
        /* width: 100%;
        height:100%;
        left:0;
        top:0; */
        background-image: url("Feed.png") ;
        background-size: cover;       /* fills the box nicely */
        background-position: center;  /* keeps image centered */
        background-repeat: no-repeat; /* prevents tiling */
        /* position: absolute; */
    }
        
    .picture2 {
        /* position: relative; */
        /* width: 100%;
        height:100%;
        left:0;
        top:0; */
        background-image: url("BrandFeedGuidelines.png") ;
        background-size: cover;       /* fills the box nicely */
        background-position: center;  /* keeps image centered */
        background-repeat: no-repeat; /* prevents tiling */
        /* position: absolute; */
    }
        .picture3 {
        /* position: relative; */
        /* width: 100%;
        height:100%;
        left:0;
        top:0; */
        background-image: url("PreviewRackCard.png") ;
        background-size: cover;       /* fills the box nicely */
        background-position: center;  /* keeps image centered */
        background-repeat: no-repeat; /* prevents tiling */
        /* position: absolute; */
    }
            .picture4 {
        /* position: relative; */
        /* width: 100%;
        height:100%;
        left:0;
        top:0; */
        background-image: url("NewtownAquarium.png") ;
        background-size: cover;       /* fills the box nicely */
        background-position: center;  /* keeps image centered */
        background-repeat: no-repeat; /* prevents tiling */
        /* position: absolute; */
    }
  
            .contactdetails {
    color: rgb(10, 10, 10);
    font-family: 'Josefin Sans', sans-serif;
    border: 1px solid black;
    border-radius: 5px;
    width: min-content;
    padding: 20px;
    letter-spacing: 0.18em;
    margin: 20px auto 20px auto;
  }
.lilybanner1 {
    position: relative;
    width: 100%;
    height: 85px;
    background: url("/LilyBanner1.jpg") center/cover no-repeat;
}

.lilybanner1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,11,11,0) 30%,
        rgba(11,11,11,1) 100%
    );
}
 .lilybanner2 {
    position: relative;
    width: 100%;
    height: 85px;
    background: url("/LilyBanner2.jpg") center/cover no-repeat;
}

.lilybanner2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,11,11,0) 30%,
        rgba(11,11,11,1) 100%
    );
}