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

    :root {
      --green-dark: #53614E;
      --green-sage: #A6B093;
      --cream: #EDEDE6;
      --cream-light: #F5F5F0;
      --white: #FFFFFF;
      --dark: #1F1F1F;
      --gold: #D4B07A;
      --text: #1F1F1F;
      --text-dim: #5a5a5a;
      --text-muted: #8a8a8a;
      --border: rgba(0,0,0,0.1);
      --border-dark: rgba(0,0,0,0.15);
      --radius: 8px;
      --radius-lg: 12px;
      --radius-full: 9999px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ─── Typography ─── */
    .serif { font-family: 'Source Serif 4', serif; }

    h1, h2, h3 {
      font-family: 'Source Serif 4', serif;
      color: var(--dark);
    }

    /* ─── Nav ─── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 18px 0;
      transition: all 0.4s;
    }

    .nav.scrolled {
      background: rgba(245, 245, 240, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 12px 0;
      box-shadow: 0 1px 0 var(--border);
    }

    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo img {
      height: 72px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.3s;
      padding-bottom: 4px;
      border-bottom: 1.5px solid transparent;
    }

    .nav-links a:hover,
    .nav-links a.active {
      border-bottom-color: currentColor;
    }

    .nav-links a.btn-cta {
      border-bottom: none;
      padding-bottom: 12px;
    }

    .nav.scrolled .nav-links a {
      color: var(--dark);
    }

    .nav.scrolled .nav-links a:hover,
    .nav.scrolled .nav-links a.active {
      color: var(--dark);
      border-bottom-color: var(--dark);
    }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      background: linear-gradient(135deg, #D4B07A 0%, #A6834A 100%);
      color: #fff !important;
      border: none;
      border-radius: 0;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-cta:hover {
      background: linear-gradient(135deg, #c5a06a 0%, #967539 100%);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      background: transparent;
      color: var(--dark);
      border: 1.5px solid var(--dark);
      border-radius: 0;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-outline:hover {
      background: var(--dark);
      color: #fff;
    }

    .btn-outline-light {
      color: #fff;
      border-color: rgba(255,255,255,0.6);
    }

    .btn-outline-light:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
      color: #fff;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      margin: 5px 0;
      transition: background 0.3s;
    }

    .nav.scrolled .nav-toggle span {
      background: var(--dark);
    }

    /* ─── Hero ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-video-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-video-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(85,104,90,0.5) 0%,
        rgba(31,31,31,0.35) 40%,
        rgba(31,31,31,0.75) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      padding: 120px 32px 100px;
    }

    .hero h1 {
      font-size: clamp(48px, 7vw, 88px);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 24px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.75);
      max-width: 520px;
      margin: 0 auto 40px;
      line-height: 1.7;
      font-weight: 400;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.5);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 1; }
    }

    /* ─── Services Bar ─── */
    .services-bar {
      background: var(--cream-light);
      border-bottom: 1px solid var(--border);
    }

    .services-bar-inner {
      display: flex;
      justify-content: center;
      gap: 0;
    }

    .service-pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 32px 18px;
      border-right: 1px solid var(--border);
      text-decoration: none;
      color: var(--text-dim);
      transition: all 0.3s;
      flex: 1;
      text-align: center;
    }

    .service-pill:first-child {
      border-left: 1px solid var(--border);
    }

    .service-pill:hover {
      background: var(--white);
      color: var(--green-dark);
    }

    .service-pill svg {
      width: 32px;
      height: 32px;
      stroke: var(--green-sage);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-pill span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* ─── Section shared ─── */
    .section {
      padding: 120px 0;
    }

    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green-sage);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }

    .section-title em {
      font-style: italic;
      color: var(--green-dark);
    }

    /* ─── Agenda ─── */
    .agenda {
      background: var(--cream-light);
    }
    .agenda-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 48px;
    }
    .agenda-intro {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 48px;
    }
    .agenda-intro p {
      font-size: 15px;
      color: var(--text-dim);
      line-height: 1.8;
    }
    .agenda-intro p + p {
      margin-top: 12px;
    }
    .agenda-embed {
      background: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: 8px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }
    .agenda-embed iframe {
      display: block;
      width: 100%;
      min-height: 760px;
      border: none;
    }

    /* ─── About ─── */
    .about {
      background: var(--cream);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: 80px;
      align-items: center;
    }

    .about-image {
      position: relative;
      border-radius: 0;
      overflow: hidden;
      aspect-ratio: 4/5;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-image::after {
      content: '';
      position: absolute;
      bottom: -8px;
      right: -8px;
      width: 100px;
      height: 100px;
      border: 2px solid var(--green-sage);
      border-radius: 0;
      z-index: -1;
    }

    .about-body {
      color: var(--text-dim);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .about-credentials {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }

    .credential {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 0;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-dim);
    }

    .credential::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      background: var(--green-sage);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .rating-card {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 0;
    }

    .rating-stars {
      display: flex;
      gap: 2px;
    }

    .rating-stars svg {
      width: 14px;
      height: 14px;
      fill: var(--gold);
    }

    .rating-score {
      font-size: 22px;
      font-weight: 700;
      line-height: 1;
      color: var(--dark);
    }

    .rating-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* ─── Services (interactive) ─── */
    .services {
      background: var(--cream-light);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .services-layout {
      display: grid;
      grid-template-columns: 280px 1fr 380px;
      gap: 40px;
      align-items: start;
    }

    .services-left {
      position: sticky;
      top: 120px;
    }

    .services-left .section-title {
      font-size: 40px;
    }

    .services-left p {
      color: var(--text-dim);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .service-list {
      display: flex;
      flex-direction: column;
    }

    .service-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.3s;
      border-radius: 0;
    }

    .service-item:first-child {
      border-top: 1px solid var(--border);
    }

    .service-item:hover,
    .service-item.active {
      background: var(--white);
    }

    .service-item-icon {
      width: 44px;
      height: 44px;
      border-radius: 0;
      border: 1px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s;
    }

    .service-item.active .service-item-icon {
      border-color: var(--green-sage);
      background: rgba(166,176,147,0.1);
    }

    .service-item-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--text-muted);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-item.active .service-item-icon svg {
      stroke: var(--green-dark);
    }

    .service-item h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dim);
      transition: color 0.3s;
    }

    .service-item.active h3,
    .service-item:hover h3 {
      color: var(--dark);
    }

    .service-detail {
      position: sticky;
      top: 120px;
    }

    .service-detail-image {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 0;
      overflow: hidden;
      margin-bottom: 20px;
      position: relative;
    }

    .service-detail-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.4s ease;
    }

    .service-detail-arrow {
      position: absolute;
      bottom: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      border-radius: 0;
      background: rgba(255,255,255,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
    }

    .service-detail-arrow:hover {
      background: var(--green-dark);
    }

    .service-detail-arrow svg {
      width: 18px;
      height: 18px;
      stroke: var(--dark);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.3s;
    }

    .service-detail-arrow:hover svg {
      stroke: #fff;
    }

    .service-detail h3 {
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 8px;
      transition: opacity 0.3s;
    }

    .service-detail p {
      color: var(--text-dim);
      font-size: 14px;
      line-height: 1.7;
      transition: opacity 0.3s;
    }

    /* ─── Image Break / Quote ─── */
    .image-break {
      position: relative;
      height: 480px;
      background-image: url('Images/hero.webp');
      background-attachment: fixed;
      background-position: center;
      background-size: cover;
    }

    .image-break-overlay {
      position: absolute;
      inset: 0;
      background: rgba(83,97,78,0.75);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-break-text {
      text-align: center;
      color: #fff;
      max-width: 700px;
      padding: 0 32px;
    }

    .image-break-text blockquote {
      font-family: 'Source Serif 4', serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 300;
      font-style: italic;
      line-height: 1.4;
      margin-bottom: 16px;
    }

    .image-break-text cite {
      font-family: 'Montserrat', sans-serif;
      font-style: normal;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--gold);
    }

    /* ─── Testimonials ─── */
    .testimonials {
      background: var(--cream);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .testimonials-header .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
      padding: 12px 24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 0;
    }

    .google-badge img {
      height: 24px;
      width: auto;
    }

    .google-badge-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .google-badge-score {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
    }

    .google-badge-count {
      font-size: 11px;
      color: var(--text-muted);
    }

    .google-badge-stars {
      color: #FBBC04;
      font-size: 16px;
      letter-spacing: 1px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      padding: 36px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 0;
      position: relative;
    }

    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 20px;
      left: 28px;
      font-family: 'Source Serif 4', serif;
      font-size: 64px;
      line-height: 1;
      color: var(--gold);
      opacity: 0.35;
    }

    .testimonial-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green-sage);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      flex-shrink: 0;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 13px;
      color: var(--dark);
    }

    .testimonial-time {
      font-size: 11px;
      color: var(--text-muted);
    }

    .testimonial-google-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .testimonial-stars {
      color: #FBBC04;
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .testimonial-card p {
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-dim);
      margin-bottom: 0;
      font-style: normal;
    }

    /* ─── Contact ─── */
    .contact {
      background: var(--green-dark);
      color: #fff;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: start;
    }

    .contact .section-label {
      color: var(--gold);
    }

    .contact .section-title {
      color: #fff;
    }

    .contact-info > p {
      color: rgba(255,255,255,0.7);
      margin-bottom: 40px;
      font-size: 15px;
      line-height: 1.8;
    }

    .contact-details {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-details li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      line-height: 1.5;
    }

    .contact-details li svg {
      flex-shrink: 0;
      margin-top: 2px;
      stroke: var(--gold);
    }

    .contact-details a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-details a:hover {
      color: #fff;
    }

    .contact-socials {
      display: flex;
      gap: 12px;
      margin-top: 40px;
    }

    .contact-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-full);
      color: #fff;
      text-decoration: none;
      transition: all 0.3s;
    }

    .contact-socials a:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    .contact-socials a svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      stroke: none;
    }

    .contact-form {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 0;
      padding: 48px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 0;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color 0.3s;
    }

    .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-bottom-color: var(--gold);
    }

    .form-group select {
      cursor: pointer;
      -webkit-appearance: none;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='1.5'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 4px center;
    }

    .form-group select option {
      background: var(--green-dark);
      color: #fff;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-submit {
      margin-top: 12px;
    }

    .form-submit .btn-cta {
      width: 100%;
      justify-content: center;
      padding: 16px 36px;
      background: var(--gold);
      border-color: var(--gold);
    }

    .form-submit .btn-cta:hover {
      background: #c5a36d;
      border-color: #c5a36d;
    }

    /* ─── Map ─── */
    .map-section {
      position: relative;
      width: 100%;
      height: 420px;
      border-top: 1px solid var(--border);
    }

    .map-section iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(0.3) contrast(0.95) saturate(0.8);
      transition: filter 0.5s;
    }

    .map-section:hover iframe {
      filter: grayscale(0) contrast(1) saturate(1);
    }

    /* ─── Footer ─── */
    .footer {
      background: var(--dark);
      padding: 48px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo img {
      height: 64px;
      width: auto;
      opacity: 0.7;
    }

    .footer-text {
      color: rgba(255,255,255,0.4);
      font-size: 12px;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255,255,255,0.4);
      font-size: 12px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: rgba(255,255,255,0.7);
    }

    /* ─── Animations ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── Mobile menu ─── */
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(245,245,240,0.97);
      backdrop-filter: blur(20px);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
    }

    .mobile-overlay.active { display: flex; }

    .mobile-overlay a {
      font-family: 'Source Serif 4', serif;
      font-size: 28px;
      color: var(--dark);
      text-decoration: none;
      transition: color 0.2s;
    }

    .mobile-overlay a:hover { color: var(--green-dark); }

    .mobile-close {
      position: absolute;
      top: 24px;
      right: 32px;
      background: none;
      border: none;
      color: var(--dark);
      font-size: 32px;
      cursor: pointer;
    }

    /* ─── Responsive ─── */
    @media (max-width: 1024px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .about-image { max-width: 420px; }

      .services-layout {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .services-left {
        grid-column: 1 / -1;
        position: static;
      }

      .service-detail { position: static; }

      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .services-bar-inner {
        flex-wrap: wrap;
      }

      .service-pill {
        flex: 0 0 33.33%;
      }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }

      .hero h1 { font-size: 40px; }
      .hero-content { padding: 140px 20px 80px; }

      .section { padding: 80px 0; }

      .services-layout { grid-template-columns: 1fr; }
      .service-detail-image { aspect-ratio: 16/9; }

      .services-bar-inner { flex-direction: column; }
      .service-pill {
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        padding: 20px 24px;
        gap: 16px;
      }
      .service-pill:first-child { border-left: none; }

      .testimonials-grid { grid-template-columns: 1fr; }

      .form-row { grid-template-columns: 1fr; }
      .contact-form { padding: 32px 24px; }

      .image-break {
        height: 360px;
        background-attachment: scroll;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }
    }

    /* ─── Subpage nav (solid) ─── */
    .nav-solid {
      background: rgba(245, 245, 240, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 12px 0;
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-solid .nav-links a { color: var(--dark); }
    .nav-solid .nav-links a:hover,
    .nav-solid .nav-links a.active { border-bottom-color: var(--dark); }
    .nav-solid .nav-links a.btn-cta { color: #fff !important; }
    .nav-solid .nav-toggle span { background: var(--dark); }

    /* ─── Page hero ─── */
    .page-hero {
      position: relative;
      padding: 200px 0 110px;
      background-size: cover;
      background-position: center;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(31,31,31,0.5) 0%, rgba(83,97,78,0.78) 100%);
    }
    .page-hero .container {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }
    .page-hero .section-label { color: var(--gold); }
    .page-hero h1 {
      color: #fff;
      font-size: clamp(40px, 5.5vw, 64px);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold); }
    .page-hero p {
      color: rgba(255,255,255,0.8);
      font-size: 16px;
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto;
    }

    /* ─── Split section ─── */
    .split-grid {
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: 80px;
      align-items: center;
    }
    .split-grid.flip .split-image { order: 2; }
    .split-image {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
    }
    .split-image img { width: 100%; height: 100%; object-fit: cover; }
    .split-body p {
      color: var(--text-dim);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 24px 0 32px;
    }
    .check-list li {
      display: flex;
      gap: 12px;
      font-size: 14.5px;
      color: var(--text-dim);
      line-height: 1.6;
    }
    .check-list li::before {
      content: '\2713';
      color: var(--green-dark);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ─── Feature grid ─── */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 40px 32px;
    }
    .feature-card svg {
      width: 32px;
      height: 32px;
      stroke: var(--green-sage);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      margin-bottom: 18px;
    }
    .feature-card h3 { font-size: 19px; font-weight: 400; margin-bottom: 10px; }
    .feature-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

    /* ─── Steps ─── */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    .step-num {
      font-family: 'Source Serif 4', serif;
      font-size: 48px;
      font-weight: 300;
      font-style: italic;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 14px;
    }
    .step h3 { font-size: 18px; font-weight: 400; margin-bottom: 8px; }
    .step p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

    /* ─── CTA band ─── */
    .cta-band {
      background: var(--green-dark);
      text-align: center;
      padding: 100px 0;
      color: #fff;
    }
    .cta-band .section-label { color: var(--gold); }
    .cta-band h2 {
      color: #fff;
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 300;
      margin-bottom: 16px;
    }
    .cta-band h2 em { font-style: italic; color: var(--gold); }
    .cta-band p {
      color: rgba(255,255,255,0.75);
      max-width: 560px;
      margin: 0 auto 32px;
      font-size: 15px;
      line-height: 1.8;
    }

    /* ─── Aanbod overview grid ─── */
    .aanbod-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .aanbod-card {
      background: var(--white);
      border: 1px solid var(--border);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: all 0.3s;
    }
    .aanbod-card:hover {
      box-shadow: 0 16px 40px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }
    .aanbod-card-img { aspect-ratio: 3/2; overflow: hidden; }
    .aanbod-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .aanbod-card:hover .aanbod-card-img img { transform: scale(1.04); }
    .aanbod-card-body { padding: 28px; }
    .aanbod-card h3 { font-size: 20px; font-weight: 400; margin-bottom: 8px; color: var(--dark); }
    .aanbod-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
    .aanbod-link {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--green-dark);
    }

    /* ─── Team ─── */
    .img-placeholder {
      width: 100%;
      height: 100%;
      min-height: 220px;
      background: repeating-linear-gradient(
        45deg,
        var(--cream-light),
        var(--cream-light) 12px,
        var(--cream) 12px,
        var(--cream) 24px
      );
      border: 1px dashed var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .img-placeholder::after {
      content: attr(data-label);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
    }
    .team-photo {
      margin: 0 0 56px;
    }
    .team-photo .img-placeholder {
      aspect-ratio: 16/6;
      min-height: 260px;
    }
    .team-photo figcaption {
      margin-top: 12px;
      text-align: center;
      font-size: 13px;
      color: var(--text-dim);
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .team-card {
      background: var(--white);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
    }
    .team-card-img {
      aspect-ratio: 3/4;
      overflow: hidden;
    }
    .team-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .team-card-body { padding: 28px; }
    .team-card h3 {
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 4px;
      color: var(--dark);
    }
    .team-role {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .team-card-body p {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.7;
    }
    .team-card .about-credentials { margin-top: 18px; }

    /* ─── Responsive additions ─── */
    @media (max-width: 1024px) {
      .aanbod-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .feature-grid { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr; gap: 32px; }
      .split-grid { grid-template-columns: 1fr; gap: 48px; }
      .split-grid.flip .split-image { order: 0; }
      .split-image { max-width: 420px; }
    }
    @media (max-width: 768px) {
      .aanbod-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: 1fr; }
      .page-hero { padding: 150px 0 80px; }
    }

    /* ─── Logo variants ─── */
    .nav-logo .logo-dark { display: none; }
    .nav.scrolled .logo-light,
    .nav-solid .logo-light { display: none; }
    .nav.scrolled .logo-dark,
    .nav-solid .logo-dark { display: block; }
