/*
Theme Name: Unity Choice Working Upgrade
Theme URI: https://unitychoicehomecare.com/
Author: Codex
Description: The working Unity Choice real-pages theme with mobile menu, logo/footer settings, and social icons added without changing the page templates.
Version: 5.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: unity-choice-working-upgrade
*/


  :root {
    --green: #2C5F2E;
    --green-deep: #1a3a1b;
    --green-light: #3a7a3d;
    --green-pale: #edf3ed;
    --gold: #C9A84C;
    --gold-light: #e0c070;
    --gold-pale: #fdf8ee;
    --cream: #f8f5ef;
    --dark: #1a2e1b;
    --gray: #6b7c6c;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: "Jost", sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
  }

  /* ══════════════════════════════
     NAV
  ══════════════════════════════ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(44,95,46,0.1);
    backdrop-filter: blur(8px);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  .nav-logo img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: contain;
  }
  .nav-logo .nl-text .nl-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
  }
  .nav-logo .nl-text .nl-name em { color: var(--gold); font-style: italic; font-weight: 400; }
  .nav-logo .nl-text .nl-sub {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-links a.active { color: var(--green); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

  .nav-cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 10px 22px !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--green-deep) !important; color: var(--white) !important; border-bottom: none !important; }

  /* ══════════════════════════════
     PAGES
  ══════════════════════════════ */
  .page { display: none; padding-top: 72px; }
  .page.active { display: block; animation: pageIn 0.5s ease; }
  @keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  /* ══════════════════════════════
     HOME PAGE
  ══════════════════════════════ */

  /* Hero */
  .hero {
    background: var(--green);
    min-height: 88vh;
    position: relative;
    overflow: hidden;
    padding: 80px 60px;
  }
  .hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -80px; left: 200px;
    width: 340px; height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.08);
  }

  .hero-content {
    flex: 1;
    max-width: 580px;
  }
  .hero-badge {
    display: inline-block;
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 16px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
  .hero-tagline {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-style: italic;
    color: rgba(248,245,239,0.7);
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 15px;
    color: rgba(248,245,239,0.65);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 30px;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: var(--cream);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    border: 1px solid rgba(248,245,239,0.35);
    transition: border-color 0.2s, transform 0.15s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

  /* Hero logo float */
  .hero-logo-wrap {
    flex-shrink: 0;
  }
  .hero-logo-circle {
    width: 280px; height: 280px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
  }
  .hero-logo-circle img {
    width: 100%; height: 100%;
    object-fit: contain; border-radius: 50%;
  }
  .hero-logo-flyer {
    width: 340px; height: 340px;
    background: #ffffff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    padding: 18px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.25);
    animation: floatLogo 4s ease-in-out infinite;
  }
  .hero-logo-flyer img {
    width: 100%; height: 100%;
    object-fit: contain;
  }
  @keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  /* Serve band */
  .serve-band {
    background: var(--gold);
    padding: 14px 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .serve-band p { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); }
  .sb-dot { width: 4px; height: 4px; background: var(--dark); border-radius: 50%; opacity: 0.35; flex-shrink: 0; }

  /* Why section */
  .why-section { padding: 88px 60px; background: var(--cream); }
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-eyebrow {
    font-size: 9px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block;
  }
  .section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700; color: var(--green); line-height: 1.1;
    margin-bottom: 12px;
  }
  .section-sub { font-size: 15px; color: var(--gray); max-width: 520px; margin: 0 auto; line-height: 1.7; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
  }
  .why-card {
    background: var(--white);
    border: 1px solid #dde8dd;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,95,46,0.1); }
  .why-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
  }
  .why-icon { font-size: 32px; margin-bottom: 16px; display: block; }
  .why-title { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 600; color: var(--green); margin-bottom: 10px; }
  .why-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

  /* Services preview */
  .services-preview { padding: 88px 60px; background: var(--white); }
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 960px;
    margin: 0 auto 40px;
  }
  .svc-card {
    background: var(--green-pale);
    border: 1px solid #c8d8c8;
    border-left: 3px solid var(--green);
    padding: 20px 16px;
    display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
    transition: background 0.2s;
    cursor: pointer;
  }
  .svc-card:hover { background: var(--green); }
  .svc-card:hover .svc-card-name { color: var(--cream); }
  .svc-card-icon { font-size: 22px; }
  .svc-card-name { font-size: 13px; font-weight: 500; color: var(--dark); line-height: 1.3; }

  /* Testimonial */
  .testimonial-section { background: var(--green); padding: 80px 60px; text-align: center; }
  .test-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(22px, 3vw, 32px);
    font-style: italic;
    color: var(--cream);
    max-width: 680px;
    margin: 0 auto 20px;
    line-height: 1.5;
  }
  .test-attr { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

  /* CTA section */
  .cta-section { background: var(--dark); padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
  .cta-section::before {
    content: "";
    position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
  }
  .cta-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700; color: var(--cream);
    margin-bottom: 14px; position: relative; z-index: 1;
  }
  .cta-section p { font-size: 15px; color: rgba(248,245,239,0.55); margin-bottom: 32px; position: relative; z-index: 1; }
  .cta-section .btn-primary { position: relative; z-index: 1; }

  /* ══════════════════════════════
     ABOUT PAGE
  ══════════════════════════════ */
  .page-hero {
    background: var(--green);
    padding: 80px 60px 70px;
    position: relative; overflow: hidden;
  }
  .page-hero::after {
    content: ""; position: absolute; top: -60px; right: -60px;
    width: 280px; height: 280px; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .page-hero-inner { max-width: 640px; position: relative; z-index: 1; }
  .page-hero .section-eyebrow { text-align: left; }
  .page-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700; color: var(--cream); line-height: 1.05; margin-bottom: 14px;
  }
  .page-hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
  .page-hero p { font-size: 15px; color: rgba(248,245,239,0.65); line-height: 1.75; }

  .about-content { padding: 80px 60px; max-width: 960px; margin: 0 auto; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 64px; }
  .about-text h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px; font-weight: 700; color: var(--green); margin-bottom: 16px;
  }
  .about-text p { font-size: 14px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
  .about-text .gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 20px 0; }

  .about-logo-panel {
    background: var(--green);
    padding: 48px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 20px;
    position: relative; overflow: hidden;
  }
  .about-logo-panel::before {
    content: ""; position: absolute; bottom: -40px; right: -40px;
    width: 180px; height: 180px; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .about-logo-img {
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 12px;
  }
  .about-logo-img img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
  .about-panel-tagline {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px; font-style: italic;
    color: rgba(248,245,239,0.7); text-align: center;
  }

  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 60px; }
  .value-card { background: var(--green-pale); border: 1px solid #c8d8c8; padding: 28px 22px; }
  .value-num { font-family: "Cormorant Garamond", serif; font-size: 36px; font-weight: 700; color: rgba(44,95,46,0.2); margin-bottom: 8px; }
  .value-title { font-family: "Cormorant Garamond", serif; font-size: 20px; font-weight: 600; color: var(--green); margin-bottom: 8px; }
  .value-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

  /* ══════════════════════════════
     SERVICES PAGE
  ══════════════════════════════ */
  .services-content { padding: 72px 60px; max-width: 960px; margin: 0 auto; }
  .services-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 56px; }
  .service-full-card {
    background: var(--white);
    border: 1px solid #dde8dd;
    padding: 28px;
    display: flex; gap: 20px; align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative; overflow: hidden;
  }
  .service-full-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--green);
  }
  .service-full-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(44,95,46,0.1); }
  .sfc-icon { font-size: 32px; flex-shrink: 0; }
  .sfc-content { flex: 1; }
  .sfc-title { font-family: "Cormorant Garamond", serif; font-size: 20px; font-weight: 600; color: var(--green); margin-bottom: 8px; }
  .sfc-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

  .who-section { background: var(--green); padding: 64px 60px; margin: 0 -60px; margin-bottom: 56px; }
  .who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 840px; margin: 0 auto; }
  .who-card { border: 1px solid rgba(201,168,76,0.25); padding: 24px; text-align: center; }
  .who-card-icon { font-size: 28px; margin-bottom: 10px; }
  .who-card-title { font-family: "Cormorant Garamond", serif; font-size: 19px; font-weight: 600; color: var(--cream); margin-bottom: 6px; }
  .who-card-desc { font-size: 12px; color: rgba(248,245,239,0.55); line-height: 1.6; }

  .pricing-note { background: var(--gold-pale); border: 1px solid #e4cc90; border-left: 4px solid var(--gold); padding: 24px 28px; margin-bottom: 20px; }
  .pricing-note p { font-size: 14px; color: var(--dark); line-height: 1.75; }
  .pricing-note strong { color: var(--green); }

  /* ══════════════════════════════
     CONTACT PAGE
  ══════════════════════════════ */
  .contact-content { padding: 72px 60px; max-width: 960px; margin: 0 auto; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

  .contact-info h2 { font-family: "Cormorant Garamond", serif; font-size: 34px; font-weight: 700; color: var(--green); margin-bottom: 14px; }
  .contact-info p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 32px; }

  .contact-items { display: flex; flex-direction: column; gap: 20px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .ci-icon {
    width: 44px; height: 44px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .ci-text .ci-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
  .ci-text .ci-val { font-size: 14px; font-weight: 500; color: var(--dark); }

  /* Contact form */
  .contact-form-wrap { background: var(--green-pale); border: 1px solid #c8d8c8; padding: 40px; }
  .contact-form-wrap h3 { font-family: "Cormorant Garamond", serif; font-size: 26px; font-weight: 600; color: var(--green); margin-bottom: 24px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 7px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid #c8d8c8;
    padding: 12px 14px;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-submit {
    width: 100%;
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .form-submit:hover { background: var(--green-deep); }

  /* Hours table */
  .hours-section { background: var(--green); padding: 56px 60px; margin-top: 56px; }
  .hours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
  .hours-card { border: 1px solid rgba(201,168,76,0.25); padding: 20px; text-align: center; }
  .hours-day { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .hours-time { font-size: 14px; font-weight: 500; color: var(--cream); }

  /* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
  footer {
    background: var(--dark);
    padding: 56px 60px 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
  }
  .footer-brand .fb-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .footer-brand .fb-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: contain; }
  .footer-brand .fb-name { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 700; color: var(--cream); }
  .footer-brand .fb-name em { color: var(--gold); font-style: italic; font-weight: 400; }
  .footer-brand p { font-size: 13px; color: rgba(248,245,239,0.45); line-height: 1.75; max-width: 280px; }
  .footer-brand .fb-tagline { font-family: "Cormorant Garamond", serif; font-size: 15px; font-style: italic; color: rgba(201,168,76,0.6); margin-top: 12px; }

  .footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: rgba(248,245,239,0.5); text-decoration: none; cursor: pointer; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-col .fc-item { font-size: 13px; color: rgba(248,245,239,0.5); margin-bottom: 10px; line-height: 1.6; }
  .footer-col .fc-item strong { color: var(--gold); font-weight: 500; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p { font-size: 11px; color: rgba(248,245,239,0.25); }
  .footer-bottom .fb-right { font-size: 10px; color: rgba(248,245,239,0.2); letter-spacing: 1px; }

  /* ══════════════════════════════
     UTILITIES
  ══════════════════════════════ */
  .text-center { text-align: center; }
  .mx-auto { margin: 0 auto; }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero { padding: 60px 24px; }
    .hero-logo-wrap { display: none; }
    .why-section, .services-preview, .cta-section, .testimonial-section { padding: 60px 24px; }
    .why-grid, .values-grid { grid-template-columns: 1fr; }
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .about-content, .services-content, .contact-content { padding: 48px 24px; }
    .about-grid, .contact-grid, .services-full-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer { padding: 40px 24px 24px; }
    .hours-grid { grid-template-columns: 1fr 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 60px 24px 50px; }
    .who-section { margin: 0 -24px; padding: 56px 24px; }
  }

  /* ══════════════════════════════
     FAQ SECTION
  ══════════════════════════════ */
  .faq-section {
    padding: 88px 60px;
    background: var(--cream);
  }
  .faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid #dde8dd;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .faq-item:hover { box-shadow: 0 4px 20px rgba(44,95,46,0.08); }
  .faq-question {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    position: relative;
  }
  .faq-question::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
  }
  .faq-q-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--green);
    line-height: 1.3;
  }
  .faq-icon {
    width: 28px; height: 28px;
    background: var(--green-pale);
    border: 1px solid #c8d8c8;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--green);
    font-weight: 700;
    transition: background 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-icon {
    background: var(--green);
    color: var(--white);
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
    padding: 0 28px;
  }
  .faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
  }
  .faq-answer p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    border-top: 1px solid #eef3ee;
    padding-top: 16px;
  }
  .faq-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
  }
  .faq-cat-btn {
    background: var(--white);
    border: 1px solid #c8d8c8;
    color: var(--green);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .faq-cat-btn.active, .faq-cat-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
  }
  .faq-cta {
    text-align: center;
    margin-top: 48px;
    padding: 36px;
    background: var(--green);
  }
  .faq-cta p {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-style: italic;
    color: rgba(248,245,239,0.8);
    margin-bottom: 20px;
  }

  @media (max-width: 768px) {
    .faq-section { padding: 60px 24px; }
    .faq-q-text { font-size: 16px; }
  }


/* WordPress page fixes */
.page,
.page.active { display: block !important; }
.nav-logo { text-decoration: none; }
.custom-logo { max-width: 64px; height: auto; display: block; }
.btn-primary,
.btn-outline { display: inline-block; text-decoration: none; }
body { min-height: 100vh; }

/* Mobile menu and social icons */
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(44,95,46,0.18);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 8px;
}
.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green);
  display: block;
}
.site-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.site-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44,95,46,0.16);
  color: var(--green);
  background: var(--white);
  text-decoration: none;
}
.site-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}
.site-social a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.footer-social {
  margin: 18px 0 0;
}
.footer-social a {
  background: transparent;
  border-color: rgba(201,168,76,0.28);
  color: var(--gold);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
@media (max-width: 900px) {
  nav#site-navigation {
    position: relative;
  }
  .header-social {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  nav#site-navigation .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    z-index: 9999;
    background: var(--white);
    border: 1px solid rgba(44,95,46,0.14);
    box-shadow: 0 18px 45px rgba(31,47,31,0.16);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  nav#site-navigation.menu-open .nav-links {
    display: flex !important;
  }
  nav#site-navigation .nav-links li,
  nav#site-navigation .nav-links a {
    width: 100%;
  }
  nav#site-navigation .nav-links a {
    display: block;
    padding: 13px 14px;
    color: var(--dark);
  }
  nav#site-navigation .nav-links .nav-cta {
    text-align: center;
    color: var(--white);
  }
}
