
    :root {
      --cream:    #faf7f2;
      --warm:     #f0e8d8;
      --gold:     #b8945a;
      --gold-lt:  #d4ae7a;
      --gold-dim: rgba(184,148,90,.14);
      --dark:     #1a1614;
      --dark-2:   #241f1c;
      --muted:    #6b5f55;
      --border:   rgba(184,148,90,.22);
      --shadow:   0 24px 64px rgba(26,22,20,.10);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(250,247,242,.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: .9rem 0;
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--dark) !important;
      letter-spacing: .02em;
    }
    .navbar-brand span { color: var(--gold); }
    .nav-link {
      font-size: .78rem;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--muted) !important;
      padding: .4rem .9rem !important;
      transition: color .3s;
    }
    .nav-link:hover, .nav-active { color: var(--gold) !important; }
    .btn-nav-cta {
      font-size: .75rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      background: var(--gold);
      color: #fff !important;
      padding: .5rem 1.4rem;
      border-radius: 0;
      border: none;
      transition: background .3s;
    }
    .btn-nav-cta:hover { background: var(--gold-lt); }

    /* ── HERO ── */
    .contact-hero {
      position: relative;
      height: 62vh;
      min-height: 440px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('https://thewedpicfilms.com/assets/images/portfolio/3.jpg') center 30%/cover no-repeat;
      animation: zoomBg 14s ease-in-out infinite alternate;
    }
    @keyframes zoomBg {
      from { transform: scale(1); }
      to   { transform: scale(1.06); }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(165deg, rgba(26,22,20,.1) 0%, rgba(26,22,20,.58) 50%, rgba(26,22,20,.92) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding-bottom: 4.2rem;
      width: 100%;
    }
    .hero-eyebrow {
      font-size: .7rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: .7rem;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6vw, 4.8rem);
      color: #fff;
      line-height: 1.1;
      font-weight: 600;
    }
    .hero-title em { font-style: italic; color: var(--gold-lt); }
    .hero-rule { width: 44px; height: 1.5px; background: var(--gold); margin: 1.4rem 0; }
    .hero-tagline {
      font-size: .95rem;
      color: rgba(255,255,255,.58);
      max-width: 420px;
      line-height: 1.85;
      font-weight: 300;
    }
    .hero-bc {
      position: absolute; top: 1.8rem; left: 0; right: 0; z-index: 3;
    }
    .breadcrumb { background: none; padding: 0; margin: 0; }
    .breadcrumb-item a {
      font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
      color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s;
    }
    .breadcrumb-item a:hover { color: var(--gold-lt); }
    .breadcrumb-item.active {
      font-size: .72rem; letter-spacing: .14em;
      text-transform: uppercase; color: var(--gold-lt);
    }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

    /* ── SECTION LABELS ── */
    .sec-eyebrow {
      font-size: .7rem; letter-spacing: .26em;
      text-transform: uppercase; color: var(--gold); margin-bottom: .7rem;
    }
    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.18; color: var(--dark); font-weight: 600;
    }
    .sec-title em { font-style: italic; color: var(--muted); }
    .gold-bar { width: 40px; height: 1.5px; background: var(--gold); margin: 1.3rem 0; }

    /* ── QUICK ACTIONS ── */
    .quick-action {
      display: flex; align-items: center; gap: 1rem;
      padding: 1.1rem 1.4rem;
      border: 1px solid var(--border);
      background: #fff;
      text-decoration: none;
      color: var(--dark);
      transition: background .3s, border-color .3s, transform .25s;
    }
    .quick-action:hover {
      background: var(--dark);
      border-color: var(--dark);
      color: #fff;
      transform: translateY(-3px);
    }
    .qa-icon {
      width: 44px; height: 44px;
      background: var(--gold-dim);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.2rem; flex-shrink: 0;
      transition: background .3s, color .3s;
    }
    .quick-action:hover .qa-icon { background: var(--gold); color: #fff; }
    .qa-label {
      font-size: .74rem; letter-spacing: .12em;
      text-transform: uppercase; margin: 0 0 .1rem;
    }
    .qa-value { font-size: .85rem; color: var(--muted); transition: color .3s; }
    .quick-action:hover .qa-value { color: rgba(255,255,255,.5); }

    /* ── INFO CARDS ── */
    .info-card {
      background: #fff;
      border: 1px solid var(--border);
      padding: 1.8rem 1.6rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: box-shadow .3s;
    }
    .info-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 100%; height: 2px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s;
    }
    .info-card:hover { box-shadow: var(--shadow); }
    .info-card:hover::after { transform: scaleX(1); }
    .info-icon {
      width: 48px; height: 48px;
      background: var(--gold-dim);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.25rem; margin-bottom: 1.1rem;
    }
    .info-card h5 {
      font-size: .72rem; letter-spacing: .16em;
      text-transform: uppercase; color: var(--muted); margin-bottom: .5rem;
    }
    .info-card p { font-size: .93rem; color: var(--dark); line-height: 1.75; margin: 0; }
    .info-card small { font-size: .78rem; color: var(--muted); display: block; margin-top: .35rem; }

    /* ── FORM SECTION ── */
    .form-section {
      background: var(--dark);
      padding: 5.5rem 0;
      position: relative;
      overflow: hidden;
    }
    .form-section::before {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 380px; height: 380px;
      border: 1px solid rgba(184,148,90,.08); border-radius: 50%;
    }
    .form-section::after {
      content: '';
      position: absolute; bottom: -100px; left: -100px;
      width: 460px; height: 460px;
      border: 1px solid rgba(184,148,90,.06); border-radius: 50%;
    }
    .form-eyebrow { color: var(--gold-lt); }
    .form-sec-title { color: #fff; }
    .form-sec-title em { color: var(--gold-lt); }
    .form-body { font-size: .92rem; color: rgba(255,255,255,.42); line-height: 1.85; font-weight: 300; }

    .form-wrap {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(184,148,90,.18);
      padding: 2.8rem 2.4rem;
      position: relative; z-index: 2;
    }
    .form-label {
      font-size: .72rem; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(255,255,255,.48); margin-bottom: .45rem;
    }
    .form-control, .form-select {
      background: rgba(255,255,255,.06) !important;
      border: 1px solid rgba(184,148,90,.22) !important;
      border-radius: 0 !important;
      color: #fff !important;
      font-family: 'Jost', sans-serif;
      font-size: .92rem;
      padding: .75rem 1rem;
      transition: border-color .3s, background .3s;
    }
    .form-control::placeholder { color: rgba(255,255,255,.2) !important; }
    .form-control:focus, .form-select:focus {
      background: rgba(255,255,255,.09) !important;
      border-color: var(--gold) !important;
      box-shadow: none !important;
      color: #fff !important;
    }
    .form-select option { background: #1a1614; color: #fff; }
    textarea.form-control { resize: none; }
    .invalid-feedback { color: var(--gold-lt) !important; font-size: .75rem; }

    .btn-submit {
      width: 100%;
      font-size: .8rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: var(--gold);
      color: #fff;
      border: none;
      border-radius: 0;
      padding: 1.05rem;
      transition: background .3s;
      cursor: pointer;
    }
    .btn-submit:hover { background: var(--gold-lt); }
    .btn-submit:disabled { opacity: .55; cursor: not-allowed; }

    .form-note {
      font-size: .74rem; color: rgba(255,255,255,.28);
      text-align: center; margin-top: 1rem;
    }

    .success-state {
      display: none; text-align: center; padding: 3rem 1rem;
    }
    .success-icon {
      width: 72px; height: 72px;
      background: var(--gold-dim);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 2rem;
      margin: 0 auto 1.5rem;
      animation: pulse 1.8s ease infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(184,148,90,.4); }
      50%       { box-shadow: 0 0 0 14px rgba(184,148,90,0); }
    }
    .success-state h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; color: #fff; margin-bottom: .7rem;
    }
    .success-state p { font-size: .92rem; color: rgba(255,255,255,.42); line-height: 1.8; }

    /* ── PACKAGES ── */
    .pkg-section {
      padding: 5rem 0;
      background: var(--warm);
      border-top: 1px solid var(--border);
    }
    .pkg-card {
      background: var(--cream);
      border: 1px solid var(--border);
      padding: 2rem 1.8rem;
      height: 100%;
      position: relative;
      transition: box-shadow .3s, transform .3s;
    }
    .pkg-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
    .pkg-card.featured { background: var(--dark); border-color: var(--gold); }
    .pkg-badge {
      position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
      background: var(--gold);
      color: #fff; font-size: .65rem;
      letter-spacing: .16em; text-transform: uppercase;
      padding: .22rem .9rem; white-space: nowrap;
    }
    .pkg-tier {
      font-size: .68rem; letter-spacing: .2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: .4rem;
    }
    .pkg-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; color: var(--dark); margin-bottom: .2rem;
    }
    .pkg-card.featured .pkg-name { color: #fff; }
    .pkg-sub { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
    .pkg-card.featured .pkg-sub { color: rgba(255,255,255,.38); }
    .pkg-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem; color: var(--dark); margin-bottom: 1.2rem;
    }
    .pkg-card.featured .pkg-price { color: var(--gold-lt); }
    .pkg-price small { font-size: .75rem; font-family: 'Jost', sans-serif; color: var(--muted); }
    .pkg-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
    .pkg-list li {
      font-size: .86rem; color: var(--muted);
      padding: .42rem 0;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: flex-start; gap: .6rem;
    }
    .pkg-card.featured .pkg-list li { color: rgba(255,255,255,.52); border-color: rgba(255,255,255,.07); }
    .pkg-list li i { color: var(--gold); margin-top: .18rem; flex-shrink: 0; }
    .btn-pkg {
      display: block; width: 100%; text-align: center;
      font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
      padding: .78rem 1rem;
      border: 1.5px solid var(--border);
      background: transparent; color: var(--dark); text-decoration: none;
      transition: background .3s, border-color .3s, color .3s;
    }
    .btn-pkg:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
    .btn-pkg-feat { background: var(--gold); border-color: var(--gold); color: #fff; }
    .btn-pkg-feat:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

    /* ── FAQ ── */
    .faq-section { padding: 5.5rem 0; }
    .accordion-item {
      background: transparent !important;
      border: none !important;
      border-bottom: 1px solid var(--border) !important;
    }
    .accordion-button {
      background: transparent !important;
      color: var(--dark) !important;
      font-family: 'Jost', sans-serif;
      font-size: .95rem; font-weight: 500;
      padding: 1.2rem 0;
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) { color: var(--gold) !important; }
    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23b8945a' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
    }
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23b8945a' viewBox='0 0 16 16'%3E%3Cpath d='M2 8a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
    }
    .accordion-body {
      padding: 0 0 1.3rem;
      font-size: .92rem; color: var(--muted); line-height: 1.85;
    }

    /* ── INSTAGRAM ── */
    .insta-section { padding: 4rem 0; }
    .insta-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 4px;
    }
    .insta-item { position: relative; overflow: hidden; aspect-ratio: 1; }
    .insta-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .5s ease;
    }
    .insta-item:hover img { transform: scale(1.09); }
    .insta-hover {
      position: absolute; inset: 0;
      background: rgba(184,148,90,.62);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .3s;
      color: #fff; font-size: 1.4rem;
    }
    .insta-item:hover .insta-hover { opacity: 1; }
    @media (max-width: 575px) {
      .insta-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ── MAP ── */
    .map-section { background: var(--warm); border-top: 1px solid var(--border); }
    .map-wrap { position: relative; height: 340px; overflow: hidden; }
    .map-wrap iframe { width: 100%; height: 100%; border: none; filter: sepia(.12) contrast(1.04); }
    .map-overlay-card {
      position: absolute; top: 50%; left: 2rem;
      transform: translateY(-50%);
      background: var(--dark); color: #fff;
      padding: 1.4rem 1.6rem; min-width: 220px; z-index: 2;
    }
    .map-overlay-card h6 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; color: var(--gold-lt); margin-bottom: .6rem;
    }
    .map-overlay-card p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.75; margin: 0; }
    @media (max-width: 575px) { .map-overlay-card { display: none; } }

    /* ── FOOTER ── */
    footer {
      background: var(--dark-2);
      border-top: 1px solid rgba(255,255,255,.05);
      padding: 2.5rem 0;
    }
    .foot-brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--cream); }
    .foot-sub { font-size: .72rem; letter-spacing: .1em; color: rgba(255,255,255,.25); margin-top: .2rem; }
    .foot-link {
      font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.32); text-decoration: none; transition: color .2s;
    }
    .foot-link:hover { color: var(--gold); }
    .foot-social a {
      width: 32px; height: 32px;
      border: 1px solid rgba(255,255,255,.12);
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.35); font-size: .88rem; text-decoration: none;
      transition: border-color .2s, color .2s;
    }
    .foot-social a:hover { border-color: var(--gold); color: var(--gold); }
    .foot-copy { font-size: .7rem; color: rgba(255,255,255,.18); margin-top: .3rem; }

    /* ── FLOATING WA ── */
    .wa-float {
      position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
      width: 52px; height: 52px;
      background: #25d366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.5rem; text-decoration: none;
      box-shadow: 0 6px 24px rgba(37,211,102,.4);
      transition: transform .3s, box-shadow .3s;
    }
    .wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,.5); color: #fff; }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.in { opacity: 1; transform: none; }
