/*
Theme Name: Outdoor Amenity Co. v2
Theme URI: https://studiobdesigngroup.com
Author: Studio B Design Group
Description: Outdoor amenity design theme for Outdoor Amenity Co. Full-featured parallax, portfolio, and content management.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: oac
*/

/* ============================================================
   BRAND DESIGN SYSTEM — from Website Design Brief
   ============================================================ */
:root {
  /* Brand Colors */
  --c-black:     #0F0F0F;
  --c-offwhite:  #F8F5F1;
  --c-cream:     #F0EBE3;
  --c-taupe:     #C4B5A5;
  --c-stone:     #9C9089;
  --c-gold:      #C4B5A5;
  --c-gold-lt:   #d8cec5;
  --c-white:     #ffffff;
  --c-mid:       #6b6460;

  /* Typography */
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  color: var(--c-black);
  background: var(--c-offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* No padding-top — nav-spacer div handles the offset on non-hero pages */
}

/* ── FULL WIDTH OVERRIDE — kill any container constraints ── */
body, #page, #content, #main, .site, .site-content,
.entry-content, .wp-site-blocks, .is-layout-constrained {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
#main { background: var(--c-offwhite); }

/* Logo: always show black, always hide white */
.logo-white { display: none !important; }
.logo-black  { display: block !important; filter: none !important; }

/* ============================================================
   NAVIGATION — logo left, nav right, fully responsive
   ============================================================ */

/* WordPress admin bar offset */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;  /* logo | spacer | nav */
  align-items: center;
  gap: 0;
  padding: 0 clamp(16px, 4vw, 48px);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-sizing: border-box;
  width: 100%;
}
#site-header.scrolled {
  background: rgba(248,245,241,0.97);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

/* ── Logo — first grid column, always left ── */
.site-logo {
  grid-column: 1;
  display: block;
  line-height: 0;
  flex-shrink: 0;
}

/* WordPress wraps custom-logo in an <a> — target both */
.site-logo,
.site-logo a,
.site-logo .custom-logo-link {
  display: block;
  line-height: 0;
}

/* All logo image variants — hard height cap, no overflow */
.site-logo img,
.site-logo img.logo-img,
.site-logo .custom-logo,
.site-logo a img,
.site-logo .custom-logo-link img {
  height: 42px !important;
  width: auto !important;
  max-height: 42px !important;
  max-width: 280px !important;
  object-fit: contain;
  display: block;
  transition: filter 0.3s var(--ease);
}

/* Logo always dark — nav is always cream */
.site-logo img,
.site-logo a img,
.site-logo .custom-logo-link img {
  filter: none !important;
}

/* ── Nav — third grid column, always right ── */
.main-navigation {
  grid-column: 3;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  list-style: none;
  margin: 0; padding: 0;
}
.main-navigation a {
  font-family: var(--f-sans);
  font-size: clamp(0.55rem, 0.9vw, 0.65rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
}
/* White links over hero, dark when scrolled */
#site-header:not(.scrolled) .main-navigation a { color: var(--c-white); }
#site-header.scrolled .main-navigation a { color: var(--c-black); }

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width 0.3s var(--ease);
}
.main-navigation a:hover { color: var(--c-gold) !important; }
.main-navigation a:hover::after { width: 100%; }

/* OAC gold button */
.nav-oac-btn {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
}
.nav-oac-btn::after { display: none !important; }
.nav-oac-btn:hover { background: transparent !important; opacity: 0.7; }
/* Desktop: show logo only */
.nav-oac-btn .nav-oac-text { display: none !important; }
.nav-oac-btn .nav-oac-img {
  display: block !important;
  height: 26px !important;
  width: auto !important;
  mix-blend-mode: multiply;
}

/* ── Hamburger — second grid column on mobile, hidden on desktop ── */
.menu-toggle {
  display: none;
  grid-column: 2;
  justify-self: end;
  background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center;
  gap: 5px; padding: 8px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--c-black);
  transition: 0.3s var(--ease);
  transform-origin: center;
}
#site-header.scrolled .menu-toggle span { background: var(--c-black); }

/* Nav active link */
.main-navigation a.current-link { color: var(--c-gold) !important; }
.main-navigation a.current-link::after { width: 100%; background: var(--c-gold); }

/* ============================================================
   HERO — PARALLAX
   ============================================================ */
.parallax-hero {
  position: relative;
  height: 45vh;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-left: 48px;
  margin-right: 48px;
  margin-bottom: 0;
  border-radius: 0;
}
@media (max-width: 768px) {
  .parallax-hero { margin-top: 0; margin-left: 0; margin-right: 0; height: 50vh; min-height: 260px; }
}
.parallax-bg {
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-bg.no-image {
  background: linear-gradient(160deg, #2a2420 0%, #1a1612 60%, #0f0f0f 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.18);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 40px;
  pointer-events: none;
}
.hero-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: 0.32em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
  display: block;
}
.hero-sub {
  margin-top: 24px;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
}

/* ============================================================
   BRAND STATEMENT (Intro)
   ============================================================ */
.section-brand {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.brand-statement {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--c-black);
  line-height: 1.45;
}
.brand-body p {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-mid);
  margin-bottom: 16px;
}
.brand-body p strong {
  color: var(--c-black);
  font-weight: 500;
}
.brand-body a.btn-gold {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-gold);
  padding: 13px 30px;
  transition: background 0.25s;
}
.brand-body a.btn-gold:hover { background: #3a5233; }
.brand-body a.btn-outline {
  display: inline-block;
  margin-top: 12px;
  margin-left: 12px;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-black);
  border: 1px solid var(--c-taupe);
  padding: 12px 28px;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.brand-body a.btn-outline:hover {
  border-color: var(--c-black);
  background: var(--c-black);
  color: var(--c-white);
}

/* ============================================================
   STATS BAR — same colour as page background, black text
   ============================================================ */
.section-stats {
  background: var(--c-offwhite);
  padding: 48px 48px;
  border-top: 1px solid rgba(15,15,15,0.07);
  border-bottom: 1px solid rgba(15,15,15,0.07);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(15,15,15,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--c-black);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mid);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.section-portfolio {
  padding: 100px 24px;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto 16px;
  padding: 0 12px;
}
.section-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-stone);
  letter-spacing: 0.05em;
}
.section-link {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-black);
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.section-link:hover { color: var(--c-gold); }

/* Portfolio filter tabs */
.portfolio-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: 0 auto 36px;
  padding: 0 12px;
}
.filter-btn {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--c-taupe);
  padding: 9px 18px;
  cursor: pointer;
  color: var(--c-stone);
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-white);
}

/* ============================================================
   PORTFOLIO GRID
   Adapts automatically: 1 photo = full width, 2 = two col,
   3+ = masonry. Images always fill their container.
   ============================================================ */

/* Default: masonry 3-col */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: end;        /* align items to bottom of each row cell */
  grid-auto-rows: auto;
}

/* 1 item — full width, capped at 900px, centered */
.portfolio-grid:has(.portfolio-item:only-child) {
  columns: 1;
  max-width: 900px;
}

/* 2 items — 2 equal columns */
.portfolio-grid:has(.portfolio-item:nth-child(2):last-child) {
  columns: 2;
}

.portfolio-item {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: default;        /* no pointer — not clickable */
}
.portfolio-item-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}
/* Strict alternating ratios — no cropping needed */
.portfolio-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Portfolio page masonry on mobile — single column, natural heights */
@media (max-width: 767px) {
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .portfolio-archive-grid { columns: 1 !important; }
  .portfolio-item {
    margin-bottom: 12px;
  }
  .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* no hover effect on portfolio items */

/* When only 1 item: make image taller and more impactful */
.portfolio-grid:has(.portfolio-item:only-child) .portfolio-item img {
  max-height: 75vh;
  width: 100%;
  object-fit: cover;
}

/* Hover overlay */
.portfolio-hover {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
/* hover overlay disabled */
.portfolio-hover-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--c-white);
  text-align: center;
  display: block;
}
.portfolio-hover-type {
  display: none;
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 4px;
  display: block;
}

.portfolio-caption {
  padding: 8px 0 4px;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--c-stone);
  letter-spacing: 0.04em;
}

/* Placeholder */
.portfolio-placeholder {
  width: 100%;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-placeholder span {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--c-taupe);
}

/* ============================================================
   MID PARALLAX (Quote)
   ============================================================ */
.parallax-mid {
  position: relative;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-mid .parallax-bg.no-image {
  background: linear-gradient(135deg, #2a2218 0%, #1a1510 100%);
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
}
.parallax-mid-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 48px;
  max-width: 900px;
}
.parallax-mid-content .quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--c-white);
  line-height: 1.3;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.parallax-mid-content .quote-attr {
  margin-top: 20px;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* ============================================================
   PRESS LOGOS
   ============================================================ */
.section-press {
  padding: 60px 48px;
  background: var(--c-offwhite);
}
.press-label {
  text-align: center;
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-taupe);
  margin-bottom: 40px;
}
.press-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.press-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.press-item:hover { opacity: 1; }
.press-item img {
  max-height: 36px;
  width: auto;
  filter: grayscale(100%);
  object-fit: contain;
  display: block;
}
/* Text fallback — styled like the Workshop Studio logos */
.press-item-text {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-black);
  white-space: nowrap;
  opacity: 0.7;
}

/* ============================================================
   CLIENT LOGOS — white cards, flex tile layout, centered rows
   ============================================================ */
.section-clients {
  padding: 64px 48px;
  background: var(--c-offwhite);
}
.clients-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.clients-label {
  text-align: center;
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mid);
  margin-bottom: 40px;
}

/* ── Marquee ── */
.clients-marquee-outer {
  overflow: hidden !important;
  width: 100%;
}

.clients-grid {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: clients-marquee 55s linear infinite;
  will-change: transform;
}
.clients-grid:hover { animation-play-state: paused; }

@keyframes clients-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Each set of logos is wrapped so -50% works correctly */
.clients-set {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  flex-shrink: 0;
  background: transparent;
  border: none;
}

/* Logo image: true black, no hover effect */
.client-logo-item img {
  max-height: 48px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) brightness(0);
  opacity: 1;
  transition: none;
  pointer-events: none;
}
.client-logo-item a { pointer-events: none; display: contents; }
.client-logo-item:hover img { opacity: 1; filter: grayscale(100%) brightness(0); }

/* Clone set — flex row inline with originals for seamless loop */
.clients-clone {
  display: flex;
  flex-shrink: 0;
}

/* Fade edges */
.clients-inner {
  position: relative;
}

.clients-marquee-outer::before,
.clients-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--c-offwhite) 0%, transparent 100%);
}
.clients-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--c-offwhite) 0%, transparent 100%);
}

.client-logo-placeholder {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-stone);
  text-align: center;
}

/* Tablet */
@media (max-width: 1024px) {
  .section-clients { padding: 48px 0; }
  .client-logo-item { padding: 0 28px; }
  .client-logo-item img { max-height: 30px; max-width: 96px; }
  .clients-inner::before, .clients-marquee-outer::after { width: 60px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section-clients { padding: 36px 0; }
  .client-logo-item { padding: 0 20px; }
  .client-logo-item img { max-height: 24px; max-width: 76px; }
  .clients-inner::before, .clients-marquee-outer::after { width: 40px; }
}

/* ============================================================
   SERVICES TEASER
   ============================================================ */
.section-services {
  padding: 100px 48px;
  background: var(--c-offwhite);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.services-headline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--c-black);
  max-width: 480px;
  line-height: 1.2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-taupe);
}
.services-grid.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.services-grid.services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .services-grid.services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid.services-grid-4 { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--c-offwhite);
  padding: 48px 36px;
  transition: background 0.3s;
}
.service-card:hover { background: var(--c-cream); }
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.service-num {
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--c-taupe);
  line-height: 1;
}
.service-icon {
  width: 28px; height: 28px;
  color: var(--c-gold);
}
.service-name {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 12px;
}
.service-desc {
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-mid);
}
.service-card--photo {
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,0.15) 0%, rgba(20,18,16,0.75) 100%);
}
.service-card--photo:hover { background-color: transparent; }
.service-card--photo .service-card-top,
.service-card--photo .service-name,
.service-card--photo .service-desc {
  position: relative;
  z-index: 1;
}
.service-card--photo .service-num { color: rgba(255,255,255,0.75); }
.service-card--photo .service-name { color: #fff; }
.service-card--photo .service-desc { color: rgba(255,255,255,0.85); }
.service-arrow {
  margin-top: 20px;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover .service-arrow { opacity: 1; }

/* ============================================================
   OAC CALLOUT (above footer)
   ============================================================ */
.section-oac {
  background: var(--c-black);
  padding: 80px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.oac-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.oac-text {}
.oac-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
  display: block;
}
.oac-headline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.2;
  max-width: 500px;
}
.oac-body {
  margin-top: 12px;
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  line-height: 1.7;
}
.oac-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-black);
  background: var(--c-gold);
  padding: 14px 32px;
  transition: background 0.25s;
  white-space: nowrap;
}
.oac-cta:hover { background: var(--c-gold-lt); }

/* ============================================================
   CTA PARALLAX
   ============================================================ */
.parallax-cta {
  position: relative;
  height: 75vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.parallax-cta .parallax-bg.no-image {
  background: linear-gradient(160deg, #1e1a16 0%, #0f0f0f 100%);
}
.parallax-cta .parallax-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 60%);
}
.parallax-cta-content {
  position: relative; z-index: 2;
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.cta-headline {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 6rem);
  color: var(--c-white);
  line-height: 1.0;
  margin-bottom: 28px;
}
.btn-ghost-white {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 13px 30px;
  transition: background 0.25s, border-color 0.25s;
}
.btn-ghost-white:hover {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-white);
}

/* ============================================================
   FOOTER — cream background, black text
   ============================================================ */
#colophon {
  background: var(--c-cream);
  color: var(--c-black);
  padding: 80px 48px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(15,15,15,0.1);
  margin-bottom: 36px;
  gap: 28px;
}
.footer-brand-tagline {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--c-mid);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 240px;
}
.footer-col-title {
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--c-mid);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer-col ul li a:hover { color: var(--c-black); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  color: var(--c-stone);
  letter-spacing: 0.1em;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  color: var(--c-stone);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--c-black); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .portfolio-grid     { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-top         { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-inner        { grid-template-columns: repeat(2, 1fr); }
  .section-brand      { gap: 48px; padding: 80px 36px; grid-template-columns: 140px 1fr; }
  .section-intro      { grid-template-columns: 160px 1fr; gap: 40px; padding: 80px 36px; }
  .services-full-grid { grid-template-columns: repeat(2,1fr); }
  .workforce-badges   { grid-template-columns: repeat(2,1fr); }
  .about-stats        { grid-template-columns: repeat(2,1fr); }
  /* Portfolio archive: 2 columns on tablet */
  .portfolio-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 0 20px; }
  /* About brand statement padding */
  .about-parallax-content { padding: 60px 36px; }
}

/* ============================================================
   RESPONSIVE — mobile (≤768px) — hamburger menu
   ============================================================ */
@media (max-width: 768px) {

  /* Mobile header: hamburger left | logo center | (spacer right) */
  #site-header {
    grid-template-columns: 44px auto 44px;
    justify-content: space-between;
  }

  /* Hamburger moves to column 1 (left) */
  .menu-toggle {
    display: flex;
    grid-column: 1;
    justify-self: start;
    order: -1;
  }

  /* Logo centers in column 2 */
  .site-logo {
    grid-column: 2;
    justify-self: center;
    margin-right: 0;
    max-width: 200px;
    overflow: visible;
  }
  .site-logo img,
  .site-logo a img,
  .site-logo .custom-logo-link img {
    max-width: 180px !important;
    height: 36px !important;
    filter: none !important;
  }

  /* Hide desktop nav — it becomes a dropdown */
  .main-navigation {
    display: none;
    grid-column: 1 / -1;   /* not used in grid — it's position:fixed below */
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(248,245,241,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 24px 32px;
    border-top: 1px solid var(--c-cream);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 999;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .admin-bar .main-navigation { top: calc(var(--nav-h) + 46px); }

  .main-navigation.open {
    display: block;
    animation: slideDown 0.25s var(--ease);
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0; margin: 0;
    list-style: none;
  }
  .main-navigation ul li { border-bottom: 1px solid var(--c-cream); }
  .main-navigation ul li:last-child { border-bottom: none; }
  .main-navigation a {
    display: flex !important;
    align-items: center;
    padding: 14px 0 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.18em;
    color: var(--c-black) !important;
    min-height: 44px;
  }
  .nav-oac-btn { display: inline-flex !important; margin-top: 8px; padding: 10px 20px !important; }

  /* Disable parallax on mobile */
  .parallax-bg { background-attachment: scroll !important; }

  /* Hero — full width on mobile, smaller text, wider letter spacing */
  .hero-tagline  { font-size: clamp(1.4rem, 6vw, 2.5rem) !important; letter-spacing: 0.06em !important; }

  /* Sections */
  .section-brand     { grid-template-columns: 1fr; padding: 60px 20px; gap: 0; }
  .brand-left        { flex-direction: row; align-items: center; gap: 20px; margin-bottom: 32px; }
  .brand-divider     { width: 40px; height: 1px; margin-top: 0; }
  .brand-headline    { font-size: clamp(1.2rem, 5vw, 1.8rem); letter-spacing: 0.08em; }
  .section-intro     { grid-template-columns: 1fr; padding: 60px 20px; gap: 28px; }
  .section-portfolio { padding: 60px 0; }
  .section-press, .section-clients { padding: 40px 16px; }
  .section-services  { padding: 60px 20px; }
  .portfolio-grid    { grid-template-columns: 1fr; gap: 8px; }
  .services-grid     { grid-template-columns: 1fr; }
  .services-top      { flex-direction: column; gap: 16px; }
  .press-grid        { gap: 24px 32px; }
  /* Stats: 2x2 grid on mobile */
  .stats-inner       { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-item         { padding: 32px 16px; border-right: none; border-bottom: 1px solid rgba(15,15,15,0.08); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(15,15,15,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .section-stats     { padding: 0; }
  .section-oac       { padding: 60px 20px; }
  .oac-inner         { flex-direction: column; gap: 32px; }
  .parallax-mid      { min-height: 280px; }
  .parallax-cta      { padding-bottom: 48px; min-height: 50vh; }
  .cta-headline      { font-size: clamp(2rem, 8vw, 3.5rem) !important; }

  /* Footer */
  #colophon      { padding: 52px 20px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Portfolio archive */
  .portfolio-archive-grid  { grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
  .portfolio-archive-header { padding: 100px 20px 40px; }
  .portfolio-archive-body  { padding: 32px 0 60px; }

  /* About brand statement */
  .about-parallax-content { padding: 52px 24px; max-width: 100%; }
  .about-brand-statement  { font-size: clamp(1rem, 3.5vw, 1.3rem); }

  /* Services page */
  .services-page-inner    { padding: 40px 20px 60px; }
  .services-intro-row     { flex-direction: column; gap: 32px; }
  .services-three-col     { grid-template-columns: 1fr; }

  /* Before/After slider */
  .ba-slider-section { padding: 0 16px 40px; }

  /* Inner pages */
  .page-hero         { height: 45vh; min-height: 240px; }
  .page-hero-content { padding: 0 20px; }
  .page-title        { font-size: clamp(2rem, 9vw, 4rem) !important; }
  .page-inner        { padding: 48px 20px 80px; }
  .page-two-col, .page-two-col.sidebar-left, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .services-full-grid  { grid-template-columns: 1fr; }
  .workforce-badges    { grid-template-columns: 1fr 1fr; }
  .about-stats         { grid-template-columns: 1fr 1fr; }
  .about-stat          { padding: 32px 16px; }
  .form-two-col        { grid-template-columns: 1fr; gap: 0; }
  .portfolio-filters   { flex-wrap: wrap; gap: 6px; padding: 0 12px; }
  .filter-btn          { font-size: 0.58rem; padding: 8px 14px; }
  .single-project-layout  { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .single-project-gallery { columns: 1; padding: 0 20px 60px; }

  /* Portfolio page grid padding */
  #portfolio-grid,
  .portfolio-archive-grid { padding: 0 12px; }
}

/* ============================================================
   RESPONSIVE — small phones (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .hero-tagline     { font-size: clamp(1.3rem, 7vw, 2rem) !important; }
  .stat-num         { font-size: clamp(1.8rem, 8vw, 2.8rem) !important; }
  .workforce-badges { grid-template-columns: 1fr; }
  .about-stats      { grid-template-columns: 1fr 1fr; }
  .section-header   { flex-direction: column; gap: 8px; }
  .section-stats, .section-services,
  .section-press, .section-clients,
  .section-oac      { padding-left: 16px; padding-right: 16px; }
  .page-inner       { padding: 40px 16px 60px; }
  #colophon         { padding: 48px 16px 24px; }
}

/* Every possible logo image — hard height cap */
.site-logo img,
.site-logo img.logo-img,
.site-logo .custom-logo,
.site-logo .custom-logo-link img,
a.site-logo img,
a.custom-logo-link img {
  height: 32px !important;
  width: auto !important;
  max-height: 32px !important;
  max-width: 220px !important;
  object-fit: contain;
  display: block;
  transition: filter 0.3s var(--ease);
}

/* White logo over dark hero */
#site-header:not(.scrolled) .site-logo img,
#site-header:not(.scrolled) .site-logo img.logo-img,
#site-header:not(.scrolled) a.site-logo img,
#site-header:not(.scrolled) .custom-logo-link img {
  filter: brightness(0) invert(1);
}

/* Dark logo once scrolled */
#site-header.scrolled .site-logo img,
#site-header.scrolled .site-logo img.logo-img,
#site-header.scrolled a.site-logo img,
#site-header.scrolled .custom-logo-link img {
  filter: none;
}

/* Nav active link */
.main-navigation a.current-link {
  color: var(--c-gold);
}
.main-navigation a.current-link::after { width: 100%; background: var(--c-gold); }

/* ============================================================
   INNER PAGES — shared layout
   ============================================================ */
.page-hero {
  margin-top: 0;
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-color: var(--c-black);
  will-change: transform;
  transition: transform 0s;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
  display: block;
}
.page-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  color: var(--c-white);
  line-height: 1.05;
}

/* Editable page content area */
.page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}
.page-inner-content {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-mid);
}
.page-inner-content h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--c-black);
  margin: 56px 0 20px;
  line-height: 1.2;
}
.page-inner-content h3 {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--c-black);
  margin: 36px 0 12px;
}
.page-inner-content p { margin-bottom: 20px; }
.page-inner-content strong { color: var(--c-black); font-weight: 500; }
.page-inner-content a { color: var(--c-gold); border-bottom: 1px solid var(--c-gold); padding-bottom: 1px; }
.page-inner-content ul, .page-inner-content ol { margin: 16px 0 24px 24px; }
.page-inner-content li { margin-bottom: 8px; }
.page-inner-content img { max-width: 100%; border-radius: 0; margin: 32px 0; }

/* Two-col layout for inner pages */
.page-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.page-two-col.sidebar-left { grid-template-columns: 280px 1fr; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--c-offwhite);
  margin: 0;
}
.about-stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--c-cream);
}
.about-stat:last-child { border-right: none; }
.about-stat .stat-num {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--c-black);
  display: block; line-height: 1;
}
.about-stat .stat-label {
  font-family: var(--f-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.55);
  margin-top: 8px;
  display: block;
}

.differentiators { margin: 48px 0; }
.differentiator-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-cream);
}
.differentiator-item:last-child { border-bottom: none; }
.diff-dash {
  width: 28px; flex-shrink: 0;
  height: 1px; background: var(--c-gold);
  margin-top: 12px;
}
.diff-content h4 {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 8px;
}
.diff-content p {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--c-mid);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-taupe);
  margin: 48px 0;
}
.service-full-card {
  background: var(--c-offwhite);
  padding: 48px 36px;
  transition: background 0.3s;
}
.service-full-card:hover { background: var(--c-cream); }
.service-full-num {
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--c-taupe);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.service-full-name {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 16px;
}
.service-full-desc {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-mid);
}

/* Workforce housing badge section */
.workforce-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--c-gold);
  margin: 48px 0;
}
.workforce-badge {
  background: var(--c-black);
  padding: 36px 28px;
  text-align: center;
}
.workforce-badge h4 {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.workforce-badge p {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   PROCESS PAGE
   ============================================================ */
.process-steps {
  margin: 48px 0;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  border-bottom: none;
  position: relative;
}
.process-step-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--c-cream);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.process-step-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}
.process-step-num {
  position: relative;
  z-index: 1;
  font-family: var(--f-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1;
}
.process-step-arrow {
  display: none;
  position: absolute;
  top: 52px;
  right: -28px;
  z-index: 2;
  color: var(--c-taupe);
  font-size: 1.1rem;
}
@media (min-width: 901px) {
  .process-step-arrow { display: block; }
}
.process-step-content h3 {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-black);
  margin-bottom: 12px;
}
.process-step-content p {
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-mid);
  text-align: center;
}
.process-step-content p strong { font-weight: 600; color: var(--c-black); }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-step-arrow { display: none; }
}
.process-step-tag {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 4px 10px;
  margin-bottom: 12px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info {}
.contact-info-item {
  margin-bottom: 36px;
}
.contact-info-label {
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 6px;
}
.contact-info-value {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--c-black);
  line-height: 1.6;
}
.contact-info-value a { color: var(--c-black); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--c-gold); }

/* Contact form */
.contact-form { }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-stone);
  margin-bottom: 8px;
}
.form-row input[type=text],
.form-row input[type=email],
.form-row input[type=tel],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--c-taupe);
  background: #E8E0D6;
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--c-black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--c-gold);
  background: var(--c-white);
}
.form-row textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-row select { cursor: pointer; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-gold);
  border: none;
  padding: 15px 40px;
  cursor: pointer;
  transition: background 0.25s;
  width: 100%;
}
.form-submit:hover { background: #3a5233; }
.form-notice {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--c-stone);
  margin-top: 12px;
  text-align: center;
}

/* ============================================================
   RESPONSIVE — inner pages
   ============================================================ */
@media (max-width: 900px) {
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .workforce-badges   { grid-template-columns: repeat(2, 1fr); }
  .about-stats        { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero-content { padding: 0 24px; }
  .page-inner        { padding: 60px 24px 80px; }
  .page-two-col, .page-two-col.sidebar-left, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-full-grid { grid-template-columns: 1fr; }
  .workforce-badges   { grid-template-columns: 1fr 1fr; }
  .about-stats        { grid-template-columns: 1fr 1fr; }
  .form-two-col       { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER LOGO
   ============================================================ */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-img,
.footer-logo-link img,
.footer-logo-link .custom-logo,
.footer-logo-link .custom-logo-link img {
  height: 52px !important;
  width: auto !important;
  max-height: 52px !important;
  max-width: 360px !important;
  object-fit: contain;
  display: block;
  filter: none; /* cream footer — show logo in its natural black colour */
}

/* ============================================================
   TOUCH & ACCESSIBILITY — tap targets, touch-action
   ============================================================ */
@media (max-width: 768px) {
  /* Minimum 44px tap targets on mobile (WCAG 2.5.5) */
  .main-navigation a        { min-height: 44px; display: flex; align-items: center; }
  .menu-toggle               { min-width: 44px; min-height: 44px; }
  .btn-gold, .btn-outline,
  .btn-ghost-white, .oac-cta,
  .form-submit, .filter-btn  { min-height: 44px; }
  
  /* Prevent double-tap zoom on buttons */
  button, a, input, select, textarea { touch-action: manipulation; }

  /* Prevent text size adjustment on orientation change */
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  
  /* Smooth momentum scrolling on iOS */
  body { -webkit-overflow-scrolling: touch; }
}

/* ── Count-based column fallbacks (PHP adds these classes) ── */
.portfolio-grid--1 {
  columns: 1 !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.portfolio-grid--1 .portfolio-item img {
  max-height: 75vh;
  width: 100%;
  object-fit: cover;
}
.portfolio-grid--2 { columns: 2 !important; }
.portfolio-grid--3 { columns: 3; }

/* Archive grid — same adaptive behaviour */
.portfolio-archive-grid {
  columns: 3;
  column-gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}
.portfolio-archive-grid:has(.portfolio-item:only-child) { columns: 1; max-width: 900px; }
.portfolio-archive-grid:has(.portfolio-item:nth-child(2):last-child) { columns: 2; }

/* ============================================================
   HOMEPAGE PORTFOLIO — uniform tile grid
   Equal-height squares, 3 across, tight gap
   ============================================================ */
.portfolio-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1320px;
  margin: 0 auto;
}

.portfolio-tile {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

/* Fixed square-ish aspect ratio — all tiles same height */
.portfolio-tile-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;   /* 4:3 — change to 1/1 for square, 3/2 for wider */
  background: var(--c-cream);
}

.portfolio-tile-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.portfolio-tile:hover .portfolio-tile-inner img {
  transform: scale(1.06);
}

.portfolio-tile .portfolio-hover {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.portfolio-tile:hover .portfolio-hover { opacity: 1; }

.portfolio-tile-caption {
  padding: 8px 0 4px;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--c-stone);
  letter-spacing: 0.04em;
}

/* Placeholder when no image uploaded */
.portfolio-tile .portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet (768–1024px): 2 columns, constrained width so tiles aren't giant */
@media (max-width: 1024px) {
  .portfolio-tile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 860px;   /* keeps tiles from stretching full-width on iPad */
  }
  .portfolio-tile-inner {
    aspect-ratio: 4 / 3;
  }
}

/* Mobile (≤767px): 2 columns, consistent crop, tight but intentional */
@media (max-width: 767px) {
  .portfolio-tile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    max-width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }
  .portfolio-tile-inner {
    aspect-ratio: 3 / 4;   /* portrait crop — shows room detail nicely */
  }
  .portfolio-tile-caption {
    font-size: 0.58rem;
    padding: 5px 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Small phones (≤400px) */
@media (max-width: 400px) {
  .portfolio-tile-grid {
    gap: 5px;
    padding: 0 8px;
  }
  .portfolio-tile-inner {
    aspect-ratio: 1 / 1;
  }
}

/* ============================================================
   PORTFOLIO PAGE — Workshop Studio-style varied ratio grid
   3-column CSS grid, items span different row heights
   ============================================================ */
.portfolio-varied-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;        /* base row unit */
  gap: 12px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Size variants — each controls how many rows the item spans */
.portfolio-varied-item { overflow: hidden; position: relative; cursor: pointer; }
.portfolio-varied-item .portfolio-item-inner { width: 100%; height: 100%; overflow: hidden; }
.portfolio-varied-item .portfolio-item-inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease);
}
.portfolio-varied-item:hover .portfolio-item-inner img { transform: scale(1.04); }

/* tall  — portrait, 2 rows high */
.pv-tall  { grid-row: span 2; }

/* wide  — landscape, 1 row, spans 2 columns */
.pv-wide  { grid-column: span 2; }

/* sq    — square, 1 row, 1 column */
.pv-sq    { grid-row: span 1; }

/* med   — standard height, 1 row, 1 column */
.pv-med   { grid-row: span 1; }

/* placeholder when no image */
.portfolio-varied-item .portfolio-placeholder {
  width: 100%; height: 100%;
  background: var(--c-cream);
  display: flex; align-items: center; justify-content: center;
}

/* Caption sits below item */
.portfolio-varied-item .portfolio-caption {
  padding: 7px 0 3px;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--c-stone);
  letter-spacing: 0.04em;
}

/* Tablet — 2 col, uniform rows */
@media (max-width: 1024px) {
  .portfolio-varied-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
    gap: 8px;
  }
  /* Remove wide span on tablet — no 3rd column to fill */
  .pv-wide { grid-column: span 1; }
}

/* Mobile — single column, natural image height */
@media (max-width: 767px) {
  .portfolio-varied-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: unset;
    gap: 8px;
    padding: 0 12px;
  }
  .pv-tall, .pv-wide, .pv-sq, .pv-med {
    grid-row: span 1;
    grid-column: span 1;
  }
  .portfolio-varied-item .portfolio-item-inner {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

/* ============================================================
   MOBILE LOGO — force left alignment
   ============================================================ */
@media (max-width: 768px) {
  .site-logo,
  .site-logo a,
  .site-logo .custom-logo-link {
    margin-left: 0 !important;
    justify-self: start !important;
    align-self: center;
  }
  /* Ensure header grid puts logo firmly left */
  #site-header {
    grid-template-columns: 1fr auto;   /* logo takes space, hamburger right */
    justify-items: start;
  }
  .site-logo { grid-column: 1; grid-row: 1; }
  .menu-toggle { grid-column: 2; grid-row: 1; justify-self: end; }
  .main-navigation { grid-column: 1 / -1; }
}

/* old collapse CSS removed */

/* See More / See Less button */
.clients-toggle-wrap {
  display: none;          /* hidden on desktop */
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .clients-toggle-wrap { display: block; }
}

.clients-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--c-stone);
  background: none;
  border: none;
  border-bottom: 1px solid var(--c-taupe);
  padding: 4px 0 6px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.clients-toggle-btn:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.clients-toggle-btn .toggle-arrow {
  display: inline-block;
  font-style: normal;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  transition: transform 0.35s var(--ease);
  color: var(--c-gold);
}
.clients-toggle-btn.is-open .toggle-arrow {
  transform: rotate(180deg);
}

/* old expand animation removed */

/* ============================================================
   SERVICES PAGE — three-column layout with lists
   ============================================================ */
.services-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}

.services-intro-row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.services-intro-label {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--c-stone);
  white-space: nowrap;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 120px;
}

.services-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
  flex: 1;
}

.services-col {}

.services-section-heading {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--c-black);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.services-col-title {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-black);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-taupe);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-list {
  list-style: none;
  margin: 0; padding: 0;
}
.services-list li {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--c-charcoal, #2d2d2d);
  line-height: 1.6;
  padding: 5px 0;
  position: relative;
  padding-left: 14px;
}
.services-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 600;
}
/* Sub-list */
.services-list ul {
  list-style: none;
  margin: 4px 0 4px 12px;
  padding: 0;
}
.services-list ul li {
  font-size: 0.78rem;
  color: var(--c-stone);
  padding-left: 14px;
}
.services-list ul li::before {
  content: '○';
  font-size: 0.5rem;
  top: 2px;
}

/* Other / specialty box */
.services-other-box {
  background: var(--c-offwhite);
  border: 1px solid var(--c-light-gray, #e8e5e0);
  border-radius: 2px;
  padding: 40px 44px;
  margin-bottom: 48px;
}
.services-other-title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-black);
  margin-bottom: 12px;
}
.services-other-tags {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--c-stone);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.services-other-desc {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-mid);
}

/* OAC callout row */
.services-oac-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 44px;
  background: var(--c-cream);
  border-left: 3px solid var(--c-gold);
  margin-bottom: 48px;
}

/* Responsive */
@media (max-width: 900px) {
  .services-three-col { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-intro-row { flex-direction: column; gap: 24px; }
  .services-intro-label { min-width: unset; }
}
@media (max-width: 768px) {
  .services-page-inner { padding: 48px 20px 80px; }
  .services-three-col { grid-template-columns: 1fr; gap: 32px; }
  .services-other-box,
  .services-oac-row { padding: 28px 24px; }
  .services-oac-row { flex-direction: column; align-items: flex-start; gap: 20px; }
}




/* ── Mobile header layout ──────────────────────────────── */
@media (max-width: 768px) {
  #site-header {
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    overflow: hidden;
  }
  .menu-toggle {
    display: flex;
    grid-column: 1;
    justify-self: start;
    align-self: center;
    order: -1;
  }
  .site-logo {
    grid-column: 2;
    justify-self: center;
    align-self: center;
    margin-right: 0;
    max-width: 110px;
    overflow: hidden;
  }
  .main-navigation {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0; bottom: 0;
    background: rgba(248,245,241,0.99);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 24px 48px;
    border-top: 1px solid var(--c-cream);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    width: 100%;
  }
  .admin-bar .main-navigation { top: 104px; }
  .main-navigation.open {
    display: block !important;
    animation: slideDown 0.25s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 0; align-items: stretch;
    padding: 0; margin: 0;
    list-style: none; width: 100%;
  }
  .main-navigation ul li { border-bottom: 1px solid var(--c-cream); width: 100%; }
  .main-navigation ul li:last-child { border-bottom: none; }
  .main-navigation a {
    display: flex !important;
    align-items: center;
    padding: 14px 0 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.12em;
    color: var(--c-black) !important;
    min-height: 44px;
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.4;
  }
  .nav-oac-btn { display: inline-flex !important; margin-top: 8px; padding: 10px 20px !important; }
}



/* ============================================================
   PORTFOLIO PAGE — Workshop Studio style
   3-col grid, uniform row height, object-fit cover, no extras
   ============================================================ */

.portfolio-filter-bar {
  padding: 32px 48px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-page-wrap {
  padding: 20px 48px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.pf-item {
  display: flex;
  flex-direction: column;
  cursor: default;
}


.pf-inner {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-cream);
}


.pf-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pf-placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--c-stone);
}

.pf-caption {
  padding: 7px 0 4px;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--c-stone);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.pf-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--c-taupe);
}

/* Tablet — 2 columns */
@media (max-width: 1024px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .portfolio-filter-bar,
  .portfolio-page-wrap { padding-left: 24px; padding-right: 24px; }
}

/* Mobile — 1 column */
@media (max-width: 600px) {
  .pf-grid { grid-template-columns: 1fr; gap: 5px; }
  .portfolio-filter-bar { padding: 20px 16px 0; }
  .portfolio-page-wrap  { padding: 16px 16px 60px; }
}

/* Logo swap */
.logo-white { display: block !important; }
.logo-black { display: none   !important; }
#site-header.scrolled .logo-white { display: none  !important; }
#site-header.scrolled .logo-black { display: block !important; }

/* Logo sizing */
.site-logo img,
.site-logo img.logo-img,
.site-logo .custom-logo,
.site-logo a img,
.site-logo .custom-logo-link img,
a.site-logo img,
a.custom-logo-link img {
  height: 36px !important;
  width: auto !important;
  max-height: 36px !important;
  max-width: 240px !important;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .site-logo img,
  .site-logo img.logo-img,
  .site-logo .custom-logo,
  .site-logo a img,
  .site-logo .custom-logo-link img,
  a.site-logo img,
  a.custom-logo-link img {
    height: 26px !important;
    max-height: 26px !important;
    max-width: 150px !important;
  }
  #site-header {
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    overflow: hidden;
  }
  .menu-toggle {
    display: flex; grid-column: 1;
    justify-self: start; align-self: center; order: -1;
  }
  .site-logo {
    grid-column: 2; justify-self: center; align-self: center;
    margin-right: 0; max-width: 110px; overflow: hidden;
  }
  .main-navigation {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(248,245,241,0.98);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 24px 24px 48px; border-top: 1px solid var(--c-cream);
    z-index: 9999; overflow-y: auto; overflow-x: hidden;
    -webkit-overflow-scrolling: touch; box-sizing: border-box; width: 100%;
  }
  .admin-bar .main-navigation { top: calc(var(--nav-h) + 46px); }
  .main-navigation.open { display: block; }
  .main-navigation ul {
    flex-direction: column; gap: 0; align-items: stretch;
    padding: 0; margin: 0; list-style: none; width: 100%;
  }
  .main-navigation ul li { border-bottom: 1px solid var(--c-cream); width: 100%; }
  .main-navigation ul li:last-child { border-bottom: none; }
  .main-navigation a {
    display: flex !important; padding: 14px 0 !important;
    font-size: 0.75rem !important; color: var(--c-black) !important;
    min-height: 44px; white-space: normal !important;
    word-break: break-word; line-height: 1.4;
  }
  /* Mobile nav full-screen overlay */
  .main-navigation {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #F8F5F1;
    z-index: 9998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    width: 100%; min-height: 100vh;
  }
  .main-navigation.open {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeInNav 0.25s ease;
  }
  @keyframes fadeInNav {
    from { opacity: 0; } to { opacity: 1; }
  }
  .main-navigation ul {
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    gap: 0 !important; width: 100% !important;
    padding: 0 !important; margin: 0 !important; list-style: none !important;
  }
  .main-navigation ul li {
    width: 100%; text-align: center;
    border-bottom: 1px solid var(--c-cream) !important;
  }
  .main-navigation ul li:first-child { border-top: 1px solid var(--c-cream); }
  .main-navigation ul li a {
    display: block !important; padding: 22px 24px !important;
    font-family: var(--f-sans) !important; font-size: 0.8rem !important;
    font-weight: 500 !important; letter-spacing: 0.2em !important;
    text-transform: uppercase !important; color: var(--c-black) !important;
    text-align: center !important; width: 100% !important;
  }
  .main-navigation .nav-oac-btn .nav-oac-img { display: none !important; }
  .main-navigation .nav-oac-btn .nav-oac-text { display: inline !important; }
  .main-navigation .nav-oac-btn {
    display: block !important; width: 100% !important;
    padding: 22px 24px !important; text-align: center !important;
    color: var(--c-gold) !important; font-family: var(--f-sans) !important;
    font-size: 0.8rem !important; font-weight: 500 !important;
    letter-spacing: 0.2em !important; text-transform: uppercase !important;
  }
}


/* ── Footer — centered redesign ─────────────────── */
.footer-logo-link {
  display: block;
  line-height: 0;
}
.footer-logo-img,
.footer-logo-link img {
  height: 36px !important;
  width: auto !important;
  max-width: 280px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: none; /* cream footer — natural black logo */
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: center;
  align-items: center;
}
.footer-nav-links a {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mid);
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--c-black); }

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-contact-link {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--c-mid);
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--c-black); }
.footer-social-icon img {
  width: 20px; height: 20px;
  opacity: 0.55;
  transition: opacity 0.2s;
  filter: brightness(0); /* black icons on cream */
}
.footer-social-icon:hover img { opacity: 1; }
.footer-oac-link img {
  height: 28px; width: auto;
  opacity: 0.8;
  filter: none;
  mix-blend-mode: multiply;
  transition: opacity 0.2s;
}
.footer-oac-link:hover img { opacity: 1; }

/* ── OAC nav button — replace text with logo ──── */
.nav-oac-btn {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}
.nav-oac-btn img {
  height: 26px !important;
  width: auto !important;
  max-width: 120px !important;
  filter: none;
  mix-blend-mode: multiply;
  transition: opacity 0.2s;
}
#site-header.scrolled .nav-oac-btn img {
  filter: none;
  mix-blend-mode: multiply;
}
.nav-oac-btn:hover img { opacity: 0.7; }


/* ============================================================
   ABOUT PAGE — redesigned sections
   ============================================================ */

/* Parallax bar with brand statement */
.about-parallax-bar {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-cream);
}
/* parallax bg and overlay hidden — solid colour only */
.about-parallax-bg { display: none; }
.about-parallax-overlay { display: none; }
.about-parallax-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  padding: 80px 80px;
  text-align: center;
}
.about-brand-statement {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.8;
  color: var(--c-black);
}
.about-brand-statement--list {
  max-width: 900px;
  margin: 0 auto;
}
.about-brand-line {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  text-align: left;
}
.about-brand-line:last-child { margin-bottom: 0; }
.about-brand-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  opacity: .9;
}
.about-brand-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.about-brand-line p {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--c-black);
  margin: 0;
}
.about-brand-line p strong { font-weight: 700; }
@media (max-width: 700px) {
  .about-brand-line { gap: 12px; }
}

/* What Makes Us Different */
.about-diff-section {
  padding: 96px 48px;
  background: var(--c-offwhite);
}
.about-diff-inner {
  max-width: 1320px;
  margin: 0 auto;
}
/* 5 equal columns separated by vertical lines — like the reference */
.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--c-cream);
}
.about-diff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--c-cream);
  position: relative;
}
.about-diff-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--c-cream);
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 0 0 6px var(--c-offwhite);
}
.about-diff-arrow {
  display: none;
  position: absolute;
  top: 55px;
  right: -14px;
  z-index: 2;
  color: var(--c-taupe);
  font-size: 1rem;
  background: var(--c-offwhite);
}
@media (min-width: 901px) {
  .about-diff-arrow { display: block; }
}
.about-diff-title {
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--c-black);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.about-diff-body {
  font-family: var(--f-sans);
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-mid);
  text-align: center;
}
.about-diff-body strong { font-weight: 600; color: var(--c-black); }
.about-diff-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.about-diff-list li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}
.about-diff-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--c-taupe);
}

/* Founder */
.about-founder-section {
  padding: 96px 48px;
  background: var(--c-white);
}
.about-founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.about-founder-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-founder-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: .75rem;
  color: var(--c-stone);
  text-align: center;
  padding: 24px;
}
.about-founder-name {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--c-black);
  line-height: 1.1;
  margin-bottom: 6px;
}
.about-founder-title {
  font-family: var(--f-sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 28px;
}
.about-founder-bio p {
  font-family: var(--f-sans);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-mid);
  margin-bottom: 16px;
}
.about-founder-contact {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: .7rem;
  font-weight: 400;
  color: var(--c-stone);
  border-bottom: 1px solid var(--c-cream);
  padding-bottom: 2px;
  margin-top: 12px;
  transition: color .2s, border-color .2s;
}
.about-founder-contact:hover { color: var(--c-gold); border-color: var(--c-gold); }

/* Reach */
/* ── Team / Org Chart Section ── */
.about-team-section {
  padding: 96px 48px;
  background: var(--c-offwhite);
}
.about-team-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.about-team-heading {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--c-black);
  margin-bottom: 20px;
  line-height: 1.1;
}
.about-team-divider {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin-bottom: 24px;
}
.about-team-body {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-mid);
  margin-bottom: 16px;
}
.about-team-chart-col {
  width: 100%;
}
.about-team-chart-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.about-team-placeholder {
  width: 100%;
  min-height: 420px;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--c-taupe);
  border-radius: 2px;
}
.about-team-placeholder span {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--c-stone);
  text-align: center;
  padding: 20px;
}
@media (max-width: 1024px) {
  .about-team-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .about-team-section { padding: 60px 20px; }
}

.about-reach-section {
  padding: 96px 48px;
  background: var(--c-cream);
}
.about-reach-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.about-reach-map img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  display: block;
  margin: 0 auto 60px;
}
.about-reach-map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--c-offwhite);
  border: 2px dashed var(--c-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: .75rem;
  color: var(--c-stone);
  text-align: center;
  padding: 24px;
  margin-bottom: 60px;
}
.about-reach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.about-reach-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(0,0,0,0.12);
}
.about-reach-stat:last-child { border-right: none; }
/* Stat numbers and labels — dark on light background */
.about-reach-stat .stat-num {
  color: var(--c-gold) !important;
}
.about-reach-stat .stat-label {
  color: var(--c-stone) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.18em !important;
}

/* Responsive */
@media (max-width: 768px) {
  .about-diff-grid        { grid-template-columns: repeat(2, 1fr); border-left: none; }
  .about-diff-item        { border: none; border-bottom: 1px solid var(--c-cream); padding: 32px 0; }
  .about-founder-inner    { grid-template-columns: 1fr; gap: 40px; }
  .about-diff-section,
  .about-founder-section,
  .about-reach-section    { padding: 60px 20px; }
  .about-parallax-content { padding: 60px 24px; }
  .about-reach-stats      { grid-template-columns: repeat(3, 1fr); }
}


/* Admin bar offset — heroes need extra negative margin to clear admin bar */
.admin-bar body { padding-top: calc(var(--nav-h) + 32px); }
.admin-bar .parallax-hero,
.admin-bar .page-hero {
  margin-top: calc(-1 * (var(--nav-h) + 32px));
}
@media screen and (max-width: 782px) {
  .admin-bar body { padding-top: calc(var(--nav-h) + 46px); }
  .admin-bar .parallax-hero,
  .admin-bar .page-hero {
    margin-top: calc(-1 * (var(--nav-h) + 46px));
  }
}


/* ============================================================
   PORTFOLIO PAGE — 3 column, all posts, no pagination
   ============================================================ */
.portfolio-filter-bar {
  padding: 28px 48px 0;
  max-width: 1400px;
  margin: 0 auto;
}
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.filter-btn {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--c-taupe);
  background: transparent;
  color: var(--c-stone);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-white);
}

.portfolio-page-wrap {
  padding: 20px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

/* 3 column grid */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.pf-item {
  display: flex;
  flex-direction: column;
  cursor: default;
}

.pf-inner {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-cream);
}

.pf-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pf-placeholder {
  width: 100%; height: 100%;
  background: var(--c-cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-sans); font-size: 0.75rem; color: var(--c-stone);
}

.pf-caption {
  padding: 7px 0 4px;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--c-stone);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.pf-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--c-taupe);
}

/* Tablet — 2 columns */
@media (max-width: 1024px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .portfolio-filter-bar,
  .portfolio-page-wrap { padding-left: 24px; padding-right: 24px; }
}

/* Mobile — 1 column */
@media (max-width: 600px) {
  .pf-grid { grid-template-columns: 1fr; gap: 5px; }
  .portfolio-filter-bar { padding: 20px 16px 0; }
  .portfolio-page-wrap  { padding: 16px 16px 60px; }
}



/* ============================================================
   PORTFOLIO TILED GALLERY — CSS columns masonry
   Matches Workshop Studio: photos at natural ratio, no gaps
   ============================================================ */

.ptg-wrap {
  padding: 0 48px 80px;   /* side barriers matching site margins */
}

/* 3 CSS columns */
.ptg-masonry {
  columns: 3;
  column-gap: 48px;       /* matches side padding for equal feel */
  width: 100%;
}

.ptg-item {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 6px;     /* tighter gap between photos */
  position: relative;
  vertical-align: top;
}

/* Images fill column width at natural ratio */
.ptg-item img {
  width: 100%;
  height: auto;
  display: block;
}

.ptg-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--c-stone);
}

/* Caption — more space below so next photo feels separate */
.ptg-caption {
  padding: 10px 0 28px;   /* generous bottom padding = gap before next photo */
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--c-stone);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* Tablet — 2 columns */
@media (max-width: 1024px) {
  .ptg-masonry { columns: 2; column-gap: 6px; }
  .ptg-item    { margin-bottom: 6px; }
  .ptg-wrap    { padding: 0 24px 60px; }
}

/* Mobile — 1 column */
@media (max-width: 600px) {
  .ptg-masonry { columns: 1; }
  .ptg-wrap    { padding: 0 16px 40px; }
}



/* ── Back to Top Button ─────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--c-black);
  color: var(--c-white);
  border: none;
  border-radius: 0;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
#back-to-top:hover {
  background: var(--c-stone);
}
@media (max-width: 600px) {
  #back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1.2rem; }
}

/* ============================================================
   OAC-SPECIFIC SECTIONS
   ============================================================ */

/* Services Grid */
.oac-services { padding: 80px 48px; background: var(--c-offwhite); }
.oac-services-inner { max-width: 1320px; margin: 0 auto; }
.oac-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--c-cream);
}
.oac-service-card {
  padding: 48px 36px;
  border-right: 1px solid var(--c-cream);
  border-bottom: 1px solid var(--c-cream);
}
.oac-service-card:nth-child(n+4) { border-bottom: none; }
.oac-service-num {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--c-taupe);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.oac-service-name {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 12px;
}
.oac-service-desc {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-mid);
}

/* Portfolio Preview Grid */
.oac-portfolio { padding: 80px 48px; background: var(--c-offwhite); }
.oac-portfolio-header {
  max-width: 1320px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.oac-portfolio-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--c-black);
}
.oac-portfolio-link {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.oac-portfolio-link:hover { opacity: 0.7; }
.oac-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.oac-grid-item { position: relative; overflow: hidden; }
.oac-grid-item img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.5s; }
.oac-grid-item:hover img { transform: scale(1.03); }
.oac-grid-item-hover {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.oac-grid-item:hover .oac-grid-item-hover { opacity: 1; }
.oac-hover-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-white);
  font-weight: 300;
}
.oac-hover-type {
  font-family: var(--f-sans);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.oac-item-caption {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--c-stone);
  padding: 8px 0 4px;
}

/* SBDG Callout */
.oac-sbdg-callout {
  background: var(--c-black);
  padding: 72px 48px;
}
.oac-sbdg-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.oac-section-label {
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 16px;
}
.oac-sbdg-headline {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--c-white);
  margin-bottom: 12px;
}
.oac-sbdg-body {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
}
.oac-sbdg-btn {
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-black);
  background: var(--c-gold);
  padding: 14px 32px;
  white-space: nowrap;
  transition: background 0.2s;
}
.oac-sbdg-btn:hover { background: #3a5233; }

/* Responsive */
@media (max-width: 1024px) {
  .oac-services-grid { grid-template-columns: repeat(2, 1fr); }
  .oac-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .oac-services { padding: 60px 20px; }
  .oac-services-grid { grid-template-columns: 1fr; border-left: none; }
  .oac-service-card { border-right: none; border-bottom: 1px solid var(--c-cream); }
  .oac-portfolio { padding: 60px 20px; }
  .oac-portfolio-header { flex-direction: column; gap: 12px; }
  .oac-grid { grid-template-columns: 1fr; }
  .oac-sbdg-callout { padding: 60px 20px; }
  .oac-sbdg-inner { flex-direction: column; gap: 32px; }
}

/* Mobile nav close button — inside the overlay */
.mobile-nav-close-btn {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-close-btn span {
  position: absolute;
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-black);
  transform-origin: center;
}
.mobile-nav-close-btn span:first-child { transform: rotate(45deg); }
.mobile-nav-close-btn span:last-child  { transform: rotate(-45deg); }

@media (max-width: 768px) {
  .main-navigation.open .mobile-nav-close-btn {
    display: flex !important;
  }
}
