
  :root {
    --color-forest: #1F3A2E;
    --color-forest-deep: #102820;
    --color-forest-soft: #2D4A3D;
    --color-cream: #F4EFE6;
    --color-cream-warm: #E8DFCD;
    --color-brass: #B8895A;
    --color-brass-deep: #8E6840;
    --color-stone: #6E6A5E;
    --color-charcoal: #1F1E1A;

    --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --max-width: 1280px;
    --gutter: 24px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background: var(--color-cream);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ::selection { background: var(--color-forest); color: var(--color-cream); }

  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  .eyebrow {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .display-xl {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .display-lg {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .display-md {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  /* HEADER — solid in v2 */
  .site-header {
    background: var(--color-cream-warm);
    border-bottom: 1px solid rgba(31,58,46,0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-forest);
  }
  .logo-mark {
    width: 32px;
    height: 32px;
    color: var(--color-forest);
  }
  .logo-mark svg { width: 100%; height: 100%; }
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.02em;
    color: var(--color-charcoal);
  }
  .logo-tagline {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-stone);
    margin-top: 4px;
  }

  .nav {
    display: flex;
    gap: 32px;
    align-items: center;
    font-size: 15px;
    color: var(--color-charcoal);
  }
  .nav a { transition: color 0.2s; }
  .nav a:hover { color: var(--color-forest); }
  .nav-cta {
    background: var(--color-forest);
    color: var(--color-cream) !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .nav-cta:hover {
    background: var(--color-brass);
    color: var(--color-cream) !important;
  }

  /* HERO V2 — split conversion-focused */
  .hero-v2 {
    background: var(--color-cream-warm);
    position: relative;
  }
  .hero-v2-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 82vh;
  }
  .hero-v2-content {
    padding: 80px 56px 80px var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    margin-left: auto;
    width: 100%;
  }
  .hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-cream);
    border: 1px solid rgba(31,58,46,0.12);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--color-charcoal);
    margin-bottom: 36px;
    width: fit-content;
    white-space: nowrap;
    animation: fadeUp 700ms ease both 100ms;
  }
  .hero-trust-pill .stars {
    color: var(--color-brass);
    letter-spacing: 1px;
    font-size: 12px;
    margin: 0;
    display: inline-block;
    line-height: 1;
  }
  .hero-trust-pill strong { font-weight: 500; }
  .hero-trust-divider {
    width: 1px;
    height: 12px;
    background: rgba(31,58,46,0.2);
  }
  .hero-v2-eyebrow {
    color: var(--color-brass);
    margin-bottom: 24px;
    display: block;
    animation: fadeUp 700ms ease both 200ms;
  }
  .hero-v2-title {
    color: var(--color-forest);
    margin-bottom: 28px;
    animation: fadeUp 700ms ease both 300ms;
  }
  .hero-v2-title em {
    font-style: italic;
  }
  .hero-v2-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-stone);
    max-width: 540px;
    margin-bottom: 40px;
    animation: fadeUp 700ms ease both 400ms;
  }
  .hero-v2-actions {
    animation: fadeUp 700ms ease both 500ms;
  }
  .hero-microcopy {
    font-size: 13px;
    color: var(--color-stone);
    margin-top: 20px;
    line-height: 1.6;
  }
  .hero-microcopy span { color: var(--color-charcoal); font-weight: 500; }

  .hero-v2-image {
    position: relative;
    overflow: hidden;
    background: var(--color-forest);
  }
  .hero-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* BUTTONS */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-forest);
    color: var(--color-cream);
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.25s ease;
  }
  .btn-primary:hover {
    background: var(--color-brass);
    transform: translateY(-1px);
  }
  .btn-primary svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .btn-primary-large {
    padding: 18px 36px;
    font-size: 16px;
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-cream);
    padding: 16px 24px;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .btn-ghost:hover { border-bottom-color: var(--color-cream); }

  /* TRUST STRIP */
  .trust-strip {
    background: var(--color-cream);
    padding: 28px 0;
    border-top: 1px solid rgba(31,58,46,0.06);
    border-bottom: 1px solid rgba(31,58,46,0.06);
  }
  .trust-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
  }
  .trust-label {
    color: var(--color-stone);
  }
  .trust-badge {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-forest);
    letter-spacing: 0.02em;
  }
  .trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(31,58,46,0.2);
  }

  /* SECTIONS */
  .section { padding: 120px 0; }
  .section-bg-warm { background: var(--color-cream-warm); }
  .section-header {
    max-width: 720px;
    margin: 0 auto 80px;
    text-align: center;
  }
  .section-eyebrow {
    color: var(--color-brass);
    margin-bottom: 16px;
    display: block;
  }
  .section-title {
    color: var(--color-forest);
    margin-bottom: 24px;
  }
  .section-sub {
    font-size: 18px;
    color: var(--color-stone);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
  }

  /* SERVICES V2 — editorial process flow */
  .services-v2 {
    padding: 120px 0;
    background: var(--color-cream);
  }
  .services-v2-stack {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .service-row.reverse .service-row-content { order: 2; }
  .service-row.reverse .service-row-image { order: 1; }
  .service-row-content {
    max-width: 480px;
  }
  .service-num-large {
    font-family: var(--font-serif);
    font-size: 56px;
    font-style: italic;
    color: var(--color-brass);
    line-height: 1;
    display: block;
    margin-bottom: 20px;
    font-weight: 300;
  }
  .service-row-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--color-forest);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
    line-height: 1.1;
    font-weight: 400;
  }
  .service-row-desc {
    font-size: 17px;
    color: var(--color-stone);
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .service-row-features {
    list-style: none;
    margin-bottom: 32px;
    border-top: 1px solid rgba(31,58,46,0.12);
  }
  .service-row-features li {
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid rgba(31,58,46,0.08);
    font-size: 14px;
    color: var(--color-charcoal);
    position: relative;
  }
  .service-row-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-brass);
  }
  .service-row-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    padding-bottom: 4px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
  }
  .service-row-link:hover {
    gap: 16px;
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }
  .service-row-link svg { width: 14px; height: 14px; }
  .service-row-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-forest);
  }
  .service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .service-row:hover .service-row-image img {
    transform: scale(1.03);
  }

  /* WORK V2 — featured + clean grid */
  .work-v2 {
    background: var(--color-forest);
    color: var(--color-cream);
    padding: 120px 0 140px;
  }
  .work-v2 .section-eyebrow { color: var(--color-brass); }
  .work-v2 .section-title { color: var(--color-cream); }
  .work-v2-header {
    margin-bottom: 64px;
    max-width: 720px;
  }
  .work-v2-header .section-eyebrow { margin-bottom: 16px; }
  .work-v2-header .section-title { margin-bottom: 0; }

  .case-featured {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(244,239,230,0.15);
    cursor: pointer;
  }
  .case-featured-content { padding: 16px 0; }
  .case-featured-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brass);
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 500;
  }
  .case-featured-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.1;
    color: var(--color-cream);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    font-weight: 400;
  }
  .case-featured-meta {
    color: rgba(244,239,230,0.6);
    font-size: 13px;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
  }
  .case-featured-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(244,239,230,0.85);
    margin-bottom: 32px;
    max-width: 480px;
  }
  .case-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-cream);
    border-bottom: 1px solid rgba(244,239,230,0.4);
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
  }
  .case-featured-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
  .case-featured:hover .case-featured-link {
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
    gap: 16px;
  }
  .case-featured-image {
    aspect-ratio: 5/4;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-forest-deep);
  }
  .case-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .case-featured:hover .case-featured-image img {
    transform: scale(1.04);
  }

  .case-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .case-card-v2 {
    display: block;
    cursor: pointer;
  }
  .case-card-v2-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 18px;
    background: var(--color-forest-deep);
  }
  .case-card-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .case-card-v2:hover .case-card-v2-image img {
    transform: scale(1.04);
  }
  .case-card-v2-meta { padding: 0 4px; }
  .case-card-v2-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-cream);
    margin-bottom: 4px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
  .case-card-v2-loc {
    color: rgba(244,239,230,0.6);
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
  }
  .case-card-v2-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-brass);
    font-weight: 500;
  }

  .work-v2-cta {
    margin-top: 80px;
    text-align: center;
  }
  .work-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-cream);
    border-bottom: 1px solid rgba(244,239,230,0.3);
    padding-bottom: 6px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
  }
  .work-cta-link:hover {
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }
  .work-cta-link svg { width: 14px; height: 14px; }

  /* ABOUT */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-image {
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--color-forest);
  }
  .about-image img { width: 100%; height: 100%; object-fit: cover; }
  .about-content { max-width: 520px; }
  .about-content .section-eyebrow {
    color: var(--color-brass);
    margin-bottom: 16px;
    text-align: left;
  }
  .about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
  }
  .about-content p {
    color: var(--color-stone);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .about-content p:first-of-type {
    color: var(--color-charcoal);
    font-size: 19px;
  }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(31,58,46,0.15);
  }
  .about-stat-num {
    font-family: var(--font-serif);
    font-size: 44px;
    color: var(--color-brass);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
  }
  .about-stat-label {
    font-size: 12px;
    color: var(--color-stone);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
  }

  /* TESTIMONIAL GRID */
  .testimonials-section {
    padding: 120px 0;
    background: var(--color-cream-warm);
  }
  .testimonials-header {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
  }
  .testimonials-header .eyebrow {
    color: var(--color-brass);
    margin-bottom: 16px;
    display: block;
  }
  .testimonials-header h2 {
    color: var(--color-forest);
    margin-bottom: 16px;
  }
  .testimonials-header p {
    font-size: 16px;
    color: var(--color-stone);
    line-height: 1.6;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial-card {
    background: var(--color-cream);
    border: 1px solid rgba(31,58,46,0.08);
    border-radius: 4px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -16px rgba(31,58,46,0.18);
  }
  .testimonial-card-stars {
    color: var(--color-brass);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
  }
  .testimonial-card-quote {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-charcoal);
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
  }
  .testimonial-card-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(31,58,46,0.1);
    gap: 12px;
  }
  .testimonial-card-name { font-size: 13px; }
  .testimonial-card-name strong {
    font-weight: 500;
    color: var(--color-charcoal);
    display: block;
    margin-bottom: 2px;
  }
  .testimonial-card-name span {
    color: var(--color-stone);
    font-size: 12px;
  }
  .testimonial-card-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--color-stone);
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }
  .testimonial-card-source-icon {
    width: 22px;
    height: 22px;
    background: var(--color-cream-warm);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 11px;
    color: var(--color-forest);
  }
  .testimonials-footer {
    margin-top: 56px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .testimonials-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-charcoal);
  }
  .testimonials-rating .stars-mini {
    color: var(--color-brass);
    letter-spacing: 2px;
    font-size: 14px;
  }
  .testimonials-rating strong {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    font-weight: 500;
  }
  .testimonials-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-forest);
    border-bottom: 1px solid rgba(31,58,46,0.3);
    padding-bottom: 3px;
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
  }
  .testimonials-all-link:hover {
    gap: 14px;
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }
  .testimonials-all-link svg { width: 13px; height: 13px; }

  /* CTA D — single-line stepper form (on dark hero background) */
  .cta-stepper-section {
    padding: 120px 0;
    position: relative;
    background: var(--color-forest-deep);
    overflow: hidden;
  }
  .cta-stepper-image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .cta-stepper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cta-stepper-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16,40,32,0.74);
  }
  .cta-stepper-section > .container {
    position: relative;
    z-index: 1;
  }
  .cta-stepper-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
  }
  .cta-stepper-content .section-eyebrow {
    color: var(--color-brass);
    margin-bottom: 14px;
  }
  .cta-stepper-content .section-title {
    color: var(--color-cream);
    margin-bottom: 16px;
  }
  .cta-stepper-content .section-sub {
    color: rgba(244,239,230,0.85);
  }
  .cta-stepper-form {
    background: var(--color-cream);
    border: 1px solid rgba(244,239,230,0.15);
    border-radius: 999px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 940px;
    margin: 0 auto;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 24px 48px -16px rgba(0,0,0,0.32);
  }
  .cta-stepper-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-charcoal);
    min-width: 0;
  }
  .cta-stepper-input.field-name { flex: 1.1; }
  .cta-stepper-input.field-phone { flex: 1; }
  .cta-stepper-input.field-postcode { flex: 0.7; max-width: 130px; }
  .cta-stepper-input.field-email { flex: 1.3; }
  .cta-stepper-input:focus { outline: none; }
  .cta-stepper-input::placeholder { color: var(--color-stone); }
  .cta-stepper-divider {
    width: 1px;
    height: 24px;
    background: rgba(31,58,46,0.12);
    flex-shrink: 0;
  }
  .cta-stepper-submit {
    background: var(--color-forest);
    color: var(--color-cream);
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .cta-stepper-submit:hover { background: var(--color-brass); }
  .cta-stepper-submit svg { width: 13px; height: 13px; }
  .cta-stepper-meta {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(244,239,230,0.75);
  }
  .cta-stepper-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .cta-stepper-meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-brass);
  }

  /* CTA STEPPER — submission animation (button extends + content crossfade) */
  .cta-stepper-input {
    transition:
      flex-grow 650ms cubic-bezier(0.65, 0, 0.35, 1),
      flex-basis 650ms cubic-bezier(0.65, 0, 0.35, 1),
      max-width 650ms cubic-bezier(0.65, 0, 0.35, 1),
      padding 650ms cubic-bezier(0.65, 0, 0.35, 1),
      margin 650ms cubic-bezier(0.65, 0, 0.35, 1),
      opacity 250ms ease;
  }
  .cta-stepper-divider {
    transition:
      width 650ms cubic-bezier(0.65, 0, 0.35, 1),
      opacity 250ms ease;
  }
  .cta-stepper-submit {
    position: relative;
    overflow: hidden;
    transition:
      flex-grow 650ms cubic-bezier(0.65, 0, 0.35, 1),
      flex-basis 650ms cubic-bezier(0.65, 0, 0.35, 1),
      padding 650ms cubic-bezier(0.65, 0, 0.35, 1),
      border-radius 650ms cubic-bezier(0.65, 0, 0.35, 1);
  }
  .submit-state {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: opacity 250ms ease, transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .submit-state svg {
    width: 13px;
    height: 13px;
  }
  .submit-state-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 6px));
    opacity: 0;
    pointer-events: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    gap: 12px;
  }
  .submit-state-success .submit-success-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-brass);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    flex-shrink: 0;
  }
  .submit-state-success .submit-success-icon svg {
    width: 11px;
    height: 11px;
  }

  /* Submitted state — desktop */
  .cta-stepper-form.is-submitted .cta-stepper-input {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 0;
    max-width: 0;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .cta-stepper-form.is-submitted .cta-stepper-divider {
    width: 0;
    opacity: 0;
  }
  .cta-stepper-form.is-submitted .cta-stepper-submit {
    flex-grow: 1;
    flex-basis: auto;
    pointer-events: none;
    cursor: default;
  }
  .cta-stepper-form.is-submitted .submit-state-default {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 200ms ease, transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .cta-stepper-form.is-submitted .submit-state-success {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: opacity 400ms ease 450ms, transform 500ms cubic-bezier(0.16, 1, 0.3, 1) 450ms;
  }

  /* Mobile — placeholder (just text crossfade, refine after desktop is approved) */
  @media (max-width: 980px) {
    .cta-stepper-form.is-submitted .cta-stepper-input,
    .cta-stepper-form.is-submitted .cta-stepper-divider {
      /* On mobile the form is already column-stacked; collapse height instead of width */
      flex-grow: 0;
      flex-basis: 0;
      height: 0;
      min-height: 0;
      padding-top: 0;
      padding-bottom: 0;
    }
    .cta-stepper-input,
    .cta-stepper-divider {
      transition:
        flex-grow 600ms cubic-bezier(0.65, 0, 0.35, 1),
        flex-basis 600ms cubic-bezier(0.65, 0, 0.35, 1),
        height 600ms cubic-bezier(0.65, 0, 0.35, 1),
        padding 600ms cubic-bezier(0.65, 0, 0.35, 1),
        opacity 250ms ease;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .cta-stepper-input,
    .cta-stepper-divider,
    .cta-stepper-submit,
    .submit-state { transition-duration: 0.01ms !important; }
    .submit-state-success { transition-delay: 0ms !important; }
  }


  /* FOOTER */
  footer {
    background: var(--color-forest-deep);
    color: var(--color-cream);
    padding: 80px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 64px;
  }
  .footer-brand .logo { color: var(--color-cream); margin-bottom: 24px; }
  .footer-brand .logo .logo-name { color: var(--color-cream); }
  .footer-brand .logo .logo-tagline { color: rgba(244,239,230,0.6); }
  .footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 320px;
  }
  .footer-col h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--color-cream);
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .footer-col a:hover { opacity: 1; }
  .footer-col li.with-icon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }
  .footer-col li.with-icon svg {
    width: 14px;
    height: 14px;
    margin-top: 4px;
    flex-shrink: 0;
    opacity: 0.6;
  }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(244,239,230,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.55;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-social {
    display: flex;
    gap: 16px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(244,239,230,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    opacity: 1;
  }
  .footer-social a:hover {
    background: var(--color-cream);
    color: var(--color-forest);
    border-color: var(--color-cream);
  }
  .footer-social svg { width: 14px; height: 14px; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* Mobile */
  @media (max-width: 980px) {
    .nav { display: none; }
    .nav-cta { display: inline-flex; }
    .hero-v2-grid { grid-template-columns: 1fr; }
    .hero-v2-content {
      padding: 56px 24px 64px;
      max-width: 100%;
      margin: 0;
      order: 2;
    }
    .hero-v2-image {
      order: 1;
      min-height: 320px;
      max-height: 50vh;
    }
    .hero-v2 { min-height: auto; }
    .hero-v2-grid { min-height: auto; }
    .section { padding: 80px 0; }
    .services-v2 { padding: 80px 0; }
    .services-v2-stack { gap: 64px; }
    .service-row {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .service-row.reverse .service-row-content,
    .service-row.reverse .service-row-image {
      order: initial;
    }
    .service-row .service-row-image { order: 1; }
    .service-row .service-row-content { order: 2; }
    .work-v2 { padding: 80px 0; }
    .case-featured {
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 56px;
      padding-bottom: 56px;
    }
    .case-featured-image { order: 1; }
    .case-featured-content { order: 2; }
    .case-grid-v2 {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .testimonials-section { padding: 64px 0; }
    .testimonials-header { margin-bottom: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { padding: 24px; }
    .testimonials-footer { flex-direction: column; gap: 16px; margin-top: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
    .about-stat-num { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / 3; }
    .trust-inner { gap: 24px; }
    .trust-divider { display: none; }
  }

  @media (max-width: 600px) {
    .hero-trust-pill {
      flex-wrap: wrap;
      font-size: 12px;
      gap: 8px;
    }
    .hero-trust-divider { display: none; }
  }
  /* GDPR COOKIE CONSENT */
  .cc-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--color-cream);
    border: 1px solid rgba(31,58,46,0.12);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 24px 48px -12px rgba(31,58,46,0.32);
    padding: 24px;
    z-index: 999;
    display: none;
    animation: ccSlideUp 400ms ease both;
  }
  .cc-banner.is-visible { display: block; }
  @keyframes ccSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .cc-banner-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
  }
  .cc-banner-text { font-size: 14px; line-height: 1.55; color: var(--color-charcoal); }
  .cc-banner-text strong {
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--color-forest);
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
  }
  .cc-banner-text a {
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    transition: color 0.2s, border-color 0.2s;
  }
  .cc-banner-text a:hover { color: var(--color-brass); border-bottom-color: var(--color-brass); }
  .cc-banner-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
  }
  .cc-btn {
    padding: 11px 20px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .cc-btn-accept { background: var(--color-forest); color: var(--color-cream); }
  .cc-btn-accept:hover { background: var(--color-brass); }
  .cc-btn-reject { background: transparent; color: var(--color-charcoal); border-color: rgba(31,58,46,0.2); }
  .cc-btn-reject:hover { border-color: var(--color-forest); color: var(--color-forest); }
  .cc-btn-customise {
    background: transparent;
    color: var(--color-stone);
    border: none;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 11px 8px;
  }
  .cc-btn-customise:hover { color: var(--color-forest); }

  /* PREFERENCES MODAL */
  .cc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16,40,32,0.55);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: ccFadeIn 200ms ease both;
  }
  .cc-modal-overlay.is-visible { display: flex; }
  @keyframes ccFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .cc-modal {
    background: var(--color-cream);
    border-radius: 12px;
    max-width: 540px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    box-shadow: 0 32px 64px -16px rgba(16,40,32,0.4);
    animation: ccModalIn 300ms ease both;
  }
  @keyframes ccModalIn { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .cc-modal-header {
    padding: 28px 32px 16px;
    border-bottom: 1px solid rgba(31,58,46,0.08);
  }
  .cc-modal-eyebrow {
    font-size: 11px;
    color: var(--color-brass);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
  }
  .cc-modal-title {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-forest);
    margin-bottom: 8px;
    line-height: 1.2;
    font-weight: 400;
  }
  .cc-modal-sub { font-size: 14px; color: var(--color-stone); line-height: 1.6; }
  .cc-modal-sub a {
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
  }
  .cc-modal-body { padding: 8px 32px 24px; }
  .cc-category {
    border-bottom: 1px solid rgba(31,58,46,0.08);
    padding: 18px 0;
  }
  .cc-category:last-child { border-bottom: none; }
  .cc-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
  }
  .cc-category-name {
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--color-forest);
    font-weight: 500;
  }
  .cc-category-desc {
    font-size: 13px;
    color: var(--color-stone);
    line-height: 1.5;
  }
  .cc-category-required {
    font-size: 11px;
    color: var(--color-brass);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .cc-toggle {
    position: relative;
    width: 36px;
    height: 20px;
    background: rgba(31,58,46,0.18);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    border: none;
    padding: 0;
  }
  .cc-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--color-cream);
    border-radius: 50%;
    transition: left 0.2s;
  }
  .cc-toggle.is-on { background: var(--color-forest); }
  .cc-toggle.is-on::after { left: 18px; }
  .cc-toggle.is-disabled { opacity: 0.6; cursor: not-allowed; }
  .cc-modal-footer {
    padding: 20px 32px 24px;
    border-top: 1px solid rgba(31,58,46,0.08);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .cc-modal-footer .cc-btn { padding: 11px 18px; }

  /* FOOTER COOKIE LINK */
  .cc-footer-link {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
  }
  .cc-footer-link:hover { opacity: 1; }

  @media (max-width: 720px) {
    .cc-banner {
      bottom: 16px; left: 16px; right: 16px;
      padding: 20px;
    }
    .cc-banner-content { grid-template-columns: 1fr; gap: 16px; }
    .cc-banner-actions {
      flex-direction: column-reverse;
      align-items: stretch;
    }
    .cc-btn { width: 100%; text-align: center; }
    .cc-modal-header { padding: 24px 24px 14px; }
    .cc-modal-body { padding: 6px 24px 20px; }
    .cc-modal-footer { padding: 18px 24px 22px; flex-direction: column-reverse; }
    .cc-modal-footer .cc-btn { width: 100%; text-align: center; }
  }




  /* ============================================
     ADDITIONS FROM service-garden-design.html
     ============================================ */

.nav a.active {
    color: var(--color-forest);
    font-weight: 500;
  }

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-brass);
  }

.nav-cta::after { display: none !important; }

.service-hero {
    background: var(--color-cream-warm);
    position: relative;
  }

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 64vh;
  }

.service-hero-content {
    padding: 64px 56px 80px var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    margin-left: auto;
    width: 100%;
  }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-stone);
    margin-bottom: 32px;
    animation: fadeUp 700ms ease both 50ms;
  }

.breadcrumb a {
    color: var(--color-stone);
    transition: color 0.2s;
  }

.breadcrumb a:hover { color: var(--color-forest); }

.breadcrumb-sep {
    color: rgba(31,58,46,0.25);
  }

.breadcrumb-current {
    color: var(--color-charcoal);
  }

.service-hero-eyebrow {
    color: var(--color-brass);
    margin-bottom: 20px;
    display: block;
    animation: fadeUp 700ms ease both 200ms;
  }

.service-hero-title {
    color: var(--color-forest);
    margin-bottom: 24px;
    animation: fadeUp 700ms ease both 300ms;
  }

.service-hero-title em {
    font-style: italic;
  }

.service-hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-stone);
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeUp 700ms ease both 400ms;
  }

.service-hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 700ms ease both 500ms;
  }

.service-hero-image {
    position: relative;
    overflow: hidden;
    background: var(--color-forest);
  }

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

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    padding-bottom: 4px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
  }

.btn-text:hover {
    gap: 16px;
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }

.btn-text svg { width: 14px; height: 14px; }

.intro-section {
    padding: 120px 0;
  }

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

.intro-image {
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--color-forest);
  }

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

.intro-content {
    max-width: 520px;
  }

.intro-eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.intro-title {
    color: var(--color-forest);
    margin-bottom: 28px;
  }

.intro-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-stone);
    margin-bottom: 20px;
  }

.intro-content p:first-of-type {
    color: var(--color-charcoal);
    font-size: 19px;
    line-height: 1.6;
  }

.intro-content p strong {
    font-weight: 500;
    color: var(--color-charcoal);
  }

.process-section {
    padding: 120px 0;
    background: var(--color-cream-warm);
  }

.process-header {
    max-width: 720px;
    margin: 0 auto 72px;
    text-align: center;
  }

.process-eyebrow {
    color: var(--color-brass);
    margin-bottom: 16px;
    display: block;
  }

.process-title {
    color: var(--color-forest);
    margin-bottom: 24px;
  }

.process-sub {
    font-size: 18px;
    color: var(--color-stone);
    line-height: 1.6;
  }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }

.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: rgba(31,58,46,0.15);
    z-index: 0;
  }

.process-card {
    position: relative;
    background: var(--color-cream);
    border-radius: 4px;
    padding: 32px 28px;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -16px rgba(31,58,46,0.18);
  }

.process-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-forest);
    color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 400;
  }

.process-card-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-forest);
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 400;
  }

.process-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-stone);
  }

.process-card-time {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(31,58,46,0.1);
    font-size: 11px;
    color: var(--color-brass);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
  }

.included-section {
    padding: 120px 0;
  }

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }

.included-content { padding-top: 8px; }

.included-content .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.included-content .display-md {
    color: var(--color-forest);
    margin-bottom: 24px;
  }

.included-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-stone);
    margin-bottom: 24px;
    max-width: 480px;
  }

.included-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 32px;
  }

.included-list li {
    padding: 14px 0 14px 32px;
    border-bottom: 1px solid rgba(31,58,46,0.1);
    font-size: 15px;
    color: var(--color-charcoal);
    position: relative;
    line-height: 1.4;
  }

.included-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 18px;
    height: 18px;
    background: var(--color-brass);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 6.5l2 2 4-5' stroke='%23F4EFE6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
  }

.feat-case-section {
    padding: 120px 0;
    background: var(--color-forest);
    color: var(--color-cream);
  }

.feat-case-eyebrow {
    color: var(--color-brass);
    display: block;
    text-align: center;
    margin-bottom: 56px;
  }

.feat-case-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    cursor: pointer;
  }

.feat-case-content { padding: 16px 0; }

.feat-case-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brass);
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 500;
  }

.feat-case-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    color: var(--color-cream);
    margin-bottom: 14px;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

.feat-case-meta {
    color: rgba(244,239,230,0.6);
    font-size: 13px;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
  }

.feat-case-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    color: rgba(244,239,230,0.85);
    margin-bottom: 32px;
    max-width: 480px;
    padding-left: 20px;
    border-left: 2px solid var(--color-brass);
  }

.feat-case-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-cream);
    border-bottom: 1px solid rgba(244,239,230,0.4);
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
  }

.feat-case-link svg { width: 14px; height: 14px; }

.feat-case-grid:hover .feat-case-link {
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
    gap: 16px;
  }

.feat-case-image {
    aspect-ratio: 5/4;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-forest-deep);
  }

.feat-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

.feat-case-grid:hover .feat-case-image img {
    transform: scale(1.04);
  }

.faq-section {
    padding: 120px 0;
  }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
  }

.faq-side .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.faq-side h2 {
    color: var(--color-forest);
    margin-bottom: 24px;
  }

.faq-side p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-stone);
    margin-bottom: 24px;
  }

.faq-side a {
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    padding-bottom: 2px;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s, border-color 0.2s;
  }

.faq-side a:hover {
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }

.faq-list {
    border-top: 1px solid rgba(31,58,46,0.15);
  }

.faq-item {
    border-bottom: 1px solid rgba(31,58,46,0.15);
  }

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s;
  }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--color-forest); }

.faq-question {
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--color-forest);
    line-height: 1.3;
    font-weight: 400;
    flex: 1;
  }

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(31,58,46,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
  }

.faq-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
    color: var(--color-forest);
  }

.faq-item[open] .faq-toggle {
    background: var(--color-forest);
    border-color: var(--color-forest);
  }

.faq-item[open] .faq-toggle svg {
    transform: rotate(45deg);
    color: var(--color-cream);
  }

.faq-answer {
    padding: 0 64px 28px 0;
    color: var(--color-stone);
    font-size: 16px;
    line-height: 1.7;
  }

.faq-answer p { margin-bottom: 14px; }

.faq-answer p:last-child { margin-bottom: 0; }

.related-section {
    padding: 120px 0;
    background: var(--color-cream-warm);
  }

.related-header {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
  }

.related-header .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.related-header h2 {
    color: var(--color-forest);
  }

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

.related-card {
    background: var(--color-cream);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -20px rgba(31,58,46,0.22);
  }

.related-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-forest);
  }

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

.related-card:hover .related-card-image img { transform: scale(1.04); }

.related-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

.related-card-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--color-brass);
    margin-bottom: 10px;
    display: block;
  }

.related-card-title {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-forest);
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 400;
  }

.related-card-desc {
    color: var(--color-stone);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
  }

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-forest);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

.related-card-link svg {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
  }

.related-card:hover .related-card-link svg { transform: translateX(4px); }

.cta-stepper-content .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 14px;
  }

.cta-stepper-content h2 {
    color: var(--color-cream);
    margin-bottom: 16px;
  }

.cta-stepper-content p {
    color: rgba(244,239,230,0.85);
    font-size: 18px;
  }

@media (max-width: 580px) {
    .process-grid { grid-template-columns: 1fr; }
  }


  /* ============================================
     ADDITIONS FROM case-study-parterre-wirksworth.html
     ============================================ */

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

.project-hero {
    background: var(--color-cream-warm);
    padding: 56px 0 0;
  }

.project-hero-title-wrap {
    max-width: 920px;
    margin-bottom: 48px;
  }

.project-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brass);
    font-size: 11px;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

.project-hero-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--color-brass);
  }

.project-hero-title {
    color: var(--color-forest);
    margin-bottom: 24px;
  }

.project-hero-title em { font-style: italic; }

.project-hero-meta {
    color: var(--color-stone);
    font-size: 16px;
    letter-spacing: 0.04em;
  }

.project-hero-image {
    aspect-ratio: 21/10;
    overflow: hidden;
    background: var(--color-forest-deep);
  }

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

.facts-strip {
    background: var(--color-cream);
    border-bottom: 1px solid rgba(31,58,46,0.08);
    padding: 32px 0;
  }

.facts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    max-width: 1140px;
    margin: 0 auto;
  }

.fact { text-align: left; }

.fact-label {
    font-size: 11px;
    color: var(--color-stone);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
    margin-bottom: 6px;
  }

.fact-value {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-forest);
    line-height: 1.3;
    font-weight: 400;
  }

.narrative-section {
    padding: 120px 0;
  }

.narrative-content {
    max-width: 720px;
    margin: 0 auto;
  }

.narrative-content > .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
    text-align: center;
  }

.narrative-content h2 {
    color: var(--color-forest);
    margin-bottom: 32px;
    text-align: center;
  }

.narrative-content p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--color-charcoal);
    margin-bottom: 24px;
  }

.narrative-content p:first-of-type::first-letter {
    font-family: var(--font-serif);
    font-size: 64px;
    float: left;
    line-height: 0.9;
    margin: 6px 12px 0 0;
    color: var(--color-brass);
    font-weight: 400;
  }

.narrative-pullquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 28px;
    line-height: 1.4;
    color: var(--color-forest);
    border-left: 2px solid var(--color-brass);
    padding-left: 32px;
    margin: 48px 0;
    max-width: 600px;
  }

.narrative-h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-forest);
    margin: 40px 0 16px;
    font-weight: 400;
  }

.before-after-section {
    padding: 80px 0;
    background: var(--color-cream-warm);
  }

.before-after-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
  }

.before-after-header .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 12px;
  }

.before-after-header h2 {
    color: var(--color-forest);
  }

.before-after-wrap {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 4px;
    user-select: none;
    cursor: ew-resize;
  }

.before-after-after,
  .before-after-before {
    position: absolute;
    inset: 0;
  }

.before-after-after img,
  .before-after-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

.before-after-before {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s linear;
  }

.before-after-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--color-cream);
    transform: translateX(-50%);
    pointer-events: none;
    transition: left 0.05s linear;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.3);
  }

.before-after-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--color-cream);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }

.before-after-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5 4l-3 4 3 4M11 4l3 4-3 4' stroke='%231F3A2E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
  }

.before-after-label {
    position: absolute;
    top: 20px;
    background: rgba(16,40,32,0.85);
    color: var(--color-cream);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    pointer-events: none;
  }

.before-after-label.before { left: 20px; }

.before-after-label.after { right: 20px; }

.gallery-section {
    padding: 120px 0;
  }

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
  }

.gallery-header .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 12px;
  }

.gallery-header h2 {
    color: var(--color-forest);
  }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-forest);
  }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

.gallery-item:hover img { transform: scale(1.04); }

.gallery-1 { grid-column: 1 / 7; aspect-ratio: 4/3; }

.gallery-2 { grid-column: 7 / 13; aspect-ratio: 4/3; }

.gallery-3 { grid-column: 1 / 5; aspect-ratio: 3/4; }

.gallery-4 { grid-column: 5 / 13; aspect-ratio: 16/9; }

.gallery-5 { grid-column: 1 / 13; aspect-ratio: 21/9; }

.gallery-caption {
    grid-column: 1 / 13;
    text-align: center;
    color: var(--color-stone);
    font-size: 13px;
    font-style: italic;
    margin-top: 8px;
  }

.materials-section {
    padding: 120px 0;
    background: var(--color-forest);
    color: var(--color-cream);
  }

.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    max-width: 1140px;
    margin: 0 auto;
  }

.materials-content .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.materials-content h2 {
    color: var(--color-cream);
    margin-bottom: 24px;
  }

.materials-content p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(244,239,230,0.85);
    max-width: 480px;
  }

.specs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

.spec-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(244,239,230,0.12);
  }

.spec-row:first-child {
    border-top: 1px solid rgba(244,239,230,0.12);
  }

.spec-label {
    font-size: 12px;
    color: var(--color-brass);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 2px;
  }

.spec-value {
    color: var(--color-cream);
    font-size: 15px;
    line-height: 1.6;
  }

.spec-value strong { font-weight: 500; }

.testimonial-section {
    padding: 140px 0;
    background: var(--color-cream);
  }

.testimonial-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }

.stars {
    color: var(--color-brass);
    font-size: 18px;
    letter-spacing: 6px;
    margin-bottom: 32px;
    display: inline-block;
    line-height: 1;
  }

.testimonial-quote {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--color-forest);
    margin-bottom: 48px;
    font-style: italic;
  }

.testimonial-quote::before { content: '“'; }

.testimonial-quote::after { content: '”'; }

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-cream-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-forest);
    font-weight: 500;
  }

.testimonial-name strong {
    font-weight: 500;
    color: var(--color-charcoal);
    display: block;
    margin-bottom: 2px;
  }

.testimonial-name span { font-size: 13px; color: var(--color-stone); }

.related-header-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    padding-bottom: 3px;
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
  }

.related-header-link:hover {
    gap: 14px;
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }

.related-header-link svg { width: 13px; height: 13px; }

.related-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 18px;
    background: var(--color-forest);
  }

.related-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

.related-card:hover .related-image img { transform: scale(1.04); }

.related-meta { padding: 0 4px; }

.related-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    margin-bottom: 4px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

.related-loc {
    color: var(--color-stone);
    font-size: 13px;
    letter-spacing: 0.04em;
  }


  /* ============================================
     ADDITIONS FROM about.html
     ============================================ */

.about-hero {
    background: var(--color-cream-warm);
    padding: 64px 0 80px;
  }

.about-hero-eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.about-hero-title {
    color: var(--color-forest);
    margin-bottom: 32px;
    max-width: 920px;
  }

.about-hero-title em { font-style: italic; }

.about-hero-sub {
    font-size: 19px;
    line-height: 1.7;
    color: var(--color-stone);
    max-width: 620px;
  }

.about-hero-sub strong {
    color: var(--color-charcoal);
    font-weight: 500;
  }

.about-hero-image {
    aspect-ratio: 21/9;
    overflow: hidden;
    background: var(--color-forest-deep);
  }

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

.stats-strip {
    background: var(--color-cream);
    padding: 56px 0;
    border-bottom: 1px solid rgba(31,58,46,0.08);
  }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
  }

.stat-item {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(31,58,46,0.1);
  }

.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 56px);
    color: var(--color-brass);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 12px;
  }

.stat-label {
    font-size: 12px;
    color: var(--color-stone);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 500;
  }

.story-section {
    padding: 120px 0;
  }

.story-content {
    max-width: 720px;
    margin: 0 auto;
  }

.story-content > .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
    text-align: center;
  }

.story-content h2 {
    color: var(--color-forest);
    margin-bottom: 40px;
    text-align: center;
  }

.story-content p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--color-charcoal);
    margin-bottom: 24px;
  }

.story-content p:first-of-type::first-letter {
    font-family: var(--font-serif);
    font-size: 64px;
    float: left;
    line-height: 0.9;
    margin: 6px 12px 0 0;
    color: var(--color-brass);
    font-weight: 400;
  }

.story-pullquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 28px;
    line-height: 1.4;
    color: var(--color-forest);
    border-left: 2px solid var(--color-brass);
    padding-left: 32px;
    margin: 48px 0;
    max-width: 600px;
  }

.values-section {
    padding: 120px 0;
    background: var(--color-cream-warm);
  }

.values-header {
    max-width: 720px;
    margin: 0 auto 72px;
    text-align: center;
  }

.values-header .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.values-header h2 {
    color: var(--color-forest);
    margin-bottom: 24px;
  }

.values-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-stone);
  }

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

.value-card {
    background: var(--color-cream);
    border-radius: 4px;
    padding: 40px 32px;
  }

.value-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 32px;
    color: var(--color-brass);
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 300;
    display: block;
  }

.value-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    margin-bottom: 14px;
    line-height: 1.2;
    font-weight: 400;
  }

.value-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-stone);
  }

.team-section {
    padding: 120px 0;
  }

.team-header {
    margin-bottom: 64px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }

.team-header .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.team-header h2 {
    color: var(--color-forest);
    margin: 0;
  }

.team-header p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-stone);
    margin: 0;
  }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1140px;
    margin: 0 auto;
  }

.team-member { display: block; }

.team-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--color-forest);
  }

.team-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.4s ease;
    filter: grayscale(0.2);
  }

.team-member:hover .team-image img {
    transform: scale(1.04);
    filter: grayscale(0);
  }

.team-name {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    margin-bottom: 4px;
    font-weight: 400;
    line-height: 1.2;
  }

.team-role {
    font-size: 13px;
    color: var(--color-brass);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }

.team-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-stone);
  }

.studio-section {
    padding: 120px 0;
    background: var(--color-forest);
    color: var(--color-cream);
  }

.studio-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
  }

.studio-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-forest-deep);
  }

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

.studio-content .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.studio-content h2 {
    color: var(--color-cream);
    margin-bottom: 28px;
  }

.studio-content p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(244,239,230,0.85);
    margin-bottom: 20px;
  }

.studio-list {
    list-style: none;
    margin-top: 32px;
    border-top: 1px solid rgba(244,239,230,0.15);
  }

.studio-list li {
    padding: 16px 0 16px 24px;
    border-bottom: 1px solid rgba(244,239,230,0.15);
    font-size: 15px;
    color: var(--color-cream);
    position: relative;
    line-height: 1.5;
  }

.studio-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-brass);
  }

.accreditations-section {
    padding: 120px 0;
  }

.accreditations-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
  }

.accreditations-header .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.accreditations-header h2 {
    color: var(--color-forest);
    margin-bottom: 24px;
  }

.accreditations-header p {
    font-size: 17px;
    color: var(--color-stone);
    line-height: 1.6;
  }

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
  }

.accreditation-card {
    background: var(--color-cream-warm);
    border-radius: 4px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.accreditation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -16px rgba(31,58,46,0.18);
  }

.accreditation-name {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-forest);
    margin-bottom: 8px;
    line-height: 1.1;
    font-weight: 400;
  }

.accreditation-meta {
    font-size: 11px;
    color: var(--color-stone);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
  }


  /* ============================================
     ADDITIONS FROM our-work.html
     ============================================ */

.page-intro {
    background: var(--color-cream-warm);
    padding: 64px 0 80px;
  }

.page-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    max-width: 1140px;
    margin: 0 auto;
  }

.page-intro-eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.page-intro-title {
    color: var(--color-forest);
    margin-bottom: 0;
  }

.page-intro-title em { font-style: italic; }

.page-intro-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-stone);
    max-width: 480px;
  }

.page-intro-description strong {
    color: var(--color-charcoal);
    font-weight: 500;
  }

.filters-section {
    background: var(--color-cream);
    padding: 32px 0;
    border-bottom: 1px solid rgba(31,58,46,0.08);
    position: sticky;
    top: 73px;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(244,239,230,0.95);
  }

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

.filters-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

.filters-label {
    font-size: 11px;
    color: var(--color-stone);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
    margin-right: 8px;
  }

.filter-pill {
    background: transparent;
    border: 1px solid rgba(31,58,46,0.15);
    color: var(--color-charcoal);
    padding: 7px 14px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
  }

.filter-pill:hover {
    border-color: var(--color-forest);
    color: var(--color-forest);
  }

.filter-pill.active {
    background: var(--color-forest);
    color: var(--color-cream);
    border-color: var(--color-forest);
    font-weight: 500;
  }

.filter-pill .count {
    font-size: 11px;
    opacity: 0.6;
    margin-left: 4px;
  }

.filter-pill.active .count { opacity: 0.7; }

.filters-count {
    font-size: 13px;
    color: var(--color-stone);
  }

.filters-count strong {
    color: var(--color-charcoal);
    font-weight: 500;
  }

.featured-section {
    padding: 80px 0;
  }

.featured-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
  }

.featured-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-forest);
  }

.featured-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

.featured-link:hover .featured-image img { transform: scale(1.03); }

.featured-link { display: contents; }

.featured-content { padding: 16px 0; }

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--color-brass);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

.featured-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--color-brass);
  }

.featured-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.4vw, 42px);
    color: var(--color-forest);
    margin-bottom: 14px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-weight: 400;
  }

.featured-meta {
    color: var(--color-stone);
    font-size: 13px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }

.featured-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-stone);
    margin-bottom: 28px;
    max-width: 480px;
  }

.featured-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
  }

.featured-link-cta svg { width: 14px; height: 14px; }

.featured-link:hover .featured-link-cta {
    gap: 16px;
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }

.projects-section {
    padding: 0 0 120px;
  }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 32px;
  }

.project-card { display: block; cursor: pointer; }

.project-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--color-forest-deep);
    position: relative;
  }

.project-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

.project-card:hover .project-card-image img { transform: scale(1.04); }

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(16,40,32,0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
  }

.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-overlay-arrow {
    width: 36px;
    height: 36px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
  }

.project-card-overlay-arrow svg { width: 14px; height: 14px; }

.project-card-meta { padding: 0 4px; }

.project-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    margin-bottom: 6px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

.project-card-loc {
    color: var(--color-stone);
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
  }

.project-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

.project-card-tag {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-brass);
    font-weight: 500;
    padding: 3px 8px;
    border: 1px solid rgba(184,137,90,0.3);
    border-radius: 3px;
  }

.load-more-wrap {
    text-align: center;
    margin-top: 80px;
  }

.load-more {
    background: transparent;
    border: 1px solid rgba(31,58,46,0.2);
    color: var(--color-forest);
    padding: 14px 32px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

.load-more:hover {
    background: var(--color-forest);
    color: var(--color-cream);
    border-color: var(--color-forest);
  }

.load-more svg { width: 12px; height: 12px; }

.load-more-meta {
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-stone);
  }


  /* ============================================
     ADDITIONS FROM journal.html
     ============================================ */

.featured-meta-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-stone);
    font-weight: 500;
  }

.featured-meta-divider {
    width: 18px;
    height: 1px;
    background: rgba(31, 58, 46, 0.2);
  }

.featured-link:hover .featured-title { color: var(--color-brass); }

.featured-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-stone);
    margin-bottom: 24px;
  }

.featured-meta-bottom {
    color: var(--color-stone);
    font-size: 13px;
    letter-spacing: 0.04em;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

.featured-meta-dot {
    width: 3px; height: 3px;
    background: var(--color-stone);
    border-radius: 50%;
    opacity: 0.5;
  }

.posts-section { padding: 0 0 120px; }

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 32px;
  }

.post-card {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

.post-card.is-hidden,
  .featured-link.is-hidden { display: none; }

.post-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--color-forest-deep);
    position: relative;
  }

.post-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

.post-card:hover .post-card-image img { transform: scale(1.04); }

.post-card-category {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brass);
    font-weight: 500;
    margin-bottom: 10px;
  }

.post-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }

.post-card:hover .post-card-title { color: var(--color-brass); }

.post-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-stone);
    margin-bottom: 14px;
  }

.post-card-meta {
    color: var(--color-stone);
    font-size: 12px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 12px;
  }

.post-card-meta-dot {
    width: 3px; height: 3px;
    background: var(--color-stone);
    border-radius: 50%;
    opacity: 0.5;
  }

.empty-state {
    text-align: center;
    padding: 80px 24px;
    display: none;
  }

.empty-state.is-visible { display: block; }

.empty-state-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    margin-bottom: 8px;
    font-weight: 400;
  }

.empty-state-text {
    color: var(--color-stone);
    font-size: 14px;
  }

.footer-bottom span a { color: inherit; text-decoration: none; margin: 0 4px; }


  /* ============================================
     ADDITIONS FROM journal-why-we-dont-lay-paving-in-october.html
     ============================================ */

.container-article { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }

.article-hero {
    background: var(--color-cream-warm);
    padding: 48px 0 56px;
  }

.article-hero-inner {
    max-width: 800px;
    margin: 0 auto;
  }

.article-category {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brass);
    font-weight: 500;
    margin-bottom: 24px;
  }

.article-title {
    color: var(--color-forest);
    margin-bottom: 28px;
  }

.article-title em { font-style: italic; }

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--color-stone);
    font-size: 14px;
  }

.article-meta-author {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

.article-meta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--color-forest);
    font-weight: 500;
  }

.article-meta-author strong {
    color: var(--color-charcoal);
    font-weight: 500;
    display: block;
    line-height: 1.2;
    font-size: 14px;
  }

.article-meta-author span {
    font-size: 12px;
    color: var(--color-stone);
  }

.article-meta-divider {
    width: 1px; height: 24px;
    background: rgba(31,58,46,0.15);
  }

.article-meta-detail {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

.article-hero-image {
    aspect-ratio: 21/10;
    overflow: hidden;
    background: var(--color-forest-deep);
  }

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

.article-body {
    padding: 80px 0 100px;
  }

.article-body > p,
  .article-body > h2,
  .article-body > h3,
  .article-body > ul,
  .article-body > ol,
  .article-body > .article-pullquote {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

.article-body p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 24px;
  }

.article-body p:first-of-type::first-letter {
    font-family: var(--font-serif);
    font-size: 64px;
    float: left;
    line-height: 0.9;
    margin: 6px 12px 0 0;
    color: var(--color-brass);
    font-weight: 400;
  }

.article-body p strong {
    color: var(--color-charcoal);
    font-weight: 500;
  }

.article-body p em {
    font-style: italic;
  }

.article-body h2 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 2.8vw, 32px);
    color: var(--color-forest);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 400;
    margin-top: 56px;
    margin-bottom: 20px;
  }

.article-body h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    line-height: 1.25;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 14px;
  }

.article-body ul,
  .article-body ol {
    margin-bottom: 28px;
    list-style: none;
  }

.article-body ul li,
  .article-body ol li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-charcoal);
  }

.article-body ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-brass);
  }

.article-body ol {
    counter-reset: ol-counter;
  }

.article-body ol li {
    counter-increment: ol-counter;
  }

.article-body ol li::before {
    content: counter(ol-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--color-brass);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    font-weight: 400;
  }

.article-pullquote {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.4;
    color: var(--color-forest);
    border-left: 3px solid var(--color-brass);
    padding: 4px 0 4px 28px;
    margin: 48px auto;
    font-style: italic;
    font-weight: 400;
  }

.article-figure {
    max-width: 1000px;
    margin: 56px auto;
    padding: 0 var(--gutter);
  }

.article-figure-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-forest-deep);
  }

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

.article-figure-caption {
    margin-top: 12px;
    font-size: 13px;
    font-style: italic;
    color: var(--color-stone);
    text-align: center;
  }

.author-card-section {
    padding: 64px 0 80px;
  }

.author-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--color-cream-warm);
    border-radius: 8px;
    padding: 32px 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

.author-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    font-weight: 500;
    flex-shrink: 0;
  }

.author-card-eyebrow {
    color: var(--color-brass);
    margin-bottom: 8px;
    display: block;
  }

.author-card-name {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.2;
  }

.author-card-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-stone);
  }

.related-category {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brass);
    font-weight: 500;
    margin-bottom: 8px;
  }

.related-card:hover .related-title { color: var(--color-brass); }


  /* ============================================
     ADDITIONS FROM contact.html
     ============================================ */

.contact-intro {
    background: var(--color-cream-warm);
    padding: 64px 0 80px;
  }

.contact-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    max-width: 1140px;
  }

.contact-intro-eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.contact-intro-title {
    color: var(--color-forest);
    margin-bottom: 0;
  }

.contact-intro-title em { font-style: italic; }

.contact-intro-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-stone);
    max-width: 480px;
  }

.contact-intro-description strong {
    color: var(--color-charcoal);
    font-weight: 500;
  }

.methods-section {
    background: var(--color-cream);
    padding: 32px 0;
    border-bottom: 1px solid rgba(31,58,46,0.08);
  }

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1140px;
    margin: 0 auto;
  }

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 32px;
    border-right: 1px solid rgba(31,58,46,0.1);
  }

.method-item:last-child { border-right: none; }

.method-icon {
    width: 44px;
    height: 44px;
    background: var(--color-cream-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    flex-shrink: 0;
  }

.method-icon svg { width: 18px; height: 18px; }

.method-label {
    font-size: 11px;
    color: var(--color-stone);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
  }

.method-value {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-forest);
    line-height: 1.2;
    font-weight: 400;
    transition: color 0.2s;
  }

.method-item a:hover .method-value { color: var(--color-brass); }

.contact-main {
    padding: 100px 0;
  }

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    max-width: 1140px;
    margin: 0 auto;
  }

.contact-form-wrap {
    background: var(--color-cream-warm);
    padding: 48px 44px;
    border-radius: 8px;
  }

.form-eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 12px;
  }

.form-title {
    font-family: var(--font-serif);
    font-size: 30px;
    color: var(--color-forest);
    margin-bottom: 12px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

.form-sub {
    font-size: 15px;
    color: var(--color-stone);
    line-height: 1.6;
    margin-bottom: 32px;
  }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-field { display: flex; flex-direction: column; }

.form-label {
    font-size: 12px;
    color: var(--color-charcoal);
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

.form-label .required {
    color: var(--color-brass);
    font-weight: 500;
    margin-left: 2px;
  }

.form-label .optional {
    color: var(--color-stone);
    font-weight: 400;
    font-size: 11px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

.form-input,
  .form-select,
  .form-textarea {
    background: var(--color-cream);
    border: 1px solid rgba(31,58,46,0.15);
    border-radius: 6px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-charcoal);
    width: 100%;
    transition: border-color 0.2s, background 0.2s;
  }

.form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    outline: none;
    border-color: var(--color-forest);
    background: #fff;
  }

.form-input::placeholder,
  .form-textarea::placeholder {
    color: var(--color-stone);
  }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%231F3A2E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
  }

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
  }

.form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
  }

.form-checkbox {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--color-forest);
    cursor: pointer;
    flex-shrink: 0;
  }

.form-checkbox-label {
    font-size: 13px;
    color: var(--color-stone);
    line-height: 1.5;
    cursor: pointer;
  }

.form-checkbox-label a {
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    transition: color 0.2s, border-color 0.2s;
  }

.form-checkbox-label a:hover {
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }

.form-submit {
    background: var(--color-forest);
    color: var(--color-cream);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
  }

.form-submit:hover {
    background: var(--color-brass);
    transform: translateY(-1px);
  }

.form-submit svg { width: 14px; height: 14px; }

.form-trust {
    margin-top: 16px;
    font-size: 12px;
    color: var(--color-stone);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
  }

.form-trust svg {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--color-forest);
  }

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

.side-block { padding: 0; }

.side-block .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 14px;
  }

.side-block h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    margin-bottom: 14px;
    line-height: 1.2;
    font-weight: 400;
  }

.side-block p {
    font-size: 15px;
    color: var(--color-stone);
    line-height: 1.7;
    margin-bottom: 12px;
  }

.side-block strong {
    color: var(--color-charcoal);
    font-weight: 500;
  }

.response-card {
    background: var(--color-cream-warm);
    padding: 28px;
    border-radius: 8px;
    border-left: 3px solid var(--color-brass);
  }

.response-card .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 8px;
  }

.response-card-promise {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 12px;
  }

.response-card-meta {
    font-size: 13px;
    color: var(--color-stone);
    line-height: 1.6;
  }

.hours-list {
    list-style: none;
    border-top: 1px solid rgba(31,58,46,0.1);
  }

.hours-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(31,58,46,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
  }

.hours-day { color: var(--color-charcoal); }

.hours-time { color: var(--color-stone); }

.hours-time.closed { color: var(--color-stone); font-style: italic; }

.studio-map-section {
    background: var(--color-cream-warm);
    padding: 100px 0;
  }

.studio-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
  }

.studio-map-content .eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.studio-map-content h2 {
    color: var(--color-forest);
    margin-bottom: 24px;
  }

.studio-map-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-stone);
    margin-bottom: 20px;
  }

.studio-address {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-forest);
    line-height: 1.4;
    margin-bottom: 28px;
    font-weight: 400;
  }

.studio-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
  }

.studio-directions-link:hover {
    gap: 16px;
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }

.studio-directions-link svg { width: 14px; height: 14px; }

.map-placeholder {
    aspect-ratio: 4/3;
    background: var(--color-cream);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(31,58,46,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

.map-placeholder-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(244,239,230,0.4), rgba(244,239,230,0.7)),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Crect width='400' height='300' fill='%23E8DFCD'/%3E%3Cpath d='M0 100 Q100 80 200 110 T400 100 L400 300 L0 300Z' fill='%23C8C2B0' opacity='0.5'/%3E%3Cpath d='M0 200 Q100 180 200 210 T400 200 L400 300 L0 300Z' fill='%231F3A2E' opacity='0.06'/%3E%3Cpath d='M50 50 L100 50 L100 100 L50 100Z' fill='%231F3A2E' opacity='0.04'/%3E%3Cpath d='M150 70 L200 70 L200 130 L150 130Z' fill='%231F3A2E' opacity='0.04'/%3E%3Cpath d='M280 90 L340 90 L340 160 L280 160Z' fill='%231F3A2E' opacity='0.04'/%3E%3Cpath d='M0 150 L400 150' stroke='%231F3A2E' stroke-width='1' opacity='0.08'/%3E%3Cpath d='M200 0 L200 300' stroke='%231F3A2E' stroke-width='1' opacity='0.08'/%3E%3C/svg%3E");
    background-size: cover;
  }

.map-pin {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

.map-pin-marker {
    width: 48px;
    height: 48px;
    background: var(--color-brass);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 8px 24px rgba(31,58,46,0.25);
    position: relative;
  }

.map-pin-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--color-cream);
    border-radius: 50%;
  }

.map-pin-label {
    background: var(--color-cream);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-charcoal);
    box-shadow: 0 4px 12px rgba(31,58,46,0.12);
    letter-spacing: 0.04em;
  }

.map-placeholder-note {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(244,239,230,0.95);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--color-stone);
    z-index: 1;
    backdrop-filter: blur(4px);
  }


  /* ============================================
     ADDITIONS FROM services.html
     ============================================ */

.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
  }

.trust-strip-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

.trust-strip-num {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-forest);
    font-weight: 400;
    line-height: 1;
  }

.trust-strip-label {
    font-size: 13px;
    color: var(--color-stone);
    letter-spacing: 0.04em;
  }

.trust-strip-divider {
    width: 1px;
    height: 24px;
    background: rgba(31,58,46,0.15);
  }

.services-section {
    padding: 100px 0 120px;
  }

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1140px;
    margin: 0 auto;
  }

.service-card {
    background: var(--color-cream);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.4s ease;
  }

.service-card:hover {
    transform: translateY(-4px);
  }

.service-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 28px;
    background: var(--color-forest-deep);
  }

.service-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

.service-card:hover .service-card-image img {
    transform: scale(1.04);
  }

.service-card-num {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-brass);
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    font-weight: 400;
  }

.service-card-title {
    font-family: var(--font-serif);
    font-size: 30px;
    color: var(--color-forest);
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 400;
    transition: color 0.2s;
  }

.service-card:hover .service-card-title { color: var(--color-brass); }

.service-card-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-stone);
    margin-bottom: 24px;
  }

.service-card-includes {
    list-style: none;
    margin-bottom: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(31,58,46,0.1);
  }

.service-card-includes-label {
    font-size: 11px;
    color: var(--color-stone);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 14px;
    display: block;
  }

.service-card-includes li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-charcoal);
    padding: 6px 0 6px 22px;
    position: relative;
  }

.service-card-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 1px;
    background: var(--color-brass);
  }

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
    align-self: flex-start;
    margin-top: auto;
  }

.service-card-link svg { width: 13px; height: 13px; }

.service-card:hover .service-card-link {
    gap: 14px;
    color: var(--color-brass);
    border-bottom-color: var(--color-brass);
  }


  /* ============================================
     ADDITIONS FROM privacy.html
     ============================================ */

.container-legal { max-width: 800px; margin: 0 auto; padding: 0 var(--gutter); }

.legal-intro {
    background: var(--color-cream-warm);
    padding: 64px 0 64px;
  }

.legal-intro-eyebrow {
    color: var(--color-brass);
    display: block;
    margin-bottom: 16px;
  }

.legal-intro-title { color: var(--color-forest); margin-bottom: 16px; }

.legal-intro-meta {
    font-size: 14px;
    color: var(--color-stone);
    letter-spacing: 0.04em;
  }

.toc {
    background: var(--color-cream);
    padding: 32px 0;
    border-bottom: 1px solid rgba(31,58,46,0.08);
  }

.toc-eyebrow {
    color: var(--color-brass);
    margin-bottom: 16px;
    display: block;
  }

.toc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 32px;
  }

.toc a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-charcoal);
    transition: color 0.2s, padding 0.2s;
  }

.toc a:hover {
    color: var(--color-forest);
    padding-left: 8px;
  }

.toc-num {
    color: var(--color-brass);
    margin-right: 10px;
    font-family: var(--font-serif);
    font-style: italic;
  }

.legal-content {
    padding: 80px 0 120px;
  }

.legal-section { margin-bottom: 64px; scroll-margin-top: 100px; }

.legal-section:last-child { margin-bottom: 0; }

.legal-section-num {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-brass);
    font-size: 18px;
    margin-bottom: 4px;
    display: block;
    font-weight: 300;
  }

.legal-section h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-forest);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 400;
  }

.legal-section h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--color-forest);
    margin: 28px 0 10px;
    font-weight: 500;
  }

.legal-section p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-charcoal);
    margin-bottom: 16px;
  }

.legal-section a {
    color: var(--color-forest);
    border-bottom: 1px solid var(--color-forest);
    transition: color 0.2s, border-color 0.2s;
  }

.legal-section a:hover { color: var(--color-brass); border-bottom-color: var(--color-brass); }

.legal-section ul {
    list-style: none;
    margin: 16px 0;
  }

.legal-section ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
  }

.legal-section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-brass);
  }

.legal-section strong {
    font-weight: 500;
    color: var(--color-charcoal);
  }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
  }

.legal-table th,
  .legal-table td {
    padding: 14px 14px 14px 0;
    border-bottom: 1px solid rgba(31,58,46,0.1);
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
  }

.legal-table th {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--color-stone);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom-color: rgba(31,58,46,0.2);
    padding-bottom: 10px;
  }

.legal-table td:first-child { font-weight: 500; color: var(--color-forest); }

.legal-callout {
    background: var(--color-cream-warm);
    border-left: 3px solid var(--color-brass);
    padding: 20px 24px;
    border-radius: 0 6px 6px 0;
    margin: 24px 0;
  }

.legal-callout p { margin-bottom: 0; font-size: 15px; }

.legal-callout strong { color: var(--color-forest); }

.footer-bottom span a:hover { opacity: 1; }