:root {
  --evergreen: #153f3d;
  --evergreen-dark: #0b2e2d;
  --ivory: #f3eee6;
  --paper: #fbf8f2;
  --aqua: #45b8bd;
  --ink: #183d3b;
  --muted: #506260;
  --line: rgba(21, 63, 61, 0.21);
  --light-line: rgba(243, 238, 230, 0.24);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
button, input, textarea, select { font: inherit; }

.shell {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 94px;
  display: flex;
  align-items: center;
  color: var(--ivory);
  border-bottom: 1px solid rgba(243, 238, 230, 0.26);
}

.site-header--solid {
  position: relative;
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-detail {
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--aqua);
  transition: right 220ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after { right: 0; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 100px 34px 50px;
  color: var(--ivory);
  background: var(--evergreen-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1.05;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--evergreen-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.055);
  transition: transform 1.8s cubic-bezier(.2,.7,.2,1);
}

.hero--home::before { background-image: url("assets/hero-fascia-room.webp"); }
.hero--outcalls::before { background-image: url("assets/hero-office-call.webp"); }

body.loaded .hero::before { transform: scale(1); }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,35,34,.94) 0%, rgba(11,38,37,.86) 35%, rgba(11,38,37,.32) 64%, rgba(11,38,37,.08) 100%),
    linear-gradient(0deg, rgba(5,25,24,.44), transparent 44%);
}

.hero-inner { padding-block: 146px 42px; }

.js .hero-copy {
  max-width: 670px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 850ms ease 180ms, transform 850ms ease 180ms;
}

html.js body.loaded .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 26px;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--aqua);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 6.6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 38px;
  color: rgba(243,238,230,.84);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 230px;
  padding: 18px 22px;
  color: var(--evergreen-dark);
  background: var(--ivory);
  border: 1px solid var(--ivory);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.button span { transition: transform 220ms ease; font-size: 1rem; }
.button:hover { color: var(--ivory); background: transparent; }
.button:hover span { transform: translateX(5px); }

.button--dark {
  color: var(--ivory);
  background: var(--evergreen);
  border-color: var(--evergreen);
}

.button--dark:hover { color: var(--evergreen); border-color: var(--evergreen); }

.hero-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(243,238,230,.28);
  color: rgba(243,238,230,.7);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-strip {
  padding: 32px 0;
  color: var(--ivory);
  background: var(--evergreen);
}

.audience-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
}

section { position: relative; }

.section-pad { padding: 128px 0; }
.surface-ivory { background: var(--ivory); }
.surface-paper { background: var(--paper); }
.surface-green { color: var(--ivory); background: var(--evergreen); }
.surface-dark { color: var(--ivory); background: var(--evergreen-dark); }

.section-head {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.6fr);
  gap: 72px;
  align-items: start;
}

.section-label {
  padding-top: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 5.25rem);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-lede {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.surface-green .section-lede,
.surface-dark .section-lede { color: rgba(243,238,230,.7); }

.editorial-list {
  margin-top: 84px;
  margin-left: calc(34% + 12px);
  border-top: 1px solid var(--line);
}

.surface-green .editorial-list,
.surface-dark .editorial-list { border-color: var(--light-line); }

.editorial-row {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) 1.3fr;
  gap: 38px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.surface-green .editorial-row,
.surface-dark .editorial-row { border-color: var(--light-line); }

.editorial-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.05;
}

.editorial-row p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.surface-green .editorial-row p,
.surface-dark .editorial-row p { color: rgba(243,238,230,.7); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.link-arrow::after {
  content: "→";
  font-size: 1rem;
  transition: transform 200ms ease;
}

.link-arrow:hover::after { transform: translateX(5px); }

.modalities-preview {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 86px;
  align-items: start;
}

.modality-links { border-top: 1px solid var(--light-line); }

.modality-links a {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 21px 0;
  border-bottom: 1px solid var(--light-line);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  text-decoration: none;
}

.modality-links a span:last-child {
  color: var(--aqua);
  transition: transform 200ms ease;
}

.modality-links a:hover span:last-child { transform: translateX(6px); }

.profile-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
  align-items: end;
}

.monogram {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  max-width: 390px;
  color: var(--ivory);
  background: var(--evergreen);
  font-family: var(--serif);
  font-size: clamp(5rem, 11vw, 9rem);
  letter-spacing: -.07em;
}

.credential {
  display: inline-block;
  margin-bottom: 26px;
  padding: 9px 18px;
  color: var(--ivory);
  background: var(--evergreen);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .13em;
}

.profile-grid p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 76px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

blockquote { margin: 0; }

blockquote p {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.2;
}

blockquote cite {
  font-size: .67rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.journal-list { margin-top: 76px; border-top: 1px solid var(--line); }

.journal-item {
  display: grid;
  grid-template-columns: .45fr 1.55fr auto;
  gap: 40px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.journal-type {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.journal-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.journal-arrow {
  color: var(--aqua);
  font-size: 1.5rem;
  transition: transform 200ms ease;
}

.journal-item:hover .journal-arrow { transform: translateX(7px); }

.blog-intro {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 72px;
  align-items: start;
}

.blog-intro p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.article-header {
  padding: 96px 0 86px;
  color: var(--ivory);
  background: var(--evergreen-dark);
}

.article-header-inner { max-width: 990px; }

.article-header h1 {
  margin-bottom: 30px;
  font-size: clamp(3.6rem, 6.8vw, 6.2rem);
}

.article-meta {
  margin: 0;
  color: rgba(243,238,230,.62);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) minmax(0, 1.55fr);
  gap: 80px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 34px;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.65;
  text-transform: uppercase;
}

.article-body { max-width: 790px; }

.article-body > p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.3;
}

.article-body h2 {
  margin: 68px 0 22px;
  font-size: clamp(2.3rem, 4.2vw, 3.65rem);
}

.article-body h3 {
  margin: 44px 0 16px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.article-body ul { margin: 24px 0; padding-left: 20px; }
.article-body li + li { margin-top: 10px; }

.definitions {
  margin: 32px 0 52px;
  border-top: 1px solid var(--line);
}

.definition {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: 30px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.definition dt { font-family: var(--serif); font-size: 1.25rem; }
.definition dd { margin: 0; color: var(--muted); line-height: 1.65; }

.bottom-line {
  margin: 48px 0;
  padding: 34px;
  color: var(--ivory);
  background: var(--evergreen);
}

.bottom-line strong {
  display: block;
  margin-bottom: 12px;
  color: var(--aqua);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.bottom-line p { margin: 0; color: rgba(243,238,230,.82); }

.article-note {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .9rem !important;
}

.sources {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sources li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 60px;
  align-items: end;
}

.cta-band h2 { margin-bottom: 0; max-width: 820px; }

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.surface-green .cta-actions .link-arrow { margin-top: 0; }

.site-footer {
  padding: 34px 0;
  color: rgba(243,238,230,.58);
  background: var(--evergreen-dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 96px;
  color: var(--ivory);
  background: var(--evergreen-dark);
}

.page-hero::after {
  content: attr(data-word);
  position: absolute;
  right: -2vw;
  bottom: -7vw;
  color: rgba(243,238,230,.035);
  font-family: var(--serif);
  font-size: clamp(9rem, 22vw, 21rem);
  line-height: 1;
  pointer-events: none;
}

.page-hero h1 { max-width: 920px; margin-bottom: 22px; }
.page-hero .hero-lede { margin-bottom: 0; }

.catalog { border-top: 1px solid var(--line); }

.catalog-item {
  display: grid;
  grid-template-columns: .35fr .8fr 1.2fr;
  gap: 42px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 40px;
}

.catalog-kicker {
  color: var(--aqua);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.catalog-item h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 3.7rem);
}

.catalog-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.outcall-story {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.outcall-points { border-top: 1px solid var(--line); }

.outcall-point {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.outcall-point h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.outcall-point p { margin: 0; color: var(--muted); line-height: 1.66; }

.inquiry-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 96px;
}

.inquiry-copy { max-width: 500px; color: rgba(243,238,230,.7); line-height: 1.72; }

.inquiry-actions {
  display: grid;
  justify-items: start;
  gap: 24px;
  align-content: center;
  padding-top: 18px;
}

.inquiry-actions .link-arrow { margin-top: 0; }

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 920px) {
  .nav { gap: 17px; font-size: .64rem; }
  .brand-detail { display: none; }
  .audience-list { flex-wrap: wrap; justify-content: flex-start; }
  .audience-list li { flex: 1 0 28%; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 40px, 640px); }
  .site-header { height: 78px; }
  .nav { flex-wrap: wrap; justify-content: flex-end; gap: 8px 12px; font-size: .56rem; }
  .js .nav { display: none; }
  .js .menu-toggle { display: grid; place-items: center; }
  .hero { min-height: 92svh; }
  .hero::before { background-position: 64% center; }
  .hero::after { background: linear-gradient(90deg, rgba(7,31,30,.94), rgba(8,35,34,.55)), linear-gradient(0deg, rgba(5,25,24,.5), transparent 50%); }
  .hero-inner { padding-block: 126px 34px; }
  h1 { font-size: clamp(3.7rem, 16vw, 5.3rem); }
  .hero-foot { margin-top: 52px; align-items: flex-start; flex-direction: column; }
  .audience-strip { padding: 25px 0; }
  .audience-list { display: grid; grid-template-columns: 1fr 1fr; font-size: 1.05rem; }
  .section-pad { padding: 88px 0; }
  .section-head, .modalities-preview, .profile-grid, .outcall-story, .inquiry-grid, .blog-intro, .article-layout { grid-template-columns: 1fr; gap: 30px; }
  .editorial-list { margin: 56px 0 0; }
  .editorial-row { grid-template-columns: 1fr; gap: 12px; }
  .monogram { max-width: 230px; }
  .quote-grid { grid-template-columns: 1fr; gap: 52px; }
  .journal-item { grid-template-columns: 1fr auto; gap: 12px 24px; }
  .journal-type { grid-column: 1 / -1; }
  .cta-band { grid-template-columns: 1fr; align-items: start; }
  .footer-inner { flex-direction: column; }
  .page-hero { padding: 92px 0 76px; }
  .catalog-item { grid-template-columns: 1fr; gap: 12px; padding: 34px 0; }
  .article-header { padding: 76px 0 66px; }
  .article-aside { position: static; }
  .definition { grid-template-columns: 1fr; gap: 7px; }
  .bottom-line { margin-inline: -20px; padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .hero-copy, .js .reveal { opacity: 1; transform: none; }
}
