/* ── TOKENS ─────────────────────────────────────── */
    :root {
      --green:      #1B4D2E;
      --green-mid:  #2A6B41;
      --green-light:#E8EFE2;
      --gold:       #C9952A;
      --gold-light: #F5E6C0;
      --offwhite:   #F7F4EE;
      --charcoal:   #1C1C1C;
      --mid:        #4A4A4A;
      --border:     #D4CBB8;
      --white:      #FFFFFF;
    }

    /* ── RESET ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--charcoal);
      background: var(--offwhite);
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── NAV ────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 64px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo img {
      height: 44px;
      width: 44px;
      border-radius: 50%;
      object-fit: cover;
    }
    .nav-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.01em;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--white) !important;
      padding: 8px 18px;
      border-radius: 4px;
      font-weight: 600 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: #b07e1e !important; color: var(--white) !important; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: 0.3s;
    }

    /* ── HERO ───────────────────────────────────────── */
    #home {
      min-height: 100vh;
      background:
        linear-gradient(to bottom, rgba(27,77,46,0.72) 0%, rgba(27,77,46,0.45) 60%, rgba(27,77,46,0.75) 100%),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=80') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px 5% 60px;
      position: relative;
    }
    .hero-logo {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--gold);
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      margin-bottom: 28px;
    }
    .hero-tagline {
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 18px;
      text-shadow: 0 2px 16px rgba(0,0,0,0.35);
    }
    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.88);
      max-width: 560px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--white);
      padding: 14px 30px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: #b07e1e; transform: translateY(-1px); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.7);
      color: var(--white);
      padding: 12px 28px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-1px); }
    .hero-scroll {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.6);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .hero-scroll svg { width: 20px; opacity: 0.6; }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ── SECTION WRAPPERS ───────────────────────────── */
    section { padding: 80px 5%; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-eyebrow {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--green);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-lead {
      font-size: 1.05rem;
      color: var(--mid);
      max-width: 640px;
      line-height: 1.75;
      margin-bottom: 48px;
    }
    .divider {
      width: 52px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin-bottom: 20px;
    }

    /* ── SERVICES OVERVIEW (Home cards) ─────────────── */
    #services { background: var(--offwhite); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(27,77,46,0.15);
    }
    .card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
    }
    .card-body { padding: 24px; }
    .card-icon {
      width: 44px;
      height: 44px;
      background: var(--green-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 14px;
    }
    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 10px;
    }
    .card-desc {
      font-size: 0.92rem;
      color: var(--mid);
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .card-link {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .service-card:hover .card-link { gap: 10px; }

    /* ── INTRO STRIP ────────────────────────────────── */
    #intro {
      background: var(--green);
      padding: 60px 5%;
      text-align: center;
    }
    .intro-inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .intro-inner .section-eyebrow { color: var(--gold-light); }
    .intro-inner .section-title { color: var(--white); margin-bottom: 16px; }
    .intro-text {
      color: rgba(255,255,255,0.82);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .stats-row {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      margin-top: 32px;
    }
    .stat {
      text-align: center;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.65);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 4px;
    }

    /* ── SERVICE DETAIL PAGES ───────────────────────── */
    .service-detail { background: var(--offwhite); border-top: 4px solid var(--gold); }
    .service-detail:nth-of-type(even) { background: var(--green-light); }
    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .detail-img-stack {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .placeholder-img {
      border-radius: 6px;
      overflow: hidden;
      background: var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      color: var(--mid);
      font-size: 0.8rem;
      text-align: center;
      padding: 12px;
    }
    .placeholder-img span { font-size: 2rem; }
    .placeholder-img.tall {
      grid-column: span 2;
      height: 260px;
    }
    .placeholder-img.half { height: 180px; }
    .service-list {
      list-style: none;
      margin: 16px 0 28px;
    }
    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.95rem;
      color: var(--mid);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      line-height: 1.5;
    }
    .service-list li:last-child { border-bottom: none; }
    .check {
      color: var(--green);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      margin-top: 2px;
    }
    .hay-options {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin: 20px 0 28px;
    }
    .hay-option {
      background: var(--white);
      border: 1px solid var(--border);
      border-left: 4px solid var(--gold);
      border-radius: 4px;
      padding: 16px 18px;
    }
    .hay-option-title {
      font-weight: 600;
      color: var(--green);
      font-size: 1.1rem;
      margin-bottom: 4px;
    }
    .hay-option-desc {
      font-size: 0.88rem;
      color: var(--mid);
      line-height: 1.6;
    }

    /* ── CTA BOX ────────────────────────────────────── */
    .cta-box {
      background: var(--green);
      border-radius: 6px;
      padding: 28px 28px;
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .cta-box-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }
    .cta-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--gold-light);
      font-size: 1rem;
      font-weight: 500;
    }
    .cta-contact a { color: var(--gold-light); transition: color 0.2s; }
    .cta-contact a:hover { color: var(--gold); }
    .cta-note {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      margin-top: 4px;
    }

    /* ── ABOUT ──────────────────────────────────────── */
    #about { background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-main {
      width: 100%;
      height: 420px;
      border-radius: 6px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      color: var(--mid);
      font-size: 0.82rem;
      text-align: center;
      padding: 24px;
    }
    .about-img-main span { font-size: 3rem; }
    .about-badge {
      position: absolute;
      bottom: -18px;
      right: -18px;
      background: var(--gold);
      color: var(--white);
      border-radius: 50%;
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
      font-weight: 700;
      line-height: 1.2;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    .about-content .section-lead { margin-bottom: 24px; }
    .values-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .values-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 0.95rem;
      color: var(--mid);
    }
    .values-list .bullet {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 7px;
    }

    /* ── CONTACT ────────────────────────────────────── */
    #contact { background: var(--green-light); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }
    .contact-item:last-child { border-bottom: none; }
    .contact-icon {
      width: 42px;
      height: 42px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--white);
      flex-shrink: 0;
    }
    .contact-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 3px;
    }
    .contact-value {
      font-size: 1rem;
      font-weight: 500;
      color: var(--charcoal);
    }
    .contact-value a { color: var(--green); font-weight: 600; }
    .contact-value a:hover { color: var(--gold); }
    .contact-note {
      font-size: 0.85rem;
      color: var(--mid);
      margin-top: 2px;
    }
    .enquiry-box {
      background: var(--white);
      border-radius: 6px;
      padding: 32px;
      border: 1px solid var(--border);
    }
    .enquiry-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 6px;
    }
    .enquiry-sub {
      font-size: 0.9rem;
      color: var(--mid);
      margin-bottom: 20px;
    }
    .field { margin-bottom: 16px; }
    .field label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 5px;
      letter-spacing: 0.03em;
    }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid var(--border);
      border-radius: 4px;
      font-size: 0.92rem;
      font-family: 'Inter', sans-serif;
      color: var(--charcoal);
      background: var(--offwhite);
      transition: border-color 0.2s;
      outline: none;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus { border-color: var(--green); }
    .field textarea { resize: vertical; min-height: 100px; }
    .submit-btn {
      width: 100%;
      background: var(--green);
      color: var(--white);
      border: none;
      padding: 14px;
      border-radius: 4px;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      transition: background 0.2s;
    }
    .submit-btn:hover { background: var(--green-mid); }
    .submit-note {
      font-size: 0.78rem;
      color: var(--mid);
      text-align: center;
      margin-top: 10px;
    }

    /* ── FOOTER ─────────────────────────────────────── */
    footer {
      background: var(--charcoal);
      color: rgba(255,255,255,0.65);
      padding: 36px 5%;
      text-align: center;
    }
    .footer-inner {
      max-width: 700px;
      margin: 0 auto;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 8px;
    }
    .footer-tagline {
      font-size: 0.85rem;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .footer-links a {
      color: rgba(255,255,255,0.55);
      font-size: 0.83rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
      margin-top: 8px;
    }

    /* ── PAGE SECTIONS (visibility) ─────────────────── */
    .page-section { display: none; }
    .page-section.active { display: block; }

    /* ── BACK BUTTON ─────────────────────────────────── */
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--green);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 32px;
      cursor: pointer;
      transition: color 0.2s;
    }
    .back-btn:hover { color: var(--gold); }

    /* ── PHOTO GRIDS ─────────────────────────────────── */
    .photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .photo-grid .pg-wide {
      grid-column: span 2;
      width: 100%;
      height: 280px;
    }
    .photo-grid .pg-half {
      width: 100%;
      height: 210px;
    }
    .photo-grid-tall-left {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 12px;
      height: 520px;
    }
    .photo-grid-tall-left .ptg-main {
      grid-row: span 2;
      width: 100%;
      height: 100%;
    }
    .photo-grid-tall-left .ptg-half {
      width: 100%;
      height: 100%;
    }

    /* ── RESPONSIVE ─────────────────────────────────── */
    @media (max-width: 900px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .detail-grid { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .about-badge { right: 12px; bottom: 12px; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: var(--green);
        padding: 16px 5%;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        z-index: 99;
      }
      .nav-links.open li a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      .nav-links.open li:last-child a { border-bottom: none; }
      .nav-links.open .nav-cta {
        background: none;
        padding: 14px 0;
        border-radius: 0;
      }
      .hamburger { display: flex; }
    }
    @media (max-width: 600px) {
      section { padding: 48px 5%; }
      .hero-logo { width: 110px; height: 110px; }
      .hero-sub { font-size: 0.95rem; }
      .hero-actions { flex-direction: column; align-items: center; }
      .hero-actions .btn-primary,
      .hero-actions .btn-outline { width: 100%; max-width: 300px; text-align: center; }
      .stats-row { gap: 20px; }
      .stat-num { font-size: 2rem; }
      .services-grid { grid-template-columns: 1fr; }
      .card-body { padding: 16px; }
      .detail-img-stack { grid-template-columns: 1fr; }
      .placeholder-img.tall { grid-column: span 1; }
      .about-img-main { height: 280px; }
      .about-badge { width: 76px; height: 76px; font-size: 0.78rem; }
      .enquiry-box { padding: 20px 16px; }
      .field input,
      .field select,
      .field textarea { font-size: 1rem; }
      .cta-contact a { word-break: break-all; }
      .footer-links { gap: 14px; }
      .photo-grid { grid-template-columns: 1fr; }
      .photo-grid .pg-wide { grid-column: span 1; height: 220px; }
      .photo-grid .pg-half { height: 200px; }
      .photo-grid-tall-left {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
      }
      .photo-grid-tall-left .ptg-main {
        grid-row: span 1;
        height: 260px;
      }
      .photo-grid-tall-left .ptg-half { height: 200px; }
      .detail-grid { gap: 32px; }
      .section-lead { margin-bottom: 28px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-scroll { animation: none; }
      * { transition: none !important; }
    }