:root {
      --green-deep: #1a3a2a;
      --green-mid: #2d6a4f;
      --green-bright: #52b788;
      --green-light: #b7e4c7;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f8f5ee;
      --white: #ffffff;
      --charcoal: #1c1c1c;
      --text-muted: #6b7a6d;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /* ─── NAV ─────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.4rem 4rem;
      transition: background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s;
    }
    nav.scrolled {
      background: rgba(26, 58, 42, 0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); font-style: italic; }
    .nav-links { display: flex; gap: 2.4rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--green-deep) !important;
      padding: 0.55rem 1.4rem !important;
      border-radius: 2px;
      font-weight: 600 !important;
      transition: background 0.3s, transform 0.2s !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

    /* ─── HERO ────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
      display: flex;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.6s ease;
      transform: scale(1.04);
      animation: kenburns 8s ease-out infinite;
    }
    .hero-slide.active { opacity: 1; 
    }

    .hero-slide:nth-child(1) {
      background-image: url('https://golf.com/wp-content/uploads/2021/11/pebble-beach-evan-schiller.jpg');
    }
    .hero-slide:nth-child(2) {
      background-image: url('https://wallpapercave.com/wp/wp3745955.jpg');
    }
    .hero-slide:nth-child(3) {
      background-image: url('https://wallpapercave.com/wp/wp3745970.jpg');
    }
    .hero-slide:nth-child(4) {
      background-image: url('https://gctc.com.au/wp-content/uploads/2024/10/Gold-Coast-Turf-Club-Shot-02-scaled.jpg');
    }
    .hero-slide:nth-child(5) {
    background-image: url('https://cdn1.matadornetwork.com/blogs/1/2024/01/most-beautiful-golf-courses-in-florida.jpg'); 
    }


    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(10, 28, 18, 0.75) 0%,
        rgba(26, 58, 42, 0.55) 50%,
        rgba(0, 0, 0, 0.4) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--white);
      max-width: 820px;
      padding: 0 2rem;
      animation: heroFadeIn 1.4s ease both;
    }

    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-badge {
      display: inline-block;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      padding: 0.4rem 1.2rem;
      margin-bottom: 1.8rem;
      animation: heroFadeIn 1.4s 0.2s ease both;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 7vw, 6.5rem);
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      animation: heroFadeIn 1.4s 0.4s ease both;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255,255,255,0.82);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 2.8rem;
      animation: heroFadeIn 1.4s 0.6s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: heroFadeIn 1.4s 0.8s ease both;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--green-deep);
      padding: 1rem 2.6rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.3s;
      display: inline-block;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 1rem 2.6rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.5);
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.3s;
      display: inline-block;
    }
    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.1);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.5);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .hero-scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ─── STATS BAR ───────────────────────────────────── */
    .stats-bar {
      background: var(--green-deep);
      padding: 2.2rem 4rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    }
    .stat-item {
      text-align: center;
      color: var(--white);
      padding: 0.5rem;
    }
    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-top: 0.4rem;
    }

    /* ─── SECTIONS ────────────────────────────────────── */
    section { padding: 6rem 4rem; }

    .section-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--green-mid);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--green-deep);
      margin-bottom: 1.5rem;
    }

    .section-title em { font-style: italic; color: var(--green-mid); }

    /* ─── ABOUT ───────────────────────────────────────── */
    .about {
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-image-wrap {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 2px;
    }

    .about-img-accent {
      position: absolute;
      width: 220px;
      height: 280px;
      object-fit: cover;
      bottom: -2rem;
      right: -2rem;
      border: 6px solid var(--cream);
      border-radius: 2px;
    }

    .about-badge {
      position: absolute;
      top: -1.5rem;
      left: -1.5rem;
      background: var(--gold);
      color: var(--green-deep);
      width: 110px;
      height: 110px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      line-height: 1.4;
    }

    .about-badge span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      display: block;
      line-height: 1;
    }

    .about-text p {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.85;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .feature-chip {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--green-deep);
    }

    .feature-chip::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ─── SERVICES ────────────────────────────────────── */
    .services { background: var(--green-deep); }
    .services .section-eyebrow { color: var(--gold); }
    .services .section-title { color: var(--white); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .service-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 2.4rem;
      border-radius: 2px;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .service-card:hover {
      background: rgba(255,255,255,0.09);
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 52px;
      height: 52px;
      background: rgba(201, 168, 76, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.8rem;
    }

    .service-card p {
      font-size: 0.88rem;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
    }

    .service-price {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: baseline;
      gap: 0.4rem;
    }

    .service-price strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--gold);
    }

    .service-price span {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
    }

    /* ─── CALCULATOR ──────────────────────────────────── */
    .calculator { background: var(--cream); }

    .calc-container {
      max-width: 900px;
      margin: 3.5rem auto 0;
      background: var(--white);
      border-radius: 4px;
      box-shadow: 0 20px 60px rgba(26, 58, 42, 0.12);
      overflow: hidden;
    }

    .calc-tabs {
      display: flex;
      background: var(--green-deep);
    }

    .calc-tab {
      flex: 1;
      padding: 1.2rem;
      text-align: center;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      cursor: pointer;
      border: none;
      background: none;
      transition: all 0.3s;
      font-family: 'Jost', sans-serif;
    }

    .calc-tab.active {
      color: var(--gold);
      background: rgba(201, 168, 76, 0.12);
      border-bottom: 2px solid var(--gold);
    }

    .calc-tab:hover:not(.active) { color: rgba(255,255,255,0.8); }

    .calc-panel { display: none; padding: 2.8rem; }
    .calc-panel.active { display: block; }

    .calc-panel h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--green-deep);
      margin-bottom: 0.5rem;
    }

    .calc-panel > p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .calc-inputs {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.2rem;
      margin-bottom: 1.8rem;
    }

    .calc-field label {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--green-mid);
      margin-bottom: 0.5rem;
    }

    .calc-field input, .calc-field select {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1px solid #dde8e1;
      border-radius: 2px;
      font-family: 'Jost', sans-serif;
      font-size: 0.95rem;
      background: #f8faf9;
      color: var(--charcoal);
      transition: border-color 0.3s;
    }

    .calc-field input:focus, .calc-field select:focus {
      outline: none;
      border-color: var(--green-mid);
      background: var(--white);
    }

    .calc-result {
      background: var(--green-deep);
      border-radius: 4px;
      padding: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .calc-result-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--gold);
    }

    .calc-result-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 0.2rem;
    }

    .calc-note {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      margin-top: 0.6rem;
      font-style: italic;
    }

    /* ─── PROCESS ─────────────────────────────────────── */
    .process { background: #f0f5f2; }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-top: 3.5rem;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 2rem;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--green-bright), transparent);
    }

    .process-step {
      text-align: center;
      padding: 1rem;
      position: relative;
    }

    .step-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--green-bright);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--green-mid);
      position: relative;
      z-index: 1;
    }

    .process-step h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--green-deep);
      margin-bottom: 0.6rem;
    }

    .process-step p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── GALLERY ─────────────────────────────────────── */
    .gallery { background: var(--white); padding: 4rem; }

    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 0.8rem;
      margin-top: 3rem;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 2px;
    }

    .gallery-item:first-child { grid-row: 1 / 3; }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      display: block;
    }

    .gallery-item:first-child img { height: 500px; }
    .gallery-item:not(:first-child) img { height: 244px; }
    .gallery-item:hover img { transform: scale(1.06); }

    /* ─── QUOTE FORM ──────────────────────────────────── */
    .quote-section { background: var(--green-deep); }
    .quote-section .section-eyebrow { color: var(--gold); }
    .quote-section .section-title { color: var(--white); }
    .quote-section > p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 3rem; }

    .quote-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }

    .quote-info h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--white);
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.4rem;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      background: rgba(201, 168, 76, 0.15);
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .contact-detail strong {
      display: block;
      color: rgba(255,255,255,0.9);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .contact-detail span {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
    }

    .service-area {
      margin-top: 3rem;
      padding: 1.8rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 2px;
    }

    .service-area h5 {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .area-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .area-tag {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.65);
      background: rgba(255,255,255,0.07);
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
    }

    /* ─── FORM ────────────────────────────────────────── */
    .quote-form {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 4px;
      padding: 2.8rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      font-weight: 500;
      margin-bottom: 0.45rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 2px;
      padding: 0.85rem 1rem;
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.3s, background 0.3s;
    }

    .form-group select option { background: var(--green-deep); color: var(--white); }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
      background: rgba(255,255,255,0.1);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255,255,255,0.25);
    }

    .form-group textarea { min-height: 120px; resize: vertical; }

    .form-submit {
      width: 100%;
      margin-top: 0.5rem;
      padding: 1.1rem;
      background: var(--gold);
      color: var(--green-deep);
      border: none;
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.3s;
    }

    .form-submit:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201, 168, 76, 0.35);
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
      color: var(--green-light);
    }

    .form-success .check {
      font-size: 3rem;
      display: block;
      margin-bottom: 1rem;
    }

    /* ─── TESTIMONIALS ────────────────────────────────── */
    .testimonials { background: var(--cream); }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3.5rem;
    }

    .testi-card {
      background: var(--white);
      border-radius: 2px;
      padding: 2.2rem;
      box-shadow: 0 4px 20px rgba(26,58,42,0.06);
      transition: transform 0.3s;
    }

    .testi-card:hover { transform: translateY(-4px); }

    .stars {
      color: var(--gold);
      font-size: 1rem;
      margin-bottom: 1rem;
      letter-spacing: 0.1em;
    }

    .testi-text {
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--charcoal);
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      border-top: 1px solid #eee;
      padding-top: 1rem;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .testi-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--green-deep);
    }

    .testi-loc {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      background: #0f2219;
      padding: 4rem 4rem 2rem;
      color: rgba(255,255,255,0.5);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--white);
      text-decoration: none;
      display: block;
      margin-bottom: 1rem;
    }

    .footer-logo span { color: var(--gold); font-style: italic; }

    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.4);
    }

    .footer-heading {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 1.2rem;
    }

    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.6rem; }
    .footer-links a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p { font-size: 0.78rem; }

    .license-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(201, 168, 76, 0.15);
      color: var(--gold);
      font-size: 0.72rem;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      border: 1px solid rgba(201, 168, 76, 0.3);
    }

    /* ─── ANIMATIONS ──────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── MOBILE ──────────────────────────────────────── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 2rem; }
      .nav-links { display: none; }
      section { padding: 4rem 2rem; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem; }
      .about { grid-template-columns: 1fr; gap: 2rem; }
      .services-grid { grid-template-columns: 1fr; }
      .quote-grid { grid-template-columns: 1fr; gap: 2rem; }
      .form-row { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .process-steps::before { display: none; }
      .testi-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:first-child { grid-row: auto; }
      .gallery-item:first-child img { height: 250px; }
      .gallery-item:not(:first-child) img { height: 200px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .about-img-accent { display: none; }
    }
