    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #FDFCF8;
      --fg: #2C2C24;
      --primary: #5D7052;
      --primary-fg: #F3F4F1;
      --secondary: #C18C5D;
      --accent: #E6DCCD;
      --muted: #F0EBE5;
      --muted-fg: #78786C;
      --border: #DED8CF;
      --shadow-soft: 0 4px 20px -2px rgba(93, 112, 82, 0.15);
      --shadow-float: 0 10px 40px -10px rgba(193, 140, 93, 0.20);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.035;
      mix-blend-mode: multiply;
      pointer-events: none;
      z-index: 9999;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Fraunces', serif;
      line-height: 1.2;
    }

    h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.8rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.9rem, 3.8vw, 2.8rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.15rem;
      font-weight: 600;
    }

    p {
      color: var(--muted-fg);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 1rem;
      z-index: 100;
      padding: 0 1.5rem;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      background: rgba(253, 252, 248, 0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 9999px;
      padding: 0.6rem 1.2rem 0.6rem 0.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-soft);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .nav-logo-icon {
      width: 38px;
      height: 38px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-logo-icon svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    .nav-logo-text {
      font-family: 'Fraunces', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--fg);
    }

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

    .nav-links a {
      padding: 0.4rem 0.9rem;
      border-radius: 9999px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--muted-fg);
      transition: all 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: rgba(93, 112, 82, 0.09);
      color: var(--primary);
    }

    .nav-cta {
      background: var(--primary) !important;
      color: var(--primary-fg) !important;
      padding: 0.5rem 1.2rem !important;
      border-radius: 9999px !important;
      font-weight: 700 !important;
      font-size: 0.88rem !important;
      box-shadow: var(--shadow-soft);
      transition: all 0.25s !important;
    }

    .nav-cta:hover {
      transform: scale(1.04);
      box-shadow: 0 6px 24px -4px rgba(93, 112, 82, 0.28) !important;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.4rem;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--fg);
      margin: 4px 0;
      border-radius: 2px;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(253, 252, 248, 0.97);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--fg);
      transition: color 0.2s;
    }

    .mobile-menu a:hover {
      color: var(--primary);
    }

    .mobile-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: var(--muted);
      border: none;
      cursor: pointer;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

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

      .hamburger {
        display: block;
      }

      .nav-cta-desktop {
        display: none;
      }
    }

    /* ── SHARED ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 2rem;
      border-radius: 9999px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--primary-fg);
      box-shadow: var(--shadow-soft);
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 28px -4px rgba(93, 112, 82, 0.28);
    }

    .btn-primary:active {
      transform: scale(0.97);
    }

    .btn-lg {
      padding: 0.95rem 2.4rem;
      font-size: 1.05rem;
    }

    .btn-white {
      background: white;
      color: var(--fg);
    }

    .btn-white:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-ghost-white {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.35);
    }

    .btn-ghost-white:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: scale(1.04);
    }

    .btn-whatsapp {
      background: #25D366;
      color: white;
    }

    .btn-whatsapp:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
    }

    section {
      padding: 5rem 1.5rem;
    }

    .section-tag {
      display: inline-block;
      background: rgba(193, 140, 93, 0.12);
      color: var(--secondary);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-tag-green {
      display: inline-block;
      background: rgba(93, 112, 82, 0.1);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: var(--muted-fg);
      font-weight: 600;
      margin-bottom: 1.6rem;
    }

    .breadcrumb a {
      color: var(--primary);
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

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

    /* ══════════════════════════
   HERO
══════════════════════════ */
    .contact-hero {
      padding: 5rem 1.5rem 4.5rem;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .ch-blob1 {
      position: absolute;
      width: 520px;
      height: 520px;
      background: rgba(93, 112, 82, 0.09);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -190px;
      left: -150px;
      filter: blur(65px);
      pointer-events: none;
    }

    .ch-blob2 {
      position: absolute;
      width: 420px;
      height: 420px;
      background: rgba(193, 140, 93, 0.1);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -140px;
      right: -120px;
      filter: blur(55px);
      pointer-events: none;
    }

    .ch-inner {
      max-width: 720px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .ch-inner h1 {
      color: var(--fg);
      margin-bottom: 1.1rem;
    }

    .ch-inner h1 em {
      font-style: italic;
      color: var(--primary);
    }

    .ch-desc {
      font-size: 1.07rem;
      max-width: 580px;
      margin: 0 auto 2.2rem;
      line-height: 1.85;
    }

    /* Quick-reach pills */
    .ch-quick {
      display: flex;
      justify-content: center;
      gap: 0.7rem;
      flex-wrap: wrap;
    }

    .ch-qpill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.65);
      border-radius: 9999px;
      padding: 0.45rem 1.1rem;
      font-size: 0.83rem;
      font-weight: 700;
      color: var(--fg);
      box-shadow: var(--shadow-soft);
      transition: all 0.22s;
      text-decoration: none;
    }

    .ch-qpill:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-float);
      color: var(--primary);
    }

    .ch-qpill svg {
      width: 15px;
      height: 15px;
      fill: var(--primary);
      flex-shrink: 0;
    }

    .ch-qpill.wa svg {
      fill: #25D366;
    }

    .ch-qpill-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #4CAF50;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.6;
        transform: scale(1.3)
      }
    }

    /* ══════════════════════════
   MAIN CONTACT SECTION
══════════════════════════ */
    .contact-main {
      padding: 4rem 1.5rem 5rem;
    }

    .cm-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    /* ── FORM CARD ── */
    .form-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 2.5rem;
      padding: 2.8rem 3rem;
      box-shadow: var(--shadow-float);
      position: relative;
      overflow: hidden;
    }

    .form-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.025;
      border-radius: inherit;
      pointer-events: none;
    }

    .form-card-blob {
      position: absolute;
      width: 280px;
      height: 280px;
      background: rgba(93, 112, 82, 0.06);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      bottom: -80px;
      right: -80px;
      filter: blur(50px);
      pointer-events: none;
    }

    .fc-header {
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .fc-header h2 {
      font-size: 1.7rem;
      color: var(--fg);
      margin-bottom: 0.4rem;
    }

    .fc-header p {
      font-size: 0.9rem;
    }

    /* Form fields */
    .form-group {
      margin-bottom: 1.3rem;
      position: relative;
      z-index: 1;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.3rem;
    }

    label {
      display: block;
      font-size: 0.83rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.45rem;
      letter-spacing: 0.01em;
    }

    label span.req {
      color: var(--secondary);
      margin-left: 2px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 0.8rem 1.2rem;
      background: rgba(253, 252, 248, 0.8);
      border: 1.5px solid var(--border);
      border-radius: 9999px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.9rem;
      color: var(--fg);
      transition: all 0.25s;
      outline: none;
      appearance: none;
    }

    .form-textarea {
      border-radius: 1.4rem;
      resize: vertical;
      min-height: 130px;
      padding: 1rem 1.2rem;
      line-height: 1.6;
    }

    .form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2378786C'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 20px;
      padding-right: 2.8rem;
      cursor: pointer;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--muted-fg);
      opacity: 0.75;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: rgba(93, 112, 82, 0.5);
      box-shadow: 0 0 0 3px rgba(93, 112, 82, 0.1);
      background: white;
    }

    .form-input:focus {
      outline: none;
    }

    /* Submit */
    .form-submit-wrap {
      position: relative;
      z-index: 1;
    }

    .form-submit-wrap .btn-primary {
      width: 100%;
      justify-content: center;
      padding: 1rem;
      font-size: 1rem;
      border-radius: 9999px;
    }

    .form-privacy {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
      font-size: 0.78rem;
      color: var(--muted-fg);
    }

    .form-privacy svg {
      width: 14px;
      height: 14px;
      fill: var(--primary);
      flex-shrink: 0;
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem 1rem;
      position: relative;
      z-index: 1;
    }

    .fs-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(93, 112, 82, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
    }

    .fs-icon svg {
      width: 36px;
      height: 36px;
      fill: var(--primary);
    }

    .fs-title {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.5rem;
    }

    .fs-desc {
      font-size: 0.92rem;
      max-width: 320px;
      margin: 0 auto;
    }

    @media (max-width: 580px) {
      .form-row {
        grid-template-columns: 1fr;
      }

      .form-card {
        padding: 2rem 1.6rem;
      }
    }

    /* ── RIGHT SIDE ── */
    .contact-sidebar {
      display: flex;
      flex-direction: column;
      gap: 1.3rem;
    }

    /* Response timer badge */
    .response-badge {
      background: var(--primary);
      border-radius: 2rem;
      padding: 1.4rem 1.6rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: var(--shadow-soft);
    }

    .rb-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rb-icon svg {
      width: 24px;
      height: 24px;
      fill: white;
    }

    .rb-text h4 {
      font-size: 0.88rem;
      color: rgba(243, 244, 241, 0.7);
      font-weight: 600;
      margin-bottom: 0.1rem;
    }

    .rb-text strong {
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      color: white;
      font-weight: 700;
    }

    .rb-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #4CAF50;
      animation: pulse 2s infinite;
      margin-left: auto;
      flex-shrink: 0;
    }

    /* Contact method cards */
    .contact-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 1.8rem;
      padding: 1.5rem 1.6rem;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .contact-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-float);
    }

    .cc-top {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .cc-icon-wrap {
      width: 46px;
      height: 46px;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s;
    }

    .cc-email .cc-icon-wrap {
      background: rgba(93, 112, 82, 0.1);
    }

    .cc-phone .cc-icon-wrap {
      background: rgba(193, 140, 93, 0.1);
    }

    .cc-whatsapp .cc-icon-wrap {
      background: rgba(37, 211, 102, 0.1);
    }

    .contact-card:hover .cc-icon-wrap {
      transform: scale(1.08);
    }

    .cc-icon-wrap svg {
      width: 22px;
      height: 22px;
    }

    .cc-email .cc-icon-wrap svg {
      fill: var(--primary);
    }

    .cc-phone .cc-icon-wrap svg {
      fill: var(--secondary);
    }

    .cc-whatsapp .cc-icon-wrap svg {
      fill: #25D366;
    }

    .cc-label {
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--muted-fg);
      margin-bottom: 0.1rem;
    }

    .cc-value {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--fg);
    }

    .cc-note {
      font-size: 0.8rem;
      color: var(--muted-fg);
      line-height: 1.55;
    }

    .cc-action {
      align-self: flex-start;
    }

    /* Info cards row */
    .info-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .info-card {
      background: var(--muted);
      border-radius: 1.4rem;
      padding: 1.2rem 1.2rem;
    }

    .ic-icon {
      width: 36px;
      height: 36px;
      border-radius: 0.7rem;
      background: rgba(93, 112, 82, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.7rem;
    }

    .ic-icon svg {
      width: 18px;
      height: 18px;
      fill: var(--primary);
    }

    .ic-label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--muted-fg);
      margin-bottom: 0.2rem;
    }

    .ic-value {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--fg);
      line-height: 1.4;
    }

    .ic-sub {
      font-size: 0.75rem;
      color: var(--muted-fg);
      margin-top: 0.15rem;
    }

    @media (max-width: 960px) {
      .cm-inner {
        grid-template-columns: 1fr;
      }
    }

    /* ══════════════════════════
   MAP / LOCATION SECTION
══════════════════════════ */
    .location-section {
      background: var(--muted);
      padding: 4rem 1.5rem;
    }

    .loc-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: center;
    }

    .loc-content h2 {
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .loc-content h2 em {
      font-style: italic;
      color: var(--secondary);
    }

    .loc-content p {
      font-size: 0.95rem;
      margin-bottom: 1.6rem;
    }

    .loc-details {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .ld-item {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      font-size: 0.9rem;
      color: var(--fg);
    }

    .ld-icon {
      width: 32px;
      height: 32px;
      border-radius: 0.6rem;
      background: rgba(93, 112, 82, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .ld-icon svg {
      width: 16px;
      height: 16px;
      fill: var(--primary);
    }

    .ld-label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--muted-fg);
      display: block;
      margin-bottom: 0.05rem;
    }

    .ld-val {
      font-weight: 700;
      color: var(--fg);
      font-size: 0.9rem;
    }

    /* Styled map placeholder */
    .loc-map {
      border-radius: 2rem;
      overflow: hidden;
      background: rgba(93, 112, 82, 0.08);
      border: 1px solid rgba(222, 216, 207, 0.55);
      box-shadow: var(--shadow-soft);
      min-height: 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      gap: 1rem;
    }

    .loc-map-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(93, 112, 82, 0.08) 0%, rgba(193, 140, 93, 0.06) 100%);
    }

    /* Simple decorative map grid */
    .loc-map-grid {
      position: absolute;
      inset: 0;
      opacity: 0.15;
      background-image: repeating-linear-gradient(0deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 40px);
    }

    .loc-map-pin {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .lmp-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.6rem;
      box-shadow: 0 0 0 12px rgba(93, 112, 82, 0.15), 0 0 0 24px rgba(93, 112, 82, 0.07);
      animation: map-pulse 2.5s infinite;
    }

    @keyframes map-pulse {

      0%,
      100% {
        box-shadow: 0 0 0 12px rgba(93, 112, 82, 0.15), 0 0 0 24px rgba(93, 112, 82, 0.07);
      }

      50% {
        box-shadow: 0 0 0 18px rgba(93, 112, 82, 0.1), 0 0 0 36px rgba(93, 112, 82, 0.04);
      }
    }

    .lmp-circle svg {
      width: 32px;
      height: 32px;
      fill: white;
    }

    .lmp-label {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--fg);
    }

    .lmp-sub {
      font-size: 0.8rem;
      color: var(--muted-fg);
    }

    .loc-map-badge {
      position: absolute;
      bottom: 1.2rem;
      right: 1.2rem;
      background: white;
      border-radius: 1rem;
      padding: 0.7rem 1rem;
      box-shadow: var(--shadow-float);
      border: 1px solid rgba(222, 216, 207, 0.5);
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--fg);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      z-index: 2;
    }

    .loc-map-badge svg {
      width: 13px;
      height: 13px;
      fill: var(--primary);
    }

    @media (max-width: 760px) {
      .loc-inner {
        grid-template-columns: 1fr;
      }
    }

    /* ══════════════════════════
   FAQ SECTION
══════════════════════════ */
    .faq-section {
      padding: 5rem 1.5rem;
    }

    .faq-inner {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .faq-header h2 {
      color: var(--fg);
      margin-bottom: 0.7rem;
    }

    .faq-header p {
      max-width: 520px;
      margin: 0 auto;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    details.faq-item {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 1.4rem;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.25s;
    }

    details.faq-item[open] {
      box-shadow: var(--shadow-float);
    }

    details.faq-item summary {
      padding: 1.3rem 1.6rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      list-style: none;
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--fg);
      transition: color 0.2s;
    }

    details.faq-item[open] summary {
      color: var(--primary);
    }

    details.faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      fill: var(--muted-fg);
      transition: transform 0.3s, fill 0.2s;
    }

    details.faq-item[open] .faq-chevron {
      transform: rotate(180deg);
      fill: var(--primary);
    }

    .faq-body {
      padding: 0 1.6rem 1.4rem;
      font-size: 0.9rem;
      color: var(--muted-fg);
      line-height: 1.75;
      border-top: 1px solid rgba(222, 216, 207, 0.4);
      padding-top: 1rem;
    }

    /* ══════════════════════════
   FINAL CTA BANNER
══════════════════════════ */
    .final-cta {
      background: var(--fg);
      padding: 6rem 1.5rem;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .fcta-blob1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(93, 112, 82, 0.22);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -200px;
      left: -120px;
      filter: blur(65px);
      pointer-events: none;
    }

    .fcta-blob2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(193, 140, 93, 0.15);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -150px;
      right: -100px;
      filter: blur(60px);
      pointer-events: none;
    }

    .fcta-inner {
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .fcta-tag {
      display: inline-block;
      background: rgba(255, 255, 255, 0.12);
      color: rgba(243, 244, 241, 0.9);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .fcta-inner h2 {
      color: white;
      margin-bottom: 1rem;
      font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .fcta-inner p {
      color: rgba(240, 235, 229, 0.73);
      font-size: 1.05rem;
      margin-bottom: 0.5rem;
    }

    .fcta-highlights {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .fh-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.85rem;
      color: rgba(243, 244, 241, 0.75);
      font-weight: 600;
    }

    .fh-item svg {
      width: 15px;
      height: 15px;
      fill: #9DC38A;
      flex-shrink: 0;
    }

    .fcta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-cta-green {
      background: var(--primary);
      color: white;
      box-shadow: 0 4px 20px rgba(93, 112, 82, 0.35);
    }

    .btn-cta-green:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(93, 112, 82, 0.4);
    }

    /* ── FOOTER ── */
    footer {
      background: #1A1A14;
      color: rgba(240, 235, 229, 0.7);
      padding: 4rem 1.5rem 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand-name {
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.8rem;
    }

    .footer-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo-icon svg {
      width: 16px;
      height: 16px;
      fill: white;
    }

    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }

    .footer-socials {
      display: flex;
      gap: 0.6rem;
    }

    .footer-social {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(240, 235, 229, 0.7);
      transition: all 0.2s;
    }

    .footer-social:hover {
      background: var(--primary);
      color: white;
    }

    .footer-col-title {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(240, 235, 229, 0.4);
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-links a {
      font-size: 0.88rem;
      color: rgba(240, 235, 229, 0.65);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.85rem;
      margin-bottom: 0.6rem;
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      fill: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-copy {
      font-size: 0.82rem;
      color: rgba(240, 235, 229, 0.4);
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-bottom-links a {
      font-size: 0.82rem;
      color: rgba(240, 235, 229, 0.4);
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: rgba(240, 235, 229, 0.75);
    }

    @media (max-width: 900px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 550px) {
      .footer-inner {
        grid-template-columns: 1fr;
      }
    }
