    /* ── Custom Properties ─────────────────────────────────────────── */
    :root {
      --lp-green:      #1d3a29;
      --lp-green-mid:  #2a5240;
      --lp-green-light:#3d7a5c;
      --lp-amber:      #c8892a;
      --lp-amber-light:#e8a840;
      --lp-cream:      #f6f2eb;
      --lp-sand:       #e8e1d4;
      --lp-dark:       #111a15;
      --lp-body:       #3a3a3a;
      --ff-display:    'Cormorant Garamond', Georgia, serif;
      --ff-body:       'DM Sans', system-ui, sans-serif;
      --shadow-card:   0 4px 32px rgba(29,58,41,.10);
      --shadow-hover:  0 12px 48px rgba(29,58,41,.18);
      --radius:        8px;
    }

    /* ── Base ───────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--ff-body);
      color: var(--lp-body);
      background: #fff;
      font-size: 1rem;
      line-height: 1.7;
    }

    h1, h2, h3, h4, .display-font {
      font-family: var(--ff-display);
      font-weight: 300;
      color: var(--lp-dark);
    }

    a { color: var(--lp-green-mid); text-decoration: none; }
    a:hover { color: var(--lp-amber); }

    /* ── Utility classes ────────────────────────────────────────────── */
    .text-amber { color: var(--lp-amber) !important; }
    .text-green { color: var(--lp-green) !important; }
    .bg-cream   { background-color: var(--lp-cream) !important; }
    .bg-green   { background-color: var(--lp-green) !important; }
    .bg-green-mid { background-color: var(--lp-green-mid) !important; }
    .border-amber { border-color: var(--lp-amber) !important; }

    .section-label {
      font-family: var(--ff-body);
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--lp-amber);
      font-weight: 500;
    }

    .divider-amber {
      width: 48px;
      height: 2px;
      background: var(--lp-amber);
      display: block;
      margin: 0.75rem 0 1.25rem;
    }
    .divider-amber.center { margin-left: auto; margin-right: auto; }

    /* ── Navbar ─────────────────────────────────────────────────────── */
    #mainNav {
      background: rgba(17,26,21,.95);
      backdrop-filter: blur(8px);
      transition: background .3s;
    }
    #mainNav.scrolled {
      background: rgba(17,26,21,1);
      box-shadow: 0 2px 16px rgba(0,0,0,.25);
    }

    .navbar-brand {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: .04em;
      color: #fff !important;
    }
    .navbar-brand span { color: var(--lp-amber); }

    .navbar-nav .nav-link {
      color: rgba(255,255,255,.82) !important;
      font-size: .875rem;
      letter-spacing: .04em;
      font-weight: 400;
      padding: .5rem 1rem !important;
      transition: color .2s;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--lp-amber-light) !important;
    }

    .btn-nav-apply {
      background: var(--lp-amber);
      color: #fff !important;
      border-radius: 4px;
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .45rem 1.2rem !important;
      transition: background .2s, transform .15s;
    }
    .btn-nav-apply:hover {
      background: var(--lp-amber-light);
      transform: translateY(-1px);
    }

    .navbar-toggler {
      border-color: rgba(255,255,255,.3);
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ── Hero ───────────────────────────────────────────────────────── */
    #hero {
      position: relative;
      min-height: 100vh;
      background: linear-gradient(
        160deg,
        var(--lp-green) 0%,
        var(--lp-green-mid) 40%,
        #2d5e45 70%,
        #1a3020 100%
      );
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Decorative SVG pattern overlay */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* Amber gradient orb bottom-right */
    #hero::after {
      content: '';
      position: absolute;
      bottom: -120px;
      right: -120px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(200,137,42,.18) 0%, transparent 70%);
      pointer-events: none;
    }

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

    .hero-eyebrow {
      font-family: var(--ff-body);
      font-size: .75rem;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--lp-amber-light);
      font-weight: 500;
    }

    .hero-title {
      font-family: var(--ff-display);
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: #fff;
    }

    .hero-title em {
      font-style: italic;
      color: var(--lp-amber-light);
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: rgba(255,255,255,.72);
      max-width: 520px;
      line-height: 1.75;
      font-weight: 300;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .hero-stat-num {
      font-family: var(--ff-display);
      font-size: 2rem;
      font-weight: 600;
      color: var(--lp-amber-light);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      margin-top: .2rem;
    }

    .btn-primary-lp {
      background: var(--lp-amber);
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: .85rem 2rem;
      font-size: .875rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: background .2s, transform .15s, box-shadow .2s;
      display: inline-block;
    }
    .btn-primary-lp:hover {
      background: var(--lp-amber-light);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200,137,42,.35);
    }

    .btn-outline-lp {
      background: transparent;
      color: rgba(255,255,255,.88);
      border: 1px solid rgba(255,255,255,.4);
      border-radius: 4px;
      padding: .85rem 2rem;
      font-size: .875rem;
      font-weight: 400;
      letter-spacing: .06em;
      transition: border-color .2s, color .2s, background .2s;
      display: inline-block;
    }
    .btn-outline-lp:hover {
      border-color: rgba(255,255,255,.9);
      color: #fff;
      background: rgba(255,255,255,.07);
    }

    /* Hero photo panels */
    .hero-photo-grid {
      position: relative;
      z-index: 2;
    }
    .hero-photo-main {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,.4);
    }
    .hero-photo-main img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      display: block;
    }
    .hero-photo-thumb {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,.35);
    }
    .hero-photo-thumb img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      display: block;
    }
    .hero-badge {
      position: absolute;
      bottom: -1rem;
      left: -1rem;
      background: var(--lp-amber);
      color: #fff;
      border-radius: var(--radius);
      padding: .9rem 1.2rem;
      font-family: var(--ff-display);
      font-size: 1rem;
      box-shadow: 0 8px 24px rgba(200,137,42,.4);
      z-index: 3;
      white-space: nowrap;
    }
    .hero-badge strong {
      display: block;
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1;
    }

    /* ── About Strip ────────────────────────────────────────────────── */
    #about-strip {
      background: var(--lp-cream);
      border-top: 1px solid var(--lp-sand);
      border-bottom: 1px solid var(--lp-sand);
    }

    .about-icon-box {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem 1rem;
    }
    .about-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: var(--lp-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lp-amber-light);
      font-size: 1.1rem;
    }
    .about-icon-label {
      font-size: .8rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--lp-green-mid);
      margin-bottom: .1rem;
    }
    .about-icon-desc {
      font-size: .875rem;
      color: var(--lp-body);
      margin: 0;
      line-height: 1.5;
    }

    /* ── Section Shared ─────────────────────────────────────────────── */
    .section-pad { padding: 6rem 0; }
    .section-pad-sm { padding: 4rem 0; }

    .section-heading {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--lp-dark);
    }
    .section-heading em { font-style: italic; color: var(--lp-green-mid); }

    /* ── Property Cards ─────────────────────────────────────────────── */
    .prop-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform .28s, box-shadow .28s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .prop-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    .prop-card-img-wrap {
      position: relative;
      overflow: hidden;
    }
    .prop-card-img-wrap img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .prop-card:hover .prop-card-img-wrap img {
      transform: scale(1.04);
    }

    .prop-type-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--lp-green);
      color: rgba(255,255,255,.92);
      font-size: .7rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .3rem .75rem;
      border-radius: 3px;
    }

    .prop-availability {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--lp-amber);
      color: #fff;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .3rem .75rem;
      border-radius: 3px;
    }
    .prop-availability.avail { background: #2e7d32; }

    .prop-card-body {
      padding: 1.75rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .prop-name {
      font-family: var(--ff-display);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--lp-dark);
      margin-bottom: .2rem;
      line-height: 1.2;
    }

    .prop-address {
      font-size: .82rem;
      color: #888;
      margin-bottom: 1rem;
    }
    .prop-address i { color: var(--lp-amber); margin-right: .3rem; }

    .prop-desc {
      font-size: .9rem;
      color: var(--lp-body);
      line-height: 1.65;
      margin-bottom: 1.25rem;
      flex: 1;
    }

    .prop-features {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      margin-bottom: 1.25rem;
    }
    .prop-feature {
      background: var(--lp-cream);
      color: var(--lp-green-mid);
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .06em;
      padding: .3rem .7rem;
      border-radius: 20px;
      white-space: nowrap;
    }

    .prop-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid var(--lp-sand);
      margin-top: auto;
    }

    .prop-price {
      font-family: var(--ff-display);
      font-size: 1.4rem;
      color: var(--lp-green);
    }
    .prop-price small {
      font-size: .75rem;
      color: #888;
      font-family: var(--ff-body);
    }

    .btn-prop {
      background: var(--lp-green);
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: .55rem 1.25rem;
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .06em;
      transition: background .2s;
      display: inline-block;
    }
    .btn-prop:hover { background: var(--lp-green-mid); color: #fff; }

    /* ── Interior Gallery ───────────────────────────────────────────── */
    #gallery { background: var(--lp-cream); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: .75rem;
    }

    .gallery-grid .g-item {
      overflow: hidden;
      border-radius: var(--radius);
      position: relative;
    }
    .gallery-grid .g-item.tall {
      grid-row: span 2;
    }
    .gallery-grid .g-item.wide {
      grid-column: span 2;
    }

    .gallery-grid .g-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      min-height: 180px;
      transition: transform .5s ease;
    }

    .gallery-grid .g-item:hover img {
      transform: scale(1.05);
    }

    .g-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(17,26,21,.55) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .3s;
      display: flex;
      align-items: flex-end;
      padding: 1rem;
      color: #fff;
      font-size: .8rem;
      font-weight: 400;
    }
    .g-item:hover .g-item-overlay { opacity: 1; }

    /* ── Amenities ──────────────────────────────────────────────────── */
    #amenities { background: var(--lp-green); }

    .amenity-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .amenity-item:last-child { border-bottom: none; }

    .amenity-icon {
      width: 42px;
      height: 42px;
      min-width: 42px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lp-amber-light);
      font-size: 1.1rem;
    }

    .amenity-title {
      font-size: .92rem;
      font-weight: 500;
      color: rgba(255,255,255,.92);
      margin-bottom: .1rem;
    }
    .amenity-desc {
      font-size: .82rem;
      color: rgba(255,255,255,.5);
      margin: 0;
    }

    .seasonal-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      padding: 1.5rem;
      color: rgba(255,255,255,.85);
    }
    .seasonal-card h5 {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--lp-amber-light);
      margin-bottom: .5rem;
    }
    .seasonal-card p {
      font-size: .875rem;
      line-height: 1.65;
      color: rgba(255,255,255,.65);
      margin: 0;
    }

    .office {
      width: 100%;
      max-width: 550px;
    }

    /* ── Testimonials / Renters ─────────────────────────────────────── */
    #testimonials { background: #fff; }

    .testimonial-card {
      background: var(--lp-cream);
      border-radius: var(--radius);
      padding: 2rem;
      border-left: 3px solid var(--lp-amber);
      height: 100%;
    }

    .testimonial-stars { color: var(--lp-amber); font-size: .9rem; margin-bottom: .75rem; }

    .testimonial-text {
      font-family: var(--ff-display);
      font-size: 1.05rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.7;
      color: var(--lp-dark);
      margin-bottom: 1rem;
    }

    .testimonial-author {
      font-size: .8rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--lp-green-mid);
    }
    .testimonial-prop {
      font-size: .75rem;
      color: #999;
    }

    /* ── Application / CTA ──────────────────────────────────────────── */
    #apply {
      background: linear-gradient(
        135deg,
        var(--lp-green) 0%,
        var(--lp-green-mid) 100%
      );
      position: relative;
      overflow: hidden;
    }
    #apply::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(200,137,42,.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .apply-form-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 2.5rem;
      box-shadow: 0 24px 64px rgba(0,0,0,.2);
    }

    .form-control-lp, .form-select-lp {
      border: 1px solid var(--lp-sand);
      border-radius: 4px;
      padding: .7rem 1rem;
      font-size: .9rem;
      color: var(--lp-body);
      background: #fff;
      width: 100%;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
      font-family: var(--ff-body);
    }
    .form-control-lp:focus, .form-select-lp:focus {
      border-color: var(--lp-green-mid);
      box-shadow: 0 0 0 3px rgba(42,82,64,.15);
    }
    .form-label-lp {
      font-size: .8rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--lp-green-mid);
      margin-bottom: .4rem;
      display: block;
    }

    .btn-submit {
      background: var(--lp-amber);
      color: #fff;
      border: none;
      border-radius: 4px;
      width: 100%;
      padding: .9rem;
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .btn-submit:hover {
      background: var(--lp-amber-light);
      transform: translateY(-1px);
    }

    /* ── Contact Section ────────────────────────────────────────────── */
    #contact { background: var(--lp-cream); }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .contact-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: var(--lp-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lp-amber-light);
      font-size: 1.1rem;
    }
    .contact-label {
      font-size: .75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--lp-green-mid);
      margin-bottom: .1rem;
    }
    .contact-value {
      font-size: .95rem;
      color: var(--lp-body);
    }

    .hours-table { width: 100%; }
    .hours-table td { padding: .3rem 0; font-size: .875rem; }
    .hours-table td:last-child { text-align: right; color: var(--lp-green-mid); font-weight: 500; }

    /* ── Footer ─────────────────────────────────────────────────────── */
    footer {
      background: var(--lp-dark);
      color: rgba(255,255,255,.55);
      font-size: .82rem;
    }
    footer .footer-brand {
      font-family: var(--ff-display);
      font-size: 1.6rem;
      font-weight: 300;
      color: rgba(255,255,255,.9);
      margin-bottom: .5rem;
    }
    footer .footer-brand span { color: var(--lp-amber); }

    footer h6 {
      font-family: var(--ff-body);
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      margin-bottom: .85rem;
    }

    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: .4rem; }
    footer ul li a { color: rgba(255,255,255,.55); transition: color .2s; }
    footer ul li a:hover { color: var(--lp-amber-light); }

    .footer-divider {
      border-color: rgba(255,255,255,.08);
    }
    .footer-bottom {
      color: rgba(255,255,255,.3);
      font-size: .77rem;
    }
    .footer-bottom a { color: rgba(255,255,255,.4); }
    .footer-bottom a:hover { color: var(--lp-amber); }

    /* ── Scroll reveal ──────────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ── Back-to-top ────────────────────────────────────────────────── */
    #backTop {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 44px;
      height: 44px;
      background: var(--lp-amber);
      color: #fff;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .3s, transform .3s, background .2s;
      z-index: 1000;
    }
    #backTop.show { opacity: 1; transform: translateY(0); }
    #backTop:hover { background: var(--lp-amber-light); }

    /* ── Responsive tweaks ──────────────────────────────────────────── */
    @media (max-width: 991.98px) {
      .hero-photo-grid { display: none; }
      #hero { min-height: auto; padding: 8rem 0 5rem; }
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .gallery-grid .g-item.wide { grid-column: span 1; }
    }
    @media (max-width: 575.98px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-grid .g-item.tall { grid-row: span 1; }
      .hero-stats { gap: 1.5rem; }
    }

    /* ── Converted from inline styles ──────────────────────────────────── */

    /* Hero photo main wrapper */
    .hero-photo-main-wrap { position: relative; }

    /* Properties intro paragraph */
    .prop-intro-text {
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
      font-size: .95rem;
    }

    /* Gallery description paragraph */
    .gallery-desc {
      font-size: .875rem;
      max-width: 320px;
      margin-left: auto;
    }

    /* Wide gallery image fixed height */
    .g-item-wide-img { height: 220px; }

    /* Amenity feature chips (dark section) */
    .prop-feature--dark {
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.7);
    }

    /* Apply section — light-on-dark overrides */
    .section-label--light       { color: var(--lp-amber-light); }
    .section-heading--light     { color: #fff; }
    .section-heading--light em  { color: var(--lp-amber-light); }

    /* Amenities section heading overrides */
    .amenities-section-label   { color: var(--lp-amber-light); }
    .amenities-heading         { color: #fff; }
    .amenities-heading em      { color: var(--lp-amber-light); }

    /* Apply section body copy + checklist */
    .apply-intro-text {
      color: rgba(255,255,255,.7);
      font-size: .95rem;
      line-height: 1.8;
    }
    .apply-checklist {
      list-style: none;
      padding: 0;
      color: rgba(255,255,255,.75);
      font-size: .9rem;
    }

    /* Apply form card typography */
    .form-card-title    { font-size: 1.6rem; }
    .form-card-subtitle { font-size: .85rem; }
    .form-privacy-text  { font-size: .75rem; }

    /* Form success box */
    .form-success { display: none; }
    .form-success-box {
      background: #e8f5e9;
      border: 1px solid #a5d6a7;
      color: #2e7d32;
      font-size: .9rem;
    }

    /* Contact note */
    .contact-note { font-size: .85rem; line-height: 1.7; }

    /* Map placeholder */
    .map-placeholder {
      background: var(--lp-sand);
      border-radius: var(--radius);
      overflow: hidden;
      height: 100%;
      min-height: 380px;
      display: flex;
      flex-direction: column;
    }
    .map-placeholder-inner {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
    }
    .map-icon {
      font-size: 3rem;
      color: var(--lp-green-mid);
      opacity: .4;
    }
    .map-address {
      font-family: var(--ff-display);
      font-weight: 300;
      color: var(--lp-green);
      margin-top: 1rem;
    }
    .map-note { font-size: .85rem; }

    /* Footer */
    .footer-tagline {
      font-size: .85rem;
      line-height: 1.75;
      color: rgba(255,255,255,.45);
      max-width: 280px;
    }
    .footer-social-link {
      color: rgba(255,255,255,.4);
      font-size: 1.2rem;
    }
    .footer-legal {
      font-size: .7rem;
      color: rgba(255,255,255,.2);
    }
    .footer-legal strong { color: rgba(255,255,255,.28); }

    /* Submit button spinner (set via JS classList) */
    @keyframes spin { to { transform: rotate(360deg); } }
    .btn-spinner {
      animation: spin .8s linear infinite;
      display: inline-block;
    }

