:root {
  --ink: #20231d;
  --muted: #5d635a;
  --forest: #24512d;
  --forest-deep: #183b22;
  --forest-rgb: 36, 81, 45;
  --forest-deep-rgb: 24, 59, 34;
  --leaf: #457b3a;
  --leaf-rgb: 69, 123, 58;
  --timber: #73510a;
  --timber-dark: #623b18;
  --timber-rgb: 98, 59, 24;
  --gold: #ecc14f;
  --gold-soft: #f0d87f;
  --gold-rgb: 236, 193, 79;
  --sage: #a5b77f;
  --sage-soft: #eef1e1;
  --sand: #f2e8d4;
  --cream: #fff9ee;
  --cream-rgb: 255, 249, 238;
  --surface: #fffdf7;
  --surface-rgb: 255, 253, 247;
  --line: rgba(var(--forest-rgb), 0.18);
  --line-strong: #7b8873;
  --on-dark: #faf2e3;
  --on-dark-muted: #d8e1cf;
  --shadow: 0 22px 70px rgba(var(--forest-rgb), 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 24px;
  background: radial-gradient(circle at top left, rgba(var(--gold-rgb), .2), transparent 34rem), linear-gradient(180deg, var(--cream), var(--sage-soft));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

a:link, a:visited { color: var(--timber-dark); text-decoration-color: rgba(var(--timber-rgb), .35); text-underline-offset: .18em; }
a:hover, a:active { color: var(--timber); text-decoration-color: currentColor; }
img { max-width: 100%; height: auto; }
:where(a, button, input, textarea, summary):focus-visible { outline: 3px solid var(--leaf); outline-offset: 3px; }

/* Keep editorial text blocks from ending in awkward, isolated words. */
:where(h1, h2, h3, h4, h5, h6, .HeadingStyle, .eyebrow, figcaption) {
  overflow-wrap: break-word;
  text-wrap: balance;
}

:where(p, li, dd, blockquote) {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.Global {
  display: block;
  width: min(100%, 1440px);
  min-height: calc(100vh - 48px);
  margin: 0 auto;
  overflow: hidden;
  background: rgba(var(--cream-rgb), .97);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.Global > tbody, .Global > tbody > tr, .Global > tbody > tr > td { display: block; width: 100% !important; }
.Global > tbody > tr:first-child,
.Global > tbody > tr:first-child > td {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible;
}

.Global > tbody > tr:first-child > td { background: var(--forest-deep); }

.Global > tbody > tr:first-child > td > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 12px 2px 4px 18px;
  color: rgba(255, 255, 255, .8);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.Global > tbody > tr:first-child > td > img { width: 18px; margin-right: 6px; vertical-align: middle; }

.NavBar, .NavBar tbody, .NavBar tr, .NavBar td { display: block; width: 100%; height: auto; }
.NavBar > tbody > tr > td { padding: 0 22px 15px !important; background: transparent !important; border: 0; text-align: left; }
.NavBarMenu tr { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.NavBarMenu td { display: inline-flex; align-items: center; width: auto; padding: 0 !important; color: rgba(255, 255, 255, .32) !important; font: inherit !important; }

.NavBarMenu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .92) !important;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .035em;
  text-decoration: none;
  transition: 160ms ease;
}

.NavBarMenu a b { color: inherit !important; }
.NavBarMenu a:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .28); transform: translateY(-1px); }

.Header { display: block; width: 100%; height: auto; padding: 18px 30px 30px; border: 0; background: linear-gradient(110deg, rgba(0, 0, 0, .16), transparent 55%), var(--forest-deep); }
.Header tbody, .Header tr, .Header td { display: block; width: 100% !important; }
.Header td { padding: 0 !important; border: 0; }
.Header img { display: block; width: 132px; height: 132px; border-radius: 50%; object-fit: cover; object-position: center; filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .2)); }

.Global > tbody > tr:nth-of-type(2) {
  display: grid;
  grid-template-columns: minmax(180px, 234px) minmax(0, 1fr) minmax(210px, 300px);
  gap: 30px;
  padding: 38px;
  background: var(--cream);
}

.Global > tbody > tr:nth-of-type(2) > td { width: auto !important; min-width: 0; }
.Left, .Right, .Content { background: transparent; color: inherit; }
.Content { padding: 6px 10px !important; border: 0 !important; font-size: 1rem; }
.Content > p { margin: 0 0 1.2rem; }

.HeadingStyle {
  margin: 0 0 24px;
  color: var(--forest) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.HeadingStyle font { color: inherit !important; }
p, .SmallFont, .SmallFont td { color: var(--muted); font: inherit; }
b, strong { color: var(--ink); font-weight: 750; }

blockquote {
  margin: 32px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--timber);
  border-radius: 0 14px 14px 0;
  background: var(--sand);
  color: var(--forest);
  font-size: .93rem;
  font-weight: 600;
}

.BoxStyle { width: 100% !important; height: auto !important; margin: 0 0 18px; overflow: hidden; border-radius: 20px; box-shadow: 0 12px 30px rgba(var(--forest-rgb), .13); }
.BoxStyle td { padding: 0; border: 0; background: var(--sand); }
.BoxStyle img { display: block; width: 100% !important; height: auto !important; min-height: 190px; max-height: 300px; object-fit: cover; }

.Content table:not(.BoxStyle) { width: 100% !important; border: 0 !important; border-spacing: 12px !important; background: transparent !important; }
.Content table:not(.BoxStyle) td { overflow: hidden; padding: 0 !important; border: 1px solid var(--line) !important; border-radius: 14px; background: white !important; box-shadow: 0 10px 28px rgba(var(--forest-rgb), .08); }
.Content table:not(.BoxStyle) img { display: block; width: 100% !important; height: auto !important; min-height: 180px; object-fit: cover; }

form { margin: 26px 0; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--sand); }
input[type="text"], input[type="email"], textarea { width: 100%; margin: 6px 0 16px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 10px; background: white; color: var(--ink); font: inherit; }
textarea { min-height: 130px; resize: vertical; }
input[type="submit"] { min-height: 46px; padding: 10px 20px; border: 0; border-radius: 999px; background: var(--forest); color: white; font: 700 .88rem/1 inherit; cursor: pointer; }

.Right > form { padding: 16px; font-size: .82rem; }
.Right > form table, .Right > form td { display: block; width: 100% !important; height: auto !important; }
.Right > form img { max-width: 100px; }
#sl_shield_image { max-width: 120px; opacity: .8; }

.Global > tbody > tr:last-child > td { min-height: 0 !important; }
.Footer { width: 100%; height: auto; }
.Footer td { height: auto; padding: 22px 26px; border: 0; background: var(--forest-deep); color: rgba(255, 255, 255, .66); font-size: .78rem; text-align: center; }
.Footer a { color: rgba(255, 255, 255, .86) !important; }

@media (max-width: 1040px) {
  body { padding: 14px; }
  .Global { min-height: calc(100vh - 28px); border-radius: 22px; }
  .Global > tbody > tr:nth-of-type(2) { grid-template-columns: minmax(150px, 210px) minmax(0, 1fr); gap: 24px; padding: 28px; }
  .Right { display: none !important; }
}

@media (max-width: 720px) {
  body { padding: 0; background: var(--cream); }
  .Global { min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
  .Global > tbody > tr:first-child > td > a { margin-left: 14px; }
  .NavBar > tbody > tr > td { padding: 0 12px 12px !important; }
  .NavBarMenu tr { gap: 5px; }
  .NavBarMenu a { min-height: 36px; padding: 6px 9px; font-size: .69rem; }
  .Header { padding: 14px 18px 22px; }
  .Global > tbody > tr:nth-of-type(2) { display: flex; flex-direction: column; gap: 20px; padding: 24px 18px 32px; }
  .Content { order: -1; padding: 0 !important; }
  .Left { display: grid !important; grid-template-columns: 1fr 1fr; gap: 12px; }
  .Left .BoxStyle { margin: 0; }
  .HeadingStyle { font-size: clamp(2rem, 10vw, 3.2rem); }
  .Content table:not(.BoxStyle), .Content table:not(.BoxStyle) tbody, .Content table:not(.BoxStyle) tr { display: block; width: 100% !important; }
  .Content table:not(.BoxStyle) td { display: block; width: 100% !important; margin-bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .project-carousel-viewport, .project-carousel:not(.is-enhanced) { scroll-behavior: auto !important; }
}

/* Modern semantic pages */
.modern-page {
  padding: 0;
  background: var(--cream);
  color: var(--ink);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 24px;
  width: min(100% - 48px, 1320px);
  min-height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--forest-deep) !important; text-decoration: none; }
.brand img { width: 62px; height: 62px; border-radius: 50%; object-fit: contain; filter: drop-shadow(0 7px 12px rgba(var(--forest-deep-rgb), .2)); }
.brand span { display: grid; line-height: 1.15; }
.brand strong { color: var(--forest-deep); font-family: Georgia, serif; font-size: 1.2rem; font-weight: 600; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .64rem; letter-spacing: .03em; }

.site-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.site-nav a { padding: 9px 11px; border-radius: 999px; color: var(--muted); font-size: .78rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--sage-soft); color: var(--forest-deep); }
.mobile-nav-only { display: none; }
.menu-toggle { display: none; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.language-link { color: var(--muted) !important; font-size: .75rem; font-weight: 700; text-decoration: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: white !important;
  font-size: .82rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { background: var(--leaf); transform: translateY(-1px); }
.button-small { min-height: 40px; padding: 8px 15px; font-size: .75rem; }
.button-outline { background: transparent; color: var(--forest) !important; }
.button-outline:hover { background: var(--sand); }
.text-link { color: var(--forest) !important; font-size: .86rem; font-weight: 750; text-decoration: none; }
.text-link span { color: var(--timber); }

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  width: min(100% - 48px, 1320px);
  min-height: 680px;
  margin: 0 auto;
  padding: 72px 0 80px;
}

.eyebrow { margin: 0 0 16px; color: var(--timber-dark) !important; font-size: .72rem !important; font-weight: 800 !important; letter-spacing: .13em; text-transform: uppercase; }
.hero-copy h1 { max-width: 720px; margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.8rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.hero-lede { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 30px; }
.hero-image { position: relative; margin: 0; }
.hero-image::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; z-index: -1; border-radius: 30px; background: linear-gradient(145deg, var(--sage-soft), var(--sand)); }
.hero-image img { display: block; width: 100%; aspect-ratio: 4 / 5; max-height: 650px; border-radius: 26px; object-fit: cover; box-shadow: var(--shadow); }
.hero-image figcaption { position: absolute; right: 18px; bottom: 18px; padding: 8px 12px; border-radius: 999px; background: rgba(var(--cream-rgb), .9); color: var(--forest); font-size: .7rem; font-weight: 750; backdrop-filter: blur(8px); }

.intro-section, .story-section, .contact-band { width: min(100% - 48px, 1180px); margin: 0 auto; }
.intro-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 120px); padding: 100px 0; border-top: 1px solid var(--line); }
.intro-section h2, .story-copy h2, .contact-band h2, .legacy-copy h1 { margin: 0; color: var(--forest); font-family: Georgia, serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.intro-section h2, .story-copy h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.reading-copy { max-width: 720px; }
.reading-copy p, .story-copy > p { margin: 0 0 20px; color: var(--muted); font-size: 1rem; line-height: 1.78; }
.quality-points { margin: 30px 0 0; padding: 24px 0 0 1.25rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .95rem; line-height: 1.72; }
.quality-points li { padding-left: .25rem; }
.quality-points li + li { margin-top: 15px; }
.quality-points li::marker { color: var(--timber); font-size: 1.15em; }
.quality-points strong { color: var(--forest); font-weight: 800; }
.quality-points .text-link { display: inline; margin-left: .25rem; }

.story-section { padding: 100px 0; border-top: 1px solid var(--line); }
.story-section .story-copy { width: min(100%, 820px); margin: 0 auto; }
.story-copy .text-link { display: inline-block; margin-top: 8px; }

.story-main { overflow: hidden; }
.story-page-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr); align-items: center; gap: clamp(48px, 8vw, 110px); width: min(100% - 48px, 1180px); margin: 0 auto; padding: 72px 0 96px; }
.story-page-copy h1 { max-width: 720px; margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.6rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.story-page-copy > p:not(.eyebrow) { max-width: 680px; margin: 27px 0 0; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.16rem); line-height: 1.72; }
.story-page-photo { width: min(100%, 400px); margin: 0; justify-self: end; }
.story-page-photo > .individual-project-image-link { position: relative; display: block; overflow: hidden; border-radius: 26px; background: var(--sand); box-shadow: var(--shadow); cursor: zoom-in; text-decoration: none; }
.story-page-photo > .individual-project-image-link:focus-visible { outline: 3px solid var(--timber); outline-offset: 5px; }
.story-page-photo img { display: block; width: 100%; height: auto; transition: transform 220ms ease; }
.story-page-photo > .individual-project-image-link:hover img { transform: scale(1.015); }
.story-photo-action { position: absolute; right: 16px; bottom: 16px; padding: 10px 13px; border-radius: 999px; color: var(--forest); background: rgba(var(--cream-rgb), .92); font-size: .7rem; font-weight: 800; line-height: 1; box-shadow: 0 8px 24px rgba(var(--forest-deep-rgb), .16); backdrop-filter: blur(8px); }
.story-page-photo figcaption { margin-top: 12px; color: var(--muted); font-size: .72rem; line-height: 1.5; }

.story-founder { display: grid; grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr); align-items: start; gap: clamp(48px, 8vw, 110px); width: min(100% - 48px, 1180px); margin: 0 auto; padding: 96px 0 110px; border-top: 1px solid var(--line); }
.story-founder-photo { width: min(100%, 440px); margin: 0; }
.story-founder-photo > .individual-project-image-link { display: block; overflow: hidden; width: 100%; padding: 0; border: 0; border-radius: 26px; background: var(--sand); box-shadow: var(--shadow); cursor: zoom-in; }
.story-founder-photo > .individual-project-image-link:focus-visible { outline: 3px solid var(--timber); outline-offset: 5px; }
.story-founder-photo img { display: block; width: 100%; height: auto; transition: transform 220ms ease; }
.story-founder-photo > .individual-project-image-link:hover img { transform: scale(1.015); }
.story-founder-photo figcaption { margin-top: 12px; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.story-founder-copy { padding-top: 10px; }
.story-founder-copy .eyebrow { margin-bottom: 18px; }
.story-founder-copy h2 { max-width: 620px; margin: 0 0 28px; color: var(--forest); font-family: Georgia, serif; font-size: clamp(2.6rem, 4.7vw, 4.5rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.story-founder-copy > p:not(.eyebrow) { max-width: 700px; margin: 0 0 21px; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.1rem); line-height: 1.76; }

.contact-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; margin-bottom: 80px; padding: 54px; border-radius: 24px; background: var(--forest); }
.contact-band h2 { max-width: 700px; color: white; font-size: clamp(2rem, 4vw, 3.7rem); }
.contact-band p:not(.eyebrow) { margin: 12px 0 0; color: rgba(255,255,255,.68); }
.contact-band .eyebrow { color: var(--gold) !important; }
.contact-actions { display: grid; justify-items: start; gap: 13px; }
.button-light { border-color: white; background: white; color: var(--forest) !important; }
.contact-email { color: rgba(255,255,255,.78) !important; font-size: .8rem; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px max(24px, calc((100% - 1320px) / 2)); background: var(--forest-deep); }
.site-footer p { margin: 0; color: rgba(255,255,255,.6); font-size: .75rem; }
.site-footer-ethos { display: block; margin-top: 5px; color: rgba(255,255,255,.78); font-size: .66rem; letter-spacing: .02em; }
.site-footer div { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: rgba(255,255,255,.8) !important; font-size: .75rem; text-decoration: none; }

.legacy-main { min-height: calc(100vh - 160px); }
.legacy-page-shell { display: grid; grid-template-columns: minmax(0, 980px); justify-content: center; width: min(100% - 48px, 1180px); margin: 0 auto; padding: 80px 0 100px; }
.legacy-page-shell-full { grid-template-columns: minmax(0, 980px); }
.legacy-copy { min-width: 0; color: var(--muted); }
.legacy-copy h1 { max-width: 720px; margin-bottom: 18px; font-size: clamp(2.15rem, 4vw, 3.65rem); }
.legacy-copy h1 font, .legacy-copy h1 div { color: inherit !important; }
.legacy-copy p { margin: 0 0 20px; color: var(--muted); font-size: 1rem; line-height: 1.78; }
.legacy-copy > .portfolio-principle { max-width: 780px; margin-bottom: 34px; padding-left: 18px; border-left: 2px solid var(--timber); color: var(--forest); }
.legacy-copy b, .legacy-copy strong { font-weight: 650; }
.legacy-copy blockquote { margin-top: 36px; }
.legacy-copy > table { width: 100% !important; border: 0 !important; border-spacing: 12px !important; background: transparent !important; }
.legacy-copy > table td { overflow: hidden; padding: 0 !important; border: 1px solid var(--line) !important; border-radius: 14px; background: var(--surface) !important; box-shadow: 0 10px 28px rgba(var(--forest-rgb), .08); }
.legacy-copy > table img { display: block; width: 100% !important; height: auto !important; min-height: 190px; object-fit: cover; }
.gallery-project { margin: 58px 0 18px; padding-top: 42px; border-top: 1px solid var(--line); }
.gallery-project-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, .65fr); gap: 8px 34px; align-items: end; margin-bottom: 24px; }
.gallery-project-heading .eyebrow { grid-column: 1 / -1; margin: 0 !important; }
.gallery-project-heading h2 { margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.08; }
.legacy-copy .gallery-project-heading > p:last-child { margin: 0; font-size: .86rem; line-height: 1.6; }
.gallery-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-project-grid img { display: block; width: 100%; aspect-ratio: 4 / 5; border-radius: 14px; object-fit: cover; object-position: center; background: var(--sand); box-shadow: 0 10px 28px rgba(var(--forest-rgb), .08); }
.project-carousel { --carousel-slide-width: min(52vw, 420px); position: relative; }
.project-carousel-viewport,
.project-carousel:not(.is-enhanced) { display: flex; overflow-x: auto; align-items: center; gap: 18px; padding: 14px calc((100% - var(--carousel-slide-width)) / 2) 48px; scroll-behavior: smooth; scroll-padding-inline: calc((100% - var(--carousel-slide-width)) / 2); scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; }
.project-carousel-viewport::-webkit-scrollbar,
.project-carousel:not(.is-enhanced)::-webkit-scrollbar { display: none; }
.project-carousel:not(.is-enhanced) > img,
.project-carousel-slide { flex: 0 0 var(--carousel-slide-width); aspect-ratio: 3 / 4; scroll-snap-align: center; scroll-snap-stop: always; }
.project-carousel:not(.is-enhanced) > img,
.project-carousel-slide img { display: block; width: 100%; height: 100%; border-radius: 18px; object-fit: cover; object-position: center; background: var(--sand); box-shadow: 0 14px 34px rgba(var(--forest-rgb), .14); }
.project-carousel-viewport { position: relative; cursor: grab; touch-action: pan-y pinch-zoom; user-select: none; }
.project-carousel-viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.project-carousel-slide { z-index: 1; border-radius: 18px; opacity: .55; transform: scale(.91); transition: opacity 420ms ease, transform 560ms cubic-bezier(.16, 1, .3, 1), box-shadow 420ms ease, filter 420ms ease; filter: saturate(.82); will-change: transform; }
.project-carousel-slide.is-before { transform: translateX(7%) scale(.91); }
.project-carousel-slide.is-after { transform: translateX(-7%) scale(.91); }
.project-carousel-slide.is-active { z-index: 2; opacity: 1; transform: translateX(0) scale(1); filter: none; box-shadow: 0 24px 56px rgba(var(--forest-deep-rgb), .18); }
.project-carousel-landscape { --carousel-slide-width: min(64vw, 560px); }
.project-carousel-landscape:not(.is-enhanced) > img,
.project-carousel-landscape .project-carousel-slide { aspect-ratio: 4 / 3; }
.project-carousel-slide:focus-visible { outline: 3px solid var(--timber); outline-offset: 5px; }
.project-carousel-status { position: absolute; bottom: 6px; left: 50%; z-index: 2; min-width: 62px; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); background: rgba(255,255,255,.88); font-size: .7rem; font-weight: 800; letter-spacing: .08em; line-height: 1; text-align: center; transform: translateX(-50%); box-shadow: 0 6px 18px rgba(var(--forest-rgb), .08); backdrop-filter: blur(8px); }
.project-carousel-hint { display: block; margin: -28px auto 0; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.project-carousel-announcement { position: absolute; overflow: hidden; width: 1px; height: 1px; padding: 0; border: 0; margin: -1px; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.project-gallery-modal[hidden] { display: none; }
.project-gallery-modal { position: fixed; inset: 0; z-index: 10020; display: grid; overflow: hidden; place-items: center; padding: 0; background: rgba(255,255,255,.04); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.project-gallery-modal-panel { position: relative; display: grid; overflow: hidden; width: 100vw; max-width: none; min-width: 0; height: 100vh; height: 100dvh; grid-template-rows: minmax(0, 1fr); border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.project-gallery-modal-header { position: absolute; top: max(18px, env(safe-area-inset-top)); right: max(20px, env(safe-area-inset-right)); left: max(20px, env(safe-area-inset-left)); z-index: 40; display: flex; width: auto; justify-content: flex-end; padding: 0; color: white; pointer-events: none; }
.project-gallery-modal-header > div { display: none; }
.project-gallery-modal-header .eyebrow { margin: 0 0 7px !important; color: var(--gold); }
.project-gallery-modal-header h2 { margin: 0; color: white; font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.8rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
.legacy-copy .project-gallery-modal-header p:not(.eyebrow) { max-width: 720px; margin: 10px 0 0; color: rgba(255,255,255,.92); font-size: .88rem; font-weight: 500; line-height: 1.55; text-shadow: 0 1px 2px rgba(0,0,0,.18); }
.project-gallery-modal-close { display: grid; flex: 0 0 auto; place-items: center; width: 50px; height: 50px; padding: 0; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; color: white; background: rgba(8,15,12,.56); font-size: 2rem; font-weight: 300; line-height: 1; cursor: pointer; pointer-events: auto; backdrop-filter: blur(10px); transition: background 160ms ease, transform 160ms ease; }
.project-gallery-modal-close:hover { background: rgba(255,255,255,.18); transform: rotate(4deg); }
.project-gallery-modal-close:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.project-gallery-modal-carousel { --carousel-slide-width: min(88vw, 1600px); overflow: hidden; width: 100%; min-width: 0; min-height: 0; align-self: stretch; }
.project-gallery-modal-carousel .project-carousel-viewport { box-sizing: border-box; width: 100%; min-width: 0; height: 100%; gap: 0; padding: 4dvh 50%; perspective: 1800px; perspective-origin: center; }
.project-gallery-modal-carousel .project-carousel-slide { z-index: calc(20 - var(--carousel-distance)); box-sizing: border-box; flex: 0 0 auto; width: auto; height: min(92dvh, 900px, calc(100% - 8dvh)); overflow: hidden; aspect-ratio: var(--carousel-aspect); border: 0; opacity: 1; background: transparent; box-shadow: 0 20px 52px rgba(0,0,0,.3); filter: none; transform-style: preserve-3d; backface-visibility: hidden; }
.project-gallery-modal-carousel .project-carousel-slide { scroll-snap-stop: normal; transform-origin: center; transition: opacity 640ms ease, transform 720ms cubic-bezier(.22, 1, .36, 1), box-shadow 640ms ease, filter 640ms ease; }
.project-gallery-modal-carousel .project-carousel-viewport.is-dragging .project-carousel-slide { transition-duration: 180ms; transition-timing-function: ease-out; }
.project-gallery-modal-carousel .project-carousel-slide.is-before { transform: translateZ(var(--carousel-depth)) rotateY(18deg) scale(.91); }
.project-gallery-modal-carousel .project-carousel-slide.is-after { transform: translateZ(var(--carousel-depth)) rotateY(-18deg) scale(.91); }
.project-gallery-modal-carousel .project-carousel-slide.is-active { z-index: 30; padding: 0; overflow: hidden; border-radius: 24px; clip-path: inset(0 round 24px); transform: translateX(0) translateZ(0) rotateY(0) scale(1); background: transparent; box-shadow: 0 28px 72px rgba(0,0,0,.42); }
.project-gallery-modal-carousel .project-carousel-slide.is-window-hidden { visibility: hidden; opacity: 0; pointer-events: none; }
.project-gallery-modal-carousel .project-carousel-slide img { opacity: 1; border-radius: inherit; object-fit: cover; background: transparent; box-shadow: none; }
.project-gallery-modal-carousel .project-carousel-status,
.project-gallery-modal-carousel .project-carousel-hint { display: none; }
.project-gallery-modal-open { overflow: hidden; }
@media (max-width: 760px) {
  .project-gallery-modal { padding: 0; }
  .project-gallery-modal-panel { width: 100vw; height: 100dvh; border-radius: 0; }
  .project-gallery-modal-header { top: max(12px, env(safe-area-inset-top)); right: max(12px, env(safe-area-inset-right)); left: auto; }
  .project-gallery-modal-close { width: 42px; height: 42px; }
  .project-gallery-modal-carousel { --carousel-slide-width: 92vw; }
  .project-gallery-modal-carousel .project-carousel-viewport { padding-top: 3dvh; padding-bottom: 3dvh; }
  .project-gallery-modal-carousel .project-carousel-slide { height: min(94dvh, 760px, calc(100% - 6dvh)); }
}
.gallery-project-landscape { margin-top: 70px; }
.gallery-project-grid-landscape { grid-template-columns: 1fr 1fr; }
.gallery-project-grid-landscape img { aspect-ratio: 16 / 9; }
.gallery-project-mixed { margin-top: 70px; }
.gallery-project-masonry { columns: 3; column-gap: 12px; }
.gallery-project-masonry img { display: block; width: 100%; height: auto; margin: 0 0 12px; break-inside: avoid; border-radius: 14px; background: var(--sand); box-shadow: 0 10px 28px rgba(var(--forest-rgb), .08); }
.featured-project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 72px 0 18px; }
.featured-project-grid > .rebuild-case-study { min-width: 0; margin: 0; padding: 0; border: 0; }
.featured-project-grid > .rebuild-case-study[open] { grid-column: 1 / -1; }
.featured-project-grid .rebuild-case-preview { min-height: 460px; }
.featured-project-grid .rebuild-case-preview::after { background: linear-gradient(0deg, rgba(var(--forest-deep-rgb), .97), rgba(var(--forest-deep-rgb), .68) 66%, rgba(var(--forest-deep-rgb), .12)); }
.featured-project-grid .rebuild-case-preview > div { max-width: none; padding: 32px; }
.featured-project-grid .rebuild-case-preview h2 { font-size: clamp(1.75rem, 2.5vw, 2.4rem); }
.rebuild-case-study { margin-top: 72px; }
.rebuild-case-preview { position: relative; display: grid; overflow: hidden; min-height: 430px; border-radius: 22px; color: white; cursor: pointer; box-shadow: 0 18px 46px rgba(var(--forest-rgb), .16); list-style: none; }
.rebuild-case-preview:focus-visible { outline: 3px solid var(--timber); outline-offset: 5px; }
.rebuild-case-preview::-webkit-details-marker { display: none; }
.rebuild-case-preview > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rebuild-case-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(var(--forest-deep-rgb), .94), rgba(var(--forest-deep-rgb), .62) 55%, rgba(var(--forest-deep-rgb), .08)); }
.rebuild-case-preview > div { position: relative; z-index: 1; align-self: end; max-width: 650px; padding: 46px; }
.legacy-copy .rebuild-case-preview .eyebrow { margin: 0 0 12px; color: var(--gold); }
.rebuild-case-preview h2 { margin: 0 0 13px; color: white; font-family: Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.02; }
.legacy-copy .rebuild-case-preview p:not(.eyebrow) { margin: 0 0 20px; color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.65; }
.rebuild-preview-cta { display: inline-flex; align-items: center; gap: 10px; color: white; font-size: .73rem; font-weight: 800; letter-spacing: .045em; }
.rebuild-preview-cta::after { content: "+"; display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 1rem; transition: transform 180ms ease; }
.rebuild-case-study[open] .rebuild-preview-cta::after { transform: rotate(45deg); }
.rebuild-case-content { padding-top: 30px; }
.rebuild-facts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 0 0 26px; }
.rebuild-facts > div { min-width: 0; padding: 17px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.rebuild-facts dt { color: var(--timber-dark); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.rebuild-facts dd { margin: 8px 0 5px; color: var(--forest); font-family: Georgia, serif; font-size: 1.2rem; font-weight: 600; line-height: 1.1; }
.rebuild-facts small { display: block; color: var(--muted); font-size: .68rem; line-height: 1.45; }
.rebuild-facts .rebuild-facts-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 18px; background: var(--forest); }
.rebuild-facts-wide dt { color: var(--gold); }
.rebuild-facts-wide dd { margin: 0; color: white; font-family: inherit; font-size: .85rem; font-weight: 500; line-height: 1.55; }
.rebuild-stage { margin-top: 22px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, var(--surface), var(--sand)); }
.rebuild-stage-heading { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; margin-bottom: 20px; }
.rebuild-stage-heading > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--forest); color: white; font-size: .73rem; font-weight: 800; letter-spacing: .08em; }
.rebuild-stage-heading h3 { margin: 0 0 5px; color: var(--forest); font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; }
.legacy-copy .rebuild-stage-heading p { margin: 0; font-size: .84rem; line-height: 1.55; }
.rebuild-before-media { max-width: 720px; margin: 0 auto; }
.rebuild-before-media img, .rebuild-media-grid img, .rebuild-media-grid video { display: block; width: 100%; height: auto; border-radius: 14px; background: var(--sand); box-shadow: 0 10px 28px rgba(var(--forest-rgb), .1); }
.rebuild-media-grid { columns: 3; column-gap: 12px; }
.rebuild-media-grid > * { margin: 0 0 12px; break-inside: avoid; }
.rebuild-finished { background: linear-gradient(145deg, var(--sage-soft), var(--cream)); }
.rebuild-finished-grid { columns: 2; }
.gallery-projects-separated { margin: 64px 0 18px; }
.gallery-section-heading { max-width: 600px; margin-bottom: 24px; }
.gallery-section-heading .eyebrow { margin: 0 0 10px !important; }
.gallery-section-heading h2 { margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.08; }
.individual-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.individual-project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.individual-project-card > img, .individual-project-card > .individual-project-image-link > img, .individual-project-summary > img, .individual-project-summary > .individual-project-image-link > img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.individual-project-image-link { position: relative; display: block; overflow: hidden; color: inherit; cursor: zoom-in; text-decoration: none; }
button.individual-project-image-link { width: 100%; padding: 0; border: 0; appearance: none; background: transparent; font: inherit; text-align: inherit; }
.individual-project-image-link::after { position: absolute; top: 10px; right: 10px; content: "+"; display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; color: white; background: rgba(var(--forest-deep-rgb), .7); font-size: 1.15rem; font-weight: 400; line-height: 1; box-shadow: 0 5px 16px rgba(var(--forest-deep-rgb), .2); backdrop-filter: blur(7px); }
.individual-project-image-link:focus-visible { outline: 3px solid var(--timber); outline-offset: -4px; }
.individual-project-image-link img { transition: transform 220ms ease; }
.individual-project-image-link:hover img { transform: scale(1.015); }
.individual-project-card:not(.individual-project-catalogue) > div, .individual-project-summary > div { padding: 20px 20px 22px; }
.individual-project-card span { color: var(--timber-dark); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.individual-project-card h3 { margin: 12px 0 8px; color: var(--forest); font-family: Georgia, serif; font-size: 1.18rem; line-height: 1.2; }
.legacy-copy .individual-project-card p { margin: 0; font-size: .82rem; line-height: 1.58; }
.individual-project-summary { display: block; cursor: pointer; list-style: none; }
.individual-project-summary::-webkit-details-marker { display: none; }
.individual-project-summary:hover h3 { color: var(--leaf); }
.individual-project-catalogue[open] { grid-column: 1 / -1; }
.individual-project-catalogue[open] .individual-project-summary > img, .individual-project-catalogue[open] .individual-project-summary > .individual-project-image-link { display: none; }
.project-card-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 17px; color: var(--forest) !important; }
.project-card-cta::after { content: "+"; display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--forest); font-size: 1rem; transition: transform 180ms ease; }
.project-card-cta-open { display: none; }
.individual-project-catalogue[open] .project-card-cta::after { transform: rotate(45deg); }
.individual-project-catalogue[open] .project-card-cta-closed { display: none; }
.individual-project-catalogue[open] .project-card-cta-open { display: inline; }
.individual-project-gallery { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 12px; padding: 12px; border-top: 1px solid var(--line); background: var(--sand); }
.individual-project-gallery-pair { grid-template-columns: minmax(0, 3.15fr) minmax(180px, 1fr); }
.individual-project-gallery-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.individual-project-stage { position: relative; margin: 0; }
.individual-project-stage figcaption { position: absolute; left: 10px; bottom: 10px; padding: 8px 11px; border-radius: 999px; color: white; background: rgba(var(--forest-deep-rgb), .78); font-size: .64rem; font-weight: 800; letter-spacing: .1em; line-height: 1; text-transform: uppercase; box-shadow: 0 5px 16px rgba(var(--forest-deep-rgb), .18); backdrop-filter: blur(7px); }
.individual-project-gallery-masonry { display: block; columns: 3; column-gap: 12px; }
.individual-project-gallery-masonry > img, .individual-project-gallery-masonry > .individual-project-image-link { break-inside: avoid; margin: 0 0 12px; }
.individual-project-gallery img { display: block; width: 100%; height: auto; border-radius: 12px; background: var(--surface); }
.legacy-copy form { max-width: 620px; }
.enquiry-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.legacy-contact-actions { margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--line); }
.combined-contact { margin-top: 46px; padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, var(--sage-soft), var(--surface)); scroll-margin-top: 110px; }
.legacy-copy .combined-contact > .eyebrow { margin: 0 0 9px; color: var(--timber-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.combined-contact h2 { margin: 0 0 12px; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.12; }
.contact-method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; margin-top: 24px; }
.contact-method-grid > a { display: flex; min-width: 0; padding: 18px; border: 1px solid rgba(var(--forest-rgb), .15); border-radius: 14px; color: var(--forest); background: rgba(255,255,255,.7); flex-direction: column; text-decoration: none; transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.contact-method-grid > a:hover { border-color: var(--timber); box-shadow: 0 12px 28px rgba(var(--forest-rgb), .1); transform: translateY(-2px); }
.contact-method-grid span { color: var(--timber-dark); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-method-grid strong { overflow-wrap: anywhere; margin: 8px 0 6px; font-size: .88rem; line-height: 1.35; }
.contact-method-grid small { color: var(--muted); font-size: .7rem; line-height: 1.45; }
.legacy-copy .combined-contact .contact-note { margin: 22px 0 0; font-size: .78rem; }
.service-intro { max-width: 610px; margin-bottom: 42px !important; font-size: 1.05rem !important; }
.service-section-title, .service-details h2 { margin: 0 0 18px; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.55rem, 2.5vw, 2.15rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.15; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 48px; }
.service-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.service-card-wide { grid-column: 1 / -1; }
.service-card-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.service-symbol { display: grid; flex: 0 0 104px; width: 104px; height: 104px; place-items: center; }
.service-symbol img { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 12px rgba(var(--forest-deep-rgb), .14)); transform: rotate(-1.5deg); }
.service-card:nth-child(even) .service-symbol img { transform: rotate(1.5deg); }
.service-card h3 { margin: 0 0 9px; color: var(--forest); font-family: Georgia, serif; font-size: 1.18rem; font-weight: 600; line-height: 1.25; }
.service-card-heading h3 { margin: 0; }
.legacy-copy .service-card p { margin: 0; font-size: .91rem; line-height: 1.68; }
.service-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--forest) !important; font-size: .76rem; font-weight: 800; text-decoration: none; }
.service-card-link span { color: var(--timber); transition: transform 160ms ease; }
.service-card-link:hover span { transform: translateX(3px); }
.service-details { padding-top: 38px; border-top: 1px solid var(--line); }
.legacy-copy .service-details p { max-width: 690px; font-size: .96rem; line-height: 1.75; }
.service-details-showcase { display: grid; grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr); align-items: start; gap: 42px; }
.service-details-copy { padding-top: 12px; }
.legacy-copy .service-details-copy > .eyebrow { margin: 0 0 10px; color: var(--timber-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.service-details-images { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
.service-details-images figure { position: relative; overflow: hidden; min-height: 390px; margin: 0; border-radius: 18px; background: var(--sand); box-shadow: 0 16px 38px rgba(var(--forest-rgb), .12); }
.service-details-images figure:nth-child(2) { min-height: 320px; margin-top: 44px; }
.service-details-images img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-details-images figcaption { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 9px 11px; border-radius: 10px; color: #fff; background: rgba(var(--forest-deep-rgb), .82); backdrop-filter: blur(5px); font-size: .66rem; font-weight: 700; letter-spacing: .035em; line-height: 1.35; }
.service-details-images.service-details-images-single { grid-template-columns: minmax(0, 1fr); width: min(100%, 360px); justify-self: center; }
.service-details-images.service-details-images-single figure { min-height: 0; margin: 0; aspect-ratio: 9 / 16; }

.clients-main { width: min(100% - 48px, 1180px); margin: 0 auto; padding: 72px 0 90px; }
.client-history { padding: 0 0 78px; }
.client-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); align-items: end; gap: 40px 70px; margin-bottom: 34px; }
.client-section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -18px; }
.client-section-heading h2, .referrals-panel h2 { margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.06; }
.client-section-heading > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.client-logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.client-logo-card { display: flex; min-width: 0; min-height: 178px; align-items: center; justify-content: center; flex-direction: column; gap: 20px; padding: 28px 20px 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: 0 12px 30px rgba(var(--forest-rgb), .06); }
.client-logo-card img { display: block; max-width: min(100%, 214px); max-height: 90px; object-fit: contain; }
.client-logo-card span { color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.client-logo-card-wordmark strong { max-width: 190px; color: var(--forest); font-family: Georgia, serif; font-size: 1.55rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; text-align: center; }
.referrals-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 50px; padding: 52px; border-radius: 24px; background: var(--forest); }
.referrals-panel .eyebrow { color: var(--gold) !important; }
.referrals-panel h2 { max-width: 760px; color: white; }
.referrals-panel p:not(.eyebrow) { max-width: 760px; margin: 18px 0 0; color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.7; }
.referrals-panel .button { flex: 0 0 auto; }

.protect-main { overflow: hidden; }
.protect-hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); align-items: center; gap: clamp(48px, 7vw, 100px); width: min(100% - 48px, 1320px); margin: 0 auto; padding: 72px 0 92px; }
.protect-hero-copy h1 { max-width: 680px; margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(3.15rem, 6vw, 5.75rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.protect-hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 27px 0 0; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.16rem); line-height: 1.72; }
.protect-actions { display: flex; align-items: center; gap: 23px; margin-top: 30px; }
.protect-highlights { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 28px 0 0; padding: 0; color: var(--muted); font-size: .76rem; font-weight: 700; list-style: none; }
.protect-highlights li { display: inline-flex; align-items: center; }
.protect-highlights li::before { content: ""; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--timber); }
.protect-hero-image { position: relative; margin: 0; }
.protect-hero-image::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; z-index: -1; border-radius: 30px; background: linear-gradient(145deg, var(--sage-soft), var(--sand)); }
.protect-hero-image img { display: block; width: 100%; height: clamp(460px, 46vw, 610px); border-radius: 26px; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.protect-hero-image figcaption, .protect-benefits-image figcaption, .protect-application-image figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 10px 13px; border-radius: 12px; background: rgba(var(--cream-rgb), .9); color: var(--forest); font-size: .7rem; font-weight: 750; line-height: 1.4; backdrop-filter: blur(8px); }
.protect-benefits { padding: 90px max(24px, calc((100% - 1180px) / 2)) 100px; background: var(--sand); }
.protect-section-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr); align-items: start; gap: 60px; }
.protect-section-heading h2, .protect-application-copy h2 { max-width: 780px; margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(2.25rem, 4.5vw, 4.15rem); font-weight: 500; letter-spacing: -.042em; line-height: 1.03; }
.protect-benefits-image { position: relative; overflow: hidden; margin: 38px 0 0; border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); }
.protect-benefits-image img { display: block; width: 100%; height: 360px; object-fit: cover; }
.protect-benefit-body { max-width: 540px; padding-top: 7px; }
.protect-benefit-body > p { margin: 0 0 25px; color: var(--muted); font-size: .95rem; line-height: 1.72; }
.protect-benefit-list { margin: 0; padding-left: 1.25rem; color: var(--muted); font-size: .91rem; line-height: 1.62; }
.protect-benefit-list li { padding-left: .22rem; }
.protect-benefit-list li + li { margin-top: 15px; }
.protect-benefit-list li::marker { color: var(--timber); font-size: 1.15em; }
.protect-benefit-list strong { color: var(--forest); font-weight: 800; }
.protect-benefit-body > p.protect-reading-link { margin: 24px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.protect-application { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); align-items: start; gap: clamp(50px, 8vw, 110px); width: min(100% - 48px, 1180px); margin: 0 auto; padding: 108px 0; }
.protect-application-image { position: relative; margin: 0; }
.protect-application-image img { display: block; width: 100%; height: 650px; border-radius: 22px; object-fit: cover; box-shadow: var(--shadow); }
.protect-process-list { display: grid; gap: 0; margin: 34px 0 0; padding: 0; list-style: none; }
.protect-process-list li { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.protect-process-list li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--forest); color: white; font-size: .66rem; font-weight: 850; letter-spacing: .08em; }
.protect-process-list h3 { margin: 0 0 5px; color: var(--forest); font-family: Georgia, serif; font-size: 1.18rem; font-weight: 600; line-height: 1.28; }
.protect-process-list p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.protect-care-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.protect-care-note > span { color: var(--timber-dark); font-size: .69rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.protect-care-note p { margin: 8px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.6; }
.protect-contact { margin-top: 4px; }
.ipe-presentation { width: min(100% - 48px, 1240px); margin: 0 auto; padding: 68px 0 96px; }
.presentation-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr); align-items: end; gap: clamp(42px, 8vw, 110px); margin-bottom: 38px; }
.presentation-heading h1 { max-width: 880px; margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.65rem); font-weight: 500; letter-spacing: -.052em; line-height: .96; }
.presentation-heading-copy { padding-bottom: 7px; }
.presentation-heading-copy p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.presentation-heading-copy span { display: block; margin-top: 12px; color: var(--timber); font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.presentation-chapters { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 14px; }
.presentation-chapters button { min-width: 0; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: rgba(var(--cream-rgb), .55); color: var(--muted); font: inherit; font-size: .72rem; font-weight: 750; text-align: left; cursor: pointer; transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease; }
.presentation-chapters button span { margin-right: 6px; color: var(--timber); font-size: .63rem; font-weight: 850; letter-spacing: .08em; }
.presentation-chapters button:hover { transform: translateY(-1px); border-color: rgba(var(--forest-rgb), .3); }
.presentation-chapters button.is-active { border-color: var(--forest); background: var(--forest); color: white; }
.presentation-chapters button:focus-visible, .story-progress button:focus-visible, .story-arrow:focus-visible, .story-view-image:focus-visible { outline: 3px solid rgba(var(--gold-rgb), .55); outline-offset: 2px; }
.story-carousel { position: relative; outline: none; }
.story-carousel:focus-visible .story-slides { box-shadow: 0 0 0 4px rgba(var(--gold-rgb), .35), var(--shadow); }
.story-progress { display: flex; gap: 5px; margin: 0 -2px 7px; overflow: hidden; }
.story-progress button { position: relative; flex: 1 1 0; height: 18px; min-width: 8px; padding: 0 2px; border: 0; background: transparent; cursor: pointer; }
.story-progress button::before { content: ""; position: absolute; right: 2px; bottom: 5px; left: 2px; height: 4px; border-radius: 99px; background: rgba(var(--forest-rgb), .16); transition: background 180ms ease, transform 180ms ease; }
.story-progress button::after { content: ""; position: absolute; right: 2px; bottom: 5px; left: 2px; height: 4px; border-radius: 99px; background: var(--timber); transform: scaleX(0); transform-origin: left center; }
.story-progress button:hover::before { background: rgba(var(--forest-rgb), .35); transform: scaleY(1.4); }
.story-progress button.is-active::before { background: rgba(var(--forest-rgb), .24); transform: scaleY(1.4); }
.story-progress button.is-past::after,
.story-progress button.is-complete::after { transform: scaleX(1); }
.story-progress button.is-timing::after { animation: story-progress-fill 5s linear forwards; }
@keyframes story-progress-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.story-slides { position: relative; min-height: clamp(620px, 67vw, 720px); overflow: hidden; border-radius: 28px; background: var(--forest-deep); box-shadow: var(--shadow); isolation: isolate; }
.story-slide { position: absolute; inset: 0; display: grid; align-items: end; padding: clamp(34px, 6vw, 78px); visibility: hidden; opacity: 0; background-color: var(--forest-deep); background-image: linear-gradient(90deg, rgba(var(--forest-deep-rgb), .96) 0%, rgba(var(--forest-deep-rgb), .78) 43%, rgba(var(--forest-deep-rgb), .18) 76%, rgba(var(--forest-deep-rgb), .06) 100%), var(--slide-image); background-position: center, var(--slide-position, center); background-size: cover, var(--slide-size, cover); background-repeat: no-repeat; transition: opacity 300ms ease, visibility 300ms ease; }
.story-slide.is-active { visibility: visible; opacity: 1; }
.story-slide.is-active:not(:last-child) { cursor: pointer; }
.story-slide-copy-right { background-image: linear-gradient(270deg, rgba(var(--forest-deep-rgb), .97) 0%, rgba(var(--forest-deep-rgb), .76) 43%, rgba(var(--forest-deep-rgb), .16) 76%, rgba(var(--forest-deep-rgb), .04) 100%), var(--slide-image); }
.story-slide-copy-right .slide-copy { margin-left: auto; }
.story-slide-portrait { --slide-size: auto 100%; background-image: linear-gradient(90deg, rgba(var(--forest-deep-rgb), 1) 0%, rgba(var(--forest-deep-rgb), .96) 36%, rgba(var(--forest-deep-rgb), .64) 57%, rgba(var(--forest-deep-rgb), .1) 86%), var(--slide-image); }
.story-slide-final { align-items: center; background-image: linear-gradient(rgba(var(--forest-deep-rgb), .82), rgba(var(--forest-deep-rgb), .9)), var(--slide-image); text-align: center; }
.story-slide-final .slide-copy { margin: 0 auto; }
.story-slide-final .slide-copy h2, .story-slide-final .slide-copy > p { margin-right: auto; margin-left: auto; }
.slide-number { position: absolute; top: 28px; right: 30px; z-index: 1; padding: 7px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(var(--forest-deep-rgb), .24); color: rgba(255,255,255,.78); font-size: .66rem; font-weight: 850; letter-spacing: .12em; backdrop-filter: blur(8px); }
.slide-copy { position: relative; z-index: 1; max-width: 620px; color: white; }
.slide-copy-wide { max-width: 760px; }
.slide-kicker { margin: 0 0 14px; color: var(--gold) !important; font-size: .68rem !important; font-weight: 850 !important; letter-spacing: .15em; text-transform: uppercase; }
.slide-copy h2 { max-width: 760px; margin: 0 0 20px; color: white; font-family: Georgia, serif; font-size: clamp(2.7rem, 5.8vw, 5.35rem); font-weight: 500; letter-spacing: -.052em; line-height: .96; text-wrap: balance; }
.slide-copy > p:not(.slide-kicker) { max-width: 610px; margin: 0; color: rgba(255,255,255,.86); font-size: clamp(.98rem, 1.7vw, 1.23rem); line-height: 1.58; }
.slide-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 30px; max-width: 720px; margin: 26px 0 0; padding-left: 1.15rem; color: rgba(255,255,255,.78); font-size: clamp(.84rem, 1.15vw, .96rem); font-weight: 650; line-height: 1.45; }
.slide-facts li { min-width: 0; padding-left: .12rem; }
.slide-facts li::marker { color: var(--gold); }
.slide-facts strong { display: inline; margin-right: .28rem; color: white; font-family: inherit; font-size: inherit; font-weight: 850; }
.slide-copy blockquote { max-width: 620px; margin: 20px auto 0; color: white; font-family: Georgia, serif; font-size: clamp(1.08rem, 2vw, 1.4rem); font-style: italic; line-height: 1.45; }
.slide-cta { display: inline-flex; margin-top: 27px; }
.story-controls { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 15px; }
.story-controls p { margin: 0; color: var(--muted); font-size: .72rem; }
.story-controls .story-control-hint { margin-right: auto; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.story-controls .story-counter { min-width: 68px; text-align: center; }
.story-view-image { display: inline-flex; min-height: 46px; align-items: center; gap: 8px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--forest); font: inherit; font-size: .72rem; font-weight: 800; cursor: zoom-in; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.story-view-image > span:first-child { font-size: 1.08rem; font-weight: 400; line-height: 1; }
.story-view-image:hover { transform: translateY(-1px); border-color: rgba(var(--forest-rgb), .3); background: var(--sand); }
.story-arrow { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--forest); font-size: 1.1rem; cursor: pointer; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.story-arrow:hover { transform: translateY(-1px); border-color: rgba(var(--forest-rgb), .3); background: var(--sand); }
.story-arrow:disabled, .story-arrow:disabled:hover { opacity: .35; transform: none; border-color: var(--line); background: transparent; cursor: not-allowed; }
.presentation-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 44px; margin-top: 76px; padding: 50px; border-radius: 24px; background: var(--forest); }
.presentation-cta h2 { max-width: 800px; margin: 0; color: white; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.04; }
.presentation-cta .eyebrow { color: var(--gold) !important; }
.presentation-cta div > p:last-child { margin: 14px 0 0; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.6; }
.capability-intro { max-width: 900px; font-size: 1.06rem !important; }
.capability-overview { margin: 28px 0 50px; }
.capability-overview .capability-intro { margin-top: 8px; }
.capability-title { margin: 0 0 18px; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -.03em; }
.capability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 54px; }
.capability-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
.capability-card-featured { background: var(--forest); transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.capability-card-featured:hover { border-color: rgba(var(--timber-rgb), .65); box-shadow: 0 16px 34px rgba(var(--forest-deep-rgb), .17); transform: translateY(-2px); }
.capability-image { display: block; width: 100%; height: 170px; object-fit: cover; }
.capability-card-copy { min-height: 190px; padding: 22px 25px 25px; }
.capability-card-copy > span { color: var(--timber); font-size: .66rem; font-weight: 800; letter-spacing: .12em; }
.capability-card h3, .capability-list h3 { margin: 18px 0 9px; color: var(--forest); font-family: Georgia, serif; font-size: 1.22rem; font-weight: 600; line-height: 1.2; }
.legacy-copy .capability-card p, .legacy-copy .capability-list p { margin: 0; font-size: .88rem; line-height: 1.65; }
.capability-card-featured h3 { color: white; }
.legacy-copy .capability-card-featured p { color: rgba(255,255,255,.7); }
.legacy-copy .capability-card-featured .capability-card-action:link,
.legacy-copy .capability-card-featured .capability-card-action:visited { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-top: 17px; padding: 9px 14px; border: 1px solid var(--gold-soft); border-radius: 999px; background: var(--gold); color: var(--forest-deep); box-shadow: 0 6px 16px rgba(0,0,0,.14); font-size: .74rem; font-weight: 850; line-height: 1.2; text-decoration: none; transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.capability-card-action::before { position: absolute; inset: 0; content: ""; }
.capability-card-action span { display: inline-block; color: currentColor; transition: transform 160ms ease; }
.legacy-copy .capability-card-featured .capability-card-action:hover,
.legacy-copy .capability-card-featured .capability-card-action:active { background: white; color: var(--forest-deep); box-shadow: 0 8px 20px rgba(0,0,0,.2); transform: translateY(-1px); }
.capability-card-action:hover span { transform: translateX(3px); }
.capability-card-action:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 3px; }
.capability-list { display: grid; gap: 0; margin-bottom: 54px; border-top: 1px solid var(--line); }
.capability-list section { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.capability-list img { display: block; width: 150px; height: 108px; border-radius: 12px; object-fit: cover; }
.capability-list h3 { margin: 0; }
.material-note { margin: 0 0 42px; padding: 34px; border-radius: 20px; background: var(--sand); }
.material-note h2 { max-width: 560px; margin: 0 0 14px; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.1; }
.legacy-copy .material-note > p:last-child { max-width: 640px; margin: 0; font-size: .94rem; line-height: 1.72; }
.modal-open { overflow: hidden; }
body.image-lightbox-open { overflow: hidden; }
.image-lightbox[hidden] { display: none; }
.image-lightbox { position: fixed; inset: 0; z-index: 11000; display: grid; place-items: center; padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left)); color: white; }
.image-lightbox-backdrop { position: absolute; inset: 0; background: rgba(8, 15, 12, .94); backdrop-filter: blur(12px); cursor: zoom-out; }
.image-lightbox-dialog { position: relative; z-index: 1; display: grid; width: min(100%, 1480px); height: min(100%, 960px); max-height: calc(100dvh - 36px); overflow: hidden; grid-template-rows: auto minmax(0, 1fr) auto; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: rgba(var(--forest-deep-rgb), .98); box-shadow: 0 32px 110px rgba(0,0,0,.56); }
.image-lightbox-toolbar { display: grid; min-height: 64px; align-items: center; grid-template-columns: minmax(0, 1fr) auto auto; gap: 14px; padding: 10px 12px 10px 22px; border-bottom: 1px solid rgba(255,255,255,.13); }
.image-lightbox-toolbar p { overflow: hidden; margin: 0; color: rgba(255,255,255,.76); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.image-lightbox-counter { min-width: 78px; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 750; text-align: center; }
.image-lightbox-close, .image-lightbox-arrow { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.08); color: white; font: inherit; cursor: pointer; transition: background 160ms ease, border-color 160ms ease, transform 160ms ease; }
.image-lightbox-close { font-size: 1.55rem; }
.image-lightbox-close:hover, .image-lightbox-arrow:hover { border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.15); transform: scale(1.04); }
.image-lightbox-close:focus-visible, .image-lightbox-arrow:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.image-lightbox-stage { position: relative; display: grid; min-width: 0; min-height: 0; place-items: stretch; padding: 14px 72px 10px; touch-action: pan-y pinch-zoom; }
.image-lightbox-figure { display: grid; min-width: 0; min-height: 0; margin: 0; grid-template-rows: minmax(0, 1fr) auto; }
.image-lightbox-media { position: relative; min-width: 0; min-height: 0; overflow: hidden; }
.image-lightbox-image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.image-lightbox-figure figcaption { max-width: 980px; margin: 10px auto 0; color: rgba(255,255,255,.86); font-size: .78rem; line-height: 1.5; text-align: center; }
.image-lightbox-arrow { position: absolute; top: 50%; z-index: 2; margin-top: -23px; font-size: 1.05rem; }
.image-lightbox-previous { left: 14px; }
.image-lightbox-next { right: 14px; }
.image-lightbox-hint { margin: 0; padding: 10px 18px 14px; color: rgba(255,255,255,.55); font-size: .66rem; line-height: 1.4; text-align: center; }
.ipe-story-modal[hidden] { display: none; }
.ipe-story-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; }
.ipe-modal-backdrop { position: absolute; inset: 0; background: rgba(var(--forest-deep-rgb), .72); backdrop-filter: blur(9px); }
.ipe-modal-dialog { position: relative; width: min(100%, 980px); overflow: hidden; border-radius: 24px; background: var(--cream); box-shadow: 0 30px 90px rgba(0,0,0,.34); }
.ipe-modal-close { position: absolute; top: 23px; right: 22px; z-index: 3; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(var(--forest-deep-rgb), .45); color: white; font-size: 1.45rem; cursor: pointer; backdrop-filter: blur(6px); }
.ipe-modal-progress { position: absolute; top: 18px; left: 22px; right: 76px; z-index: 3; display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; }
.ipe-modal-progress button { position: relative; height: 3px; overflow: hidden; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.42); cursor: pointer; }
.ipe-modal-progress button::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: white; transform: scaleX(0); transform-origin: left center; }
.ipe-modal-progress button.is-past::after,
.ipe-story-modal:not(.is-autoplaying) .ipe-modal-progress button.is-active::after { transform: scaleX(1); }
.ipe-story-modal.is-autoplaying .ipe-modal-progress button.is-active::after { animation: ipe-modal-progress 5s linear forwards; }
@keyframes ipe-modal-progress { to { transform: scaleX(1); } }
.ipe-modal-slides { position: relative; min-height: 520px; background: var(--forest); }
.ipe-modal-slide { position: absolute; inset: 0; display: grid; align-items: end; visibility: hidden; padding: 64px 58px 54px; opacity: 0; background: linear-gradient(90deg, rgba(var(--forest-deep-rgb), .92), rgba(var(--forest-deep-rgb), .58) 55%, rgba(var(--forest-deep-rgb), .08)), var(--modal-image) center/cover; transition: opacity 220ms ease, visibility 220ms ease; }
.ipe-modal-slide.is-active { visibility: visible; opacity: 1; }
.ipe-modal-slide > div { max-width: 580px; }
.ipe-modal-slide p { margin: 0 0 12px; color: var(--gold); font-size: .67rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.ipe-modal-slide h2 { margin: 0 0 18px; color: white; font-family: Georgia,serif; font-size: clamp(2.8rem,6vw,5rem); font-weight: 500; letter-spacing: -.05em; line-height: .96; }
.ipe-modal-slide span { display: block; max-width: 540px; color: rgba(255,255,255,.84); font-size: 1.05rem; line-height: 1.58; }
.ipe-modal-footer { display: flex; align-items: center; gap: 12px; padding: 16px 22px; }
.ipe-modal-footer button { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--forest); cursor: pointer; }
.ipe-modal-footer span { color: var(--muted); font-size: .72rem; }
.ipe-modal-footer a { margin-left: auto; color: var(--forest); font-size: .78rem; font-weight: 800; text-decoration: none; }
.wood-info-link { display: inline; margin: 0; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--timber-dark); font: inherit; font-weight: inherit; line-height: inherit; text-align: inherit; cursor: pointer; }
.wood-info-link:hover { color: var(--forest); }
.wood-info-modal[hidden] { display: none; }
.wood-info-modal { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 24px; }
.wood-info-backdrop { position: absolute; inset: 0; background: rgba(var(--forest-deep-rgb), .76); backdrop-filter: blur(10px); }
.wood-info-dialog { position: relative; width: min(100%, 860px); max-height: min(90vh, 820px); overflow: auto; border-radius: 24px; background: var(--cream); box-shadow: 0 30px 90px rgba(0,0,0,.34); }
.wood-info-close { position: absolute; top: 20px; right: 20px; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(var(--forest-rgb), .15); border-radius: 50%; background: white; color: var(--forest); font-size: 1.45rem; cursor: pointer; }
.wood-info-content > header { padding: 42px 48px 30px; border-bottom: 1px solid var(--line); }
.wood-info-content > header > p { margin: 0 0 10px; color: var(--timber-dark); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.wood-info-dialog h2 { max-width: 650px; margin: 0; color: var(--forest); font-family: Georgia,serif; font-size: clamp(2rem,4vw,3.35rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.wood-info-dialog header > span { display: flex; gap: 5px; margin: 24px 0 13px; }
.wood-info-dialog header i { display: block; width: 62px; height: 9px; border-radius: 99px; background: #382219; }
.wood-info-dialog header i:nth-child(2) { background: #76503b; }
.wood-info-dialog header i:nth-child(3) { background: #a77a59; }
.wood-info-dialog.wood-profile-massaranduba header i:first-child { background: #4b201b; }
.wood-info-dialog.wood-profile-massaranduba header i:nth-child(2) { background: #814438; }
.wood-info-dialog.wood-profile-massaranduba header i:nth-child(3) { background: #b66f59; }
.wood-info-dialog header small { color: var(--muted); font-size: .78rem; }
.wood-property-grid { display: grid; grid-template-columns: 1fr 1fr; padding: 20px 48px 30px; }
.wood-property-grid > div { padding: 17px 0; border-bottom: 1px solid var(--line); }
.wood-property-grid > div:nth-child(odd) { padding-right: 24px; }
.wood-property-grid > div:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.wood-property-grid span, .wood-property-grid strong { display: block; }
.wood-property-grid span { margin-bottom: 5px; color: var(--muted); font-size: .7rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.wood-property-grid strong { color: var(--forest); font-size: .91rem; font-weight: 700; line-height: 1.45; }
.wood-info-content > footer { display: flex; justify-content: space-between; gap: 24px; padding: 24px 48px 32px; background: var(--sand); }
.wood-info-content > footer p { max-width: 530px; margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.wood-info-content > footer a { flex: 0 0 auto; color: var(--forest); font-size: .72rem; font-weight: 800; }

/* Learn / Knowledge Centre */
.learn-main, .learn-article-main { overflow-x: clip; }
.learn-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .62fr);
  align-items: end;
  gap: clamp(44px, 8vw, 120px);
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 86px 0 80px;
}
.learn-hero--solo { grid-template-columns: minmax(0, 820px); align-items: start; }
.learn-hero h1 {
  max-width: 790px;
  margin: 0;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -.058em;
  line-height: .94;
}
.learn-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 27px 0 0; color: var(--muted); font-size: clamp(1.12rem, 1.55vw, 1.3rem); line-height: 1.72; }
.learn-library { padding: 92px max(24px, calc((100% - 1180px) / 2)) 110px; background: var(--sand); }
.learn-library-heading { margin-bottom: 38px; }
.learn-library-heading h2 { max-width: 720px; margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(2.35rem, 4.5vw, 4.25rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.learn-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.learn-card { display: grid; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: var(--surface); box-shadow: 0 18px 55px rgba(var(--forest-rgb), .09); }
.learn-card-image { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--forest-deep); }
.learn-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(var(--forest-deep-rgb), .38), transparent 55%); pointer-events: none; }
.learn-card-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 320ms cubic-bezier(.2,.7,.2,1); }
.learn-card:hover .learn-card-image img { transform: scale(1.025); }
.learn-card-number { position: absolute; right: 17px; bottom: 15px; z-index: 1; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; background: rgba(var(--forest-deep-rgb), .72); color: white; font-size: .69rem; font-weight: 800; backdrop-filter: blur(6px); }
.learn-card-copy { display: flex; min-height: 310px; flex-direction: column; padding: 29px 29px 31px; }
.learn-card-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 0 0 13px; color: var(--timber-dark); font-size: .67rem; font-weight: 850; letter-spacing: .105em; text-transform: uppercase; }
.learn-card h3 { margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.7rem, 2.5vw, 2.25rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
.learn-card-copy > p:not(.learn-card-meta) { margin: 18px 0 24px; color: var(--muted); font-size: 1.04rem; line-height: 1.72; }
.learn-card .text-link { margin-top: auto; font-size: .98rem; }
.learn-contact { margin-top: 84px; }

.article-breadcrumb { display: flex; align-items: center; gap: 9px; width: min(100% - 48px, 1180px); margin: 0 auto; padding-top: 35px; color: var(--muted); font-size: .72rem; }
.article-breadcrumb a { color: var(--forest) !important; font-weight: 800; text-decoration: none; }
.article-hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr); align-items: center; gap: clamp(46px, 7vw, 94px); width: min(100% - 48px, 1180px); margin: 0 auto; padding: 48px 0 88px; }
.article-hero--text-only { grid-template-columns: minmax(0, 1fr); }
.article-hero--text-only > div { max-width: 1040px; }
.article-hero h1 { max-width: 700px; margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(3.05rem, 5.8vw, 5.65rem); font-weight: 500; letter-spacing: -.055em; line-height: .96; }
.article-deck { max-width: 650px; margin: 25px 0 0; color: var(--muted); font-size: clamp(1.1rem, 1.5vw, 1.26rem); line-height: 1.72; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 26px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; font-weight: 750; }
.article-hero-media { margin: 0; }
.article-image-button { display: block; width: 100%; overflow: hidden; padding: 0; border: 0; border-radius: 25px; background: var(--sand); box-shadow: var(--shadow); cursor: zoom-in; }
.article-image-button img { display: block; width: 100%; height: clamp(430px, 42vw, 570px); object-fit: cover; transition: transform 220ms ease; }
.article-image-button:hover img { transform: scale(1.012); }
.article-hero-media figcaption, .article-figure figcaption { margin-top: 12px; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.article-shell { display: grid; grid-template-columns: 220px minmax(0, 750px); justify-content: center; align-items: start; gap: clamp(45px, 7vw, 94px); padding: 88px 24px 112px; background: var(--surface); border-top: 1px solid var(--line); }
.article-toc { position: sticky; top: 28px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-toc > p { margin: 0 0 12px; color: var(--timber-dark); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.article-toc ol { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.article-toc a { color: var(--muted) !important; font-size: .76rem; font-weight: 680; line-height: 1.4; text-decoration: none; }
.article-toc a:hover { color: var(--forest) !important; }
.article-body { min-width: 0; }
.article-body > p:first-of-type { color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.4rem, 2.5vw, 1.85rem); line-height: 1.48; }
.article-body h2 { margin: 68px 0 20px; color: var(--forest); font-family: Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.45rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.04; scroll-margin-top: 32px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 38px 0 14px; color: var(--forest); font-family: Georgia, serif; font-size: 1.55rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.18; }
.article-body p { margin: 0 0 24px; color: var(--muted); font-size: 1.12rem; line-height: 1.8; }
.article-body strong { color: var(--forest); }
.article-body ul, .article-body ol { margin: 26px 0 30px; padding-left: 1.3rem; color: var(--muted); font-size: 1.08rem; }
.article-body li { padding-left: .28rem; line-height: 1.75; }
.article-body li + li { margin-top: 10px; }
.article-body li::marker { color: var(--timber); font-weight: 800; }
.article-callout { margin: 42px 0; padding: 28px 30px; border-left: 4px solid var(--gold); border-radius: 0 18px 18px 0; background: var(--sand); }
.article-callout .eyebrow { margin-bottom: 9px; }
.article-callout p:last-child { margin-bottom: 0; color: var(--forest); font-family: Georgia, serif; font-size: 1.28rem; line-height: 1.48; }
.article-glossary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; margin: 25px 0 38px; }
.article-glossary > div { padding: 18px 0; border-top: 1px solid var(--line); }
.article-glossary dt { margin-bottom: 5px; color: var(--forest); font-family: Georgia, serif; font-size: 1.05rem; font-weight: 700; }
.article-glossary dd { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.article-figure { margin: 45px 0; }
.article-figure .article-image-button img { height: auto; aspect-ratio: 16 / 10; }
.article-sources { margin-top: 74px; padding-top: 34px; border-top: 1px solid var(--line); }
.article-sources h2 { margin-top: 0; font-size: 2rem; }
.article-sources ol { font-size: .92rem; }
.article-sources li { line-height: 1.65; }
.article-next { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 20px; width: min(100% - 48px, 980px); margin: 0 auto; padding: 36px 0 84px; }
.article-next > span { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.article-next div { height: 1px; background: var(--line); }
.article-next a { color: var(--forest) !important; font-family: Georgia, serif; font-size: 1.2rem; font-weight: 600; text-decoration: none; }
.article-contact { margin-bottom: 80px; }

/* Knowledge Centre field-journal experience */
.learn-page, .learn-article-page {
  --knowledge-accent: var(--gold);
  --knowledge-wash: rgba(226, 215, 184, .28);
}
.learn-article-page--ipe { --knowledge-accent: #b86b2f; --knowledge-wash: rgba(212, 222, 192, .32); }
.learn-article-page--legal { --knowledge-accent: #667f54; --knowledge-wash: rgba(210, 220, 195, .34); }
.learn-article-page--linseed { --knowledge-accent: #b48a25; --knowledge-wash: rgba(230, 210, 148, .27); }
.knowledge-progress { position: fixed; top: 0; right: 0; left: 0; z-index: 2200; height: 4px; background: rgba(var(--forest-deep-rgb), .1); pointer-events: none; }
.knowledge-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left center; background: linear-gradient(90deg, var(--timber), var(--gold), var(--forest)); will-change: transform; }
.knowledge-wallpaper {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 138, 37, .12), transparent 29%),
    radial-gradient(circle at 88% 80%, rgba(74, 105, 70, .13), transparent 31%),
    linear-gradient(145deg, #f7f0e4 0%, #ece8dc 48%, #f6f0e5 100%);
  pointer-events: none;
}
.knowledge-wallpaper-scene {
  position: absolute;
  z-index: 1;
  width: min(1700px, 108vw);
  max-width: none;
  height: auto;
  opacity: 0;
  filter: saturate(.7) contrast(.94) blur(1.5px);
  transition: opacity 1150ms ease, filter 1150ms ease, transform 1250ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.knowledge-wallpaper-scene--lower-left {
  bottom: -6%;
  left: -2%;
  transform: translate3d(0, calc(var(--knowledge-drift, 0) * -24px), 0) rotate(-.6deg);
}
.knowledge-wallpaper-scene--upper-right {
  top: -2%;
  right: -3%;
  transform: translate3d(0, calc(var(--knowledge-drift, 0) * 22px), 0) rotate(.5deg);
}
.knowledge-wallpaper-scene--lower-right {
  right: -2%;
  bottom: -7%;
  transform: translate3d(0, calc(var(--knowledge-drift, 0) * -18px), 0) rotate(.4deg);
}
.knowledge-wallpaper-scene--compact-upper-right,
.knowledge-wallpaper-scene--compact-middle-right,
.knowledge-wallpaper-scene--compact-lower-right {
  --scene-enter-x: 20px;
  --scene-scale: .97;
  right: clamp(20px, 2.8vw, 58px);
  width: min(430px, 31vw);
  max-height: calc(100vh - 150px);
  object-fit: contain;
  transform: translate3d(var(--scene-enter-x), calc(var(--knowledge-drift, 0) * -16px), 0) scale(var(--scene-scale)) rotate(.35deg);
}
.knowledge-wallpaper-scene--compact-upper-right { top: clamp(92px, 12vh, 142px); transform-origin: right top; }
.knowledge-wallpaper-scene--compact-middle-right { top: clamp(250px, 36vh, 390px); transform-origin: right center; }
.knowledge-wallpaper-scene--compact-lower-right { bottom: clamp(22px, 3.5vw, 64px); transform-origin: right bottom; }
.knowledge-wallpaper-scene--compact-upper-right.is-active,
.knowledge-wallpaper-scene--compact-middle-right.is-active,
.knowledge-wallpaper-scene--compact-lower-right.is-active {
  --scene-enter-x: 0px;
  --scene-scale: 1;
}
.knowledge-wallpaper-scene--left-rail {
  --scene-enter-x: -18px;
  --scene-scale: .97;
  left: clamp(14px, 2.4vw, 48px);
  width: min(390px, 28vw);
  max-height: calc(100vh - 150px);
  object-fit: contain;
  object-position: left center;
  transform: translate3d(var(--scene-enter-x), calc(var(--knowledge-drift, 0) * -14px), 0) scale(var(--scene-scale)) rotate(-.35deg);
}
.knowledge-wallpaper-scene--compact-upper-left { top: clamp(92px, 12vh, 142px); transform-origin: left top; }
.knowledge-wallpaper-scene--compact-middle-left { top: clamp(250px, 36vh, 390px); transform-origin: left center; }
.knowledge-wallpaper-scene--compact-lower-left { bottom: clamp(20px, 4vh, 58px); transform-origin: left bottom; }
.knowledge-wallpaper-scene--left-rail.is-active {
  --scene-enter-x: 0px;
  --scene-scale: 1;
}
.knowledge-wallpaper-scene.is-active { z-index: 2; opacity: .22; filter: saturate(.84) contrast(.98) blur(0); }
.knowledge-wallpaper-scene--ambient.is-active { opacity: .16; }
.knowledge-wallpaper-scene--left-rail.is-active { opacity: .25; }
.knowledge-text-wallpaper { display: none; }
.knowledge-wallpaper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(var(--cream-rgb), .04), rgba(var(--cream-rgb), .68) 27%, rgba(var(--cream-rgb), .8) 50%, rgba(var(--cream-rgb), .68) 73%, rgba(var(--cream-rgb), .04)),
    linear-gradient(180deg, rgba(var(--cream-rgb), .2), transparent 32%, rgba(var(--cream-rgb), .12));
}
.knowledge-wallpaper-active .site-header,
.knowledge-wallpaper-active .learn-main,
.knowledge-wallpaper-active .learn-article-main,
.knowledge-wallpaper-active .site-footer { position: relative; }
.knowledge-wallpaper-active .site-header,
.knowledge-wallpaper-active .site-footer { z-index: 2; }
.knowledge-wallpaper-active .learn-main,
.knowledge-wallpaper-active .learn-article-main { z-index: 1; }
.knowledge-wallpaper-active .site-header {
  padding-right: 18px;
  padding-left: 18px;
  border: 1px solid rgba(var(--cream-rgb), .62);
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  background: rgba(var(--cream-rgb), .94);
  backdrop-filter: blur(18px) saturate(.9);
}
.knowledge-wallpaper-active .learn-hero-copy,
.knowledge-wallpaper-active .article-hero > div,
.knowledge-wallpaper-active .article-toc,
.knowledge-wallpaper-active .article-body,
.knowledge-wallpaper-active .article-next {
  border: 1px solid rgba(var(--cream-rgb), .7);
  background: rgba(var(--surface-rgb), .94);
  box-shadow: 0 20px 56px rgba(var(--forest-deep-rgb), .1);
  backdrop-filter: blur(18px) saturate(.88);
}
.knowledge-wallpaper-active .learn-hero-copy,
.knowledge-wallpaper-active .article-hero > div { padding: clamp(27px, 4vw, 44px); border-color: transparent; border-radius: 28px; background: transparent; box-shadow: none; backdrop-filter: none; }
.knowledge-wallpaper-active .learn-library {
  background: rgba(242, 232, 212, .91);
  border-top: 1px solid rgba(var(--cream-rgb), .6);
  backdrop-filter: blur(10px) saturate(.82);
}
.knowledge-wallpaper-active.learn-article-page .article-shell { background: transparent; border-color: rgba(var(--cream-rgb), .44); }
.knowledge-wallpaper-active .article-toc { padding: 22px; border-color: transparent; border-radius: 20px; background: transparent; box-shadow: none; backdrop-filter: none; }
.knowledge-wallpaper-active .article-body { position: relative; isolation: isolate; padding: clamp(28px, 4.2vw, 48px); border-color: transparent; border-radius: 32px; overflow: hidden; background: transparent; box-shadow: none; backdrop-filter: none; }
.knowledge-wallpaper-active .article-body > *:not(.knowledge-text-wallpaper) { position: relative; z-index: 1; }
.knowledge-wallpaper-active .article-next { margin-top: 42px; margin-bottom: 84px; padding: 28px 30px; border-radius: 22px; }
.knowledge-wallpaper-active .article-hero-media figcaption { display: inline-block; padding: 7px 10px; border-radius: 10px; background: rgba(var(--cream-rgb), .84); backdrop-filter: blur(10px); }
.learn-article-page .article-shell { background: linear-gradient(180deg, var(--surface) 0, var(--surface) 7%, var(--knowledge-wash) 32%, var(--surface) 59%, var(--surface) 100%); }
.learn-article-page .article-body > h2 { padding-left: 18px; border-left: 3px solid var(--knowledge-accent); }
.learn-field-strip { width: min(100%, 720px); margin: 82px auto 0; padding: 26px 0 22px; border-top: 1px solid rgba(var(--forest-rgb), .18); border-bottom: 1px solid rgba(var(--forest-rgb), .18); }
.learn-field-strip-copy { text-align: center; }
.learn-field-strip-copy .eyebrow { margin-bottom: 9px; }
.learn-field-strip-copy h2 { margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.learn-field-strip-copy p { max-width: 560px; margin: 14px auto 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.article-specimen {
  float: right;
  clear: right;
  width: min(310px, 43%);
  margin: .55rem 0 2.2rem clamp(1.6rem, 3.6vw, 2.5rem);
}
.article-specimen--reverse { float: left; clear: left; margin-right: clamp(1.6rem, 3.6vw, 2.5rem); margin-left: 0; }
.article-specimen--reverse img { transform: rotate(1.4deg); }
.article-specimen img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 19px 22px rgba(var(--forest-deep-rgb), .15));
  transform: rotate(-1.4deg);
}
.article-specimen figcaption { max-width: 310px; margin-top: 12px; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.article-specimen-label { display: block; margin-bottom: 8px; color: var(--knowledge-accent); font-size: .68rem; font-weight: 850; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.article-specimen figcaption strong { display: block; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.25rem, 2.1vw, 1.55rem); font-weight: 600; letter-spacing: -.025em; line-height: 1.13; }
.article-specimen figcaption span:last-child { display: block; margin-top: 10px; }
.article-figure { width: calc(100% + 80px); margin-right: -40px; margin-left: -40px; }
.article-figure .article-image-button { border-radius: 29px; box-shadow: 0 24px 64px rgba(var(--forest-deep-rgb), .17); }
.article-figure figcaption { max-width: calc(100% - 40px); margin-right: auto; margin-left: auto; }
.article-vista {
  position: relative;
  width: var(--article-vista-width, min(1586px, calc(100vw - 40px)));
  margin-top: 76px;
  margin-right: 0;
  margin-bottom: 82px;
  margin-left: var(--article-vista-offset, -40px);
}
.article-vista .article-image-button {
  border-radius: 30px;
  background: var(--forest-deep);
  box-shadow: 0 30px 84px rgba(var(--forest-deep-rgb), .24);
}
.article-vista .article-image-button img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}
.article-vista figcaption {
  width: min(calc(100% - 40px), var(--article-vista-caption-width, 750px));
  max-width: none;
  margin-right: 0;
  margin-top: 15px;
  margin-left: var(--article-vista-caption-offset, auto);
  color: var(--muted);
}
.article-editorial-photo {
  float: right;
  width: min(360px, 46%);
  margin: .45rem 0 2rem clamp(1.8rem, 4vw, 2.7rem);
  shape-margin: 18px;
}
.article-editorial-photo--left {
  float: left;
  margin-right: clamp(1.8rem, 4vw, 2.7rem);
  margin-left: 0;
}
.article-editorial-photo .article-image-button { overflow: hidden; border-radius: 22px; background: rgba(var(--cream-rgb), .56); box-shadow: 0 18px 46px rgba(var(--forest-deep-rgb), .18); }
.article-editorial-photo .article-image-button img { width: 100%; height: auto; max-height: 430px; aspect-ratio: auto; object-fit: contain; object-position: center; }
.article-editorial-photo figcaption { max-width: none; margin: 10px 2px 0; }
.article-nature-vignette {
  display: block;
  float: right;
  clear: right;
  width: clamp(165px, 27vw, 230px);
  margin: .4rem -10px 1.4rem 1.75rem;
  line-height: 0;
  pointer-events: none;
}
.article-nature-vignette--left {
  float: left;
  clear: left;
  margin-right: 1.75rem;
  margin-left: -10px;
}
.article-nature-vignette img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 21px rgba(var(--forest-deep-rgb), .16));
  transform: rotate(1.15deg);
}
.article-nature-vignette--left img { transform: rotate(-1.15deg); }
.article-body > h2,
.article-body > h3,
.article-body > .article-specimen,
.article-body > .article-callout,
.article-body > .article-sources { clear: both; }
.knowledge-motion-ready .article-specimen,
.knowledge-motion-ready .article-figure,
.knowledge-motion-ready .article-nature-vignette,
.knowledge-motion-ready .article-callout,
.knowledge-motion-ready .learn-card,
.knowledge-motion-ready .learn-field-strip { opacity: 0; transform: translateY(28px); transition: opacity 650ms ease, transform 720ms cubic-bezier(.2,.7,.2,1); }
.knowledge-motion-ready .is-visible { opacity: 1; transform: translateY(0); }
.knowledge-motion-ready .learn-card:nth-child(2) { transition-delay: 90ms; }
.knowledge-motion-ready .learn-card:nth-child(3) { transition-delay: 180ms; }

@media (max-width: 1200px) {
  .site-header { grid-template-columns: 1fr auto; padding: 16px 0; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; }
  .knowledge-wallpaper-scene--left-rail { display: none; }
  .knowledge-text-wallpaper { display: none; }
}

@media (max-width: 1080px) {
  .hero-section { grid-template-columns: 1fr 1fr; min-height: 0; }
  .protect-hero { grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr); gap: 44px; }
  .protect-application { grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr); gap: 46px; }
  .learn-hero { grid-template-columns: minmax(0, 1fr) minmax(260px, .52fr); gap: 46px; }
  .learn-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .learn-card-copy { min-height: 286px; padding: 30px 32px 32px; }
  .learn-card h3 { font-size: clamp(1.85rem, 3.3vw, 2.7rem); }
  .article-hero { grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: 44px; }
}

@media (max-width: 900px) {
  .featured-project-grid { grid-template-columns: 1fr; }
  .featured-project-grid > .rebuild-case-study[open] { grid-column: auto; }
  .protect-application { grid-template-columns: 1fr; gap: 45px; width: min(100% - 40px, 760px); }
  .protect-application-image img { height: min(70vw, 520px); }
}

@media (max-width: 760px) {
  .site-header { display: flex; flex-wrap: wrap; width: min(100% - 32px, 1320px); min-height: 0; gap: 14px; padding: 14px 0; }
  .brand { flex: 1; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 1.05rem; }
  .brand small { display: block; margin-top: 3px; font-size: .64rem; line-height: 1.25; }
  .header-actions { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 38px;
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--sand);
    color: var(--forest);
    font: 750 .75rem/1 inherit;
    cursor: pointer;
  }
  .menu-icon, .menu-icon::before, .menu-icon::after { display: block; width: 14px; height: 1.5px; border-radius: 2px; background: currentColor; transition: 160ms ease; }
  .menu-icon { position: relative; }
  .menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
  .menu-icon::before { top: -5px; }
  .menu-icon::after { top: 5px; }
  .menu-open .menu-icon { background: transparent; }
  .menu-open .menu-icon::before { top: 0; transform: rotate(45deg); }
  .menu-open .menu-icon::after { top: 0; transform: rotate(-45deg); }
  .site-nav {
    display: none;
    order: 4;
    width: 100%;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: 0 18px 44px rgba(var(--forest-rgb), .12);
  }
  .menu-open .site-nav { display: grid; }
  .site-nav a { width: 100%; padding: 11px 12px; border-radius: 10px; font-size: .78rem; }
  .site-nav .mobile-nav-only { display: block; }
  .site-nav .nav-cta { margin-top: 4px; background: var(--forest); color: white !important; text-align: center; }
  .hero-section { display: flex; flex-direction: column; width: min(100% - 32px, 1320px); gap: 38px; padding: 50px 0 70px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .hero-lede { margin-top: 22px; font-size: 1rem; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 24px; }
  .hero-image { width: 100%; }
  .hero-image img { aspect-ratio: 4 / 3; max-height: 360px; }
  .intro-section, .story-section, .contact-band { width: min(100% - 32px, 1180px); }
  .intro-section { grid-template-columns: 1fr; gap: 28px; padding: 70px 0 72px; }
  .intro-section h2, .story-copy h2 { font-size: 2.4rem; }
  .story-section { padding: 72px 0; }
  .story-page-hero { grid-template-columns: 1fr; gap: 42px; width: min(100% - 32px, 1180px); padding: 50px 0 72px; }
  .story-page-copy h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .story-page-copy > p:not(.eyebrow) { margin-top: 22px; font-size: 1rem; line-height: 1.68; }
  .story-page-photo { width: min(100%, 400px); justify-self: start; }
  .story-founder { grid-template-columns: 1fr; gap: 38px; width: min(100% - 32px, 1180px); padding: 72px 0 82px; }
  .story-founder-photo { width: min(100%, 440px); }
  .story-founder-copy { padding-top: 0; }
  .story-founder-copy h2 { font-size: clamp(2.45rem, 11vw, 3.8rem); }
  .contact-band { grid-template-columns: 1fr; gap: 28px; margin-bottom: 0; padding: 34px 24px; border-radius: 0; width: 100%; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 26px 20px; }
  .legacy-page-shell { grid-template-columns: 1fr; width: min(100% - 32px, 1180px); gap: 30px; padding: 52px 0 76px; }
  .legacy-copy { order: -1; }
  .legacy-copy h1 { font-size: 2.35rem; }
  .legacy-copy p { font-size: .96rem; line-height: 1.72; }
  .legacy-copy > table, .legacy-copy > table tbody, .legacy-copy > table tr { display: block; width: 100% !important; }
  .legacy-copy > table td { display: block; width: 100% !important; margin-bottom: 12px; }
  .service-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 38px; }
  .service-card { padding: 20px; }
  .service-card-heading { gap: 14px; }
  .service-symbol { flex-basis: 86px; width: 86px; height: 86px; }
  .combined-contact { padding: 26px 22px; }
  .contact-method-grid { grid-template-columns: 1fr; }
  .service-details-showcase { grid-template-columns: 1fr; gap: 28px; }
  .service-details-images { grid-template-columns: 1.15fr .85fr; }
  .service-details-images figure { min-height: 330px; }
  .service-details-images figure:nth-child(2) { min-height: 280px; margin-top: 32px; }
  .gallery-project-heading { grid-template-columns: 1fr; gap: 10px; }
  .gallery-project-grid { grid-template-columns: 1fr 1fr; }
  .gallery-project-grid-landscape { grid-template-columns: 1fr; }
  .gallery-project-masonry { columns: 2; }
  .rebuild-stage { padding: 18px; }
  .rebuild-case-preview { min-height: 390px; }
  .rebuild-case-preview > div { padding: 30px 24px; }
  .rebuild-case-preview::after { background: linear-gradient(0deg, rgba(var(--forest-deep-rgb), .96), rgba(var(--forest-deep-rgb), .42) 75%, rgba(var(--forest-deep-rgb), .12)); }
  .rebuild-facts { grid-template-columns: 1fr 1fr; }
  .rebuild-facts .rebuild-facts-wide { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 8px; }
  .rebuild-media-grid { columns: 2; }
  .rebuild-finished-grid { columns: 1; }
  .individual-project-grid { grid-template-columns: 1fr; }
  .individual-project-gallery { grid-template-columns: 1fr; }
  .individual-project-gallery-masonry { columns: 2; }
  .ipe-presentation { width: min(100% - 32px, 1180px); padding: 48px 0 70px; }
  .presentation-heading { grid-template-columns: 1fr; gap: 18px; }
  .presentation-heading h1 { font-size: 3rem; }
  .presentation-heading-copy { max-width: 520px; padding: 0; }
  .presentation-chapters { display: flex; margin-right: -16px; margin-left: -16px; padding: 0 16px 4px; overflow-x: auto; scrollbar-width: none; }
  .presentation-chapters::-webkit-scrollbar { display: none; }
  .presentation-chapters button { flex: 0 0 auto; min-width: 126px; }
  .story-progress { margin-right: -2px; margin-left: -2px; overflow: hidden; }
  .story-progress button { flex: 1 1 0; min-width: 16px; }
  .story-slides { min-height: 0; border-radius: 20px; }
  .story-slide,
  .story-slide-copy-right,
  .story-slide-portrait,
  .story-slide-final { position: relative; inset: auto; display: none; min-height: 0; align-items: stretch; grid-template-rows: auto auto auto; padding: 0; overflow: hidden; background-color: var(--forest-deep); background-image: none; text-align: left; }
  .story-slide.is-active { display: grid; }
  .story-slide::before { content: ""; display: block; width: 100%; grid-row: 1; aspect-ratio: var(--mobile-image-ratio, 16 / 9); border-bottom: 1px solid rgba(255,255,255,.1); background-color: #12231b; background-image: var(--slide-image); background-position: var(--mobile-slide-position, var(--slide-position, center)); background-size: cover; background-repeat: no-repeat; }
  .story-slide[data-image="adam-timber-yard-full.webp"],
  .story-slide[data-image="sculptural-rooftop-spa-project-04.webp"],
  .story-slide[data-image="multilevel-pool-project-14.webp"] { --mobile-image-ratio: 4 / 3; }
  .story-slide-portrait::before { aspect-ratio: 4 / 5; max-height: 520px; background-position: center top; background-size: contain; }
  .story-slide[data-image="adam-timber-yard-full.webp"]::before { --mobile-slide-position: center 58%; }
  .slide-number { position: static; grid-row: 2; justify-self: start; margin: 20px 24px 0; background: rgba(255,255,255,.08); }
  .story-slide .slide-copy,
  .story-slide-copy-right .slide-copy,
  .story-slide-final .slide-copy { grid-row: 3; width: 100%; max-width: none; margin: 0; padding: 14px 24px 34px; text-align: left; }
  .story-slide-final .slide-copy h2,
  .story-slide-final .slide-copy > p { margin-right: 0; margin-left: 0; }
  .slide-copy h2 { font-size: clamp(2rem, 8.8vw, 2.75rem); line-height: 1.01; }
  .slide-copy > p:not(.slide-kicker) { font-size: 1rem; line-height: 1.58; }
  .slide-facts { grid-template-columns: 1fr; gap: 8px; margin-top: 20px; }
  .slide-cta { width: 100%; min-height: 50px; justify-content: center; padding-right: 16px; padding-left: 16px; text-align: center; }
  .story-controls .story-control-hint { display: none; }
  .story-controls { justify-content: center; }
  .story-view-image { padding: 0 13px; }
  .image-lightbox { padding: 0; }
  .image-lightbox-dialog { width: 100%; height: 100vh; height: 100dvh; max-height: none; border: 0; border-radius: 0; }
  .image-lightbox-toolbar { min-height: 62px; padding: max(8px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) 8px max(16px, env(safe-area-inset-left)); }
  .image-lightbox-toolbar p { font-size: .64rem; }
  .image-lightbox-counter { min-width: 62px; font-size: .66rem; }
  .image-lightbox-stage { padding: 8px 48px; }
  .image-lightbox-previous { left: 4px; }
  .image-lightbox-next { right: 4px; }
  .image-lightbox-close, .image-lightbox-arrow { width: 44px; height: 44px; }
  .image-lightbox-figure figcaption { margin-top: 8px; font-size: .72rem; }
  .image-lightbox-hint { padding: 8px 14px max(12px, env(safe-area-inset-bottom)); font-size: .62rem; }
  .presentation-cta { grid-template-columns: 1fr; margin-top: 54px; padding: 34px 24px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-overview { margin-bottom: 38px; }
  .capability-card-copy { min-height: 0; }
  .capability-image { height: 190px; }
  .capability-list section { grid-template-columns: 1fr; gap: 8px; }
  .capability-list img { width: 100%; height: 180px; margin-bottom: 10px; }
  .clients-main { width: min(100% - 32px, 1180px); padding: 50px 0 0; }
  .client-section-heading, .referrals-panel { grid-template-columns: 1fr; }
  .client-history { padding: 0 0 62px; }
  .client-section-heading { gap: 24px; margin-bottom: 28px; }
  .client-section-heading .eyebrow { grid-column: auto; margin-bottom: -8px; }
  .client-logo-grid { grid-template-columns: 1fr 1fr; }
  .client-logo-card { min-height: 154px; padding: 22px 15px 18px; }
  .referrals-panel { gap: 28px; margin-right: -16px; margin-left: -16px; padding: 38px 24px; border-radius: 0; }
  .protect-hero { display: flex; width: min(100% - 32px, 1180px); align-items: stretch; flex-direction: column; gap: 42px; padding: 50px 0 70px; }
  .protect-hero-copy h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .protect-hero-copy > p:not(.eyebrow) { margin-top: 22px; font-size: 1rem; line-height: 1.68; }
  .protect-actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 24px; }
  .protect-highlights { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 23px; }
  .protect-hero-image img { height: 360px; }
  .protect-benefits { padding: 66px 16px 72px; }
  .protect-section-heading { grid-template-columns: 1fr; gap: 23px; }
  .protect-section-heading h2, .protect-application-copy h2 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .protect-benefits-image { margin-top: 28px; }
  .protect-benefits-image img { height: 300px; }
  .protect-benefit-body { max-width: 650px; padding-top: 0; }
  .protect-application { grid-template-columns: 1fr; gap: 45px; width: min(100% - 32px, 1180px); padding: 74px 0; }
  .protect-application-image img { height: 360px; }
  .protect-process-list { margin-top: 28px; }
  .protect-contact { margin-top: 0; }
  .learn-hero { grid-template-columns: 1fr; align-items: start; gap: 28px; width: min(100% - 32px, 1180px); padding: 54px 0 64px; }
  .learn-hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .learn-hero-copy > p:not(.eyebrow) { margin-top: 22px; font-size: 1.1rem; }
  .learn-library { padding: 66px 16px 76px; }
  .learn-library-heading { margin-bottom: 28px; }
  .learn-library-heading h2 { font-size: clamp(2.4rem, 11vw, 3.35rem); }
  .learn-grid { grid-template-columns: 1fr; }
  .learn-card-copy { min-height: 0; padding: 25px 24px 28px; }
  .learn-card h3 { font-size: 2.15rem; }
  .learn-contact { margin-top: 60px; }
  .article-breadcrumb { width: min(100% - 32px, 1180px); padding-top: 26px; }
  .article-hero { grid-template-columns: 1fr; gap: 38px; width: min(100% - 32px, 1180px); padding: 36px 0 64px; }
  .article-hero h1 { font-size: clamp(2.8rem, 13vw, 4.35rem); }
  .article-deck { margin-top: 21px; font-size: 1.1rem; }
  .article-hero-media { max-width: 680px; }
  .article-image-button img { height: min(105vw, 480px); }
  .article-shell { min-width: 0; grid-template-columns: minmax(0, 1fr); gap: 38px; padding: 60px 16px 80px; }
  .article-toc { position: static; width: 100%; max-width: 750px; margin: 0 auto; padding: 20px 0 10px; }
  .article-toc ol { display: flex; gap: 9px; overflow-x: auto; margin-right: -8px; margin-left: -8px; padding: 0 8px 10px; scroll-padding-inline: 8px; scroll-snap-type: x proximity; scrollbar-color: var(--timber) transparent; scrollbar-width: thin; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; }
  .article-toc li { flex: 0 0 auto; scroll-snap-align: start; }
  .article-toc a { display: block; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); white-space: nowrap; }
  .article-body { width: 100%; max-width: 750px; margin: 0 auto; }
  .article-body h2 { margin-top: 55px; font-size: clamp(2.05rem, 10vw, 3rem); }
  .article-glossary { grid-template-columns: 1fr; }
  .article-next { grid-template-columns: 1fr; gap: 12px; width: min(100% - 32px, 750px); padding: 30px 0 64px; }
  .article-next div { display: none; }
  .article-contact { margin-bottom: 0; }
  .learn-field-strip { margin-top: 66px; padding: 22px 0 18px; }
  .article-specimen, .article-specimen--reverse { float: none; width: min(100%, 470px); margin: 42px auto 50px; }
  .article-specimen img, .article-specimen--reverse img { max-width: 270px; }
  .article-specimen figcaption { max-width: 390px; margin-right: auto; margin-left: auto; font-size: .92rem; text-align: center; }
  .article-figure { width: 100%; margin-right: 0; margin-left: 0; }
  .article-figure .article-image-button { border-radius: 22px; }
  .article-vista {
    margin-top: 58px;
    margin-bottom: 64px;
    margin-left: var(--article-vista-offset, -22px);
  }
  .article-vista .article-image-button { border-radius: 0; box-shadow: none; }
  .article-vista figcaption { width: calc(100vw - 44px); margin: 12px auto 0; }
  .article-editorial-photo, .article-editorial-photo--left { float: none; width: min(100%, 520px); margin: 42px auto 50px; }
  .article-editorial-photo .article-image-button { border-radius: 22px; box-shadow: 0 18px 46px rgba(var(--forest-deep-rgb), .16); }
  .article-editorial-photo figcaption { width: auto; margin: 10px 2px 0; }
  .article-nature-vignette,
  .article-nature-vignette--left { float: none; clear: both; width: min(62vw, 220px); margin: 30px auto 36px; }
  .knowledge-wallpaper-scene { width: 860px; opacity: 0; }
  .knowledge-wallpaper-scene.is-active { opacity: .19; }
  .knowledge-wallpaper-scene--lower-left { bottom: -2%; left: -54px; }
  .knowledge-wallpaper-scene--upper-right { top: 3%; right: -48px; }
  .knowledge-wallpaper-scene--lower-right { right: -52px; bottom: -3%; }
  .knowledge-wallpaper-scene--compact-upper-right,
  .knowledge-wallpaper-scene--compact-middle-right,
  .knowledge-wallpaper-scene--compact-lower-right { right: 12px; width: min(260px, 48vw); }
  .knowledge-wallpaper-scene--compact-upper-right { top: 86px; }
  .knowledge-wallpaper-scene--compact-middle-right { top: 34vh; }
  .knowledge-wallpaper-scene--compact-lower-right { bottom: 18px; }
  .knowledge-wallpaper-scene--left-rail { display: none; }
  .knowledge-wallpaper::after {
    background:
      linear-gradient(180deg, rgba(var(--cream-rgb), .38), rgba(var(--cream-rgb), .14) 48%, rgba(var(--cream-rgb), .28)),
      linear-gradient(90deg, rgba(var(--cream-rgb), .03), rgba(var(--cream-rgb), .7) 33%, rgba(var(--cream-rgb), .7) 67%, rgba(var(--cream-rgb), .03));
  }
  .knowledge-wallpaper-active .site-header { padding-right: 12px; padding-left: 12px; border-radius: 0; }
  .knowledge-wallpaper-active .learn-hero-copy,
  .knowledge-wallpaper-active .article-hero > div { padding: 27px 24px; border-radius: 23px; }
  .knowledge-wallpaper-active .article-shell { padding-right: 12px; padding-left: 12px; }
  .knowledge-wallpaper-active .article-body { padding: 30px 22px; border-radius: 24px; background: transparent; }
  .knowledge-wallpaper-active .article-toc { padding: 18px; background: transparent; }
  .knowledge-wallpaper-active .article-next { width: min(100% - 24px, 750px); margin-bottom: 56px; padding: 24px; }
  .material-note { padding: 26px 22px; }
  .ipe-story-modal { padding: 12px; }
  .ipe-modal-dialog { border-radius: 18px; }
  .ipe-modal-slides { min-height: min(70vh, 590px); }
  .ipe-modal-slide { padding: 68px 24px 38px; background: linear-gradient(0deg, rgba(var(--forest-deep-rgb), .96), rgba(var(--forest-deep-rgb), .48) 75%, rgba(var(--forest-deep-rgb), .2)), var(--modal-image) center/cover; }
  .ipe-modal-slide h2 { font-size: clamp(2.45rem,12vw,3.6rem); }
  .ipe-modal-slide span { font-size: .94rem; }
  .ipe-modal-footer { padding: 13px 16px; }
  .ipe-modal-footer a { max-width: 150px; text-align: right; }
  .wood-info-modal { padding: 12px; }
  .wood-info-dialog { max-height: 94vh; border-radius: 18px; }
  .wood-info-content > header { padding: 34px 24px 24px; }
  .wood-info-dialog h2 { padding-right: 34px; font-size: 2.25rem; }
  .wood-property-grid { grid-template-columns: 1fr; padding: 12px 24px 24px; }
  .wood-property-grid > div:nth-child(odd), .wood-property-grid > div:nth-child(even) { padding: 14px 0; border-left: 0; }
  .wood-info-content > footer { align-items: flex-start; flex-direction: column; padding: 22px 24px 28px; }
}

@media (max-width: 480px) {
  .story-view-image { width: 46px; justify-content: center; padding: 0; }
  .story-view-image-label { position: absolute; overflow: hidden; width: 1px; height: 1px; padding: 0; border: 0; margin: -1px; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .story-founder { width: min(100% - 24px, 1180px); }
  .story-founder-photo > .individual-project-image-link { border-radius: 20px; }
  .service-details-images { grid-template-columns: 1fr; }
  .service-details-images figure,
  .service-details-images figure:nth-child(2) { min-height: 260px; margin-top: 0; }
  .individual-project-gallery-masonry { columns: 1; }
  .article-toc ol { display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; overflow: visible; margin-right: 0; margin-left: 0; padding: 0; scroll-snap-type: none; }
  .article-toc li { width: 100%; min-width: 0; }
  .article-toc a { width: 100%; white-space: normal; overflow-wrap: anywhere; }
  .article-callout { margin-right: -4px; margin-left: -4px; padding: 24px 22px; }
  .learn-field-strip { text-align: center; }
  .learn-field-strip-copy { text-align: center; }
  .learn-field-strip-copy p { margin-right: auto; margin-left: auto; }
  .article-specimen, .article-specimen--reverse { width: min(100%, 380px); margin: 38px auto 46px; text-align: center; }
  .article-specimen img, .article-specimen--reverse img { width: min(280px, 88%); max-width: none; transform: rotate(-1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .knowledge-wallpaper-scene { transform: none; transition: none; }
  .knowledge-motion-ready .article-specimen,
  .knowledge-motion-ready .article-figure,
  .knowledge-motion-ready .article-nature-vignette,
  .knowledge-motion-ready .article-callout,
  .knowledge-motion-ready .learn-card,
  .knowledge-motion-ready .learn-field-strip { opacity: 1; transform: none; transition: none; }
}

@media (min-width: 761px) {
  .presentation-page .presentation-heading { display: none; }
  .presentation-page .ipe-presentation { padding-top: 36px; }
  .presentation-page .story-slides { height: clamp(400px, 32.5vw, 430px); min-height: 0; }
  .presentation-page .story-slide,
  .presentation-page .story-slide-copy-right,
  .presentation-page .story-slide-portrait,
  .presentation-page .story-slide-final { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); align-items: stretch; padding: 0; background-color: var(--forest-deep); background-image: none; text-align: left; }
  .presentation-page .story-slide::before { content: ""; display: block; min-width: 0; min-height: 100%; grid-column: 1; grid-row: 1; border-right: 1px solid rgba(255,255,255,.1); background-color: #12231b; background-image: var(--slide-image); background-position: var(--slide-position, center); background-size: contain; background-repeat: no-repeat; }
  .presentation-page .story-slide-portrait::before { background-position: center; }
  .presentation-page .story-slide .slide-copy,
  .presentation-page .story-slide-copy-right .slide-copy,
  .presentation-page .story-slide-final .slide-copy { width: 100%; max-width: none; align-self: center; grid-column: 2; grid-row: 1; margin: 0; padding: clamp(30px, 3.2vw, 48px); text-align: left; }
  .presentation-page .story-slide-final .slide-copy h2,
  .presentation-page .story-slide-final .slide-copy > p { margin-right: 0; margin-left: 0; }
  .presentation-page .story-slide .slide-copy h2 { font-size: clamp(2rem, 3.15vw, 2.8rem); line-height: 1; }
  .presentation-page .story-slide .slide-copy > p:not(.slide-kicker) { font-size: clamp(.94rem, 1.25vw, 1.08rem); }
  .presentation-page .story-slide .slide-cta { max-width: 100%; white-space: normal; text-align: center; }
}
