    .faq-list { display: grid; gap: 13px; }

    .faq-item {
      background: rgba(255,255,255,.9);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--edge-light), 0 10px 28px rgba(15,61,34,.05);
    }

    .faq-question {
      width: 100%;
      border: 0;
      background: transparent;
      padding: 22px 24px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: var(--forest);
      font-weight: 800;
      cursor: pointer;
      text-align: left;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease;
      color: var(--muted);
      padding: 0 24px;
    }

    .faq-item.active .faq-answer {
      max-height: 360px;
      padding-bottom: 22px;
    }

    .faq-answer p + p {
      margin-top: 8px;
    }

    .cta-card {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 28px;
      border-radius: var(--radius-lg);
      padding: 48px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,234,210,.58));
      border: 1px solid var(--border-medium);
      box-shadow: var(--edge-light), var(--shadow);
    }

    .cta-card h2 {
      color: var(--forest);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2rem, 3.8vw, 3.55rem);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .cta-card p {
      color: var(--muted);
      max-width: 720px;
      margin-top: 13px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .trust-grid-wide {
      grid-template-columns: repeat(3, 1fr);
    }

    .split > .trust-grid {
      grid-template-columns: 1fr;
    }

    .trust-card {
      position: relative;
      overflow: hidden;
      background: rgba(255,255,255,.9);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--edge-light), 0 14px 38px rgba(15,61,34,.06);
    }

    .trust-card::before {
      content: "";
      position: absolute;
      top: 20px;
      right: 20px;
      width: 74px;
      height: 74px;
      pointer-events: none;
      opacity: .1;
      transform: rotate(-16deg);
      background: var(--botanical-corner-green) center / contain no-repeat;
    }

    .trust-icon {
      min-width: 48px;
      width: max-content;
      height: 48px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      background: var(--leaf-soft);
      color: var(--leaf);
      font-weight: 900;
      margin-bottom: 18px;
      padding: 0 12px;
      position: relative;
      z-index: 1;
    }

    .trust-icon img {
      width: 30px;
      height: 30px;
      display: block;
      object-fit: contain;
    }

    .trust-card h3 {
      color: var(--forest);
      font-size: 1.12rem;
      letter-spacing: 0;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }

    .trust-card p {
      color: var(--muted);
      font-size: .96rem;
      position: relative;
      z-index: 1;
    }

    .trust-card p + p {
      margin-top: 10px;
    }

    .about-photo {
      position: relative;
      overflow: hidden;
      min-height: 430px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      box-shadow: var(--edge-light), var(--shadow);
      background: var(--ivory);
    }

    .about-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(180deg, transparent 52%, rgba(9,40,23,.26) 100%),
        linear-gradient(135deg, rgba(214,178,94,.12), transparent 48%);
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      min-height: 430px;
      display: block;
      object-fit: cover;
      object-position: 50% 38%;
    }

    .gallery-section {
      background:
        linear-gradient(180deg, rgba(250,247,240,.2), rgba(246,234,210,.34));
    }

    .photo-gallery {
      display: grid;
      grid-template-columns: 1.25fr 1fr 1fr;
      grid-auto-rows: 245px;
      gap: 18px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      background: var(--forest);
      box-shadow: var(--edge-light), 0 16px 40px rgba(15,61,34,.08);
    }

    .gallery-item-large {
      grid-row: span 2;
      grid-column: span 1;
    }

    .gallery-item:nth-child(2) {
      grid-column: span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      transition: transform .35s ease;
    }

    .gallery-item-large img {
      object-position: 54% 36%;
    }

    .gallery-item:nth-child(2) img {
      object-position: center;
    }

    .gallery-item:nth-child(3) img {
      object-position: 50% center;
    }

    .gallery-item:hover img {
      transform: scale(1.025);
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,61,34,.02), rgba(9,40,23,.08));
      pointer-events: none;
    }

    .gallery-item figcaption {
      display: none;
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 16px;
      z-index: 1;
      color: var(--ivory);
      font-weight: 850;
      text-shadow: 0 2px 14px rgba(0,0,0,.28);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 22px;
    }

    .contact-card,
    .form-card {
      background: rgba(255,255,255,.92);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      padding: 31px;
      box-shadow: var(--edge-light), 0 14px 42px rgba(15,61,34,.06);
    }

    .contact-card h3,
    .form-card h3 {
      color: var(--forest);
      font-size: 1.38rem;
      margin-bottom: 10px;
    }

    .contact-card p { color: var(--muted); }
    .form-card p { color: var(--muted); margin-bottom: 12px; }
    .contact-list { margin-top: 20px; list-style: none; display: grid; gap: 12px; color: var(--muted); }
    .contact-list strong { color: var(--forest); }

    .contact-actions {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .directions-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--forest);
      font-weight: 800;
      transition: .22s ease;
      padding: 10px 12px;
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      background: var(--ivory);
    }

    .directions-link:hover {
      color: var(--gold-deep);
      border-color: var(--border-medium);
      background: var(--cream);
      transform: translateX(3px);
    }

    .directions-icon {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: inline-grid;
      place-items: center;
      background: var(--leaf-soft);
      color: var(--leaf);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .full { grid-column: 1 / -1; }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      padding: 14px 15px;
      color: var(--text);
      outline: none;
      background: var(--ivory);
      box-shadow: var(--edge-light);
    }

    textarea { min-height: 124px; resize: vertical; }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(63,111,53,.62);
      background: white;
      box-shadow: 0 0 0 4px rgba(63,111,53,.1);
    }

    .form-submit { margin-top: 12px; }
    .form-note { margin-top: 10px; color: var(--muted); font-size: .82rem; }

    .privacy-note {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 16px;
      background: var(--leaf-soft);
      color: var(--forest);
      font-size: .82rem;
      font-weight: 750;
    }

    .footer {
      border-top: 1px solid rgba(214,178,94,.32);
      padding: 34px 0;
      color: var(--muted);
      font-size: .9rem;
      background: rgba(250,247,240,.78);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      width: 58px;
      height: 58px;
      border-radius: var(--radius-pill);
      background: linear-gradient(135deg, var(--leaf), var(--forest));
      color: white;
      display: grid;
      place-items: center;
      box-shadow: 0 18px 38px rgba(15,61,34,.32);
      font-weight: 900;
      font-size: 1.28rem;
      transition: .22s ease;
    }

    .whatsapp:hover { transform: translateY(-1px); }

    .reveal {
      opacity: 0;
      transform: translateY(12px);
      transition: .42s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

