:root {
  --color-limestone: #F3EBDD;
  --color-teal: #2F6F6D;
  --color-teal-deep: #245855;
  --color-clay: #B8573B;
  --color-clay-deep: #9a4630;
  --color-ink: #1F2430;
  --color-sage: #D7E1D4;
  --color-paper: #F7F2E8;
  --color-muted: #5c6470;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --shadow-card: 0 10px 30px rgba(31, 36, 48, 0.08), 0 2px 6px rgba(31, 36, 48, 0.04);
  --shadow-lift: 0 14px 28px rgba(31, 36, 48, 0.14);
  --radius-card: 1rem;
  --radius-pill: 999px;
  --header-h: 4.25rem;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(215, 225, 212, 0.7), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(184, 87, 59, 0.08), transparent 45%),
    var(--color-limestone);
  min-height: 100vh;
}

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

a {
  color: var(--color-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-clay);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

p { margin: 0 0 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 40rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.45rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--teal {
  background: var(--color-teal);
  color: #fff;
  box-shadow: 0 2px 0 rgba(31, 36, 48, 0.15);
}

.btn--teal:hover {
  background: var(--color-teal-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn--clay {
  background: var(--color-clay);
  color: #fff;
}

.btn--clay:hover {
  background: var(--color-clay-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid rgba(31, 36, 48, 0.25);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--color-ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
}

.site-header.is-solid {
  background: rgba(243, 235, 221, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(31, 36, 48, 0.08);
}

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

.site-header__brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-header__nav a {
  color: var(--color-ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.88;
}

.site-header__nav a:hover {
  opacity: 1;
  color: var(--color-teal);
}

.site-header__cta {
  background: var(--color-teal);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  opacity: 1 !important;
}

.site-header__cta:hover {
  background: var(--color-teal-deep);
  color: #fff !important;
}

.site-header__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(31, 36, 48, 0.2);
  border-radius: 0.6rem;
  background: var(--color-paper);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.site-header__toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--color-ink);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) var(--space) 3rem;
  display: grid;
  gap: 2rem;
  min-height: calc(100vh - var(--header-h));
  align-items: center;
}

.hero--asymmetric {
  grid-template-columns: 1.05fr 0.95fr;
}

.hero__visual {
  position: relative;
}

.hero__visual img {
  width: 100%;
  height: min(72vh, 36rem);
  object-fit: cover;
  border-radius: 1.25rem 1.25rem 1.25rem 0;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(31, 36, 48, 0.08);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 18%;
  background: var(--color-sage);
  border-radius: 2rem;
  z-index: -1;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.1s linear;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--space) 1.5rem;
}

.page-hero--media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.page-hero--media img {
  border-radius: var(--radius-card);
  border: 1px solid rgba(31, 36, 48, 0.08);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  width: 100%;
  max-height: 24rem;
}

.page-hero--center {
  text-align: center;
  min-height: 50vh;
  display: grid;
  place-items: center;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space);
}

.section--split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.section--sage {
  background: linear-gradient(180deg, rgba(215, 225, 212, 0.55), rgba(215, 225, 212, 0.2));
  max-width: none;
  padding-left: max(var(--space), calc((100% - var(--max)) / 2 + var(--space)));
  padding-right: max(var(--space), calc((100% - var(--max)) / 2 + var(--space)));
}

.section--cta {
  text-align: left;
}

.section__header {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.band--image {
  margin: 1rem 0;
}

.band--image img {
  width: 100%;
  height: clamp(14rem, 40vw, 26rem);
  object-fit: cover;
}

.offer-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  background: var(--color-paper);
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.offer-spotlight img {
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.offer-spotlight > div {
  padding: 1.5rem;
}

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

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

.card {
  background: var(--color-paper);
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: var(--radius-card);
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
}

.card__image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.card--person .card__image {
  height: 18rem;
}

.card__title {
  margin-bottom: 0.5rem;
}

.card__meta {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.quote {
  margin: 0;
  padding: 1.5rem;
  background: var(--color-paper);
  border-radius: var(--radius-card);
  border: 1px solid rgba(31, 36, 48, 0.08);
  box-shadow: var(--shadow-card);
}

.quote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.4;
}

.quote footer {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.quote__service {
  display: block;
  margin-top: 0.35rem;
  color: var(--color-teal);
  font-weight: 600;
}

.quote-stack {
  display: grid;
  gap: 1rem;
}

.quote--wide {
  max-width: 48rem;
}

.story {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 36, 48, 0.12);
  max-width: 44rem;
}

.plain-list {
  padding-left: 1.1rem;
  margin: 0 0 1.25rem;
}

.plain-list li {
  margin-bottom: 0.45rem;
}

.process-grid ol,
.engagement-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.engagement-steps li,
.process-grid ol li {
  background: var(--color-paper);
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.process-grid ol {
  counter-reset: step;
}

.process-grid ol li {
  counter-increment: step;
}

.fee-table {
  display: grid;
  gap: 0.75rem;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: var(--color-paper);
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.fee-amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-teal);
  margin: 0;
  white-space: nowrap;
}

.prose {
  max-width: 44rem;
}

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

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid rgba(31, 36, 48, 0.15);
  padding: 0.75rem;
  text-align: left;
  background: var(--color-paper);
}

th {
  background: var(--color-sage);
}

.contact-form,
.newsletter {
  display: grid;
  gap: 1rem;
}

.contact-form {
  background: var(--color-paper);
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

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

label,
.newsletter__label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(31, 36, 48, 0.2);
  background: #fff;
  color: var(--color-ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-teal);
  outline-offset: 1px;
}

.field-error {
  color: var(--color-clay);
  font-size: 0.88rem;
  margin: 0;
}

.form-status {
  margin: 0.25rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 0.7rem;
}

.form-status.is-success {
  background: rgba(47, 111, 109, 0.12);
  color: var(--color-teal-deep);
}

.form-status.is-error {
  background: rgba(184, 87, 59, 0.12);
  color: var(--color-clay-deep);
}

.site-footer {
  background: var(--color-ink);
  color: rgba(243, 235, 221, 0.86);
  margin-top: 3rem;
}

.site-footer a {
  color: rgba(243, 235, 221, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem var(--space) 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__title,
.site-footer__heading {
  font-family: var(--font-serif);
  color: var(--color-limestone);
  margin-bottom: 1rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer__band {
  border-top: 1px solid rgba(243, 235, 221, 0.12);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem var(--space) 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.newsletter__row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  min-width: 12rem;
}

.site-footer__social,
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
}

.cookie-banner__inner {
  max-width: 44rem;
  margin: 0 auto;
  background: var(--color-paper);
  border: 1px solid rgba(31, 36, 48, 0.12);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  padding: 1.25rem 1.4rem;
  display: grid;
  gap: 1rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 960px) {
  .hero--asymmetric,
  .section--split,
  .page-hero--media,
  .offer-spotlight,
  .card-grid,
  .card-grid--services,
  .quote-row,
  .site-footer__grid,
  .site-footer__band {
    grid-template-columns: 1fr;
  }

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

  .site-header__nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(243, 235, 221, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--space) 1.25rem;
    gap: 0.35rem;
    border-bottom: 1px solid rgba(31, 36, 48, 0.08);
    display: none;
  }

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

  .site-header__nav a {
    padding: 0.7rem 0.2rem;
  }

  .site-header__cta {
    text-align: center;
  }

  .fee-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }
}
