    /* :root vars, reset, body, nav, mobile-menu — moved to resources/css/app.css */
    /* ========================================
       SHARED STYLES
    ======================================== */
    /* .section-label / .section-title / .section-desc / .btn-gold — moved to resources/css/partials/typography.css */

    /* ========================================
       PAGE HERO
    ======================================== */
    .page-hero {
      height: 70vh; min-height: 500px;
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      background: var(--charcoal-deep);
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      background: image-set(url('/images/page-hero-contact.webp') type('image/webp'), url('/images/page-hero-contact.jpg') type('image/jpeg')) center/cover no-repeat;
    }
    .page-hero-content {
      position: relative; z-index: 1;
      text-align: center; color: var(--ivory);
      padding: 4rem 5rem;
    }
    .page-hero-content::before {
      content: ''; position: absolute; inset: 0; z-index: -1;
      background: rgba(0, 0, 0, 0.32);
      backdrop-filter: blur(14px) saturate(1.1);
      -webkit-backdrop-filter: blur(14px) saturate(1.1);
      -webkit-mask-image: radial-gradient(ellipse 50% 70% at center,rgba(0,0,0,1) 0%,rgba(0,0,0,0.92) 12%,rgba(0,0,0,0.74) 26%,rgba(0,0,0,0.5) 42%,rgba(0,0,0,0.28) 58%,rgba(0,0,0,0.13) 72%,rgba(0,0,0,0.05) 84%,rgba(0,0,0,0.01) 94%,rgba(0,0,0,0) 100%);
      mask-image: radial-gradient(ellipse 50% 70% at center,rgba(0,0,0,1) 0%,rgba(0,0,0,0.92) 12%,rgba(0,0,0,0.74) 26%,rgba(0,0,0,0.5) 42%,rgba(0,0,0,0.28) 58%,rgba(0,0,0,0.13) 72%,rgba(0,0,0,0.05) 84%,rgba(0,0,0,0.01) 94%,rgba(0,0,0,0) 100%);
    }
    .page-hero-content h1 {
      font-size: 3rem; font-weight: 900; letter-spacing: 0.3em; line-height: 1.3;
      color: var(--ivory); text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 8px rgba(0,0,0,0.3); margin-bottom: 1rem;
    }
    .page-hero-content h1 span {
      display: block; font-family: Georgia, 'Bodoni 72', serif;
      font-size: 0.8rem; letter-spacing: 0.6em;
      color: var(--gold); font-weight: 400; margin-top: 0.5rem;
      text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    }
    .page-hero-content p {
      font-size: 0.9rem; font-weight: 300;
      color: rgba(255, 253, 245, 0.95); letter-spacing: 0.15em;
      text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    }

    /* ========================================
       FORM SECTION
    ======================================== */
    .form-section {
      background: var(--ivory);
      padding: 7rem 4rem;
    }
    .form-inner {
      max-width: 700px; margin: 0 auto;
    }
    .form-header {
      text-align: center; margin-bottom: 4rem;
    }
    .form-header .section-desc {
      margin: 0 auto; text-align: center;
    }

    .contact-form {
      display: flex; flex-direction: column;
      gap: 1.4rem;
    }
    .form-row {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.4rem;
    }
    .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-field label {
      font-size: 0.68rem; letter-spacing: 0.15em;
      color: rgba(80, 83, 80, 0.5); font-weight: 300;
    }
    .form-field input,
    .form-field textarea,
    .form-field select {
      font-family: 'Noto Serif TC', Georgia, serif;
      font-size: 0.85rem; padding: 0.8rem 0;
      border: none; border-bottom: 1px solid rgba(201, 169, 110, 0.2);
      background: transparent; color: var(--charcoal);
      outline: none; transition: border-color 0.3s;
      letter-spacing: 0.05em;
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-bottom-color: var(--champagne);
    }
    .form-field textarea { resize: vertical; min-height: 120px; }
    .form-field select {
      cursor: pointer;
      -webkit-appearance: none; -moz-appearance: none; appearance: none;
    }
    .venue-checkboxes {
      display: flex; flex-wrap: wrap; gap: 1.2rem 2rem;
      padding: 0.8rem 0 0.4rem;
      border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    }
    .venue-checkbox {
      display: flex; align-items: center; gap: 0.5rem;
      cursor: pointer;
      font-size: 0.85rem; letter-spacing: 0.05em;
      color: var(--charcoal); font-weight: 400;
      user-select: none;
    }
    .venue-checkbox input[type="checkbox"] {
      width: 16px; height: 16px;
      accent-color: var(--gold);
      cursor: pointer;
      margin: 0;
    }
    .form-submit { text-align: center; margin-top: 2rem; }
    .btn-submit {
      display: inline-block; padding: 0.9rem 3.5rem;
      background: var(--gold); color: var(--ivory);
      border: none; cursor: pointer;
      font-family: 'Noto Serif TC', Georgia, serif;
      font-size: 0.78rem; letter-spacing: 0.3em;
      transition: all 0.4s;
    }
    .btn-submit:hover { background: var(--champagne); }

    /* ========================================
       PROCESS SECTION
    ======================================== */
    .process-section {
      background: var(--champagne-light);
      padding: 7rem 4rem;
    }
    .process-header {
      text-align: center; margin-bottom: 4.5rem;
    }
    .process-steps {
      display: flex; justify-content: center;
      align-items: flex-start;
      max-width: 1000px; margin: 0 auto;
      gap: 0;
    }
    .process-step {
      flex: 1; text-align: center;
      padding: 0 1.5rem;
      position: relative;
    }
    .process-step::after {
      content: '';
      position: absolute; top: 22px; right: -2px;
      width: calc(100% - 44px); height: 1px;
      background: rgba(201, 169, 110, 0.25);
    }
    .process-step:last-child::after { display: none; }
    .process-number {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px;
      border: 1px solid var(--gold); border-radius: 50%;
      font-family: Georgia, 'Bodoni 72', serif;
      font-size: 0.85rem; color: var(--gold);
      margin-bottom: 1.2rem;
      background: var(--champagne-light);
      position: relative; z-index: 1;
    }
    .process-step h4 {
      font-size: 0.88rem; font-weight: 600;
      color: var(--charcoal); letter-spacing: 0.08em;
      margin-bottom: 0.4rem;
    }
    .process-step .en-label {
      font-family: Georgia, 'Bodoni 72', serif;
      font-size: 0.5rem; letter-spacing: 0.3em;
      color: var(--gold); text-transform: uppercase;
      margin-bottom: 0.6rem;
    }
    .process-step p {
      font-size: 0.7rem; color: rgba(80, 83, 80, 0.5);
      line-height: 1.9; font-weight: 300;
    }

    /* ========================================
       CONTACT INFO
    ======================================== */
    .contact-info-section {
      background: var(--charcoal-deep);
      padding: 5rem 4rem;
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 3rem; max-width: 1200px; margin: 0 auto;
    }
    .contact-info-section > div { padding: 0; }
    .contact-info-card h4 {
      font-family: Georgia, 'Bodoni 72', serif;
      font-size: 0.6rem; letter-spacing: 0.4em;
      color: var(--gold); text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .contact-info-card p,
    .contact-info-card a {
      font-size: 0.85rem; color: rgba(255, 253, 245, 0.55);
      line-height: 2.4; font-weight: 300;
      text-decoration: none; display: block;
    }
    .contact-info-card a:hover { color: var(--gold); }
    .contact-info-wrap {
      background: var(--charcoal-deep);
      padding: 0;
    }

    /* ========================================
       FAQ SECTION
    ======================================== */
    .faq-section {
      background: var(--ivory);
      padding: 7rem 4rem;
    }
    .faq-header {
      text-align: center; margin-bottom: 4rem;
    }
    .faq-list {
      max-width: 800px; margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid rgba(201, 169, 110, 0.15);
      padding: 2rem 0;
    }
    .faq-item:first-child { border-top: 1px solid rgba(201, 169, 110, 0.15); }
    .faq-question {
      display: flex; justify-content: space-between;
      align-items: center; cursor: pointer;
      gap: 1.5rem;
    }
    .faq-question h4 {
      font-size: 0.92rem; font-weight: 600;
      color: var(--charcoal); letter-spacing: 0.05em;
      line-height: 1.6;
    }
    .faq-toggle {
      flex-shrink: 0;
      width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: var(--champagne);
      transition: transform 0.3s;
    }
    .faq-item.open .faq-toggle { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 200px;
      padding-top: 1rem;
    }
    .faq-answer p {
      font-size: 0.82rem; color: rgba(80, 83, 80, 0.55);
      line-height: 2.2; font-weight: 300;
    }

    /* ========================================
       MAP
    ======================================== */
    .map-section {
      height: 400px;
      position: relative;
    }
    .map-section iframe {
      width: 100%; height: 100%; border: none;
      filter: grayscale(0.3) contrast(1.05);
    }

    /* FOOTER — moved to resources/css/app.css */

    /* ========================================
       ANIMATIONS
    ======================================== */
    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in-slow { opacity: 0; transform: translateY(20px); transition: opacity 1.4s ease, transform 1.4s ease; }
    .fade-in-slow.visible { opacity: 1; transform: translateY(0); }

    /* ========================================
       RESPONSIVE
    ======================================== */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.8rem; }
      .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 75%; max-width: 320px; height: 100vh;
        background: rgba(255, 253, 245, 0.97);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center;
        align-items: center; gap: 2rem; transition: right 0.4s ease;
      }
      .nav-links.open { right: 0; }
      .nav-links a { font-size: 0.9rem; color: rgba(80, 83, 80, 0.7); }
      .nav-toggle { display: block; }

      .page-hero { height: 55vh; }
      .page-hero-content { padding: 3rem 3rem; }
      .page-hero-content h1 { font-size: 2.2rem; letter-spacing: 0.2em; }

      .form-section { padding: 5rem 2rem; }
      .form-row { grid-template-columns: 1fr; }

      .process-section { padding: 5rem 2rem; }
      .process-steps { flex-direction: column; gap: 2rem; align-items: center; }
      .process-step { max-width: 300px; }
      .process-step::after { display: none; }

      .contact-info-section { grid-template-columns: 1fr; padding: 3rem 2rem; }

      .faq-section { padding: 5rem 2rem; }

    }

    @media (max-width: 480px) {
      .page-hero-content h1 { font-size: 1.8rem; letter-spacing: 0.15em; }
    }
