    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: #1c2b22;
      background: #f7f5f0;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; font-family: inherit; }
    input, textarea { font-family: inherit; }

    /* ===== DESIGN TOKENS ===== */
    :root {
      --bg: #f7f5f0;
      --bg-secondary: #edebe5;
      --fg: #1c2b22;
      --fg-muted: #4f5d53;
      --primary: #2d6b4a;
      --primary-fg: #f7f5f0;
      --accent: #d4852a;
      --accent-fg: #f7f5f0;
      --border: #ddd8ce;
      --card: #f1efe9;
      --radius: 0.75rem;
    }

    /* ===== UTILITIES ===== */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
    .font-serif { font-family: 'DM Serif Display', Georgia, serif; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
    .skip-link {
      position: fixed;
      left: 0.75rem;
      top: 0.75rem;
      z-index: 120;
      padding: 0.55rem 0.85rem;
      background: #0f2218;
      color: #fff;
      border-radius: 0.5rem;
      border: 2px solid #fff;
      transform: translateY(-200%);
      transition: transform 0.15s ease;
    }
    .skip-link:focus-visible { transform: translateY(0); }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 3px solid #1f7a4f;
      outline-offset: 2px;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 0.5rem; padding: 0.75rem 2rem; font-size: 1rem; font-weight: 600;
      border-radius: var(--radius); transition: all 0.2s ease;
    }
    .btn-primary { background: var(--accent); color: var(--accent-fg); }
    .btn-primary:hover { opacity: 0.9; }
    .btn-secondary { background: var(--bg); color: var(--fg); }
    .btn-secondary:hover { background: #e8e6e0; }
    .btn-outline {
      background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); }
    .btn-outline-dark {
      background: transparent; border: 1px solid rgba(247,245,240,0.3); color: var(--primary-fg);
    }
    .btn-outline-dark:hover { background: rgba(247,245,240,0.1); }
    .btn-submit {
      background: var(--primary); color: var(--primary-fg); width: 100%;
    }
    .btn-submit:hover { opacity: 0.9; }

    /* ===== SVG ICONS (inline) ===== */
    .icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .icon-sm { width: 16px; height: 16px; }
    .icon-lg { width: 24px; height: 24px; }
    .social-icon { width: 1rem; height: 1rem; fill: currentColor; flex-shrink: 0; display: block; }
    .social-icon-wa { width: 1.05rem; height: 1.05rem; }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      background: rgba(247,245,240,0.8); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .navbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 1.5rem; max-width: 1280px; margin: 0 auto;
    }
    .navbar-logo { display: flex; align-items: center; gap: 0.75rem; }
    .navbar-logo img {
      width: 72px; height: 72px; border-radius: 50%;
      background: transparent; padding: 0;
      border: none;
      box-shadow: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .navbar-logo:hover img {
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
    }
    .navbar-logo span { font-size: 1.25rem; color: var(--primary); letter-spacing: -0.02em; }
    .nav-links { display: flex; align-items: center; gap: 2rem; }
    .nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--fg-muted); transition: color 0.2s; min-height: 44px; display: inline-flex; align-items: center; }
    .nav-links a:hover { color: var(--primary); }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .nav-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--fg-muted); transition: color 0.2s; min-height: 44px; }
    .nav-phone:hover { color: var(--primary); }
    .nav-whatsapp {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.875rem; font-weight: 600;
      color: var(--fg-muted); transition: color 0.2s; min-height: 44px;
    }
    .nav-whatsapp .social-icon { width: 1rem; height: 1rem; }
    .nav-whatsapp:hover { color: var(--primary); }
    .nav-cta { padding: 0.5rem 1.25rem; background: var(--primary); color: var(--primary-fg); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius); transition: opacity 0.2s; min-height: 44px; display: inline-flex; align-items: center; }
    .nav-cta:hover { opacity: 0.9; }
    .mobile-toggle { display: none; padding: 0.5rem; background: transparent; color: var(--fg); min-width: 44px; min-height: 44px; }
    .mobile-menu { display: none; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--border); background: var(--bg); }
    .mobile-menu.active { display: block; }
    .mobile-menu a { display: flex; align-items: center; min-height: 44px; padding: 0.75rem 0; font-size: 1rem; font-weight: 500; color: var(--fg-muted); }
    .mobile-menu a:hover { color: var(--primary); }
    .mobile-menu .btn { width: 100%; margin-top: 0.5rem; }
    .floating-whatsapp { display: none; }

    @media (max-width: 768px) {
      .nav-links, .nav-right { display: none; }
      .mobile-toggle { display: block; }
      .navbar-logo span { display: none; }
      .floating-whatsapp {
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #25d366;
        color: #fff;
        box-shadow: 0 12px 26px rgba(17, 24, 39, 0.22);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 60;
      }
      .floating-whatsapp .social-icon { width: 1.6rem; height: 1.6rem; }
      .floating-whatsapp .social-icon-wa { width: 1.7rem; height: 1.7rem; }
    }
    @media (min-width: 640px) {
      .navbar-logo span { display: inline; }
    }
    @media (min-width: 768px) {
      .navbar-logo img { width: 120px; height: 120px; }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden;
    }
    .hero-bg { position: absolute; inset: 0; }
    .hero-bg picture { display: block; width: 100%; height: 100%; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
    .hero-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.44) 0%, rgba(0,0,0,0.32) 36%, rgba(0,0,0,0.12) 66%, rgba(0,0,0,0.03) 100%),
        linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.36) 45%, rgba(0,0,0,0.14) 72%, rgba(0,0,0,0.04) 100%);
    }
    .hero-content {
      position: relative; z-index: 10; max-width: 1280px; width: 100%;
      margin: 0 auto; padding: 10rem 1.5rem 5rem;
    }
    .hero-inner { max-width: 640px; }
    .hero-tag { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.95); margin-bottom: 1rem; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
    .hero h1 { font-size: 2.5rem; line-height: 1.15; color: #fff; text-shadow: 0 3px 12px rgba(0,0,0,0.55); text-wrap: balance; }
    .hero-subline { margin-top: 0.75rem; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.95); letter-spacing: 0.01em; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
    .hero p.hero-desc { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(255,255,255,0.95); line-height: 1.6; max-width: 32rem; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
    .hero-buttons { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

    @media (max-width: 640px) {
      .hero-bg img { object-position: 78% center; }
      .hero-content { padding: 8rem 1rem 2.5rem; }
      .hero-inner { max-width: 24rem; }
      .hero h1 { font-size: 2.05rem; }
      .hero p.hero-desc { font-size: 1.03rem; max-width: 28rem; }
      .hero-buttons { margin-top: 1.75rem; }
    }

    @media (min-width: 768px) {
      .hero h1 { font-size: 3.25rem; }
      .hero-content { padding-bottom: 7rem; }
    }
    @media (min-width: 1024px) {
      .hero h1 { font-size: 3.75rem; }
    }

    /* ===== SECTION STYLES ===== */
    .section { padding: 6rem 0; }
    .section-alt { background: var(--bg-secondary); }
    .section-dark { background: var(--primary); }
    .section, .section-alt, .section-dark, .footer {
      content-visibility: auto;
      contain-intrinsic-size: 1px 900px;
    }
    .section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
    .section-tag { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); margin-bottom: 0.75rem; }
    .section-title { font-size: 1.875rem; color: var(--fg); text-wrap: balance; }
    .section-subtitle { margin-top: 1rem; color: var(--fg-muted); line-height: 1.6; }

    @media (min-width: 768px) {
      .section { padding: 8rem 0; }
      .section-title { font-size: 2.25rem; }
    }

    /* ===== SERVICES ===== */
    .services-grid { display: grid; gap: 1.5rem; }
    @media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
    .services-grid.services-grid-two { gap: 1.75rem; }
    @media (min-width: 1024px) { .services-grid.services-grid-two { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
    .service-card {
      background: var(--card); border-radius: var(--radius); padding: 2rem;
      border: 1px solid var(--border); transition: all 0.3s ease;
    }
    .service-card:hover { border-color: rgba(45,107,74,0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .service-icon {
      width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
      border-radius: 0.5rem; background: rgba(45,107,74,0.1); color: var(--primary); margin-bottom: 1.25rem;
    }
    .service-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
    .service-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
    .service-card-detailed {
      position: relative;
      overflow: hidden;
      border-color: rgba(45,107,74,0.18);
      background:
        radial-gradient(120% 80% at 100% 0%, rgba(212,133,42,0.12), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0)),
        var(--card);
      box-shadow: 0 14px 34px rgba(28,43,34,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .service-card-detailed::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    .service-card-detailed:hover {
      transform: translateY(-4px);
      border-color: rgba(45,107,74,0.28);
      box-shadow: 0 18px 40px rgba(28,43,34,0.14);
    }
    .service-card-detailed .service-icon {
      width: 3.4rem;
      height: 3.4rem;
      border-radius: 0.85rem;
      background: linear-gradient(135deg, rgba(45,107,74,0.14), rgba(212,133,42,0.12));
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .service-card-detailed h3 {
      margin-bottom: 0.35rem;
      font-size: 1.55rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .service-lead {
      color: var(--fg-muted);
      font-size: 0.92rem;
      line-height: 1.6;
      margin-bottom: 1.1rem;
      max-width: 42ch;
    }
    .service-group {
      margin-top: 0.75rem;
      padding: 0.8rem 0.9rem;
      border-radius: 0.7rem;
      border: 1px solid rgba(45,107,74,0.14);
      background: rgba(247,245,240,0.72);
      backdrop-filter: blur(1px);
    }
    .service-group:first-of-type { margin-top: 0; }
    .service-group h4 {
      font-size: 0.93rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 0.35rem;
      line-height: 1.35;
    }
    .service-list {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }
    .service-list li {
      color: var(--fg-muted);
      font-size: 0.88rem;
      line-height: 1.45;
      margin-top: 0.18rem;
      position: relative;
      padding-left: 1rem;
      text-wrap: pretty;
    }
    .service-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.52rem;
      width: 0.38rem;
      height: 0.38rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }
    .service-list li:first-child { margin-top: 0; }
    @media (max-width: 640px) {
      .service-card-detailed { padding: 1.35rem; }
      .service-card-detailed h3 { font-size: 1.35rem; }
      .service-group { padding: 0.72rem 0.78rem; }
    }
    .palvelualue-box {
      margin-top: 2.5rem;
      padding: 1.75rem 2rem;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: linear-gradient(135deg, rgba(45,107,74,0.08), rgba(212,133,42,0.06));
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }
    .palvelualue-title {
      font-size: 1.5rem;
      color: var(--fg);
      margin-bottom: 0.5rem;
    }
    .palvelualue-text {
      color: var(--fg-muted);
      line-height: 1.7;
      max-width: 52rem;
    }
    @media (min-width: 768px) {
      .palvelualue-box { padding: 2rem 2.5rem; }
    }
    @media (max-width: 640px) {
      .palvelualue-box { padding: 1.5rem; }
      .palvelualue-title { font-size: 1.25rem; }
    }

    /* ===== PRICING ===== */
    .pricing-list { display: grid; gap: 2rem; }
    .pricing-card {
      display: grid; gap: 1.5rem; align-items: start;
      padding: 2rem; border-radius: var(--radius);
      background: var(--card); border: 1px solid var(--border);
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    }
    .pricing-logo {
      width: 120px; height: 120px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: transparent; border: none; box-shadow: none;
    }
    .pricing-logo img { width: 100%; height: 100%; border-radius: 50%; padding: 0; }
    .pricing-title { font-size: 1.25rem; font-weight: 700; color: var(--fg); }
    .pricing-meta { margin-top: 0.25rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
    .pricing-text { margin-top: 1rem; color: var(--fg-muted); line-height: 1.7; }
    .pricing-list-items {
      margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem;
      color: var(--fg-muted); font-size: 0.875rem;
    }
    .pricing-list-items li { position: relative; padding-left: 1.25rem; }
    .pricing-list-items li::before {
      content: "•"; position: absolute; left: 0; top: 0; color: var(--primary);
    }
    .pricing-cta {
      margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem;
      font-weight: 600; color: var(--primary);
    }
    .pricing-cta:hover { color: #224f37; }

    @media (min-width: 768px) {
      .pricing-card { grid-template-columns: 180px 1fr; }
      .pricing-logo { width: 180px; height: 180px; }
    }
    @media (min-width: 1024px) {
      .pricing-card { grid-template-columns: 240px 1fr; }
      .pricing-logo { width: 240px; height: 240px; }
    }
    @media (max-width: 640px) {
      .pricing-card { padding: 1.5rem; }
      .pricing-logo { width: 96px; height: 96px; }
      .pricing-title { font-size: 1.125rem; }
    }

    /* ===== STATS ===== */
    .stats-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
    @media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
    .stat { text-align: center; padding: 1rem 0; }
    .stat-value { font-size: 2.5rem; color: var(--primary-fg); }
    .stat-label { margin-top: 0.5rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(247,245,240,0.7); }
    @media (min-width: 768px) { .stat-value { font-size: 3rem; } }

    /* ===== ABOUT ===== */
    .about-grid { display: grid; gap: 3rem; align-items: center; }
    @media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
    .about-image { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
    .about-image img { width: 100%; height: 100%; object-fit: cover; }
    .about-tag { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); margin-bottom: 0.75rem; }
    .about-title { font-size: 1.875rem; color: var(--fg); text-wrap: balance; }
    .about-text { margin-top: 1.5rem; color: var(--fg-muted); line-height: 1.6; }
    .about-list-title {
      margin-top: 1.6rem;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--fg);
    }
    .about-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
    .about-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--fg); }
    .about-list li svg { color: var(--primary); margin-top: 0.125rem; flex-shrink: 0; }
    @media (min-width: 768px) { .about-title { font-size: 2.25rem; } }

    /* ===== GALLERY ===== */
    .gallery-grid {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      margin-top: 2rem;
    }
    .gallery-item {
      position: relative;
      border-radius: calc(var(--radius) + 0.25rem);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--card);
      box-shadow: 0 2px 8px rgba(28,43,34,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(28,43,34,0.15);
    }
    .gallery-item-btn {
      all: unset;
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }
    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      display: block;
    }
    .gallery-item video {
      background: #1c2b22;
    }
    .gallery-item-btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(28,43,34,0.05) 40%, rgba(28,43,34,0.5) 100%);
      transition: background 0.3s ease;
      z-index: 1;
    }
    .gallery-item:hover .gallery-item-btn::after,
    .gallery-item-btn:focus-visible::after {
      background: linear-gradient(180deg, rgba(28,43,34,0.05) 30%, rgba(28,43,34,0.7) 100%);
    }
    .gallery-item:hover img,
    .gallery-item:hover video,
    .gallery-item-btn:focus-visible img,
    .gallery-item-btn:focus-visible video {
      transform: scale(1.08);
    }
    .gallery-item-video .gallery-item-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 4rem;
      height: 4rem;
      background: rgba(45,107,74,0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .gallery-item-video .gallery-item-play svg {
      width: 1.75rem;
      height: 1.75rem;
      color: #fff;
      margin-left: 0.2rem;
    }
    .gallery-item-video:hover .gallery-item-play {
      background: rgba(45,107,74,1);
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    }
    .gallery-item-label {
      position: absolute;
      left: 0.85rem;
      bottom: 0.85rem;
      z-index: 1;
      font-size: 0.78rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    .gallery-empty {
      margin-top: 1rem;
      color: var(--fg-muted);
      text-align: center;
    }
    .gallery-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .gallery-pagination[hidden] { display: none; }
    .gallery-pagination-btn {
      all: unset;
      min-width: 2.75rem;
      height: 2.75rem;
      padding: 0 0.75rem;
      border-radius: var(--radius);
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--fg);
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }
    .gallery-pagination-btn:hover,
    .gallery-pagination-btn:focus-visible {
      background: var(--primary);
      color: var(--primary-fg);
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(45,107,74,0.2);
    }
    .gallery-pagination-btn.active {
      background: var(--primary);
      color: var(--primary-fg);
      border-color: var(--primary);
      box-shadow: 0 2px 6px rgba(45,107,74,0.3);
    }
    .gallery-pagination-btn.active:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(45,107,74,0.35);
    }
    @media (max-width: 768px) {
      .gallery-pagination {
        gap: 0.4rem;
        margin-top: 2rem;
      }
      .gallery-pagination-btn {
        min-width: 2.5rem;
        height: 2.5rem;
        padding: 0 0.65rem;
        font-size: 0.9rem;
      }
    }
    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      padding: 1rem;
      background: rgba(10, 16, 13, 0.88);
      backdrop-filter: blur(2px);
    }
    .gallery-lightbox[hidden] { display: none; }
    .gallery-lightbox-figure {
      width: min(94vw, 1080px);
      max-height: 88vh;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      margin: 0;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .gallery-lightbox-figure img,
    .gallery-lightbox-figure video {
      width: 100%;
      max-width: 100%;
      max-height: 78vh;
      height: auto;
      object-fit: contain;
      border-radius: 0.55rem;
      background: #0f1a14;
      display: block;
    }
    .gallery-lightbox-figure video {
      width: 100%;
      max-width: 100%;
    }
    .gallery-lightbox-figure img[hidden],
    .gallery-lightbox-figure video[hidden] {
      display: none !important;
    }
    @media (max-width: 768px) {
      .gallery-lightbox-figure video {
        max-height: 70vh;
      }
    }
    .gallery-lightbox-caption {
      color: #e9efe8;
      font-size: 0.9rem;
      text-align: center;
    }
    .gallery-lightbox-nav,
    .gallery-lightbox-close {
      width: 2.6rem;
      height: 2.6rem;
      min-width: 44px;
      min-height: 44px;
      border-radius: 999px;
      background: rgba(247,245,240,0.16);
      color: #fff;
      border: 1px solid rgba(247,245,240,0.36);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: background 0.2s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
      cursor: pointer;
    }
    .gallery-lightbox-nav:hover,
    .gallery-lightbox-close:hover {
      background: rgba(247,245,240,0.28);
    }
    .gallery-lightbox-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
    }
    body.lightbox-open { overflow: hidden; }
    @media (min-width: 640px) {
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
      }
    }
    @media (min-width: 1024px) {
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.75rem;
      }
    }
    @media (max-width: 768px) {
      .gallery-lightbox {
        gap: 0.45rem;
        padding: 0.7rem;
      }
      .gallery-lightbox-nav,
      .gallery-lightbox-close {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 44px;
        min-height: 44px;
      }
      .gallery-lightbox-figure img,
      .gallery-lightbox-figure video { max-height: 72vh; }
      .gallery-grid {
        gap: 1rem;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      }
      .gallery-item-video .gallery-item-play {
        width: 3.25rem;
        height: 3.25rem;
      }
      .gallery-item-video .gallery-item-play svg {
        width: 1.5rem;
        height: 1.5rem;
      }
    }

    /* ===== CTA BANNER ===== */
    .cta-wrapper {
      position: relative; background: var(--primary); border-radius: 1rem; padding: 3rem; text-align: center; overflow: hidden;
    }
    .cta-circle {
      position: absolute; border-radius: 50%; border: 1px solid rgba(247,245,240,0.1);
    }
    .cta-circle-1 { width: 16rem; height: 16rem; top: -6rem; right: -6rem; }
    .cta-circle-2 { width: 12rem; height: 12rem; bottom: -4rem; left: -4rem; }
    .cta-content { position: relative; z-index: 10; max-width: 640px; margin: 0 auto; }
    .cta-content h2 { font-size: 1.875rem; color: var(--primary-fg); text-wrap: balance; }
    .cta-content p { margin-top: 1rem; color: rgba(247,245,240,0.7); line-height: 1.6; }
    .cta-buttons { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
    @media (min-width: 768px) {
      .cta-wrapper { padding: 4rem; }
      .cta-content h2 { font-size: 2.25rem; }
    }

    /* ===== CONTACT ===== */
    .contact-grid { display: grid; gap: 3rem; }
    @media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-item { display: flex; align-items: flex-start; gap: 1rem; }
    .contact-icon {
      width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center;
      border-radius: 0.5rem; background: rgba(45,107,74,0.1); color: var(--primary); flex-shrink: 0;
    }
    .contact-item-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #415248; margin-bottom: 0.25rem; }
    .contact-item-value { font-weight: 500; color: var(--fg); }
    .contact-item-value a { transition: color 0.2s; }
    .contact-item-value a:hover { color: var(--primary); }
    .contact-area { margin-top: 1rem; font-size: 0.875rem; font-weight: 500; color: var(--fg); }
    .contact-form {
      background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
    }
    .form-row { display: grid; gap: 1.25rem; }
    @media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
    .form-group { margin-top: 1.25rem; }
    .form-group:first-child { margin-top: 0; }
    .form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--fg); margin-bottom: 0.5rem; }
    .form-input, .form-textarea {
      width: 100%; padding: 0.625rem 0.875rem; border: 1px solid var(--border);
      border-radius: var(--radius); font-size: 0.875rem; color: var(--fg); background: var(--bg);
      transition: border-color 0.2s; outline: none;
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--primary); }
    .form-textarea { resize: vertical; min-height: 8rem; }
    .form-status {
      margin-top: 0.85rem;
      font-size: 0.875rem;
      min-height: 1.3rem;
      color: var(--fg-muted);
    }
    .form-status.is-success { color: var(--primary); }
    .form-status.is-error { color: #a12b2b; }
    .form-submit { margin-top: 1.5rem; }
    .btn-submit:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    /* ===== FOOTER ===== */
    .footer { background: var(--fg); padding: 3rem 0; }
    .footer-grid { display: grid; gap: 2rem; }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
    .footer-brand { font-size: 1.25rem; color: var(--bg); }
    .footer-desc { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(247,245,240,0.86); line-height: 1.6; max-width: 20rem; }
    .footer-line { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(247,245,240,0.8); line-height: 1.5; }
    .footer-heading { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(247,245,240,0.85); margin-bottom: 1rem; }
    .footer-list li { margin-bottom: 0.5rem; }
    .footer-list a { font-size: 0.875rem; color: rgba(247,245,240,0.9); transition: color 0.2s; min-height: 44px; display: inline-flex; align-items: center; }
    .footer-list a:hover { color: var(--bg); }
    .footer-list .social-icon { margin-right: 0.5rem; vertical-align: middle; }
    .footer-list li.text-only { font-size: 0.875rem; color: rgba(247,245,240,0.86); }
    .footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(247,245,240,0.1); text-align: center; }
    .footer-bottom p { font-size: 0.75rem; color: rgba(247,245,240,0.78); }
    .footer-credit { margin-top: 0.5rem; }
  
