/* ============================================================
   Blok Design Group — Site Stylesheet
   Consolidated from per-page styles. Base rules are shared;
   page-specific rules are scoped with a body.page-<name> class.
   ============================================================ */

/* ---------- Base / shared across all pages ---------- */

:root {
  --green-900:#0d1810;
  --green-800:#1a2e1e;
  --green-700:#233d28;
  --green-600:#2d5a34;
  --green-500:#3d7246;
  --green-400:#4a7c52;
  --green-300:#7aaa82;
  --green-200:#b8d4bc;
  --green-100:#deeee1;
  --green-50:#f0f7f1;
  --cream:#f5f2eb;
  --warm-white:#faf9f6;
  --stone:#e8e4dc;
  --mid-stone:#c4bdb0;
  --charcoal:#3a3530;
  --ink:#1c1916;
  --font-display:"Spectral",Georgia,serif;
  --font-body:"Open Sans",sans-serif;
  --ease:cubic-bezier(0.16,1,0.3,1);
}

html {
  font-size:16px;
  scroll-behavior:smooth;
}

body {
  background:var(--warm-white);
  color:var(--ink);
  font-family:var(--font-body);
  font-weight:400;
  line-height:1.6;
  overflow-x:hidden;
}

nav {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 48px;
  height:72px;
  background:rgba(245,242,235,0.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--stone);
}

.nav-logo {
  display:flex;
  align-items:center;
  text-decoration:none;
}

.nav-logo-svg {
  height:28px;
  width:auto;
  display:flex;
  align-items:center;
}

.nav-logo-svg svg {
  height:28px;
  width:auto;
}

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

.nav-links a {
  font-family:var(--font-body);
  font-size:12px;
  font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--charcoal);
  text-decoration:none;
  transition:color 0.2s;
}

.nav-links a:hover,.nav-links a.active {
  color:var(--green-600);
}

.nav-cta {
  color:var(--warm-white) !important;
  background:var(--green-600);
  padding:10px 22px;
}

.nav-cta:hover {
  background:var(--green-700) !important;
}

.nav-hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
  padding:4px;
}

.nav-hamburger span {
  display:block;
  width:26px;
  height:1.5px;
  background:var(--green-800);
  transition:all 0.3s var(--ease);
}

.nav-hamburger.open span:nth-child(1) {
  transform:translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity:0;
}

.nav-hamburger.open span:nth-child(3) {
  transform:translateY(-6.5px) rotate(-45deg);
}

.nav-mobile-menu {
  display:none;
  position:fixed;
  top:72px;
  left:0;
  right:0;
  background:var(--warm-white);
  border-bottom:1px solid var(--stone);
  padding:24px 32px;
  z-index:199;
  flex-direction:column;
}

.nav-mobile-menu.open {
  display:flex;
}

.nav-mobile-menu a {
  font-family:var(--font-body);
  font-size:13px;
  font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--charcoal);
  text-decoration:none;
  padding:16px 0;
  border-bottom:1px solid var(--stone);
  transition:color 0.2s;
}

.nav-mobile-menu a:last-child {
  border:none;
}

.nav-mobile-menu a:hover {
  color:var(--green-600);
}

.site-footer {
  background:var(--green-900);
  padding:56px 48px 32px;
}

.footer-top {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  margin-bottom:32px;
}

.footer-logo-svg {
  margin-bottom:16px;
}

.footer-logo-svg svg {
  height:24px;
  width:auto;
}

.footer-brand-desc {
  font-size:12px;
  font-weight:300;
  line-height:1.7;
  color:rgba(245,242,235,0.45);
  max-width:240px;
  margin-bottom:20px;
}

.footer-col-title {
  font-family:var(--font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--green-400);
  margin-bottom:20px;
}

.footer-links {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-links a {
  font-size:13px;
  font-weight:300;
  color:rgba(245,242,235,0.55);
  text-decoration:none;
  transition:color 0.2s;
}

.footer-links a:hover {
  color:var(--green-300);
}

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

.footer-copy {
  font-size:11px;
  font-weight:300;
  color:rgba(245,242,235,0.3);
  letter-spacing:0.05em;
}

.footer-link {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--green-400);
  text-decoration:none;
  transition:color 0.2s;
}

.footer-link:hover {
  color:var(--green-300);
}

@media (max-width:900px) {
  nav {
    padding:0 24px;
  }
  .nav-links {
    display:none;
  }
  .nav-hamburger {
    display:flex;
  }
  .site-footer {
    padding:48px 24px 24px;
  }
  .footer-top {
    grid-template-columns:1fr 1fr;
    gap:32px;
  }
}

/* ---------- Shared section styles (grouped by the pages that use them) ---------- */

/* Pages: about, auction-houses, catalogue-design, contact, digital-preparation, galleries, leadership, luxury-retailers, museums, photography, print-optimisation, restoration, retouching, services, who-we-work-with, work, work-auctions, work-fashion, work-jewellery, work-watches */
.page-title em {
  font-style:italic;
  color:var(--green-300);
}

/* Pages: about, auction-houses, catalogue-design, digital-preparation, galleries, index, leadership, luxury-retailers, museums, photography, print-optimisation, restoration, retouching, services, who-we-work-with, work, work-auctions, work-fashion, work-jewellery, work-watches */
.btn-primary:hover {
  background:var(--green-500);
}

/* Pages: auction-houses, catalogue-design, digital-preparation, galleries, luxury-retailers, museums, photography, print-optimisation, restoration, retouching, services, who-we-work-with, work, work-auctions, work-fashion, work-jewellery, work-watches */
.cta-band {
  background:var(--green-700);
  padding:72px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.cta-band h2 {
  font-family:var(--font-display);
  font-size:clamp(24px,3vw,40px);
  font-weight:300;
  color:var(--cream);
  line-height:1.2;
}
.cta-band h2 em {
  font-style:italic;
  color:var(--green-200);
}
@media (max-width:900px) {
  .cta-band {
    flex-direction:column;
    align-items:flex-start;
    padding:56px 24px;
  }
}

/* Pages: auction-houses, catalogue-design, digital-preparation, galleries, luxury-retailers, museums, photography, print-optimisation, restoration, retouching, who-we-work-with, work, work-auctions, work-fashion, work-jewellery, work-watches */
.page-hero-bg {
  position:absolute;
  inset:0;
}
.page-hero-bg::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,var(--green-800) 0%,rgba(26,46,30,0.4) 60%,transparent 100%);
}
.pull-quote {
  background:var(--green-700);
  padding:64px 48px;
}
.pull-quote blockquote {
  font-family:var(--font-display);
  font-size:clamp(22px,3vw,36px);
  font-weight:300;
  font-style:italic;
  color:var(--cream);
  line-height:1.4;
  max-width:800px;
  border-left:3px solid var(--green-400);
  padding-left:32px;
}
.gallery-item {
  overflow:hidden;
  background:var(--green-100);
}
.gallery-item img {
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
  transition:transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform:scale(1.04);
}
@media (max-width:900px) {
  .page-hero-content {
    padding:60px 24px;
  }
}

/* Pages: about, contact, cookies, leadership, services, terms, work, work-auctions, work-fashion, work-jewellery, work-watches */
.page-eyebrow {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--green-300);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:14px;
}
.page-eyebrow::before {
  content:"";
  display:block;
  width:28px;
  height:1px;
  background:var(--green-400);
}

/* Pages: auction-houses, catalogue-design, digital-preparation, galleries, luxury-retailers, museums, photography, print-optimisation, restoration, retouching, who-we-work-with */
.breadcrumb a {
  color:var(--green-400);
  text-decoration:none;
  transition:color 0.2s;
}
.breadcrumb a:hover {
  color:var(--green-300);
}
.breadcrumb span {
  color:rgba(245,242,235,0.3);
}
.image-break {
  width:100%;
  aspect-ratio:21/9;
  overflow:hidden;
  background:var(--green-100);
}
.image-break img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.content-section {
  padding:80px 48px;
  background:var(--warm-white);
}
.content-section.cream {
  background:var(--cream);
}
.content-section-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.content-h2 {
  font-family:var(--font-display);
  font-size:clamp(26px,2.8vw,40px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.15;
  margin-bottom:20px;
}
.content-h3 {
  font-family:var(--font-display);
  font-size:clamp(20px,2vw,28px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.2;
  margin-bottom:12px;
  margin-top:36px;
}
.content-h3:first-child {
  margin-top:0;
}
.content-body p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:14px;
}
.content-image {
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--green-100);
}
.content-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.7s var(--ease);
}
.content-image:hover img {
  transform:scale(1.03);
}
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
}
@media (max-width:900px) {
  .content-section {
    padding:56px 24px;
  }
  .content-section-inner {
    grid-template-columns:1fr;
    gap:40px;
  }
  .image-gallery {
    padding:0 24px 56px;
  }
  .gallery-grid {
    grid-template-columns:1fr 1fr;
  }
  .pull-quote {
    padding:48px 24px;
  }
}

/* Pages: auction-houses, catalogue-design, digital-preparation, galleries, luxury-retailers, museums, photography, print-optimisation, restoration, retouching */
.feature-list li .fl-inner {
  display:flex;
  flex-direction:column;
  gap:2px;
}
.feature-list li .fl-label {
  font-weight:600;
  color:var(--green-700);
  line-height:1.4;
}
.feature-list li .fl-desc {
  color:var(--charcoal);
  font-weight:300;
}

/* Pages: about, contact, cookies, leadership, services, terms */
.page-hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 80% 50%,rgba(74,124,82,0.2) 0%,transparent 60%);
}

/* Pages: auction-houses, galleries, luxury-retailers, museums, services, who-we-work-with */
.continents-band h2 em {
  font-style:italic;
  color:var(--green-300);
}
.continents-band a:hover {
  border-color:var(--green-300);
}
.office-city {
  font-family:var(--font-display);
  font-size:20px;
  font-weight:400;
  color:var(--cream);
  margin-bottom:4px;
}
.office-role {
  font-family:var(--font-body);
  font-size:9px;
  font-weight:500;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-400);
}

/* Pages: catalogue-design, digital-preparation, photography, print-optimisation, restoration, retouching */
.service-subnav {
  background:var(--green-900);
  overflow-x:auto;
}
.service-subnav-inner {
  display:flex;
  padding:0 48px;
  min-width:max-content;
}
.service-subnav-link {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(245,242,235,0.45);
  padding:18px 20px;
  text-decoration:none;
  border-bottom:2px solid transparent;
  transition:all 0.2s;
  white-space:nowrap;
  display:block;
}
.service-subnav-link:hover {
  color:var(--green-300);
}
.service-subnav-link.active {
  color:var(--green-300);
  border-bottom-color:var(--green-300);
}
.service-intro {
  background:var(--cream);
  padding:80px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.service-intro-left h2 {
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,44px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.15;
  margin-bottom:0;
}
.service-intro-left h2 em {
  font-style:italic;
  color:var(--green-500);
}
.service-intro-right p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:16px;
}
.related-cases {
  background:var(--warm-white);
  padding:80px 48px;
}
.related-cases h2 {
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,42px);
  font-weight:400;
  color:var(--green-800);
  margin-bottom:48px;
  line-height:1.15;
}
.related-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.related-card {
  text-decoration:none;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:var(--green-50);
  transition:transform 0.3s var(--ease);
}
.related-card:hover {
  transform:translateY(-4px);
}
.related-card-image {
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--green-100);
}
.related-card-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.6s var(--ease);
  filter:saturate(80%);
}
.related-card:hover .related-card-image img {
  transform:scale(1.05);
  filter:saturate(100%);
}
.related-card-body {
  padding:20px 20px 18px;
  border:1px solid var(--stone);
  border-top:none;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.related-card-tag {
  font-family:var(--font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-500);
}
.related-card-title {
  font-family:var(--font-display);
  font-size:16px;
  font-weight:400;
  color:var(--green-800);
  line-height:1.3;
}
@media (max-width:900px) {
  .service-subnav-inner {
    padding:0 24px;
  }
  .service-intro {
    grid-template-columns:1fr;
    gap:40px;
    padding:56px 24px;
  }
  .related-cases {
    padding:56px 24px;
  }
  .related-grid {
    grid-template-columns:1fr;
  }
}

/* Pages: about, contact, index, leadership, services */
*,*::before,*::after {
  box-sizing:border-box;
  margin:0;
  padding:0;
}
@media (max-width:560px) {
  .footer-top {
    grid-template-columns:1fr;
  }
}

/* Pages: auction-houses, galleries, luxury-retailers, museums, who-we-work-with */
.sector-subnav {
  background:var(--green-900);
  overflow-x:auto;
}
.sector-subnav-inner {
  display:flex;
  padding:0 48px;
  min-width:max-content;
}
.sector-subnav-link {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(245,242,235,0.45);
  padding:18px 20px;
  text-decoration:none;
  border-bottom:2px solid transparent;
  transition:all 0.2s;
  white-space:nowrap;
  display:block;
}
.sector-subnav-link:hover {
  color:var(--green-300);
}
.sector-subnav-link.active {
  color:var(--green-300);
  border-bottom-color:var(--green-300);
}
.discretion-band {
  background:var(--green-900);
  padding:72px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.discretion-band h2 {
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,44px);
  font-weight:300;
  color:var(--cream);
  line-height:1.2;
}
.discretion-band h2 em {
  font-style:italic;
  color:var(--green-300);
}
.discretion-band p {
  font-size:14px;
  font-weight:300;
  line-height:1.8;
  color:rgba(245,242,235,0.65);
}
.landing-intro {
  background:var(--cream);
  padding:80px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.landing-intro-left h2 {
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,44px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.15;
}
.landing-intro-left h2 em {
  font-style:italic;
  color:var(--green-500);
}
.landing-intro-right p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:16px;
}
.landing-intro-right a {
  color:var(--green-600);
  text-decoration:none;
  border-bottom:1px solid rgba(45,90,52,0.3);
  transition:border-color 0.2s;
}
.landing-intro-right a:hover {
  border-color:var(--green-600);
}
.sectors-section {
  background:var(--warm-white);
  padding:80px 48px;
}
.sectors-eyebrow {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--green-500);
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:14px;
}
.sectors-eyebrow::before {
  content:"";
  display:block;
  width:28px;
  height:1px;
  background:var(--green-400);
}
.sectors-title {
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,44px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.15;
  margin-bottom:48px;
}
.sectors-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2px;
  background:var(--stone);
}
.sector-card {
  background:var(--warm-white);
  text-decoration:none;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:background 0.3s;
}
.sector-card:hover {
  background:var(--green-50);
}
.sector-card-image {
  aspect-ratio:16/9;
  overflow:hidden;
  background:var(--green-100);
}
.sector-card-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.7s var(--ease),filter 0.4s;
  filter:saturate(80%);
}
.sector-card:hover .sector-card-image img {
  transform:scale(1.04);
  filter:saturate(100%);
}
.sector-card-body {
  padding:36px 40px 32px;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.sector-card-num {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-400);
}
.sector-card-title {
  font-family:var(--font-display);
  font-size:clamp(24px,2.5vw,36px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.15;
}
.sector-card-desc {
  font-size:14px;
  font-weight:300;
  line-height:1.7;
  color:var(--charcoal);
  flex:1;
}
.sector-card-link {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--green-500);
  margin-top:8px;
  transition:gap 0.3s,color 0.2s;
}
.sector-card:hover .sector-card-link {
  gap:16px;
  color:var(--green-600);
}
.offices-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1px;
  background:rgba(255,255,255,0.06);
}
.office-hub {
  grid-column:1/-1;
  background:rgba(255,255,255,0.04);
  padding:16px 32px;
  font-size:12px;
  font-weight:300;
  color:rgba(245,242,235,0.4);
  letter-spacing:0.05em;
}
@media (max-width:900px) {
  .sector-subnav-inner {
    padding:0 24px;
  }
  .landing-intro {
    grid-template-columns:1fr;
    gap:40px;
    padding:56px 24px;
  }
  .sectors-section {
    padding:56px 24px;
  }
  .sectors-grid {
    grid-template-columns:1fr;
  }
  .discretion-band {
    grid-template-columns:1fr;
    gap:40px;
    padding:56px 24px;
  }
}

/* Pages: work, work-auctions, work-fashion, work-jewellery, work-watches */
.page-eyebrow a {
  color:var(--green-400);
  text-decoration:none;
}
.work-subnav {
  background:var(--green-900);
  overflow-x:auto;
}
.work-subnav-inner {
  display:flex;
  padding:0 48px;
  min-width:max-content;
}
.work-subnav-link {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(245,242,235,0.45);
  padding:18px 20px;
  text-decoration:none;
  border-bottom:2px solid transparent;
  transition:all 0.2s;
  white-space:nowrap;
  display:block;
}
.work-subnav-link:hover {
  color:var(--green-300);
}
.work-subnav-link.active {
  color:var(--green-300);
  border-bottom-color:var(--green-300);
}
.s {
  padding:80px 48px;
}
.s.cr {
  background:var(--cream);
}
.s.wm {
  background:var(--warm-white);
}
.s.dk {
  background:var(--green-800);
}
.s.dk2 {
  background:var(--green-900);
}
.grid2 {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.grid2.brief-approach {
  grid-template-columns:1fr;
  gap:40px;
}
.grid2w {
  display:grid;
  grid-template-columns:2fr 3fr;
  gap:80px;
  align-items:start;
}
.h2 {
  font-family:var(--font-display);
  font-size:clamp(26px,2.8vw,40px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.15;
  margin-bottom:16px;
}
.h2.lt {
  color:var(--cream);
}
.h3 {
  font-family:var(--font-display);
  font-size:clamp(19px,2vw,26px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.2;
  margin-bottom:10px;
  margin-top:32px;
}
.h3:first-child {
  margin-top:0;
}
.body p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:14px;
}
.body strong {
  font-weight:600;
  color:var(--green-700);
}
.ci {
  overflow:hidden;
  background:var(--green-100);
  aspect-ratio:4/3;
}
.ci img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.7s var(--ease);
}
.ci:hover img {
  transform:scale(1.03);
}
.fl {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.fl li {
  font-size:14px;
  font-weight:300;
  line-height:1.6;
  color:var(--charcoal);
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.fl li::before {
  content:"";
  display:block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--green-400);
  margin-top:7px;
  flex-shrink:0;
}
.fl-inner {
  display:flex;
  flex-direction:column;
  gap:2px;
}
.fl-label {
  font-weight:600;
  color:var(--green-700);
  line-height:1.4;
}
.fl-desc {
  color:var(--charcoal);
  font-weight:300;
}
.rg {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(255,255,255,0.08);
  margin-top:40px;
}
.ri {
  background:var(--green-800);
  padding:28px;
}
.ri-label {
  font-family:var(--font-display);
  font-size:17px;
  font-weight:400;
  color:var(--cream);
  line-height:1.3;
  margin-bottom:6px;
}
.ri-desc {
  font-size:13px;
  font-weight:300;
  line-height:1.6;
  color:rgba(245,242,235,0.5);
}
.gallery {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
}
.taa-panel {
  background:var(--green-900);
  border:1px solid rgba(122,170,130,0.2);
  padding:40px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  margin:56px 48px;
}
.taa-kicker {
  font-family:var(--font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--green-400);
  margin-bottom:10px;
}
.taa-title {
  font-family:var(--font-display);
  font-size:clamp(20px,2.5vw,30px);
  font-weight:300;
  color:var(--cream);
  margin-bottom:10px;
  line-height:1.2;
}
.taa-body {
  font-size:14px;
  font-weight:300;
  line-height:1.7;
  color:rgba(245,242,235,0.6);
}
.btn-taa {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--green-800);
  background:var(--green-300);
  padding:14px 24px;
  text-decoration:none;
  white-space:nowrap;
  transition:background 0.2s,gap 0.3s;
  flex-shrink:0;
}
.btn-taa:hover {
  background:var(--green-200);
  gap:16px;
}
.see-also {
  font-size:13px;
  font-weight:300;
  color:rgba(245,242,235,0.55);
  margin-top:12px;
}
.see-also a {
  color:var(--green-300);
  text-decoration:none;
  border-bottom:1px solid rgba(122,170,130,0.3);
}
.work-card-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2px;
  background:var(--stone);
}
.work-card {
  background:var(--warm-white);
  text-decoration:none;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:background 0.3s;
}
.work-card:hover {
  background:var(--green-50);
}
.work-card-img {
  aspect-ratio:16/9;
  overflow:hidden;
  background:var(--green-100);
}
.work-card-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.7s;
  filter:saturate(80%);
}
.work-card:hover .work-card-img img {
  transform:scale(1.04);
  filter:saturate(100%);
}
.work-card-body {
  padding:32px 36px 28px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.work-card-num {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-400);
}
.work-card-title {
  font-family:var(--font-display);
  font-size:clamp(22px,2.5vw,32px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.15;
}
.work-card-desc {
  font-size:14px;
  font-weight:300;
  line-height:1.7;
  color:var(--charcoal);
  flex:1;
}
.work-card-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--green-500);
  margin-top:8px;
}
@media (max-width:900px) {
  .work-subnav-inner {
    padding:0 24px;
  }
  .s {
    padding:56px 24px;
  }
  .grid2,.grid2w {
    grid-template-columns:1fr;
    gap:40px;
  }
  .rg {
    grid-template-columns:1fr 1fr;
  }
  .gallery {
    grid-template-columns:1fr 1fr;
  }
  .taa-panel {
    flex-direction:column;
    align-items:flex-start;
    margin:40px 24px;
    padding:32px 24px;
  }
  .work-card-grid {
    grid-template-columns:1fr;
  }
}

/* Pages: about, index */
@media (max-width:560px) {
  .footer-bottom {
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Pages: contact, index */
.contact-form {
  display:flex;
  flex-direction:column;
  gap:16px;
}
.form-field {
  display:flex;
  flex-direction:column;
  gap:6px;
}
.form-label {
  font-family:var(--font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-200);
}
.form-input,.form-textarea {
  font-family:var(--font-body);
  font-size:14px;
  font-weight:300;
  color:var(--cream);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  padding:14px 18px;
  outline:none;
  transition:border-color 0.2s,background 0.2s;
  resize:none;
}
.form-input::placeholder,.form-textarea::placeholder {
  color:rgba(245,242,235,0.35);
}
.form-input:focus,.form-textarea:focus {
  border-color:var(--green-300);
  background:rgba(255,255,255,0.12);
}
.form-submit:hover {
  background:var(--cream);
}

/* Pages: cookies, terms */
.page-meta {
  font-family:var(--font-body);
  font-size:12px;
  font-weight:300;
  color:rgba(245,242,235,0.45);
  letter-spacing:0.05em;
}
.legal-layout {
  display:grid;
  grid-template-columns:220px 1fr;
  gap:80px;
  padding:72px 48px;
  max-width:1200px;
  margin:0 auto;
}
.legal-toc {
  position:sticky;
  top:100px;
  align-self:start;
}
.legal-toc-title {
  font-family:var(--font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--green-400);
  margin-bottom:20px;
}
.legal-toc-links {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.legal-toc-links a {
  font-size:13px;
  font-weight:300;
  color:var(--charcoal);
  text-decoration:none;
  transition:color 0.2s;
  line-height:1.4;
}
.legal-toc-links a:hover {
  color:var(--green-600);
}
.legal-content {
  min-width:0;
}
.legal-content h2 {
  font-family:var(--font-display);
  font-size:clamp(22px,2.5vw,30px);
  font-weight:400;
  color:var(--green-800);
  margin:48px 0 16px;
  line-height:1.2;
}
.legal-content h2:first-child {
  margin-top:0;
}
.legal-content p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:14px;
}
.legal-content ul {
  list-style:none;
  margin:0 0 16px 0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.legal-content ul li {
  font-size:15px;
  font-weight:300;
  line-height:1.7;
  color:var(--charcoal);
  padding-left:20px;
  position:relative;
}
.legal-content ul li::before {
  content:"—";
  position:absolute;
  left:0;
  color:var(--green-400);
}
.legal-content a {
  color:var(--green-600);
  text-decoration:none;
  border-bottom:1px solid rgba(45,90,52,0.3);
  transition:border-color 0.2s;
}
.legal-content a:hover {
  border-color:var(--green-600);
}
.legal-content .legal-note {
  background:var(--green-50);
  border-left:3px solid var(--green-300);
  padding:16px 20px;
  margin:24px 0;
  font-size:13px;
  font-style:italic;
  color:var(--charcoal);
}
.legal-divider {
  border:none;
  border-top:1px solid var(--stone);
  margin:40px 0;
}
@media (max-width:900px) {
  .legal-layout {
    grid-template-columns:1fr;
    gap:40px;
    padding:48px 24px;
  }
  .legal-toc {
    display:none;
  }
}

/* Pages: index, services */
.section-eyebrow {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:14px;
}
.section-eyebrow::before {
  content:"";
  display:block;
  width:28px;
  height:1px;
}
.section-eyebrow.dark {
  color:var(--green-500);
}
.section-eyebrow.dark::before {
  background:var(--green-400);
}
.section-eyebrow.light {
  color:var(--green-300);
}
.section-eyebrow.light::before {
  background:var(--green-400);
}
.section-title {
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,44px);
  font-weight:400;
  line-height:1.15;
  letter-spacing:-0.01em;
}
.section-title.dark {
  color:var(--green-800);
}
.section-title.light {
  color:var(--cream);
}

/* Pages: about */
.about-section-label {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--green-500);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:14px;
}
.about-section-label::before {
  content:"";
  display:block;
  width:28px;
  height:1px;
  background:var(--green-400);
}
.about-intro {
  background:var(--cream);
  padding:96px 48px;
}
.about-intro-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.about-intro-left h2 {
  font-family:var(--font-display);
  font-size:clamp(26px,3vw,40px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.2;
  margin-top:0;
}
.about-intro-right p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:16px;
}
.about-text-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--green-600);
  text-decoration:none;
  margin-top:8px;
  transition:gap 0.3s,color 0.2s;
}
.about-text-link:hover {
  gap:14px;
  color:var(--green-700);
}
.about-links-row {
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:8px;
}
.showreel-placeholder {
  background:var(--green-900);
  aspect-ratio:16/9;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.showreel-placeholder video {
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.showreel-inner {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  text-align:center;
}
.showreel-icon {
  opacity:0.8;
}
.showreel-label {
  font-family:var(--font-display);
  font-size:22px;
  font-weight:300;
  font-style:italic;
  color:var(--cream);
}
.showreel-note {
  font-family:var(--font-body);
  font-size:11px;
  font-weight:400;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:rgba(245,242,235,0.35);
}
.about-what {
  background:var(--warm-white);
  padding:96px 48px;
}
.about-what-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.about-what-left h2 {
  font-family:var(--font-display);
  font-size:clamp(26px,3vw,40px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.2;
  margin-top:0;
}
.about-what-right p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:16px;
}
.about-image-break {
  width:100%;
  aspect-ratio:21/7;
  overflow:hidden;
  background:var(--green-100);
}
.about-image-break img,
.about-image-break video {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.about-how {
  background:var(--green-800);
  padding:96px 48px;
}
.about-how-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.about-how-left h2 {
  font-family:var(--font-display);
  font-size:clamp(26px,3vw,40px);
  font-weight:300;
  color:var(--cream);
  line-height:1.2;
  margin-top:0;
}
.about-how-right p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:rgba(245,242,235,0.7);
  margin-bottom:32px;
}
.about-offices {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:rgba(255,255,255,0.08);
}
.about-office {
  background:var(--green-800);
  padding:20px 24px;
}
.about-office-hub {
  grid-column:1/-1;
}
.about-office-city {
  font-family:var(--font-display);
  font-size:18px;
  font-weight:400;
  color:var(--cream);
  margin-bottom:3px;
}
.about-office-role {
  font-family:var(--font-body);
  font-size:9px;
  font-weight:500;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-400);
}
.about-team {
  background:var(--cream);
  padding:96px 48px;
}
.about-team-inner {
  max-width:1200px;
}
.about-team-inner h2 {
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,44px);
  font-weight:400;
  color:var(--green-800);
  margin-bottom:16px;
  margin-top:0;
}
.about-team-note {
  font-size:13px;
  font-weight:300;
  font-style:italic;
  color:var(--mid-stone);
  margin-bottom:48px;
}
.about-team-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.team-card-placeholder {
  aspect-ratio:3/4;
  background:var(--stone);
  overflow:hidden;
}
.team-card-placeholder img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.about-cta {
  background:var(--green-700);
  padding:80px 48px;
}
.about-cta-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
  flex-wrap:wrap;
}
.about-cta-inner h2 {
  font-family:var(--font-display);
  font-size:clamp(24px,3vw,40px);
  font-weight:300;
  color:var(--cream);
  line-height:1.2;
  max-width:640px;
}
@media (max-width:900px) {
  .about-intro,.about-what,.about-how {
    padding:64px 24px;
  }
  .about-intro-inner,.about-what-inner,.about-how-inner {
    grid-template-columns:1fr;
    gap:40px;
  }
  .about-team {
    padding:64px 24px;
  }
  .about-team-grid {
    grid-template-columns:1fr 1fr;
  }
  .about-cta {
    padding:56px 24px;
  }
  .about-cta-inner {
    flex-direction:column;
    align-items:flex-start;
  }
  .about-offices {
    grid-template-columns:1fr;
  }
  .about-office-hub {
    grid-column:auto;
  }
}
@media (max-width:560px) {
  .about-team-grid {
    grid-template-columns:1fr;
  }
}

/* Pages: contact */
.contact-body-section {
  background:var(--cream);
  padding:80px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}
.contact-info h2 {
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,42px);
  font-weight:400;
  color:var(--green-800);
  margin-bottom:20px;
  line-height:1.15;
}
.contact-info p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:40px;
}
.contact-offices {
  display:flex;
  flex-direction:column;
  gap:20px;
}
.contact-office {
  border-left:2px solid var(--green-300);
  padding-left:20px;
}
.contact-office-city {
  font-family:var(--font-display);
  font-size:18px;
  font-weight:400;
  color:var(--green-800);
  margin-bottom:2px;
}
.contact-office-detail {
  font-size:12px;
  font-weight:300;
  color:var(--charcoal);
  line-height:1.6;
}
.contact-form-wrap {
  background:var(--green-700);
  padding:56px;
  display:flex;
  flex-direction:column;
  gap:0;
}
.contact-form-wrap h3 {
  font-family:var(--font-display);
  font-size:26px;
  font-weight:400;
  color:var(--cream);
  margin-bottom:24px;
}
.newsletter {
  background:var(--green-800);
  padding:80px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.newsletter h2 {
  font-family:var(--font-display);
  font-size:clamp(24px,3vw,40px);
  font-weight:300;
  color:var(--cream);
  line-height:1.2;
  margin-bottom:12px;
}
.newsletter h2 em {
  font-style:italic;
  color:var(--green-300);
}
.newsletter p {
  font-size:14px;
  font-weight:300;
  line-height:1.75;
  color:rgba(245,242,235,0.65);
}
.newsletter-form {
  display:flex;
  gap:0;
}
.newsletter-input {
  flex:1;
  font-family:var(--font-body);
  font-size:14px;
  font-weight:300;
  color:var(--cream);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2);
  border-right:none;
  padding:16px 20px;
  outline:none;
}
.newsletter-input::placeholder {
  color:rgba(245,242,235,0.4);
}
.newsletter-input:focus {
  border-color:var(--green-300);
}
.newsletter-btn {
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  background:var(--green-400);
  color:var(--warm-white);
  border:none;
  padding:16px 28px;
  cursor:pointer;
  transition:background 0.2s;
  white-space:nowrap;
}
.newsletter-btn:hover {
  background:var(--green-300);
  color:var(--green-800);
}
@media (max-width:900px) {
  .contact-body-section {
    grid-template-columns:1fr;
    gap:0;
    padding:0;
  }
  .contact-info {
    padding:56px 24px;
  }
  .contact-form-wrap {
    padding:40px 24px;
  }
  .newsletter {
    grid-template-columns:1fr;
    gap:40px;
    padding:56px 24px;
  }
}
@media (max-width:560px) {
  .newsletter-form {
    flex-direction:column;
  }
  .newsletter-input {
    border-right:1px solid rgba(255,255,255,0.2);
  }
}

/* Pages: index */
.hero {
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
  background:var(--green-800);
}
.hero-bg {
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 70% 40%,rgba(74,124,82,0.25) 0%,transparent 60%),radial-gradient(ellipse at 20% 80%,rgba(45,90,52,0.4) 0%,transparent 50%),var(--green-800);
}
.hero-image-panel {
  position:absolute;
  top:0;
  right:0;
  width:52%;
  height:100%;
  overflow:hidden;
}
.hero-image-panel::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to right,var(--green-800) 0%,transparent 40%);
  z-index:1;
}
.hero-image-panel img {
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.55;
  display:block;
}
.hero-content {
  position:relative;
  z-index:2;
  padding:140px 48px 80px;
  max-width:min(680px,46%);
}
.hero-eyebrow {
  display:flex;
  align-items:center;
  gap:16px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--green-300);
  margin-bottom:32px;
  opacity:0;
  animation:fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before {
  content:"";
  display:block;
  width:32px;
  height:1px;
  background:var(--green-400);
}
.hero-title {
  font-family:var(--font-display);
  font-size:clamp(44px,6vw,82px);
  font-weight:300;
  line-height:1.08;
  letter-spacing:-0.01em;
  color:var(--cream);
  margin-bottom:32px;
  opacity:0;
  animation:fadeUp 0.9s var(--ease) 0.4s forwards;
}
.hero-title em {
  font-style:italic;
  font-weight:300;
  color:var(--green-300);
}
.hero-body {
  font-size:16px;
  font-weight:300;
  line-height:1.75;
  color:rgba(245,242,235,0.7);
  max-width:480px;
  margin-bottom:48px;
  opacity:0;
  animation:fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp 0.9s var(--ease) 0.8s forwards;
}
.btn-ghost {
  font-family:var(--font-body);
  font-size:11px;
  font-weight:500;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-200);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:color 0.2s,gap 0.3s;
}
.btn-ghost:hover {
  color:var(--cream);
  gap:16px;
}
.hero-stats {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,0.1);
}
.hero-stat {
  padding:28px 48px;
  border-right:1px solid rgba(255,255,255,0.08);
  opacity:0;
  animation:fadeUp 0.7s var(--ease) forwards;
}
.hero-stat:nth-child(1) {
  animation-delay:0.9s;
}
.hero-stat:nth-child(2) {
  animation-delay:1.0s;
}
.hero-stat:nth-child(3) {
  animation-delay:1.1s;
  border-right:none;
}
.hero-stat-number {
  font-family:var(--font-display);
  font-size:36px;
  font-weight:300;
  color:var(--cream);
  line-height:1;
  margin-bottom:4px;
}
.hero-stat-label {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:400;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-300);
}
.about-strip {
  background:var(--cream);
  padding:100px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.about-eyebrow {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--green-500);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:14px;
}
.about-eyebrow::before {
  content:"";
  display:block;
  width:28px;
  height:1px;
  background:var(--green-400);
}
.about-title {
  font-family:var(--font-display);
  font-size:clamp(32px,3.5vw,52px);
  font-weight:400;
  line-height:1.15;
  letter-spacing:-0.01em;
  color:var(--green-800);
  margin-bottom:24px;
}
.about-title em {
  font-style:italic;
  color:var(--green-500);
}
.about-body {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:16px;
}
.about-link {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-600);
  text-decoration:none;
  margin-top:16px;
  transition:gap 0.3s var(--ease),color 0.2s;
}
.about-link:hover {
  gap:16px;
  color:var(--green-700);
}
.about-right {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.about-image {
  aspect-ratio:3/4;
  overflow:hidden;
  background:var(--green-100);
}
.about-image:first-child {
  margin-top:40px;
}
.about-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.7s var(--ease);
}
.about-image:hover img {
  transform:scale(1.04);
}
.operate {
  background:var(--green-800);
  padding:96px 48px;
}
.operate-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.operate-left h2 {
  font-family:var(--font-display);
  font-size:clamp(32px,4vw,56px);
  font-weight:300;
  line-height:1.1;
  color:var(--cream);
  margin-bottom:0;
}
.operate-left h2 em {
  font-style:italic;
  color:var(--green-300);
}
.operate-right {
  padding-top:8px;
}
.operate-right p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:rgba(245,242,235,0.75);
  margin-bottom:40px;
}
.operate-offices {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(255,255,255,0.08);
}
.operate-office {
  background:var(--green-800);
  padding:24px;
}
.operate-office-city {
  font-family:var(--font-display);
  font-size:20px;
  font-weight:400;
  color:var(--cream);
  margin-bottom:4px;
}
.operate-office-role {
  font-family:var(--font-body);
  font-size:9px;
  font-weight:500;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-400);
}
.operate-hub {
  margin-top:1px;
  background:rgba(255,255,255,0.04);
  padding:16px 24px;
  font-size:12px;
  font-weight:300;
  color:rgba(245,242,235,0.45);
  letter-spacing:0.05em;
}
.home-services {
  background:var(--warm-white);
  padding:100px 48px;
}
.section-header {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px;
  margin-bottom:56px;
}
.home-services-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--stone);
}
.home-service-item {
  background:var(--warm-white);
  padding:36px 32px;
  transition:background 0.3s;
}
.home-service-item:hover {
  background:var(--green-50);
}
.home-service-number {
  font-family:var(--font-display);
  font-size:11px;
  font-weight:300;
  color:var(--green-300);
  letter-spacing:0.1em;
  margin-bottom:16px;
}
.home-service-name {
  font-family:var(--font-display);
  font-size:18px;
  font-weight:400;
  color:var(--green-800);
  line-height:1.3;
  margin-bottom:10px;
}
.home-service-desc {
  font-size:13px;
  font-weight:300;
  line-height:1.7;
  color:var(--charcoal);
}
.home-services-cta {
  text-align:center;
  margin-top:48px;
}
.btn-outline {
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-600);
  border:1px solid var(--green-300);
  padding:16px 40px;
  text-decoration:none;
  transition:all 0.25s var(--ease);
  background:none;
}
.btn-outline:hover {
  background:var(--green-600);
  border-color:var(--green-600);
  color:var(--warm-white);
  gap:18px;
}
.wwww-strip {
  background:var(--cream);
  padding:100px 48px;
}
.wwww-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--stone);
  margin-top:56px;
}
.wwww-card {
  background:var(--cream);
  padding:32px 24px;
  transition:background 0.3s;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.home-cs-section .wwww-card {
  background:var(--warm-white);
}
.home-cs-section .wwww-card:hover {
  background:var(--green-50);
}
.wwww-card:hover {
  background:var(--green-50);
}
.wwww-card-image {
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--green-100);
  margin-bottom:4px;
}
.wwww-card-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.6s var(--ease);
  filter:saturate(80%);
}
.wwww-card:hover .wwww-card-image img {
  transform:scale(1.04);
  filter:saturate(100%);
}
.wwww-card-num {
  font-family:var(--font-body);
  font-size:10px;
  color:var(--green-400);
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.wwww-card-title {
  font-family:var(--font-display);
  font-size:20px;
  font-weight:400;
  color:var(--green-800);
  line-height:1.2;
}
.wwww-card-desc {
  font-size:13px;
  font-weight:300;
  line-height:1.7;
  color:var(--charcoal);
  flex:1;
}
.wwww-card-link {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--green-500);
  margin-top:auto;
  display:flex;
  align-items:center;
  gap:8px;
  transition:gap 0.3s;
}
.wwww-card:hover .wwww-card-link {
  gap:14px;
  color:var(--green-600);
}
.home-cs {
  background:var(--warm-white);
  padding:100px 48px;
}
.cs-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:56px;
}
.home-cs-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.home-cs-card {
  background:var(--warm-white);
  text-decoration:none;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:background 0.3s;
}
.home-cs-card:hover {
  background:var(--green-50);
}
.home-cs-image {
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--green-100);
}
.home-cs-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.7s var(--ease),filter 0.4s;
  filter:saturate(80%);
}
.home-cs-card:hover .home-cs-image img {
  transform:scale(1.05);
  filter:saturate(100%);
}
.home-cs-body {
  padding:24px 24px 20px;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.home-cs-num {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-400);
}
.home-cs-title {
  font-family:var(--font-display);
  font-size:18px;
  font-weight:400;
  color:var(--green-800);
  line-height:1.25;
}
.home-cs-desc {
  font-size:13px;
  font-weight:300;
  line-height:1.7;
  color:var(--charcoal);
  flex:1;
}
.home-cs-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--green-500);
  margin-top:8px;
  transition:gap 0.3s,color 0.2s;
}
.home-cs-card:hover .home-cs-link {
  gap:14px;
  color:var(--green-600);
}
.cs-card {
  position:relative;
  cursor:pointer;
  overflow:hidden;
  background:var(--green-50);
  display:flex;
  flex-direction:column;
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.7s var(--ease),transform 0.7s var(--ease);
  text-decoration:none;
}
.cs-card.visible {
  opacity:1;
  transform:translateY(0);
}
.cs-card:nth-child(2) {
  transition-delay:0.1s;
}
.cs-card:nth-child(3) {
  transition-delay:0.2s;
}
.cs-image {
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--green-200);
}
.cs-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.8s var(--ease),filter 0.4s;
  filter:saturate(85%);
}
.cs-card:hover .cs-image img {
  transform:scale(1.06);
  filter:saturate(100%);
}
.cs-image-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,transparent 50%,rgba(26,46,30,0.5) 100%);
  opacity:0;
  transition:opacity 0.4s;
}
.cs-card:hover .cs-image-overlay {
  opacity:1;
}
.cs-tag {
  position:absolute;
  top:16px;
  left:16px;
  font-family:var(--font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  background:var(--green-600);
  color:var(--warm-white);
  padding:5px 12px;
}
.cs-year {
  position:absolute;
  top:16px;
  right:16px;
  font-family:var(--font-body);
  font-size:9px;
  letter-spacing:0.1em;
  color:rgba(245,242,235,0.8);
  background:rgba(26,46,30,0.55);
  padding:5px 10px;
}
.cs-body {
  padding:28px 28px 24px;
  flex:1;
  display:flex;
  flex-direction:column;
  border:1px solid var(--stone);
  border-top:none;
  transition:border-color 0.3s;
}
.cs-card:hover .cs-body {
  border-color:var(--green-200);
}
.cs-client {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-500);
  margin-bottom:8px;
}
.cs-title {
  font-family:var(--font-display);
  font-size:20px;
  font-weight:400;
  line-height:1.25;
  color:var(--green-800);
  margin-bottom:12px;
}
.cs-excerpt {
  font-size:13px;
  font-weight:300;
  line-height:1.7;
  color:var(--charcoal);
  flex:1;
  margin-bottom:24px;
}
.cs-cta {
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.cs-cta-text {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--green-400);
  transition:color 0.2s;
}
.cs-card:hover .cs-cta-text {
  color:var(--green-600);
}
.cs-arrow {
  width:34px;
  height:34px;
  border:1px solid var(--stone);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.3s var(--ease);
  color:var(--green-400);
}
.cs-card:hover .cs-arrow {
  background:var(--green-600);
  border-color:var(--green-600);
  color:var(--warm-white);
}
.cs-discover {
  text-align:center;
}
.cs-skeleton {
  background:linear-gradient(90deg,var(--green-100) 25%,var(--green-50) 50%,var(--green-100) 75%);
  background-size:200% 100%;
  animation:shimmer 1.5s infinite;
}
.home-contact {
  background:var(--green-700);
  padding:100px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.contact-eyebrow {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--green-200);
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:14px;
}
.contact-eyebrow::before {
  content:"";
  display:block;
  width:28px;
  height:1px;
  background:var(--green-300);
}
.contact-title {
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,44px);
  font-weight:400;
  line-height:1.2;
  color:var(--cream);
  margin-bottom:16px;
}
.contact-body {
  font-size:15px;
  font-weight:300;
  line-height:1.75;
  color:rgba(245,242,235,0.75);
}
@media (max-width:900px) {
  .hero-content {
    padding:120px 24px 60px;
    max-width:none;
  }
  .hero-stats {
    grid-template-columns:1fr 1fr;
  }
  .hero-image-panel {
    width:100%;
    opacity:0.3;
  }
  .hero-image-panel::before {
    background:linear-gradient(to bottom,var(--green-800) 0%,rgba(26,46,30,0.6) 100%);
  }
  .hero-stat {
    padding:20px 24px;
  }
  .about-strip {
    grid-template-columns:1fr;
    gap:48px;
    padding:64px 24px;
  }
  .about-right {
    display:none;
  }
  .operate {
    padding:64px 24px;
  }
  .operate-inner {
    grid-template-columns:1fr;
    gap:40px;
  }
  .home-services,.home-cs,.wwww-strip {
    padding:64px 24px;
  }
  .home-services-grid {
    grid-template-columns:1fr 1fr;
  }
  .wwww-grid {
    grid-template-columns:1fr 1fr;
  }
  .cs-grid {
    grid-template-columns:1fr;
  }
  .home-cs-grid {
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .home-contact {
    grid-template-columns:1fr;
    gap:48px;
    padding:64px 24px;
  }
  .operate-offices {
    grid-template-columns:1fr;
  }
}
@media (max-width:560px) {
  .home-services-grid {
    grid-template-columns:1fr;
  }
  .wwww-grid {
    grid-template-columns:1fr;
  }
}

/* Pages: leadership */
.leadership-intro {
  background:var(--cream);
  padding:80px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.leadership-intro h2 {
  font-family:var(--font-display);
  font-size:clamp(26px,3vw,40px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.2;
}
.leadership-intro h2 em {
  font-style:italic;
  color:var(--green-500);
}
.leadership-intro-body p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:14px;
}
.team-section {
  background:var(--warm-white);
  padding:80px 48px;
}
.team-grid {
  display:flex;
  flex-direction:column;
  gap:0;
}
.team-member {
  display:grid;
  grid-template-columns:320px 1fr;
  gap:0;
  border-top:1px solid var(--stone);
}
.team-member:last-child {
  border-bottom:1px solid var(--stone);
}
.team-member-image {
  background:var(--green-100);
  aspect-ratio:3/4;
  overflow:hidden;
  position:relative;
}
.team-member-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.7s var(--ease);
}
.team-member:hover .team-member-image img {
  transform:scale(1.03);
}
.team-member-image-placeholder {
  width:100%;
  height:100%;
  background:linear-gradient(135deg,var(--green-100) 0%,var(--green-200) 100%);
  display:flex;
  align-items:flex-end;
  padding:24px;
}
.team-member-image-placeholder span {
  font-family:var(--font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-500);
}
.team-member-body {
  padding:56px 56px 56px 64px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.team-member-role {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-500);
  margin-bottom:12px;
}
.team-member-name {
  font-family:var(--font-display);
  font-size:clamp(32px,3.5vw,52px);
  font-weight:300;
  color:var(--green-800);
  line-height:1.1;
  margin-bottom:28px;
}
.team-member-bio {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:14px;
}
.team-member-bio:last-of-type {
  margin-bottom:0;
}
.taa-link {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--warm-white);
  background:var(--green-600);
  padding:12px 20px;
  text-decoration:none;
  margin-top:28px;
  transition:background 0.2s,gap 0.3s;
}
.taa-link:hover {
  background:var(--green-500);
  gap:16px;
}
.team-member:nth-child(even) {
  background:var(--cream);
}
.team-member:nth-child(even) .team-member-image-placeholder {
  background:linear-gradient(135deg,var(--green-50) 0%,var(--green-100) 100%);
}
.leadership-cta {
  background:var(--green-700);
  padding:72px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.leadership-cta h2 {
  font-family:var(--font-display);
  font-size:clamp(24px,3vw,40px);
  font-weight:300;
  color:var(--cream);
  line-height:1.2;
}
.leadership-cta h2 em {
  font-style:italic;
  color:var(--green-200);
}
@media (max-width:1100px) {
  .team-member {
    grid-template-columns:260px 1fr;
    border-top:none;
  }
}
@media (max-width:900px) {
  .leadership-intro {
    grid-template-columns:1fr;
    gap:40px;
    padding:56px 24px;
  }
  .team-section {
    padding:56px 24px;
  }
  .team-member {
    grid-template-columns:1fr;
    border-top:none;
  }
  .team-member-image {
    aspect-ratio:4/3;
    max-height:320px;
  }
  .team-member-image img {
    object-position:center top;
  }
  .team-member-body {
    padding:36px 24px;
  }
  .leadership-cta {
    flex-direction:column;
    align-items:flex-start;
    padding:56px 24px;
  }
}

/* Pages: services */
.services-subnav {
  background:var(--cream);
  border-bottom:1px solid var(--stone);
  position:sticky;
  top:72px;
  z-index:100;
  overflow-x:auto;
}
.services-subnav-inner {
  display:flex;
  padding:0 48px;
  min-width:max-content;
}
.subnav-link {
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--charcoal);
  padding:20px 24px;
  text-decoration:none;
  border-bottom:2px solid transparent;
  transition:all 0.2s;
  white-space:nowrap;
  display:block;
}
.subnav-link:hover,.subnav-link.active {
  color:var(--green-600);
  border-bottom-color:var(--green-600);
}
.services-intro {
  background:var(--cream);
  padding:80px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.intro-body p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:16px;
}
.specialisms {
  background:var(--warm-white);
  padding:64px 48px;
  border-bottom:1px solid var(--stone);
}
.specialisms h2 {
  font-family:var(--font-display);
  font-size:clamp(24px,2.5vw,36px);
  font-weight:400;
  color:var(--green-800);
  margin-bottom:32px;
}
.specialisms-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--stone);
}
.specialism-item {
  background:var(--warm-white);
  padding:28px 24px;
}
.specialism-num {
  font-family:var(--font-body);
  font-size:10px;
  color:var(--green-400);
  letter-spacing:0.1em;
  margin-bottom:10px;
}
.specialism-name {
  font-family:var(--font-display);
  font-size:17px;
  font-weight:400;
  color:var(--green-800);
  line-height:1.3;
}
.services-list {
  background:var(--warm-white);
  padding:0 48px 80px;
}
.service-item {
  border-bottom:1px solid var(--stone);
}
.service-item-header {
  display:grid;
  grid-template-columns:72px 1fr auto;
  align-items:center;
  padding:40px 0;
  gap:32px;
  cursor:pointer;
}
.service-item-num {
  font-family:var(--font-display);
  font-size:40px;
  font-weight:300;
  color:var(--green-200);
  line-height:1;
}
.service-item-titles {

}
.service-item-title {
  font-family:var(--font-display);
  font-size:clamp(22px,2.5vw,32px);
  font-weight:400;
  color:var(--green-800);
  line-height:1.15;
  margin-bottom:8px;
}
.service-item-subtitle {
  font-family:var(--font-display);
  font-size:clamp(16px,1.8vw,22px);
  font-weight:300;
  font-style:italic;
  color:var(--green-500);
  line-height:1.3;
}
.service-item-toggle {
  width:40px;
  height:40px;
  border:1px solid var(--stone);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green-400);
  transition:all 0.3s var(--ease);
  flex-shrink:0;
}
.service-item.open .service-item-toggle {
  background:var(--green-600);
  border-color:var(--green-600);
  color:var(--warm-white);
  transform:rotate(45deg);
}
.service-item-body {
  display:none;
  padding:0 0 56px 104px;
}
.service-item-body.visible {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
}
.service-subhead {
  font-family:var(--font-display);
  font-size:20px;
  font-weight:400;
  color:var(--green-800);
  margin:28px 0 12px;
  line-height:1.3;
}
.service-subhead:first-child {
  margin-top:0;
}
.service-desc p {
  font-size:14px;
  font-weight:300;
  line-height:1.8;
  color:var(--charcoal);
  margin-bottom:14px;
}
.service-feature-list {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.service-feature-list li {
  font-size:13px;
  font-weight:400;
  color:var(--charcoal);
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.6;
}
.service-feature-list li::before {
  content:"";
  display:block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--green-400);
  margin-top:6px;
  flex-shrink:0;
}
.service-feature-list strong {
  font-weight:600;
  color:var(--green-700);
}
.service-page-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--warm-white);
  background:var(--green-600);
  padding:10px 18px;
  text-decoration:none;
  transition:background 0.2s,gap 0.3s;
}
.service-page-link:hover {
  background:var(--green-500);
  gap:14px;
}
.service-cta-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--green-600);
  text-decoration:none;
  margin-top:24px;
  transition:gap 0.3s;
}
.service-cta-link:hover {
  gap:14px;
}
.scale-band {
  background:var(--green-800);
  padding:80px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.scale-band h2 {
  font-family:var(--font-display);
  font-size:clamp(24px,3vw,40px);
  font-weight:300;
  color:var(--cream);
  line-height:1.2;
  margin-bottom:24px;
}
.scale-band h2 em {
  font-style:italic;
  color:var(--green-300);
}
.scale-band p {
  font-size:14px;
  font-weight:300;
  line-height:1.8;
  color:rgba(245,242,235,0.65);
  margin-bottom:14px;
}
.scale-band a {
  color:var(--green-300);
  text-decoration:none;
  font-weight:500;
  border-bottom:1px solid rgba(122,170,130,0.4);
  transition:border-color 0.2s;
}
.scale-band a:hover {
  border-color:var(--green-300);
}
.offices-strip {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(255,255,255,0.06);
  margin-top:32px;
}
@media (max-width:900px) {
  .services-subnav-inner {
    padding:0 24px;
  }
  .services-intro {
    grid-template-columns:1fr;
    gap:40px;
    padding:56px 24px;
  }
  .specialisms {
    padding:48px 24px;
  }
  .specialisms-grid {
    grid-template-columns:1fr 1fr;
  }
  .services-list {
    padding:0 24px 56px;
  }
  .service-item-header {
    grid-template-columns:48px 1fr auto;
    gap:16px;
  }
  .service-item-num {
    font-size:28px;
  }
  .service-item-body.visible {
    grid-template-columns:1fr;
    padding-left:0;
  }
  .scale-band {
    grid-template-columns:1fr;
    gap:40px;
    padding:56px 24px;
  }
  .offices-strip {
    grid-template-columns:1fr;
  }
}
@media (max-width:560px) {
  .specialisms-grid {
    grid-template-columns:1fr;
  }
}

/* Pages: who-we-work-with */
.feature-list li strong {
  font-weight:600;
  color:var(--green-700);
}

/* ---------- Keyframe animations ---------- */

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

@keyframes shimmer {
  0% {
    background-position:200% 0;
  }
  100% {
    background-position:-200% 0;
  }
}

/* ---------- Page-specific overrides (scoped to avoid clashes between pages that reuse the same class name) ---------- */

/* .page-hero */
body.page-about .page-hero,
body.page-contact .page-hero,
body.page-leadership .page-hero,
body.page-services .page-hero {
  padding:160px 48px 80px;
  background:var(--green-800);
  position:relative;
  overflow:hidden;
}
body.page-auction-houses .page-hero,
body.page-catalogue-design .page-hero,
body.page-digital-preparation .page-hero,
body.page-galleries .page-hero,
body.page-luxury-retailers .page-hero,
body.page-museums .page-hero,
body.page-photography .page-hero,
body.page-print-optimisation .page-hero,
body.page-restoration .page-hero,
body.page-retouching .page-hero,
body.page-who-we-work-with .page-hero {
  position:relative;
  min-height:60vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:var(--green-800);
}
body.page-cookies .page-hero,
body.page-terms .page-hero {
  padding:140px 48px 64px;
  background:var(--green-800);
  position:relative;
  overflow:hidden;
}
body.page-work-auctions .page-hero,
body.page-work-fashion .page-hero,
body.page-work-jewellery .page-hero,
body.page-work-watches .page-hero,
body.page-work .page-hero {
  position:relative;
  min-height:55vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:var(--green-800);
}
@media (max-width:900px) {
  body.page-about .page-hero,
body.page-contact .page-hero,
body.page-leadership .page-hero,
body.page-services .page-hero {
    padding:120px 24px 60px;
  }
}
@media (max-width:900px) {
  body.page-cookies .page-hero,
body.page-terms .page-hero {
    padding:120px 24px 48px;
  }
}

/* .page-hero-content */
body.page-about .page-hero-content,
body.page-contact .page-hero-content,
body.page-leadership .page-hero-content,
body.page-services .page-hero-content {
  position:relative;
  z-index:1;
  max-width:700px;
}
body.page-auction-houses .page-hero-content,
body.page-catalogue-design .page-hero-content,
body.page-digital-preparation .page-hero-content,
body.page-galleries .page-hero-content,
body.page-luxury-retailers .page-hero-content,
body.page-museums .page-hero-content,
body.page-photography .page-hero-content,
body.page-print-optimisation .page-hero-content,
body.page-restoration .page-hero-content,
body.page-retouching .page-hero-content,
body.page-who-we-work-with .page-hero-content {
  position:relative;
  z-index:1;
  padding:80px 48px;
  max-width:760px;
}
body.page-cookies .page-hero-content,
body.page-terms .page-hero-content {
  position:relative;
  z-index:1;
}
body.page-work-auctions .page-hero-content,
body.page-work-fashion .page-hero-content,
body.page-work-jewellery .page-hero-content,
body.page-work-watches .page-hero-content,
body.page-work .page-hero-content {
  position:relative;
  z-index:1;
  padding:80px 48px;
  max-width:800px;
}

/* .page-title */
body.page-about .page-title {
  font-family:var(--font-display);
  font-size:clamp(40px,5.5vw,72px);
  font-weight:300;
  line-height:1.05;
  letter-spacing:-0.01em;
  color:var(--cream);
}
body.page-auction-houses .page-title,
body.page-catalogue-design .page-title,
body.page-digital-preparation .page-title,
body.page-galleries .page-title,
body.page-luxury-retailers .page-title,
body.page-museums .page-title,
body.page-photography .page-title,
body.page-print-optimisation .page-title,
body.page-restoration .page-title,
body.page-retouching .page-title,
body.page-who-we-work-with .page-title {
  font-family:var(--font-display);
  font-size:clamp(40px,5.5vw,72px);
  font-weight:300;
  line-height:1.05;
  letter-spacing:-0.01em;
  color:var(--cream);
  margin-bottom:20px;
}
body.page-contact .page-title,
body.page-leadership .page-title,
body.page-services .page-title {
  font-family:var(--font-display);
  font-size:clamp(40px,5.5vw,72px);
  font-weight:300;
  line-height:1.05;
  letter-spacing:-0.01em;
  color:var(--cream);
  margin-bottom:24px;
}
body.page-cookies .page-title,
body.page-terms .page-title {
  font-family:var(--font-display);
  font-size:clamp(36px,5vw,64px);
  font-weight:300;
  line-height:1.05;
  letter-spacing:-0.01em;
  color:var(--cream);
  margin-bottom:12px;
}
body.page-work-auctions .page-title,
body.page-work-fashion .page-title,
body.page-work-jewellery .page-title,
body.page-work-watches .page-title,
body.page-work .page-title {
  font-family:var(--font-display);
  font-size:clamp(36px,5vw,68px);
  font-weight:300;
  line-height:1.05;
  letter-spacing:-0.01em;
  color:var(--cream);
  margin-bottom:20px;
}

/* .btn-primary */
body.page-about .btn-primary,
body.page-auction-houses .btn-primary,
body.page-catalogue-design .btn-primary,
body.page-digital-preparation .btn-primary,
body.page-galleries .btn-primary,
body.page-leadership .btn-primary,
body.page-luxury-retailers .btn-primary,
body.page-museums .btn-primary,
body.page-photography .btn-primary,
body.page-print-optimisation .btn-primary,
body.page-restoration .btn-primary,
body.page-retouching .btn-primary,
body.page-services .btn-primary,
body.page-who-we-work-with .btn-primary,
body.page-work-auctions .btn-primary,
body.page-work-fashion .btn-primary,
body.page-work-jewellery .btn-primary,
body.page-work-watches .btn-primary,
body.page-work .btn-primary {
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--warm-white);
  background:var(--green-600);
  padding:16px 36px;
  text-decoration:none;
  display:inline-block;
  transition:background 0.25s;
  border:none;
  cursor:pointer;
  white-space:nowrap;
}
body.page-index .btn-primary {
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--warm-white);
  background:var(--green-600);
  padding:16px 36px;
  text-decoration:none;
  display:inline-block;
  transition:background 0.25s;
  border:none;
  cursor:pointer;
}

/* .page-hero-bg img */
body.page-auction-houses .page-hero-bg img,
body.page-catalogue-design .page-hero-bg img,
body.page-digital-preparation .page-hero-bg img,
body.page-galleries .page-hero-bg img,
body.page-luxury-retailers .page-hero-bg img,
body.page-museums .page-hero-bg img,
body.page-photography .page-hero-bg img,
body.page-print-optimisation .page-hero-bg img,
body.page-restoration .page-hero-bg img,
body.page-retouching .page-hero-bg img,
body.page-who-we-work-with .page-hero-bg img {
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.35;
  display:block;
}
body.page-work-auctions .page-hero-bg img,
body.page-work-fashion .page-hero-bg img,
body.page-work-jewellery .page-hero-bg img,
body.page-work-watches .page-hero-bg img,
body.page-work .page-hero-bg img {
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.32;
  display:block;
}

/* .breadcrumb */
body.page-auction-houses .breadcrumb,
body.page-galleries .breadcrumb,
body.page-luxury-retailers .breadcrumb,
body.page-museums .breadcrumb,
body.page-who-we-work-with .breadcrumb {
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-300);
  margin-bottom:24px;
  flex-wrap:wrap;
}
body.page-catalogue-design .breadcrumb,
body.page-digital-preparation .breadcrumb,
body.page-photography .breadcrumb,
body.page-print-optimisation .breadcrumb,
body.page-restoration .breadcrumb,
body.page-retouching .breadcrumb {
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--green-300);
  margin-bottom:24px;
}

/* .page-subtitle */
body.page-auction-houses .page-subtitle,
body.page-catalogue-design .page-subtitle,
body.page-digital-preparation .page-subtitle,
body.page-galleries .page-subtitle,
body.page-luxury-retailers .page-subtitle,
body.page-museums .page-subtitle,
body.page-photography .page-subtitle,
body.page-print-optimisation .page-subtitle,
body.page-restoration .page-subtitle,
body.page-retouching .page-subtitle,
body.page-who-we-work-with .page-subtitle {
  font-family:var(--font-display);
  font-size:clamp(18px,2vw,26px);
  font-weight:300;
  font-style:italic;
  color:var(--green-300);
}
body.page-work-auctions .page-subtitle,
body.page-work-fashion .page-subtitle,
body.page-work-jewellery .page-subtitle,
body.page-work-watches .page-subtitle,
body.page-work .page-subtitle {
  font-family:var(--font-display);
  font-size:clamp(16px,1.8vw,22px);
  font-weight:300;
  font-style:italic;
  color:rgba(245,242,235,0.65);
  max-width:640px;
}

/* .feature-list */
body.page-auction-houses .feature-list,
body.page-catalogue-design .feature-list,
body.page-digital-preparation .feature-list,
body.page-galleries .feature-list,
body.page-luxury-retailers .feature-list,
body.page-museums .feature-list,
body.page-photography .feature-list,
body.page-print-optimisation .feature-list,
body.page-restoration .feature-list,
body.page-retouching .feature-list {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:8px;
}
body.page-who-we-work-with .feature-list {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:8px;
}

/* .feature-list li */
body.page-auction-houses .feature-list li,
body.page-catalogue-design .feature-list li,
body.page-digital-preparation .feature-list li,
body.page-galleries .feature-list li,
body.page-luxury-retailers .feature-list li,
body.page-museums .feature-list li,
body.page-photography .feature-list li,
body.page-print-optimisation .feature-list li,
body.page-restoration .feature-list li,
body.page-retouching .feature-list li {
  font-size:14px;
  font-weight:300;
  line-height:1.6;
  color:var(--charcoal);
  display:flex;
  align-items:flex-start;
  gap:10px;
}
body.page-who-we-work-with .feature-list li {
  font-size:14px;
  font-weight:300;
  line-height:1.7;
  color:var(--charcoal);
  display:flex;
  align-items:flex-start;
  gap:12px;
}

/* .feature-list li::before */
body.page-auction-houses .feature-list li::before,
body.page-catalogue-design .feature-list li::before,
body.page-digital-preparation .feature-list li::before,
body.page-galleries .feature-list li::before,
body.page-luxury-retailers .feature-list li::before,
body.page-museums .feature-list li::before,
body.page-photography .feature-list li::before,
body.page-print-optimisation .feature-list li::before,
body.page-restoration .feature-list li::before,
body.page-retouching .feature-list li::before {
  content:"";
  display:block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--green-400);
  margin-top:6px;
  flex-shrink:0;
}
body.page-who-we-work-with .feature-list li::before {
  content:"";
  display:block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--green-400);
  margin-top:7px;
  flex-shrink:0;
}

/* .image-gallery */
body.page-auction-houses .image-gallery,
body.page-galleries .image-gallery,
body.page-luxury-retailers .image-gallery,
body.page-museums .image-gallery,
body.page-who-we-work-with .image-gallery {
  padding:0 48px 80px;
  background:var(--warm-white);
}
body.page-catalogue-design .image-gallery,
body.page-digital-preparation .image-gallery,
body.page-photography .image-gallery,
body.page-print-optimisation .image-gallery,
body.page-restoration .image-gallery,
body.page-retouching .image-gallery {
  padding:0 48px 80px;
  background:var(--cream);
}

/* .continents-band */
body.page-auction-houses .continents-band,
body.page-galleries .continents-band,
body.page-luxury-retailers .continents-band,
body.page-museums .continents-band,
body.page-who-we-work-with .continents-band {
  background:var(--green-800);
  padding:80px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
body.page-services .continents-band {
  background:var(--green-900);
  padding:80px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

/* .continents-band h2 */
body.page-auction-houses .continents-band h2,
body.page-galleries .continents-band h2,
body.page-luxury-retailers .continents-band h2,
body.page-museums .continents-band h2,
body.page-who-we-work-with .continents-band h2 {
  font-family:var(--font-display);
  font-size:clamp(26px,3vw,42px);
  font-weight:300;
  color:var(--cream);
  line-height:1.2;
  margin-bottom:20px;
}
body.page-services .continents-band h2 {
  font-family:var(--font-display);
  font-size:clamp(24px,3vw,40px);
  font-weight:300;
  color:var(--cream);
  line-height:1.2;
  margin-bottom:24px;
}

/* .continents-band p */
body.page-auction-houses .continents-band p,
body.page-galleries .continents-band p,
body.page-luxury-retailers .continents-band p,
body.page-museums .continents-band p,
body.page-who-we-work-with .continents-band p {
  font-size:15px;
  font-weight:300;
  line-height:1.8;
  color:rgba(245,242,235,0.7);
  margin-bottom:14px;
}
body.page-services .continents-band p {
  font-size:14px;
  font-weight:300;
  line-height:1.8;
  color:rgba(245,242,235,0.65);
  margin-bottom:14px;
}

/* .continents-band a */
body.page-auction-houses .continents-band a,
body.page-galleries .continents-band a,
body.page-luxury-retailers .continents-band a,
body.page-museums .continents-band a,
body.page-who-we-work-with .continents-band a {
  color:var(--green-300);
  text-decoration:none;
  border-bottom:1px solid rgba(122,170,130,0.3);
  transition:border-color 0.2s;
}
body.page-services .continents-band a {
  color:var(--green-300);
  text-decoration:none;
  font-weight:500;
  border-bottom:1px solid rgba(122,170,130,0.4);
  transition:border-color 0.2s;
}

/* .office-item */
body.page-auction-houses .office-item,
body.page-galleries .office-item,
body.page-luxury-retailers .office-item,
body.page-museums .office-item,
body.page-who-we-work-with .office-item {
  background:var(--green-800);
  padding:28px 32px;
}
body.page-services .office-item {
  background:var(--green-900);
  padding:24px;
}

/* .page-intro */
body.page-contact .page-intro,
body.page-services .page-intro {
  font-size:16px;
  font-weight:300;
  line-height:1.75;
  color:rgba(245,242,235,0.7);
  max-width:560px;
}
body.page-leadership .page-intro {
  font-size:16px;
  font-weight:300;
  line-height:1.75;
  color:rgba(245,242,235,0.7);
  max-width:600px;
}

/* .form-textarea */
body.page-contact .form-textarea {
  min-height:140px;
}
body.page-index .form-textarea {
  min-height:120px;
}

/* .form-submit */
body.page-contact .form-submit {
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-800);
  background:var(--green-200);
  border:none;
  padding:16px 36px;
  cursor:pointer;
  align-self:flex-start;
  transition:background 0.2s;
  margin-top:8px;
}
body.page-index .form-submit {
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-800);
  background:var(--green-200);
  border:none;
  padding:16px 36px;
  cursor:pointer;
  align-self:flex-start;
  transition:background 0.2s;
}

/* .form-gdpr */
body.page-contact .form-gdpr {
  font-size:11px;
  font-weight:300;
  line-height:1.6;
  color:rgba(245,242,235,0.45);
  margin-top:12px;
}
body.page-index .form-gdpr {
  font-size:11px;
  font-weight:300;
  line-height:1.6;
  color:rgba(245,242,235,0.45);
  margin-top:4px;
}

/* .form-gdpr a */
body.page-contact .form-gdpr a {
  color:rgba(245,242,235,0.65);
  text-decoration:underline;
}
body.page-index .form-gdpr a {
  color:rgba(245,242,235,0.6);
  text-decoration:underline;
}

/* Mobile fix: .continents-band must collapse to a single column on all pages that use it.
   Scoped explicitly (rather than a plain .continents-band selector) because the desktop
   layout above is also scoped to body.page-<name>, which otherwise out-specifies a plain
   mobile override and leaves the two-column grid squeezed on small screens. */
@media (max-width:900px) {
  body.page-auction-houses .continents-band,
  body.page-galleries .continents-band,
  body.page-luxury-retailers .continents-band,
  body.page-museums .continents-band,
  body.page-who-we-work-with .continents-band,
  body.page-services .continents-band {
    grid-template-columns:1fr;
    gap:40px;
    padding:56px 24px;
  }
  .offices-grid {
    grid-template-columns:1fr;
  }
}

/* Inline form success/error messaging (site.js swaps these in instead of navigating away) */
.form-success {
  margin-top:24px;
  background:var(--green-50);
  border:1px solid var(--green-200);
  padding:32px;
}
.form-success h3 {
  font-family:var(--font-display);
  font-size:22px;
  font-weight:400;
  color:var(--green-800);
  margin-bottom:8px;
}
.form-success p {
  font-size:15px;
  color:var(--charcoal);
}
.form-error {
  font-size:13px;
  color:#9c4a3c;
  margin-top:12px;
}
.form-error a {
  color:#9c4a3c;
  text-decoration:underline;
}
