  :root {
    --forest: #1a2e1a;
    --cedar: #8B4513;
    --trex-green: #2d5a27;
    --trex-light: #4a8f40;
    --sand: #f5ede0;
    --warm-white: #faf8f4;
    --charcoal: #2a2a2a;
    --accent: #c8a96e;
    --accent-dark: #a8863e;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(26,46,26,0.96);
    backdrop-filter: blur(12px);
    padding: 18px 40px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(200,169,110,0.3);
  }
  .nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .nav-logo-mark {
    display: block;
    flex-shrink: 0;
    height: 44px;
    width: auto;
    color: var(--accent);   /* currentColor fills/strokes pick this up */
  }
  .nav-logo-name {
    display: block;
    height: 44px;
    width: auto;
    overflow: visible;
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--accent); color: var(--forest) !important;
    padding: 10px 22px; border-radius: 4px; font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--accent-dark) !important; color: #fff !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1f0d 0%, #1a2e1a 40%, #243824 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding-top: 80px;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    opacity: 0.55;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(200,169,110,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(200,169,110,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    position: relative; text-align: center;
    max-width: 860px; padding: 0 40px 80px;
    animation: fadeUp 1s ease both;
  }
  .hero-eyebrow {
    display: inline-block;
    background: rgba(200,169,110,0.15);
    border: 1px solid rgba(200,169,110,0.4);
    color: var(--accent);
    padding: 6px 20px; border-radius: 100px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    color: #fff; font-weight: 900;
    line-height: 1.1; margin-bottom: 24px;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero p {
    color: rgba(255,255,255,0.72); font-size: 1.15rem;
    line-height: 1.7; max-width: 600px; margin: 0 auto 40px;
    font-weight: 300;
  }
  .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--accent); color: var(--forest);
    padding: 16px 36px; border-radius: 4px;
    font-weight: 700; font-size: 1rem;
    text-decoration: none; letter-spacing: 0.05em;
    transition: all 0.25s; border: 2px solid var(--accent);
    display: inline-block;
  }
  .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,169,110,0.4); }
  .btn-outline {
    background: transparent; color: #fff;
    padding: 16px 36px; border-radius: 4px;
    font-weight: 600; font-size: 1rem;
    text-decoration: none; letter-spacing: 0.05em;
    transition: all 0.25s; border: 2px solid rgba(255,255,255,0.4);
    display: inline-block;
  }
  .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

  .hero-scroll {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    animation: bounce 2s ease infinite;
  }
  .hero-scroll::after { content: '↓'; font-size: 1.2rem; }

  /* ─── BEFORE / AFTER ─── */
  .section { padding: 100px 40px; }
  .section-header { text-align: center; max-width: 640px; margin: 0 auto 70px; }
  .eyebrow {
    display: inline-block; color: var(--trex-green);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
    margin-bottom: 14px;
  }
  .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15;
    margin-bottom: 18px; color: var(--forest);
  }
  .section-header p { color: #666; line-height: 1.8; font-size: 1.05rem; }

  .ba-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 48px; max-width: 1200px; margin: 0 auto;
  }

  .ba-card {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background: #fff;
    transition: transform 0.35s, box-shadow 0.35s;
  }
  .ba-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.18); }

  .ba-images {
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative;
  }
  .ba-images img {
    width: 100%; height: 280px; object-fit: cover; display: block;
  }
  .ba-divider {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 4px; background: #fff;
    transform: translateX(-50%);
    z-index: 2;
  }
  .ba-divider::before, .ba-divider::after {
    content: attr(data-label);
    position: absolute;
    background: var(--accent); color: var(--forest);
    font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
    white-space: nowrap;
    left: 50%; transform: translateX(-50%);
  }
  .ba-divider::before { content: 'BEFORE'; bottom: 8px; }
  .ba-divider::after { content: 'AFTER'; top: 8px; background: var(--trex-green); color: #fff; }

  .ba-info { padding: 28px 32px; }
  .ba-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--forest); }
  .ba-info p { color: #666; line-height: 1.7; font-size: 0.95rem; }

  /* ─── BENEFITS ─── */
  .benefits-section { background: var(--forest); padding: 100px 40px; }
  .benefits-section .eyebrow { color: var(--accent); }
  .benefits-section .section-header h2 { color: #fff; }
  .benefits-section .section-header p { color: rgba(255,255,255,0.6); }

  .benefits-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px; max-width: 1100px; margin: 0 auto;
  }
  .benefit-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: 12px; padding: 36px 28px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
  }
  .benefit-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--trex-light));
    opacity: 0; transition: opacity 0.3s;
  }
  .benefit-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(200,169,110,0.5); transform: translateY(-4px); }
  .benefit-card:hover::before { opacity: 1; }
  .benefit-icon { font-size: 2.2rem; display: block; grid-column: 1; grid-row: 1; margin-bottom: 0; }
  .benefit-card h3 { color: var(--accent); font-size: 1.1rem; font-weight: 700; margin-bottom: 0; letter-spacing: 0.02em; grid-column: 2; grid-row: 1; }
  .benefit-card p { grid-column: 1 / -1; grid-row: 2; margin-top: 14px; }
  .benefit-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.75; }

  /* ─── COMPARISON TABLE ─── */
  .compare-section { background: linear-gradient(rgba(245,237,224,0.78), rgba(245,237,224,0.78)), url('../images/pool.png') center/cover no-repeat; padding: 100px 40px; }
  .compare-table-wrap { max-width: 860px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
  table { width: 100%; border-collapse: collapse; background: #fff; font-size: 0.95rem; }
  thead tr { background: var(--forest); color: #fff; }
  thead th { padding: 20px 28px; text-align: left; font-weight: 600; letter-spacing: 0.05em; font-size: 0.88rem; text-transform: uppercase; }
  thead th:first-child { width: 35%; }
  thead th:last-child { color: var(--accent); }
  tbody tr { border-bottom: 1px solid #f0ece4; }
  tbody tr:hover { background: var(--sand); }
  tbody td { padding: 18px 28px; line-height: 1.5; vertical-align: middle; }
  tbody td:first-child { font-weight: 600; color: var(--forest); }
  .check { color: var(--trex-green); font-size: 1.2rem; }
  .cross { color: #cc4444; font-size: 1.2rem; }

  /* ─── PROJECTS / PRICING ─── */
  .projects-section { padding: 100px 40px; }
  .projects-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px; max-width: 1200px; margin: 0 auto;
  }
  .project-card {
    border-radius: 16px; overflow: hidden;
    border: 1px solid #e8e2d8;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    transition: all 0.35s;
    display: flex; flex-direction: column;
  }
  .project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.14); }
  .project-img { height: 220px; overflow: hidden; position: relative; }
  .project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .project-card:hover .project-img img { transform: scale(1.05); }
  .project-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--trex-green); color: #fff;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px;
  }
  .project-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
  .project-body h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; color: var(--forest); }
  .project-body .project-desc { color: #777; font-size: 0.93rem; line-height: 1.7; margin-bottom: 20px; flex: 1; }
  .price-range {
    background: var(--sand); border-radius: 10px;
    padding: 18px 20px; margin-bottom: 22px;
  }
  .price-range-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #888; margin-bottom: 12px; }
  .price-tiers { display: flex; gap: 12px; }
  .price-tier {
    flex: 1; background: #fff; border-radius: 8px;
    padding: 14px 12px; text-align: center;
    border: 1px solid #e8e2d8;
  }
  .price-tier .tier-name { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #888; margin-bottom: 6px; }
  .price-tier .tier-price { font-size: 1.4rem; font-weight: 800; color: var(--forest); line-height: 1; }
  .price-tier .tier-price sup { font-size: 0.7em; vertical-align: top; margin-top: 4px; }
  .price-tier.premium { border-color: var(--accent); }
  .price-tier.premium .tier-name { color: var(--accent-dark); }
  .project-body .btn-primary { text-align: center; }

  /* ─── PROCESS ─── */
  .process-section { background: linear-gradient(rgba(26,46,26,0.80), rgba(26,46,26,0.80)), url('../images/wonderful.png') center/cover no-repeat; padding: 100px 40px; }
  .process-section .section-header h2 { color: #fff; }
  .process-section .eyebrow { color: var(--accent); }
  .process-section .section-header p { color: rgba(255,255,255,0.6); }
  .process-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0; max-width: 1000px; margin: 0 auto;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute; top: 40px; left: 10%; right: 10%;
    height: 2px; background: rgba(200,169,110,0.3);
    z-index: 0;
  }
  .process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
  .step-num {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--forest); font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(200,169,110,0.3);
  }
  .process-step h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
  .process-step p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: linear-gradient(135deg, var(--trex-green), var(--forest));
    padding: 90px 40px; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=60') center/cover;
    opacity: 0.08;
  }
  #cta-banner-1::before {
    background: url('../images/dog.png') center/cover;
    opacity: 0.22;
  }
  .cta-banner > * { position: relative; }
  .cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 18px; font-weight: 900; }
  .cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto 40px; line-height: 1.7; }
  .cta-banner .btn-primary { font-size: 1.1rem; padding: 18px 44px; }

  /* ─── GALLERY ─── */
  .gallery-section { padding: 100px 40px; background: var(--sand); }
  .gallery-masonry {
    columns: 3; column-gap: 20px;
    max-width: 1200px; margin: 0 auto;
  }
  .gallery-item {
    break-inside: avoid; margin-bottom: 20px;
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .gallery-item:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
  .gallery-item img { width: 100%; display: block; }

  /* ─── TREX LINE ─── */
  .trex-lines { padding: 90px 40px; background: var(--warm-white); }
  .lines-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px; max-width: 1160px; margin: 0 auto;
  }
  .line-card {
    border-radius: 16px; overflow: visible;
    border: 1.5px solid #e4ddd3; background: #fff;
    transition: all 0.3s; cursor: default;
    box-shadow: 0 6px 28px rgba(0,0,0,0.07);
    display: flex; flex-direction: column;
  }
  .line-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.13); }
  .line-card-hero { position: relative; height: 220px; overflow: hidden; border-radius: 14px 14px 0 0; }
  .line-card-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, opacity 0.3s; }
  .line-card:hover .line-card-hero img { transform: scale(1.05); }
  .line-main-img.fading { opacity: 0; }
  .line-badge {
    position: absolute; top: 14px; right: 14px;
    padding: 5px 14px; border-radius: 100px;
    font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  }
  .badge-good { background: #ddeeff; color: #1a4a7c; }
  .badge-better { background: #fff0d8; color: #7c4a00; }
  .badge-best { background: #dff0db; color: #1a5c14; }
  .line-card-header { padding: 22px 24px 14px; border-bottom: 1px solid #f0ece4; }
  .line-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; color: var(--forest); }
  .line-warranty { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--trex-green); }
  .line-card-body { padding: 18px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
  .line-card-body p { font-size: 0.92rem; line-height: 1.75; color: #555; }
  .line-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
  .line-features li { font-size: 0.875rem; color: #444; display: flex; align-items: flex-start; gap: 8px; }
  .line-features li::before { content: '✓'; color: var(--trex-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .line-colors-wrap { display: flex; flex-direction: column; gap: 8px; }
  .line-colors-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #999; }
  .selected-color-name { color: var(--forest); font-weight: 700; text-transform: none; letter-spacing: 0; }
  .line-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
  .swatch {
    width: 44px; height: 44px; border-radius: 7px;
    overflow: hidden; border: 2px solid #e8e2d8;
    transition: all 0.2s; cursor: pointer; position: relative; flex-shrink: 0;
  }
  .swatch:hover { border-color: var(--accent); transform: scale(1.15); z-index: 10; }
  .swatch.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,169,110,0.35);
    transform: scale(1.1);
    z-index: 5;
  }
  .swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .swatch-tooltip {
    position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
    background: var(--forest); color: #fff;
    font-size: 0.65rem; white-space: nowrap; padding: 4px 8px; border-radius: 4px;
    opacity: 0; transition: opacity 0.15s; pointer-events: none; z-index: 20;
  }
  .swatch:hover .swatch-tooltip { opacity: 1; }
  .line-price { font-size: 0.82rem; font-weight: 700; color: var(--trex-green); padding-top: 10px; border-top: 1px solid #f0ece4; margin-top: auto; }

  /* ─── CONTACT ─── */
  .contact-section {
    padding: 100px 40px;
    background: #fff;
  }
  .contact-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; max-width: 1100px; margin: 0 auto;
    align-items: start;
  }
  .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--forest); margin-bottom: 20px; line-height: 1.15; }
  .contact-info p { color: #666; line-height: 1.8; margin-bottom: 40px; font-size: 1.02rem; }
  .contact-methods { display: flex; flex-direction: column; gap: 20px; }
  .contact-method {
    display: flex; align-items: center; gap: 18px;
    padding: 20px 24px; background: var(--sand);
    border-radius: 10px; border: 1px solid #e8e2d8;
    text-decoration: none; color: inherit;
    transition: all 0.25s;
  }
  .contact-method:hover { border-color: var(--accent); background: #fff; transform: translateX(4px); }
  .contact-icon { font-size: 1.6rem; width: 48px; text-align: center; flex-shrink: 0; }
  .contact-method-info .label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--trex-green); margin-bottom: 4px; }
  .contact-method-info .value { font-weight: 600; font-size: 1.05rem; color: var(--forest); }

  .contact-form { background: var(--forest); border-radius: 16px; padding: 44px; }
  .contact-form h3 { font-family: 'Playfair Display', serif; color: var(--accent); font-size: 1.5rem; margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
  .form-group label { color: rgba(255,255,255,0.65); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px; padding: 13px 16px;
    color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    outline: none; transition: border-color 0.2s;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
  .form-group select option { background: var(--forest); color: #fff; }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%; background: var(--accent); color: var(--forest);
    border: none; border-radius: 6px; padding: 16px;
    font-size: 1rem; font-weight: 700; font-family: 'DM Sans', sans-serif;
    cursor: pointer; letter-spacing: 0.05em; text-transform: uppercase;
    transition: all 0.25s; margin-top: 8px;
  }
  .form-submit:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }

  /* ─── FOOTER ─── */
  footer {
    background: #0f1f0f; color: rgba(255,255,255,0.5);
    padding: 50px 40px 30px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 24px;
    border-top: 1px solid rgba(200,169,110,0.2);
  }
  footer .foot-logo { font-family: 'Playfair Display', serif; color: var(--accent); font-size: 1.2rem; font-weight: 700; }
  footer p { font-size: 0.85rem; }
  footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
  footer a:hover { color: var(--accent); }

  /* ─── FORM VALIDATION ─── */
  .req { color: #c0392b; font-weight: 600; margin-left: 2px; }
  .required-note { margin-top: 10px; font-size: 0.8rem; color: #888; }
  .required-note .req { font-size: 0.85rem; }

  /* ─── FORM TOAST ─── */
  #form-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    width: max-content;
    max-width: calc(100vw - 32px);
    background: var(--trex-green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 9999;
    text-align: center;
    word-break: break-word;
  }
  #form-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  #form-toast.error {
    background: #b91c1c;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-in.visible { opacity: 1; transform: none; }
  .no-js .fade-in, .fade-in { opacity: 1; transform: none; }
  .js-fade { opacity: 0; transform: translateY(24px); }
  .js-fade.visible { opacity: 1; transform: none; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .ba-grid { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 2; }
    .process-steps::before { display: none; }
    .projects-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  }
  @media (max-width: 560px) {
    .section { padding: 70px 24px; }
    .benefits-section, .process-section, .cta-banner, .gallery-section, .trex-lines, .contact-section, .compare-section { padding: 70px 24px; }
    .gallery-masonry { columns: 1; }
    .hero-content { padding: 0 24px; }
    nav { padding: 16px 24px; }

    /* Hero — hide eyebrow, maximize H1 on 3 lines, extra breathing room below */
    .hero-eyebrow { display: none; }
    .hero h1 { font-size: 2rem; margin-bottom: 72px; }
    .hero p { margin-bottom: 72px; }

    /* Comparison table — reduce cell padding so all columns fit on screen */
    .compare-table-wrap { overflow-x: auto; }
    thead th { padding: 14px 10px; font-size: 0.78rem; }
    tbody td { padding: 12px 10px; font-size: 0.85rem; }

    /* Contact methods — tighter padding/gap so long email address fits */
    .contact-method { padding: 14px 14px; gap: 12px; }
    .contact-icon { width: 36px; font-size: 1.3rem; }
    .contact-method-info .value { font-size: 0.9rem; overflow-wrap: anywhere; }

    /* Contact form — reduce internal padding for a balanced look */
    .contact-form { padding: 28px 20px; }
  }
