:root {
  --color-ivory: #f5f0e6;
  --color-ivory-deep: #ebe4d6;
  --color-copper: #b87333;
  --color-copper-dark: #8f5524;
  --color-forest: #1a2f24;
  --color-forest-mid: #243d30;
  --color-charcoal: #2a2622;
  --color-charcoal-soft: #3d3833;
  --color-sky: #b7d4e8;
  --color-sky-deep: #8fb8d4;
  --color-text: #2a2622;
  --color-text-muted: #5c564e;
  --color-on-dark: #f5f0e6;
  --font-serif: "Libre Bodoni", "Times New Roman", serif;
  --font-sans: "DM Sans", "Helvetica Neue", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;
  --max: 72rem;
  --header-h: 4.25rem;
  --shadow-soft: 0 12px 40px rgba(42, 38, 34, 0.08);
  --shadow-hover: 0 18px 48px rgba(42, 38, 34, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(183, 212, 232, 0.22), transparent 45%),
    linear-gradient(180deg, var(--color-ivory) 0%, var(--color-ivory-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.3s var(--ease);
}

a:hover {
  color: var(--color-copper-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  padding-left: 1.25rem;
}

.main {
  padding-top: var(--header-h);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(245, 240, 230, 0.92);
  border-bottom: 1px solid rgba(184, 115, 51, 0.35);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-forest);
  text-decoration: none;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.site-header__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-copper);
  color: var(--color-charcoal);
  padding: 0.45rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-header__list {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__list a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.site-header__list a:hover {
  color: var(--color-copper-dark);
}

.site-header__cta {
  border: 1px solid var(--color-charcoal);
  padding: 0.55rem 0.85rem;
  background: var(--color-charcoal);
  color: var(--color-ivory) !important;
}

.site-header__cta:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-ivory) !important;
  box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.3s var(--ease), transform 0.28s var(--ease);
}

.btn--primary {
  background: var(--color-charcoal);
  color: var(--color-ivory);
  border-color: var(--color-charcoal);
}

.btn--primary:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-ivory);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-copper);
}

.btn--secondary:hover {
  border-color: var(--color-charcoal);
  background: rgba(245, 240, 230, 0.7);
  color: var(--color-charcoal);
}

.btn--on-dark {
  color: var(--color-ivory);
  border-color: rgba(245, 240, 230, 0.55);
}

.btn--on-dark:hover {
  background: rgba(245, 240, 230, 0.1);
  color: var(--color-ivory);
  border-color: var(--color-sky);
}

.text-link {
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Hero */
.hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  min-height: calc(100vh - var(--header-h));
  max-width: none;
}

.hero__copy {
  padding: clamp(2.5rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 40rem;
}

.hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-forest);
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero__title {
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.hero__lede {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  max-width: 36ch;
  margin-bottom: 1.75rem;
}

.hero__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  background: var(--color-forest);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 28rem;
  transform: scale(1.06);
  will-change: transform;
}

.hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(transparent, rgba(26, 47, 36, 0.85));
  color: var(--color-ivory);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem;
}

.section--ivory {
  background:
    linear-gradient(135deg, rgba(245, 240, 230, 0.95), rgba(235, 228, 214, 0.98)),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(184, 115, 51, 0.03) 2px, rgba(184, 115, 51, 0.03) 3px);
  max-width: none;
  padding-left: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
}

.section--forest {
  background: linear-gradient(160deg, var(--color-forest) 0%, var(--color-forest-mid) 100%);
  color: var(--color-on-dark);
  max-width: none;
  padding-left: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
}

.section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
}

.section__title--light {
  color: var(--color-ivory);
}

.section__lede {
  color: var(--color-text-muted);
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section--forest .section__lede {
  color: rgba(245, 240, 230, 0.78);
}

.section__header {
  margin-bottom: 2rem;
}

.section__grid--asymmetric {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.feature-block {
  border: 1px solid var(--color-copper);
  background:
    linear-gradient(160deg, rgba(245, 240, 230, 0.95), rgba(235, 228, 214, 0.9)),
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(184, 115, 51, 0.04) 8px, rgba(184, 115, 51, 0.04) 9px);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.feature-block__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-block__list {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
}

.feature-block__list li {
  margin-bottom: 0.55rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-grid--services {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background:
    linear-gradient(165deg, var(--color-ivory), #efe8da);
  border: 1px solid rgba(184, 115, 51, 0.45);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-copper);
}

.card__media {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.card__media--bleed {
  margin: 0;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card__badge {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper-dark);
  font-weight: 600;
  margin: 0;
}

.card__title {
  font-size: 1.35rem;
  margin: 0;
}

.card__title a {
  text-decoration: none;
  color: inherit;
}

.card__title a:hover {
  color: var(--color-copper-dark);
}

.card__text {
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}

.card__meta {
  font-size: 0.85rem;
  color: var(--color-forest);
  letter-spacing: 0.02em;
  margin: 0;
}

/* Quote / notes */
.quote-panel {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 2rem;
  align-items: end;
}

.quote-panel__quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.35;
  color: var(--color-ivory);
}

.quote-panel__quote footer {
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-sky);
}

.notes-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.notes-list__item {
  border-top: 1px solid rgba(184, 115, 51, 0.4);
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.5rem;
}

.notes-list__date {
  font-size: 0.85rem;
  color: var(--color-copper-dark);
  margin: 0;
}

.notes-list__title {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.notes-list__title a {
  text-decoration: none;
  color: inherit;
}

.notes-list__excerpt {
  margin: 0;
  color: var(--color-text-muted);
}

.cta-band {
  text-align: left;
  border-top: 1px solid rgba(184, 115, 51, 0.35);
}

.cta-band__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 18ch;
}

.cta-band__text {
  color: var(--color-text-muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Page heroes */
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem var(--space-lg);
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .page-hero__lede {
  margin-left: auto;
  margin-right: auto;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: end;
}

.page-hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-copper-dark);
  font-weight: 600;
  margin: 0 0 0.85rem;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  max-width: 16ch;
}

.page-hero__lede {
  color: var(--color-text-muted);
  max-width: 40rem;
  font-size: 1.1rem;
}

.page-hero__figure {
  margin: 0;
  border: 1px solid rgba(184, 115, 51, 0.4);
  overflow: hidden;
}

.page-hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

/* Detail pages */
.service-detail__hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  max-width: none;
}

.service-detail__intro {
  padding: var(--space-xl) max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem)) var(--space-lg) max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
}

.service-detail__figure {
  margin: 0;
  min-height: 100%;
  background: var(--color-charcoal);
}

.service-detail__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 24rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.detail-aside {
  border: 1px solid var(--color-copper);
  padding: 1.75rem;
  background: rgba(245, 240, 230, 0.85);
  height: fit-content;
}

.detail-aside p {
  margin-bottom: 1.1rem;
}

.detail-aside p:last-child {
  margin-bottom: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.two-col--tight {
  margin-top: 2rem;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plain-list li {
  border-top: 1px solid rgba(184, 115, 51, 0.3);
  padding: 0.75rem 0;
}

.process-list {
  max-width: 40rem;
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.process-list li {
  margin-bottom: 0.65rem;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.prose h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.legal {
  max-width: 46rem;
}

/* People / values */
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.person img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(184, 115, 51, 0.35);
}

.person h3 {
  margin: 0 0 0.25rem;
}

.person__role {
  color: var(--color-copper-dark);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.values {
  max-width: var(--max);
  margin: 0 auto;
}

.values__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.25rem;
}

.values__list li {
  border-top: 1px solid rgba(183, 212, 232, 0.35);
  padding-top: 1rem;
  color: rgba(245, 240, 230, 0.9);
}

.values__list strong {
  color: var(--color-sky);
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

/* Fees / tables */
.fee-table-wrap {
  overflow-x: auto;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid rgba(184, 115, 51, 0.45);
  background: rgba(245, 240, 230, 0.7);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 36rem;
}

.fee-table th,
.fee-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(184, 115, 51, 0.25);
  vertical-align: top;
}

.fee-table th {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest);
  background: rgba(26, 47, 36, 0.06);
}

/* Reviews */
.testimonial-stack {
  display: grid;
  gap: 1.75rem;
  max-width: var(--max);
  margin: 0 auto;
}

.testimonial {
  margin: 0;
  padding: 2rem;
  background: rgba(245, 240, 230, 0.9);
  border: 1px solid rgba(184, 115, 51, 0.4);
  max-width: 48rem;
}

.testimonial--offset {
  margin-left: auto;
  background: var(--color-charcoal);
  color: var(--color-ivory);
  border-color: var(--color-charcoal-soft);
}

.testimonial--offset .testimonial__service {
  color: var(--color-sky);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 0 0 1.25rem;
}

.testimonial__footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-style: normal;
  font-size: 0.92rem;
}

.testimonial__footer cite {
  font-style: normal;
  font-weight: 600;
}

.testimonial__service {
  color: var(--color-copper-dark);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.story-card {
  padding: 1.75rem;
  border: 1px solid rgba(184, 115, 51, 0.4);
  background:
    linear-gradient(160deg, rgba(245, 240, 230, 0.95), rgba(235, 228, 214, 0.88));
}

.story-card h3 {
  margin-top: 0;
}

.story-card__outcome {
  margin-bottom: 0;
  color: var(--color-forest);
}

/* Blog */
.post {
  max-width: 48rem;
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem;
}

.post__cover {
  margin: 0 0 2rem;
  border: 1px solid rgba(184, 115, 51, 0.35);
  overflow: hidden;
}

.post__cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 115, 51, 0.35);
}

.method-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--max);
  counter-reset: method;
  display: grid;
  gap: 1.5rem;
}

.method-steps li {
  counter-increment: method;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(184, 115, 51, 0.4);
  background: rgba(245, 240, 230, 0.75);
}

.method-steps li::before {
  content: counter(method, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-copper);
  line-height: 1;
}

.method-steps h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.method-steps p {
  margin: 0;
  color: var(--color-text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-panel {
  border: 1px solid var(--color-copper);
  padding: 1.75rem;
  background: rgba(245, 240, 230, 0.85);
  height: fit-content;
}

.contact-panel h2 {
  margin-top: 0;
}

.contact-panel__note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-forest);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(184, 115, 51, 0.55);
  background: rgba(245, 240, 230, 0.9);
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--color-text);
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-sky-deep);
  outline-offset: 1px;
  border-color: var(--color-forest);
}

.form-field__error,
.form-status,
[data-form-error],
.cookie-banner__error {
  font-size: 0.9rem;
  margin: 0;
}

.form-field__error,
[data-form-error],
.cookie-banner__error {
  color: #8b2e2e;
}

.form-status[data-state="success"] {
  color: var(--color-forest);
  border: 1px solid rgba(26, 47, 36, 0.35);
  padding: 0.85rem 1rem;
  background: rgba(26, 47, 36, 0.06);
}

.form-status[data-state="error"],
.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-color: #8b2e2e;
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
  background: #fff6f4;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--color-charcoal) 0%, #1c1916 100%);
  color: rgba(245, 240, 230, 0.88);
  margin-top: var(--space-xl);
  padding: var(--space-xl) 1.5rem var(--space-lg);
}

.site-footer a {
  color: var(--color-sky);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-ivory);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2rem;
}

.site-footer__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-ivory);
  margin: 0 0 0.85rem;
}

.site-footer__statement {
  color: rgba(245, 240, 230, 0.72);
  max-width: 28ch;
}

.site-footer__heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin: 0 0 1rem;
  font-weight: 600;
}

.site-footer__text {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li {
  margin-bottom: 0.45rem;
}

.site-footer__legal {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 115, 51, 0.35);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.site-footer__legal-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.55);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--color-forest);
  color: var(--color-ivory);
  border: 1px solid rgba(183, 212, 232, 0.35);
  padding: 1.25rem 1.35rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  box-shadow: var(--shadow-hover);
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
  grid-column: 1 / -1;
}

.cookie-banner__text a {
  color: var(--color-sky);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  grid-column: 1 / -1;
}

.cookie-banner__error {
  grid-column: 1 / -1;
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible > *:nth-child(1) { transition-delay: 0.02s; }
[data-reveal].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal].is-visible > *:nth-child(3) { transition-delay: 0.14s; }

/* Responsive */
@media (max-width: 960px) {
  .hero--split,
  .page-hero--split,
  .service-detail__hero,
  .section__grid--asymmetric,
  .detail-grid,
  .two-col,
  .quote-panel,
  .notes-list__item,
  .people-grid,
  .story-grid,
  .contact-grid,
  .site-footer__inner,
  .card-grid,
  .card-grid--services {
    grid-template-columns: 1fr;
  }

  .notes-list__item {
    gap: 0.35rem;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-ivory);
    border-bottom: 1px solid rgba(184, 115, 51, 0.35);
    display: none;
  }

  .site-header__nav.is-open {
    display: block;
  }

  .site-header__list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.35rem;
    gap: 0;
  }

  .site-header__list li {
    border-top: 1px solid rgba(184, 115, 51, 0.25);
  }

  .site-header__list a {
    display: block;
    padding: 0.85rem 0;
  }

  .site-header__cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero__media {
    min-height: 18rem;
  }

  .hero__media img {
    min-height: 18rem;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .method-steps li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .page-hero,
  .post {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .testimonial--offset {
    margin-left: 0;
  }
}

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