:root {
  --chalk: #f7f5f0;
  --ivory: #f1ece3;
  --sea-glass: #5b9a8b;
  --sea-glass-deep: #3f7a6d;
  --dune: #d4c4a8;
  --navy: #1b2a4a;
  --navy-deep: #121c33;
  --coral: #c75b4a;
  --ink: #243044;
  --muted: #5c6678;
  --white: #ffffff;
  --shadow: 0 12px 36px rgba(27, 42, 74, 0.08);
  --radius: 18px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --header-h: 4.25rem;
  --container: 72rem;
  --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(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sea-glass-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.btn--teal {
  background: var(--sea-glass);
  color: var(--white);
}

.btn--teal:hover {
  background: var(--sea-glass-deep);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  letter-spacing: 0.06em;
}

.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.link-grow {
  position: relative;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}

.link-grow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.link-grow:hover::after {
  transform: scaleX(1);
}

.main {
  min-height: 60vh;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.wordmark em {
  font-style: italic;
  color: var(--sea-glass-deep);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(27, 42, 74, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--navy);
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after { top: 5px; }

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

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
}

.site-nav a:not(.site-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:not(.site-nav__cta):hover::after {
  transform: scaleX(1);
}

.site-nav__cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav__cta:hover {
  background: var(--sea-glass-deep);
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--chalk);
    border-bottom: 1px solid rgba(27, 42, 74, 0.1);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247, 245, 240, 0.88);
  padding: 4.5rem 0 2rem;
  margin-top: 4rem;
}

.site-footer a {
  color: rgba(247, 245, 240, 0.88);
  text-decoration: none;
}

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

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}

.site-footer__wordmark {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  color: var(--chalk);
}

.site-footer__wordmark em {
  font-style: italic;
  color: var(--sea-glass);
}

.site-footer__tagline {
  color: rgba(247, 245, 240, 0.7);
  max-width: 22rem;
}

.site-footer__address {
  font-style: normal;
  margin-top: 1.25rem;
  line-height: 1.7;
}

.site-footer__heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--dune);
  margin-bottom: 1rem;
}

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

.site-footer__col li + li {
  margin-top: 0.55rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1 1 10rem;
  min-height: 2.75rem;
  border: 1px solid rgba(247, 245, 240, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--chalk);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(247, 245, 240, 0.5);
}

.site-footer__base {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  font-size: 0.9rem;
  color: rgba(247, 245, 240, 0.55);
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 42rem;
  margin-inline: auto;
}

.cookie-banner__inner {
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 1rem;
}

.cookie-banner__title {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

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

/* Sections & cards */
.section {
  padding: 4.5rem 0;
}

.section--ivory {
  background: var(--ivory);
}

.section--offset {
  padding-block: 5rem;
}

.section__header {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

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

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(27, 42, 74, 0.12);
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.35rem 1.4rem 1.55rem;
  border-top: 1px solid rgba(27, 42, 74, 0.1);
}

.card__body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.card__body p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.card--plain {
  background: var(--white);
}

/* Home hero — asymmetric editorial */
.home-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - var(--header-h));
  background:
    linear-gradient(135deg, rgba(247, 245, 240, 0.95) 0%, rgba(241, 236, 227, 0.7) 45%, transparent 70%),
    linear-gradient(to bottom, var(--chalk), #ebe4d6);
  overflow: hidden;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 6vw, 4rem);
  max-width: 36rem;
}

.home-hero__kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--sea-glass-deep);
  margin-bottom: 0.75rem;
}

.home-hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.home-hero__text {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 1.75rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-hero__visual {
  position: relative;
  min-height: 28rem;
}

.home-hero__visual img {
  position: absolute;
  inset: 8% 0 0 8%;
  width: 92%;
  height: 84%;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: var(--shadow);
}

.home-hero__caption {
  position: absolute;
  left: 0;
  bottom: 12%;
  background: var(--navy);
  color: var(--chalk);
  padding: 1rem 1.25rem;
  max-width: 14rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.3;
}

@media (max-width: 880px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-hero__copy {
    max-width: none;
    padding: 3rem 1.25rem 1.5rem;
  }
  .home-hero__visual {
    min-height: 22rem;
    margin-left: 1.25rem;
  }
  .home-hero__visual img {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius) 0 0 0;
  }
}

/* Band / offset layouts */
.band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.band--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.band__media {
  position: relative;
}

.band__media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.band__media--offset {
  margin-left: -2rem;
}

.band__media--offset-right {
  margin-right: -2rem;
}

.band__body h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

@media (max-width: 800px) {
  .band,
  .band--reverse {
    grid-template-columns: 1fr;
  }
  .band__media--offset,
  .band__media--offset-right {
    margin: 0;
  }
}

.quote-strip {
  background: var(--navy);
  color: var(--chalk);
  padding: 3.5rem 0;
}

.quote-strip blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.35;
  max-width: 42rem;
}

.quote-strip cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--dune);
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* Page heroes */
.page-hero {
  padding: 4rem 0 2.5rem;
  background:
    linear-gradient(180deg, #ebe4d6 0%, var(--chalk) 100%);
}

.page-hero--media {
  position: relative;
  padding: 0;
  min-height: 22rem;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero--media .page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero--media .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 28, 51, 0.72), rgba(18, 28, 51, 0.15));
}

.page-hero--media .container {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  padding-top: 8rem;
}

.page-hero--media h1,
.page-hero--media .page-hero__lead,
.page-hero--media .eyebrow {
  color: var(--chalk);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 16ch;
}

.page-hero__lead {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.125rem;
}

/* Service detail */
.service-hero {
  position: relative;
  min-height: 24rem;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.service-hero__media {
  position: absolute;
  inset: 0;
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 28, 51, 0.78), rgba(18, 28, 51, 0.2));
}

.service-hero__content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 2.5rem;
}

.service-hero__title,
.service-hero__lead,
.service-hero .eyebrow {
  color: var(--chalk);
}

.service-hero__title {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  max-width: 14ch;
}

.service-hero__lead {
  max-width: 36rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.fact-card {
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.fact-card__title {
  font-size: 1.4rem;
}

.fact-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.fact-card__list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(27, 42, 74, 0.1);
}

.fact-card__list span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.check-list li,
.plain-list li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  position: relative;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sea-glass);
}

.plain-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--coral);
}

.process-steps__list {
  list-style: none;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}

.process-steps__list li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  position: relative;
}

.process-steps__list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--coral);
}

.process-steps__list p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

@media (max-width: 800px) {
  .service-detail__grid,
  .split {
    grid-template-columns: 1fr;
  }
  .fact-card { position: static; }
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.review-card {
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.review-card blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--navy);
}

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

.review-card__meta strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
}

.story-block {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.story-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 800px) {
  .review-grid,
  .story-block {
    grid-template-columns: 1fr;
  }
}

/* Blog */
.post-list {
  display: grid;
  gap: 2rem;
}

.post-teaser {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.75rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}

.post-teaser:hover {
  transform: translateY(-4px);
}

.post-teaser__media {
  min-height: 100%;
}

.post-teaser__media img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
}

.post-teaser__body {
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.post-teaser__body h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.post-teaser__body h2 a {
  color: inherit;
  text-decoration: none;
}

.post-meta,
.post__meta {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post__header {
  padding: 3.5rem 0 1.5rem;
  max-width: 44rem;
}

.post__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.post__cover {
  margin: 0 0 2.5rem;
}

.post__cover img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.post__body {
  max-width: 42rem;
}

.post__back {
  margin: 3rem 0;
}

@media (max-width: 720px) {
  .post-teaser {
    grid-template-columns: 1fr;
  }
  .post-teaser__body {
    padding: 0 1.25rem 1.35rem;
  }
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  padding: 3rem 0 4rem;
}

.contact-card {
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-card address {
  font-style: normal;
  margin: 1rem 0;
  line-height: 1.8;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(27, 42, 74, 0.2);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

.form-group textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-group .field-error {
  color: var(--coral);
  font-size: 0.875rem;
  margin: 0.35rem 0 0;
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: var(--coral);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 500;
}

.form-status[hidden] {
  display: none !important;
}

.form-status.is-success {
  background: rgba(91, 154, 139, 0.15);
  color: var(--sea-glass-deep);
}

.form-status.is-error {
  background: rgba(199, 91, 74, 0.12);
  color: var(--coral);
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 42, 74, 0.1);
}

.rate-table th,
.rate-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.rate-table th {
  background: var(--navy);
  color: var(--chalk);
  font-weight: 600;
}

.rate-table tr:last-child td {
  border-bottom: 0;
}

.rate-note {
  margin-top: 1.5rem;
  color: var(--muted);
  max-width: 40rem;
}

.factor-factors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.price-factor {
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.price-factor h3 {
  font-size: 1.3rem;
}

@media (max-width: 720px) {
  .price-factors { grid-template-columns: 1fr; }
  .rate-table { display: block; overflow-x: auto; }
}

/* Legal */
.legal__inner {
  padding: 3.5rem 0 4rem;
  max-width: 46rem;
}

.legal__title {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.legal__updated {
  color: var(--muted);
}

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

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

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  border: 1px solid rgba(27, 42, 74, 0.12);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--ivory);
}

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

.team-card {
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-card__body {
  padding: 1.15rem 1.25rem 1.4rem;
  border-top: 1px solid rgba(27, 42, 74, 0.1);
}

.team-card__body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.team-card__role {
  color: var(--coral);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

@media (max-width: 800px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Process page */
.timeline {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: rgba(27, 42, 74, 0.2);
}

.timeline__item {
  position: relative;
  margin-bottom: 2rem;
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.92rem;
  top: 1.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sea-glass);
  border: 2px solid var(--chalk);
}

/* 404 */
.error-page {
  text-align: center;
  padding: 6rem 1.25rem 5rem;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

[data-parallax] img {
  will-change: transform;
  transition: transform 0.2s linear;
}

.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #243a5e 55%, var(--sea-glass-deep) 100%);
  color: var(--chalk);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--chalk);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.cta-band p {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  color: rgba(247, 245, 240, 0.8);
}

.cta-band .btn--ghost {
  color: var(--chalk);
  border-color: var(--chalk);
}

.cta-band .btn--ghost:hover {
  background: var(--chalk);
  color: var(--navy);
}
