:root {
  --hearth-pine: #183f35;
  --charcoal-ink: #1f2724;
  --limestone: #f5f1e8;
  --sage-glass: #dde8de;
  --copper-ember: #8f4a2d;
  --slate-blue: #496a78;
  --soft-white: #fffcf7;
  --muted-stone: #8a918c;
  --pine-2: #102b25;
  --line: rgba(24, 63, 53, 0.18);
  --shadow: 0 24px 80px rgba(31, 39, 36, 0.12);
  --font: "Avenir Next", Avenir, Inter, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal-ink);
  background: var(--limestone);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: rgba(185, 101, 61, 0.65); text-underline-offset: 0.2em; }
a:hover { text-decoration-color: var(--copper-ember); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--copper-ember); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--soft-white);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(245, 241, 232, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(31, 39, 36, 0.08);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  gap: 1rem;
}
.brand-link { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; }
.brand-link img { width: 214px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  color: rgba(31, 39, 36, 0.78);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
}
.nav-menu a:hover { background: rgba(221, 232, 222, 0.78); color: var(--charcoal-ink); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft-white);
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--hearth-pine);
  content: "";
}
.nav-toggle-bars::before { transform: translateY(-6px); }
.nav-toggle-bars::after { transform: translateY(4px); }

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100svh - 72px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245, 241, 232, 0.97), rgba(245, 241, 232, 0.9)),
    linear-gradient(135deg, rgba(221, 232, 222, 0.58) 0 1px, transparent 1px 100%) 0 0 / 44px 44px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-content: center;
  align-items: center;
  column-gap: clamp(2rem, 6vw, 5.5rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.75rem, 5.5vh, 4.75rem) 0 clamp(2rem, 4vh, 3rem);
}
.hero-copy-block,
.hero-panel,
.hero-panel-content,
.section-heading,
.service-card,
.portfolio-card,
.contact-panel {
  min-width: 0;
}
.eyebrow, .section-kicker, .work-type {
  margin: 0 0 0.85rem;
  color: var(--slate-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 15ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.65rem, 4.8vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 760px;
  margin-bottom: 1.7rem;
  color: rgba(31, 39, 36, 0.86);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: clamp(2.25rem, 5vw, 4rem); }
.hero-panel {
  border: 1px solid rgba(24, 63, 53, 0.2);
  background: rgba(255, 252, 247, 0.82);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
}
.hero-photo {
  aspect-ratio: 1.55;
  border-bottom: 1px solid var(--line);
  background: var(--sage-glass);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo picture,
.image-row picture,
.portfolio-media picture {
  width: 100%;
  height: 100%;
}
.photo-practice-consult {
  object-position: 50% 48%;
}
.photo-medical-team {
  object-position: 52% 42%;
}
.photo-diverse-planning {
  object-position: 50% 52%;
}
.photo-multicultural-planning {
  object-position: 50% 48%;
}
.photo-therapy-consult {
  object-position: 50% 52%;
}
.photo-businesswoman-office {
  object-position: 62% 48%;
}
.hero-panel-content {
  padding: clamp(1.15rem, 2.4vw, 1.8rem);
}
.panel-label {
  margin-bottom: 0.45rem;
  color: var(--copper-ember);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-panel h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.08;
}
.hero-panel ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-panel li {
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  color: rgba(31, 39, 36, 0.74);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.78rem 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--hearth-pine); color: var(--soft-white); }
.button-primary:hover { background: var(--pine-2); }
.button-secondary { border-color: rgba(24, 63, 53, 0.28); background: rgba(255, 252, 247, 0.74); color: var(--hearth-pine); }
.proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(900px, 100%);
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}
.proof-strip div { min-height: 126px; padding: 1.1rem; background: rgba(255, 252, 247, 0.74); }
.proof-strip dt { color: var(--hearth-pine); font-size: 1.6rem; font-weight: 850; line-height: 1.1; }
.proof-strip dd { margin: 0.45rem 0 0; color: rgba(31, 39, 36, 0.72); font-size: 0.92rem; line-height: 1.35; }

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}
.section-heading { display: grid; gap: 1rem; max-width: 850px; margin-bottom: clamp(2rem, 4vw, 3rem); }
h2 { margin-bottom: 0; font-size: clamp(2rem, 3.6vw, 3.45rem); line-height: 1.04; letter-spacing: 0; }
h3 { margin-bottom: 0.7rem; font-size: 1.2rem; line-height: 1.18; letter-spacing: 0; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.intro-copy { color: rgba(31, 39, 36, 0.76); font-size: 1.05rem; }
.image-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4.5rem);
}
.image-row figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--soft-white);
  overflow: hidden;
}
.image-row figure:nth-child(1) {
  margin-top: 2.5rem;
}
.image-row figure:nth-child(3) {
  margin-top: 1.1rem;
}
.image-row img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}
.services-section, .process-section, .offer-section, .detail-section, .faq-section { border-top: 1px solid var(--line); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.service-card { min-height: 265px; padding: clamp(1.2rem, 2.5vw, 1.7rem); background: rgba(255, 252, 247, 0.68); }
.service-number { display: block; margin-bottom: 2.3rem; color: var(--copper-ember); font-weight: 850; font-size: 0.86rem; }
.service-card p, .work-item p, .process-list p, .contact-panel p, .site-footer p { color: rgba(31, 39, 36, 0.72); }
.service-card h3 a { text-decoration-thickness: 1px; }

.audience-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: var(--hearth-pine);
  color: var(--soft-white);
}
.audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.audience-panel .section-kicker { color: rgba(255, 252, 247, 0.76); }
.audience-panel p { color: rgba(255, 252, 247, 0.88); }
.audience-list { display: grid; gap: 1px; border: 1px solid rgba(255, 252, 247, 0.2); background: rgba(255, 252, 247, 0.2); }
.audience-list div { padding: 1.4rem; background: rgba(255, 252, 247, 0.06); }
.audience-list h3 { color: var(--soft-white); }

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.9fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.offer-copy,
.offer-list div {
  background: rgba(255, 252, 247, 0.74);
}
.offer-copy {
  padding: clamp(1.3rem, 3vw, 2rem);
}
.offer-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
}
.offer-copy p {
  color: rgba(31, 39, 36, 0.74);
}
.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}
.offer-list div {
  min-height: 150px;
  padding: 1.2rem;
}
.offer-list span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--copper-ember);
  font-weight: 850;
  font-size: 0.82rem;
}
.offer-list p {
  margin: 0;
  color: rgba(31, 39, 36, 0.76);
  font-weight: 700;
  line-height: 1.35;
}
.text-link {
  display: inline-flex;
  margin-top: 0.3rem;
  color: var(--hearth-pine);
  font-weight: 850;
}

.service-hero {
  padding-top: clamp(3.2rem, 7vw, 6rem);
  padding-bottom: clamp(2.8rem, 6vw, 5rem);
}
.service-hero h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
}
.service-lede {
  max-width: 780px;
  color: rgba(31, 39, 36, 0.82);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.45;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: end;
}
.service-hero-grid h1 {
  max-width: 15ch;
}
.service-hero-card {
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.74);
  overflow: hidden;
}
.service-hero-card figure {
  margin: 0;
  aspect-ratio: 1.45;
  border-bottom: 1px solid var(--line);
  background: var(--sage-glass);
}
.service-hero-card picture {
  width: 100%;
  height: 100%;
}
.service-hero-card img,
.service-photo-grid img,
.service-split-media img,
.charlotte-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}
.service-hero-card div {
  padding: clamp(1.05rem, 2vw, 1.35rem);
}
.service-hero-card p {
  margin: 0;
  color: rgba(31, 39, 36, 0.74);
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0;
  color: rgba(31, 39, 36, 0.64);
  font-size: 0.86rem;
  font-weight: 800;
  list-style: none;
}
.breadcrumb-list a {
  color: var(--hearth-pine);
  text-decoration-thickness: 1px;
}
.breadcrumb-list li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: rgba(31, 39, 36, 0.38);
  content: "/";
}
.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.6fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: start;
}
.service-split-copy {
  display: grid;
  gap: 1rem;
}
.service-split-copy p {
  color: rgba(31, 39, 36, 0.76);
  font-size: 1.04rem;
}
.service-split-media {
  display: grid;
  gap: 1rem;
}
.service-split-media figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--sage-glass);
  overflow: hidden;
}
.service-split-media picture,
.service-photo-grid picture,
.charlotte-photo-stack picture {
  width: 100%;
  aspect-ratio: 1.38;
}
.insight-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}
.insight-list li {
  padding: 1rem;
  background: rgba(255, 252, 247, 0.72);
  color: rgba(31, 39, 36, 0.76);
}
.service-proof-grid,
.deliverable-grid,
.charlotte-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.service-proof-grid article,
.deliverable-grid article,
.charlotte-detail-grid article {
  min-height: 220px;
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
  background: rgba(255, 252, 247, 0.72);
}
.service-proof-grid span,
.deliverable-grid span,
.charlotte-detail-grid span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--copper-ember);
  font-size: 0.82rem;
  font-weight: 850;
}
.service-proof-grid p,
.deliverable-grid p,
.charlotte-detail-grid p {
  color: rgba(31, 39, 36, 0.74);
}
.service-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.service-photo-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--sage-glass);
  overflow: hidden;
}
.service-photo-grid figure:first-child picture {
  aspect-ratio: 1.2;
}
.service-photo-grid figure:not(:first-child) picture {
  aspect-ratio: 1.6;
}
.service-photo-grid figcaption,
.service-hero-card figcaption,
.service-split-media figcaption,
.charlotte-photo-stack figcaption {
  padding: 0.7rem 0.8rem;
  color: rgba(31, 39, 36, 0.64);
  background: rgba(255, 252, 247, 0.88);
  font-size: 0.82rem;
  line-height: 1.35;
}
.charlotte-photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: start;
}
.charlotte-photo-stack figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--sage-glass);
  overflow: hidden;
}
.charlotte-photo-stack figure:first-child {
  margin-top: 2rem;
}
.detail-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.detail-grid article,
.faq-grid article {
  min-width: 0;
  min-height: 210px;
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
  background: rgba(255, 252, 247, 0.72);
}
.detail-grid span {
  display: block;
  margin-bottom: 2.1rem;
  color: var(--copper-ember);
  font-size: 0.82rem;
  font-weight: 850;
}
.detail-grid p,
.faq-grid p {
  color: rgba(31, 39, 36, 0.74);
}
.faq-grid article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.74);
  overflow: hidden;
}
.portfolio-card-featured {
  background:
    linear-gradient(135deg, rgba(221, 232, 222, 0.62), rgba(255, 252, 247, 0.88)),
    var(--soft-white);
}
.portfolio-card-quiet {
  background: rgba(221, 232, 222, 0.46);
}
.portfolio-media {
  aspect-ratio: 1.55;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: var(--sage-glass);
}
.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96);
}
.portfolio-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: clamp(1rem, 2vw, 1.35rem) clamp(1.15rem, 2.2vw, 1.55rem) 1.6rem;
}
.portfolio-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(24, 63, 53, 0.18);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  color: rgba(31, 39, 36, 0.72);
  background: rgba(255, 252, 247, 0.64);
  font-size: 0.75rem;
  font-weight: 800;
}
.portfolio-card h3 {
  max-width: 18ch;
  margin: 0 clamp(1.15rem, 2.2vw, 1.55rem) 0.85rem;
  font-size: clamp(1.35rem, 1.7vw, 1.7rem);
  line-height: 1.08;
}
.portfolio-card p {
  margin: 0 clamp(1.15rem, 2.2vw, 1.55rem) 1.1rem;
  color: rgba(31, 39, 36, 0.73);
}
.portfolio-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 0 clamp(1.15rem, 2.2vw, 1.55rem) 1.25rem;
  padding: 0;
  list-style: none;
}
.portfolio-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(31, 39, 36, 0.73);
}
.portfolio-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--copper-ember);
  content: "";
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 1px;
  margin: 0.25rem clamp(1.15rem, 2.2vw, 1.55rem) 1.25rem;
  border: 1px solid var(--line);
  background: var(--line);
}
.metric-row div {
  min-height: 94px;
  padding: 0.8rem;
  background: rgba(245, 241, 232, 0.76);
}
.metric-row div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.metric-row strong {
  display: block;
  color: var(--hearth-pine);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.05;
}
.metric-row span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(31, 39, 36, 0.66);
  font-size: 0.78rem;
  line-height: 1.22;
}
.portfolio-result {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 1rem clamp(1.15rem, 2.2vw, 1.55rem) clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--hearth-pine);
  font-weight: 800;
  line-height: 1.35;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}
.process-list li { min-height: 220px; padding: 1.35rem; background: rgba(255, 252, 247, 0.7); }
.process-list span { display: block; margin-bottom: 3rem; color: var(--hearth-pine); font-size: 1.05rem; font-weight: 850; }
.contact-section { padding-top: 0; }
.contact-panel {
  display: grid;
  grid-template-columns: 112px minmax(0, 0.78fr) minmax(360px, 0.95fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(255, 252, 247, 0.16);
  background: var(--charcoal-ink);
  color: var(--soft-white);
}
.contact-panel img { width: 112px; opacity: 0.95; }
.contact-panel .section-kicker, .contact-panel p { color: rgba(255, 252, 247, 0.72); }
.contact-panel h2 { max-width: 760px; margin-bottom: 1rem; font-size: clamp(1.85rem, 3.5vw, 3.2rem); }
.contact-form {
  display: grid;
  gap: 1rem;
  align-self: stretch;
  min-width: 0;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.form-field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}
.form-field label {
  color: rgba(255, 252, 247, 0.88);
  font-size: 0.82rem;
  font-weight: 850;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 252, 247, 0.22);
  border-radius: 4px;
  background: rgba(255, 252, 247, 0.08);
  color: var(--soft-white);
  font: inherit;
  line-height: 1.4;
  padding: 0.78rem 0.85rem;
}
.form-field input::placeholder { color: rgba(255, 252, 247, 0.42); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 252, 247, 0.58);
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 101, 61, 0.35);
}
.form-field textarea {
  min-height: 132px;
  resize: vertical;
}
.form-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  color: rgba(255, 252, 247, 0.78);
  font-size: 0.84rem;
  line-height: 1.35;
}
.form-check input {
  width: 18px;
  height: 18px;
  margin: 0.1rem 0 0;
  accent-color: var(--copper-ember);
}
.turnstile-field {
  min-height: 65px;
}
.contact-form .button {
  width: fit-content;
  min-width: 150px;
  cursor: pointer;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
}
.contact-note { grid-column: 2 / -1; margin: -0.8rem 0 0; font-size: 0.9rem; }
.contact-note strong { color: var(--soft-white); }
.contact-note a { color: var(--soft-white); font-weight: 850; }
.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}
.site-footer img { width: 220px; margin-bottom: 0.9rem; }
.site-footer p { max-width: 430px; margin-bottom: 0; font-size: 0.95rem; }
.site-footer a { font-weight: 850; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; }

.legal-main {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.legal-main .section-kicker { margin-bottom: 0.9rem; }
.legal-main h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4rem);
}
.legal-main h2 {
  margin: 2.4rem 0 0.75rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}
.legal-main p,
.legal-main li {
  color: rgba(31, 39, 36, 0.76);
}
.legal-main ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.2rem;
}
.legal-main a { font-weight: 800; }

@media (max-width: 900px) {
  .brand-link img { width: 198px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-menu {
    position: absolute;
    top: 72px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--soft-white);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { border-radius: 0; padding: 0.9rem 1rem; }
  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(245, 241, 232, 0.96), rgba(245, 241, 232, 0.88)),
      linear-gradient(135deg, rgba(221, 232, 222, 0.7) 0 1px, transparent 1px 100%) 0 0 / 42px 42px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.4rem;
    gap: 1.4rem;
  }
  .proof-strip, .service-grid, .process-list, .portfolio-grid, .offer-panel, .offer-list, .detail-grid, .faq-grid, .service-hero-grid, .service-split, .service-proof-grid, .deliverable-grid, .service-photo-grid, .charlotte-detail-grid, .charlotte-photo-stack { grid-template-columns: 1fr; }
  .faq-grid article:last-child:nth-child(odd) { grid-column: auto; }
  .intro-grid, .audience-panel, .work-item, .contact-panel { grid-template-columns: 1fr; }
  .image-row { grid-template-columns: 1fr; }
  .image-row figure:nth-child(1), .image-row figure:nth-child(3) { margin-top: 0; }
  .charlotte-photo-stack figure:first-child { margin-top: 0; }
  .portfolio-card { min-height: auto; }
  .portfolio-media { aspect-ratio: 1.55; }
  .metric-row { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  .contact-panel img { width: 92px; }
  .contact-panel .button { width: fit-content; }
  .contact-note { grid-column: auto; margin-top: -0.3rem; }
}

@media (max-width: 560px) {
  .nav-shell, .section, .hero-inner, .audience-panel, .site-footer { width: min(calc(100% - 1.25rem), 1180px); }
  .section { padding-block: 3.25rem; }
  .audience-section { padding-block: 3.5rem; }
  .brand-link img { width: 176px; }
  .eyebrow { max-width: 27ch; }
  h1 { max-width: 100%; font-size: 2.35rem; line-height: 1.04; }
  .hero-copy { font-size: 1.06rem; }
  .hero-actions, .button { width: 100%; }
  .button { padding-inline: 0.85rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .button { width: 100%; }
  .proof-strip div { min-height: auto; }
  .service-card, .process-list li { min-height: auto; }
  .service-number, .process-list span { margin-bottom: 1.3rem; }
  .site-footer { align-items: start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

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