    /* ============================================
       RESET & BASE
       ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    :root {
      --burgundy: #5C1A1B;
      --burgundy-deep: #3D1012;
      --gold: #C9A84C;
      --gold-light: #D4BA6A;
      --cream: #F5EFE0;
      --cream-light: #FAF7F0;
      --charcoal: #2C2420;
      --sage: #7A8B6F;
      --chapel-blue: #4A6B8A;
      --soft-white: #FAFAF7;
      --text-dark: #2C2420;
      --text-light: #F5EFE0;
      --overlay-dark: rgba(30, 15, 12, 0.55);
      --overlay-medium: rgba(30, 15, 12, 0.4);
      --overlay-light: rgba(30, 15, 12, 0.25);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text-dark);
      background: var(--soft-white);
      line-height: 1.7;
      font-weight: 400;
      font-size: 16px;
      overflow-x: hidden;
    }

    /* ============================================
       TYPOGRAPHY
       ============================================ */
    /*
      HEADLINE FONT OPTIONS — uncomment the one you prefer:
      A) 'Cinzel Decorative' — Roman inscriptional, ornate, very Catholic (current)
      B) 'Cinzel' — Same family, less ornate, more readable
      C) 'Uncial Antiqua' — Monastic uncial script, very medieval
      D) 'IM Fell English' — Old printing press feel, rustic & warm
      E) 'CF Santiago' — (paid, self-host) True Catholic decorative serif
      F) 'Chapbook' — (self-host) 17th century printing style
    */
    h1, h2 {
      font-family: 'Cinzel Decorative', 'Cinzel', 'Cormorant Garamond', Georgia, serif;
      font-weight: 600;
      line-height: 1.15;
    }

    /* Regular Cinzel for smaller headings — Decorative gets hard to read at small sizes */
    h3, h4 {
      font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
      font-weight: 600;
      line-height: 1.15;
    }

    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .painted-section .section-label { color: var(--gold-light); }

    /* ============================================
       NAVIGATION
       ============================================ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.25rem 3rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      row-gap: 0.25rem;
      transition: background 0.4s ease, backdrop-filter 0.4s ease;
    }

    nav.scrolled {
      background: rgba(44, 36, 32, 0.92);
      backdrop-filter: blur(12px);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: 0.02em;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2.25rem;
      align-items: center;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(245, 239, 224, 0.85);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: color 0.3s ease;
    }

    .nav-links a:hover { color: var(--gold-light); }

    .nav-cta {
      background: var(--gold) !important;
      color: var(--charcoal) !important;
      padding: 0.6rem 1.5rem;
      border-radius: 4px;
      font-weight: 600 !important;
      white-space: nowrap;
      transition: background 0.3s ease !important;
    }

    .nav-cta:hover { background: var(--gold-light) !important; }

    /* ============================================
       PAINTED SECTIONS (image backgrounds)
       ============================================ */
    .painted-section {
      position: relative;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: var(--text-light);
      overflow: hidden;
      padding: 6rem 3rem;
    }

    .painted-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--overlay-dark);
      z-index: 1;
    }

    .painted-section .section-content {
      position: relative;
      z-index: 2;
    }

    /* ============================================
       CLEAN SECTIONS
       ============================================ */
    .clean-section {
      background: var(--soft-white);
      padding: 6rem 3rem;
    }

    .clean-section.cream { background: var(--cream-light); }

    .section-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ============================================
       HERO
       ============================================ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 3rem 6rem;
      background-image: url('images/hero-hands-reaching.webp');
    }

    .hero .section-content {
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .hero::before { background: rgba(30, 15, 12, 0.6); }

    .hero h1 {
      font-size: clamp(3rem, 7vw, 5.5rem);
      color: #fff;
      margin: 0 auto 1.5rem;
      max-width: 900px;
      width: 100%;
      text-align: center;
      text-wrap: balance;
      text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 60px rgba(0,0,0,0.3);
    }

    .hero .subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-weight: 400;
      font-style: italic;
      color: rgba(245, 239, 224, 0.9);
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-cta {
      display: inline-flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      display: inline-block;
      padding: 0.9rem 2.25rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 4px;
      transition: all 0.3s ease;
      letter-spacing: 0.03em;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--charcoal);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .btn-outline {
      border: 1.5px solid rgba(245, 239, 224, 0.6);
      color: var(--cream);
      background: transparent;
    }

    .btn-outline:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
    }

    .btn-outline-light {
      border: 1.5px solid var(--burgundy);
      color: var(--burgundy);
      background: transparent;
    }

    .btn-outline-light:hover {
      background: var(--burgundy);
      color: var(--cream);
    }

    /* ============================================
       SERVICES
       ============================================ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-card {
      background: white;
      border-radius: 8px;
      padding: 2.5rem;
      border: 1px solid rgba(44, 36, 32, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(44, 36, 32, 0.1);
    }

    .service-card h3 {
      font-size: 1.75rem;
      color: var(--burgundy);
      margin-bottom: 0.75rem;
    }

    .service-card p {
      color: #5a5048;
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .service-card .card-link {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }

    .service-card .card-link:hover { color: var(--burgundy); }

    /* Service hub page cards */
    .services-hub-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    .service-hub-card {
      display: flex;
      flex-direction: column;
      border-radius: 10px;
      overflow: hidden;
      background: white;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-hub-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .service-hub-image {
      height: 260px;
      background-size: cover;
      background-position: center;
    }
    .service-hub-body {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .service-hub-body h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--burgundy);
      margin-bottom: 0.75rem;
    }
    .service-hub-body p {
      color: #5a5048;
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    @media (max-width: 768px) {
      .services-hub-grid { grid-template-columns: 1fr; }
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.25rem;
    }

    .icon-individual { background: rgba(92, 26, 27, 0.1); color: var(--burgundy); }
    .icon-couples { background: rgba(201, 168, 76, 0.15); color: var(--gold); }
    .icon-premarital { background: rgba(122, 139, 111, 0.15); color: var(--sage); }

    /* ============================================
       MISSION / ABOUT (painted)
       ============================================ */
    .mission {
      padding: 8rem 3rem;
      background-image: url('images/section-sacred-heart.webp');
      text-align: center;
    }

    .mission h2 {
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .mission p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 1.5rem;
      line-height: 1.8;
      color: rgba(245, 239, 224, 0.92);
    }

    .scripture-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-style: italic;
      color: var(--gold-light);
      max-width: 600px;
      margin: 3rem auto 0;
      padding-top: 2rem;
      border-top: 1px solid rgba(201, 168, 76, 0.3);
    }

    .scripture-ref {
      display: block;
      font-style: normal;
      font-size: 0.85rem;
      color: rgba(245, 239, 224, 0.6);
      margin-top: 0.75rem;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.1em;
    }

    /* ============================================
       TEAM
       ============================================ */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .team-card {
      text-align: center;
      overflow: hidden;
    }

    .team-photo {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cream), rgba(201, 168, 76, 0.2));
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      color: var(--burgundy);
      font-weight: 600;
    }

    .team-photo-img,
    .team-card img:not(.bio-card-photo) {
      width: 180px !important;
      height: 180px !important;
      max-width: 180px;
      max-height: 180px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      margin: 0 auto 1.5rem;
      display: block;
      border: 3px solid rgba(201, 168, 76, 0.3);
    }

    .team-card h3 {
      font-size: 1.5rem;
      color: var(--burgundy);
      margin-bottom: 0.25rem;
    }

    .team-card .credentials {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.08em;
      margin-bottom: 0.75rem;
    }

    .team-card p {
      color: #5a5048;
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 380px;
      margin: 0 auto;
    }

    /* ============================================
       BIO CARDS (about page — full bios)
       ============================================ */
    .bio-cards {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .bio-card {
      display: flex;
      gap: 2.5rem;
      align-items: flex-start;
      background: #fff;
      border-radius: 8px;
      padding: 2.5rem;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .bio-card-photo {
      width: 160px !important;
      height: 160px !important;
      min-width: 160px;
      max-width: 160px;
      max-height: 160px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      border: 3px solid rgba(201, 168, 76, 0.3);
      margin: 0;
    }

    .bio-card-body {
      flex: 1;
      text-align: left;
    }

    .bio-card-body h3 {
      font-size: 1.5rem;
      color: var(--burgundy);
      margin-bottom: 0.25rem;
    }

    .bio-card-body .credentials {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
    }

    .bio-card-body p {
      color: #5a5048;
      font-size: 1rem;
      line-height: 1.8;
      margin: 0;
    }

    .bio-card-specialties {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }

    .bio-card-specialties span {
      font-size: 0.8rem;
      font-family: 'Inter', sans-serif;
      padding: 0.3rem 0.75rem;
      background: rgba(201, 168, 76, 0.1);
      color: var(--burgundy);
      border-radius: 3px;
      letter-spacing: 0.02em;
    }

    @media (max-width: 768px) {
      .bio-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
      }

      .bio-card-body {
        text-align: center;
      }

      .bio-card-specialties {
        justify-content: center;
      }

      .bio-card-photo {
        width: 140px;
        height: 140px;
        min-width: 140px;
      }
    }

    /* ============================================
       COUPLES (painted)
       ============================================ */
    .couples {
      padding: 8rem 3rem;
      background-image: url('images/section-couples-church.webp');
    }

    .couples-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .couples h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1.5rem;
    }

    .couples p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: rgba(245, 239, 224, 0.9);
      margin-bottom: 1.25rem;
    }

    .couples-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .couples-features li {
      font-size: 1rem;
      color: rgba(245, 239, 224, 0.85);
      padding-left: 1.5rem;
      position: relative;
    }

    .couples-features li::before {
      content: '~';
      position: absolute;
      left: 0;
      color: var(--gold-light);
      font-weight: 600;
    }

    /* ============================================
       TESTIMONIALS (painted)
       ============================================ */
    .testimonials {
      padding: 8rem 3rem;
      background-image: url('images/section-chapel-prayer.webp');
      text-align: center;
    }

    .testimonial-card {
      max-width: 700px;
      margin: 3rem auto 0;
      padding: 2.5rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
      border-radius: 8px;
      border: 1px solid rgba(201, 168, 76, 0.15);
    }

    .testimonial-card blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-style: italic;
      line-height: 1.7;
      color: rgba(245, 239, 224, 0.95);
      margin-bottom: 1.25rem;
    }

    .testimonial-card cite {
      font-family: 'Inter', sans-serif;
      font-style: normal;
      font-size: 0.85rem;
      color: var(--gold-light);
      letter-spacing: 0.05em;
    }

    /* ============================================
       RESOURCES (clean with accent)
       ============================================ */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .resource-card {
      border-radius: 8px;
      overflow: hidden;
      background: white;
      text-decoration: none;
      color: inherit;
      display: block;
      cursor: pointer;
      border: 1px solid rgba(44, 36, 32, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .resource-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(44, 36, 32, 0.1);
    }

    .resource-card-image {
      height: 180px;
      background-size: cover;
      background-position: center;
    }

    .resource-card-body {
      padding: 1.75rem;
    }

    .resource-card h3 {
      font-size: 1.35rem;
      color: var(--burgundy);
      margin-bottom: 0.5rem;
    }

    .resource-card p {
      font-size: 0.9rem;
      color: #5a5048;
      line-height: 1.7;
    }

    /* ============================================
       CONTACT (painted)
       ============================================ */
    .contact {
      padding: 8rem 3rem;
      background-image: url('images/section-doorway-welcome.webp');
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .contact h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1.5rem;
    }

    .contact p {
      font-size: 1.05rem;
      color: rgba(245, 239, 224, 0.9);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .contact-info-item .icon-circle {
      width: 44px;
      height: 44px;
      min-width: 44px;
      border-radius: 50%;
      background: rgba(92, 26, 27, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1rem;
      color: var(--burgundy);
    }

    .contact-info-item .info-text {
      color: #5a5048;
      font-size: 0.95rem;
    }

    .contact-info-item a.info-link {
      color: #5a5048;
      text-decoration: none;
      transition: color 0.2s ease;
      display: block;
    }

    .contact-info-item a.info-link:hover {
      color: var(--burgundy);
    }

    .contact-info-item .info-label {
      font-weight: 600;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      margin-bottom: 0.2rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      padding: 0.9rem 1.25rem;
      background: #fff;
      border: 1px solid rgba(92, 26, 27, 0.2);
      border-radius: 4px;
      color: #3a3028;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.3s ease;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: #9a8e82;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    }

    .contact-form textarea { min-height: 140px; resize: vertical; }

    .contact-form select option { background: #fff; color: #3a3028; }

    .contact-form .btn-primary { border: none; cursor: pointer; width: 100%; text-align: center; }

    /* ============================================
       FOOTER
       ============================================ */
    footer {
      position: relative;
      background-image: url('images/footer-candlelit-chapel.webp');
      background-size: cover;
      background-position: center;
      color: var(--cream);
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(20, 10, 8, 0.82);
      z-index: 1;
    }

    /* Crisis callout (988) — sits above footer site-wide. YMYL trust signal. */
    .crisis-callout {
      background: var(--cream-light);
      border-top: 3px solid var(--burgundy);
      border-bottom: 1px solid rgba(92, 26, 27, 0.12);
      padding: 1rem 1.5rem;
      color: var(--charcoal);
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .crisis-callout-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
      align-items: baseline;
      justify-content: center;
      text-align: center;
    }
    .crisis-callout strong { color: var(--burgundy); }
    .crisis-callout a {
      color: var(--burgundy);
      text-decoration: none;
      border-bottom: 1px dashed var(--burgundy);
    }
    .crisis-callout a:hover { color: var(--burgundy-deep); border-bottom-style: solid; }
    .crisis-callout a strong { font-size: 1.05em; letter-spacing: 0.02em; }
    @media (max-width: 600px) {
      .crisis-callout-inner { flex-direction: column; gap: 0.25rem; }
    }

    .footer-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 3rem 2rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .footer-brand h3 {
      font-size: 1.75rem;
      color: var(--cream);
      margin-bottom: 0.75rem;
    }

    .footer-brand p {
      color: rgba(245, 239, 224, 0.65);
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 320px;
    }

    .footer-col h4 {
      font-size: 1rem;
      color: var(--gold-light);
      margin-bottom: 1rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .footer-col ul { list-style: none; }

    .footer-col li { margin-bottom: 0.6rem; }

    .footer-col a {
      color: rgba(245, 239, 224, 0.65);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-col a:hover { color: var(--gold-light); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      font-size: 0.8rem;
      color: rgba(245, 239, 224, 0.4);
    }

    /* ============================================
       DIVIDER (stained glass accent)
       ============================================ */
    .divider {
      height: 8px;
      background-image: url('images/accent-stained-glass.webp');
      background-size: cover;
      background-position: center;
      opacity: 0.6;
    }

    /* ============================================
       SCROLL ANIMATIONS
       ============================================ */
    .fade-up {
      opacity: 1;
      transform: translateY(0);
    }

    .js-loaded .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .js-loaded .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { gap: 1.25rem; }
      .nav-links a { font-size: 0.8rem; }

      .clean-section,
      .painted-section { padding: 4rem 1.5rem; }

      .hero { padding: 6rem 1.5rem; }

      .couples-content,
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

      .painted-section { background-attachment: scroll; }
    }

    /* Hamburger button — hidden on desktop */
    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1001;
      flex-direction: column;
      gap: 5px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--cream);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 768px) {
      .nav-hamburger { display: flex; }

      .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100dvh;
        background: rgba(44, 36, 32, 0.97);
        backdrop-filter: blur(16px);
        padding: 5rem 2rem 2rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
      }
      .nav-links.open {
        transform: translateX(0);
      }
      .nav-links li {
        border-bottom: 1px solid rgba(245, 239, 224, 0.08);
      }
      .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem !important;
        color: rgba(245, 239, 224, 0.9) !important;
      }
      .nav-links .nav-cta {
        margin-top: 1rem;
        text-align: center;
        border-radius: 4px;
      }

      .footer-top { grid-template-columns: 1fr; }
    }

    /* ============================================
       SUBPAGE HERO (shorter)
       ============================================ */
    .hero-sub {
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 3rem 4rem;
    }

    .hero-sub::before { background: var(--overlay-medium); }

    .hero-sub h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      color: var(--cream);
      margin-bottom: 1rem;
      max-width: 800px;
      text-shadow: 0 2px 40px rgba(0,0,0,0.3);
    }

    .hero-sub .subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 1.8vw, 1.35rem);
      font-weight: 400;
      font-style: italic;
      color: rgba(245, 239, 224, 0.9);
      max-width: 550px;
      margin: 0 auto;
    }

    /* ============================================
       INFO GRID (about page)
       ============================================ */
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 960px;
      margin: 3rem auto 0;
    }

    .info-card {
      padding: 2rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
      border-radius: 8px;
      border: 1px solid rgba(201, 168, 76, 0.15);
      text-align: left;
    }

    .info-card .info-card-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 0.5rem;
    }

    .info-card .info-card-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 0.4rem;
    }

    .info-card .info-card-note {
      font-size: 0.85rem;
      color: rgba(245, 239, 224, 0.65);
      line-height: 1.6;
    }

    /* ============================================
       SERVICES TWO-COL LAYOUT
       ============================================ */
    .services-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    @media (max-width: 768px) {
      .services-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    /* ============================================
       SPECIALTIES GRID
       ============================================ */
    .specialties-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    @media (max-width: 1024px) {
      .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .specialties-grid {
        grid-template-columns: 1fr;
      }
    }

    .modality-tag {
      display: inline-block;
      padding: 0.4rem 1rem;
      background: rgba(92, 26, 27, 0.06);
      border: 1px solid rgba(92, 26, 27, 0.15);
      border-radius: 20px;
      font-size: 0.9rem;
      color: #5a5048;
      font-family: 'Inter', sans-serif;
    }

    .specialty-card {
      background: white;
      border-radius: 8px;
      padding: 2rem;
      border: 1px solid rgba(44, 36, 32, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .specialty-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(44, 36, 32, 0.08);
    }

    .specialty-card h3 {
      font-size: 1.3rem;
      color: var(--burgundy);
      margin-bottom: 0.5rem;
    }

    .specialty-card p {
      font-size: 0.9rem;
      color: #5a5048;
      line-height: 1.7;
    }

    /* ============================================
       CTA BANNER (bottom of subpages)
       ============================================ */
    .cta-banner {
      padding: 6rem 3rem;
      text-align: center;
    }

    .cta-banner h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1rem;
    }

    .cta-banner p {
      font-size: 1.05rem;
      color: rgba(245, 239, 224, 0.9);
      max-width: 550px;
      margin: 0 auto 2rem;
      line-height: 1.8;
    }

    /* CTA dual-action row (free consult + click-to-call). Stacks on mobile. */
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem 1rem;
      margin-bottom: 1.25rem;
    }
    .cta-note {
      font-size: 0.85rem;
      color: rgba(245, 239, 224, 0.7);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.6;
      font-style: italic;
    }
    @media (max-width: 600px) {
      .cta-actions { flex-direction: column; align-items: stretch; }
      .cta-actions .btn { text-align: center; }
    }

    /* Blog card link styling */
    .resource-card a.card-link {
      display: inline-block;
      margin-top: 0.75rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }

    .resource-card a.card-link:hover { color: var(--burgundy); }

    .coming-soon {
      text-align: center;
      margin-top: 3rem;
      color: #8a7f75;
      font-style: italic;
      font-size: 0.95rem;
    }

    /* ============================================
       BLOG MAGAZINE LAYOUT
       ============================================ */

    /* Category Filter Bar */
    .blog-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-bottom: 3rem;
    }

    .filter-tag {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      padding: 0.5rem 1.25rem;
      border-radius: 100px;
      border: 1.5px solid rgba(44, 36, 32, 0.15);
      background: transparent;
      color: var(--text-dark);
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .filter-tag:hover {
      border-color: var(--burgundy);
      color: var(--burgundy);
    }

    .filter-tag.active {
      background: var(--burgundy);
      border-color: var(--burgundy);
      color: var(--cream);
    }

    /* Featured Article (large hero card) */
    .blog-featured {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 0;
      border-radius: 12px;
      overflow: hidden;
      background: white;
      border: 1px solid rgba(44, 36, 32, 0.08);
      margin-bottom: 3rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: inherit;
    }

    .blog-featured:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(44, 36, 32, 0.12);
    }

    .blog-featured-image {
      min-height: 360px;
      background-size: cover;
      background-position: center;
    }

    .blog-featured-body {
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .blog-featured-body .blog-card-tag {
      margin-bottom: 1rem;
    }

    .blog-featured-body h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      color: var(--burgundy);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .blog-featured-body p {
      font-size: 1rem;
      color: #5a5048;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .blog-featured-body .blog-read-more {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }

    .blog-featured-body .blog-read-more:hover {
      color: var(--burgundy);
    }

    /* Blog Cards Grid */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .upcoming-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .upcoming-card {
      background: white;
      border-radius: 10px;
      padding: 2rem;
      border: 1px solid rgba(201, 168, 76, 0.15);
      transition: box-shadow 0.3s ease;
    }
    .upcoming-card:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    @media (max-width: 900px) { .upcoming-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .upcoming-grid { grid-template-columns: 1fr; } }

    .blog-card {
      border-radius: 10px;
      overflow: hidden;
      background: white;
      border: 1px solid rgba(44, 36, 32, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(44, 36, 32, 0.1);
    }

    .blog-card-image {
      height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .blog-card-tag {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 100px;
      background: rgba(92, 26, 27, 0.08);
      color: var(--burgundy);
    }

    .blog-card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .blog-card-body .blog-card-tag {
      margin-bottom: 0.75rem;
      align-self: flex-start;
    }

    .blog-card-body h3 {
      font-size: 1.2rem;
      color: var(--burgundy);
      margin-bottom: 0.5rem;
      line-height: 1.35;
    }

    .blog-card-body p {
      font-size: 0.88rem;
      color: #5a5048;
      line-height: 1.7;
      flex: 1;
    }

    .blog-card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(44, 36, 32, 0.06);
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: #8a7f75;
    }

    .blog-card-meta .read-time {
      font-weight: 500;
    }

    /* ============================================
       BLOG POST (individual article page)
       ============================================ */
    .blog-post-content {
      max-width: 740px;
      margin: 0 auto;
      padding: 4rem 2rem 3rem;
    }

    .blog-post-content .blog-card-tag {
      margin-bottom: 1.5rem;
    }

    .blog-post-content h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--burgundy);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .blog-post-byline {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: #8a7f75;
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(44, 36, 32, 0.1);
    }

    .blog-post-content h2 {
      font-size: 1.6rem;
      color: var(--burgundy);
      margin: 2.5rem 0 1rem;
    }

    .blog-post-content h3 {
      font-size: 1.25rem;
      color: var(--charcoal);
      margin: 2rem 0 0.75rem;
    }

    .blog-post-content p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: #3d3530;
      margin-bottom: 1.5rem;
    }

    .blog-post-content ul,
    .blog-post-content ol {
      margin: 1rem 0 1.5rem 1.5rem;
      font-size: 1.05rem;
      line-height: 1.85;
      color: #3d3530;
    }

    .blog-post-content li {
      margin-bottom: 0.5rem;
    }

    .blog-post-content blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-style: italic;
      color: var(--burgundy);
      border-left: 3px solid var(--gold);
      padding: 1rem 0 1rem 1.5rem;
      margin: 2rem 0;
      line-height: 1.7;
    }

    .blog-post-content blockquote cite {
      display: block;
      font-family: 'Inter', sans-serif;
      font-style: normal;
      font-size: 0.8rem;
      color: #8a7f75;
      margin-top: 0.75rem;
      letter-spacing: 0.05em;
    }

    /* Related Articles */
    .related-articles {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem 4rem;
    }

    .related-articles h2 {
      font-size: 1.75rem;
      color: var(--burgundy);
      margin-bottom: 2rem;
      text-align: center;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    /* ============================================
       RESPONSIVE — BLOG
       ============================================ */
    @media (max-width: 900px) {
      .blog-featured {
        grid-template-columns: 1fr;
      }

      .blog-featured-image {
        min-height: 240px;
      }

      .blog-featured-body {
        padding: 2rem;
      }

      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .related-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .blog-post-content {
        padding: 3rem 1.5rem 2rem;
      }
    }

    @media (max-width: 600px) {
      .blog-grid {
        grid-template-columns: 1fr;
      }

      .related-grid {
        grid-template-columns: 1fr;
      }

      .blog-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
      }
    }

    /* Responsive for subpages */
    @media (max-width: 900px) {
      .hero-sub { padding: 6rem 1.5rem 3rem; }
      .info-grid { gap: 1rem; }
    }
