:root {
  --color-ink: #14201f;
  --color-ink-soft: #3a4a47;
  --color-mist: #e7efed;
  --color-paper: #f4f8f6;
  --color-surface: #ffffff;
  --color-teal: #1b4d4a;
  --color-teal-deep: #123734;
  --color-gold: #c4a35a;
  --color-gold-soft: #e8d9a8;
  --color-line: #c5d4d0;
  --color-error: #8b2e2e;
  --color-success: #1b4d4a;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;
  --radius: 2px;
  --shadow-soft: 0 12px 40px rgba(20, 32, 31, 0.08);
  --max: 72rem;
  --header-h: 4.25rem;
  --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-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 163, 90, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(27, 77, 74, 0.12), transparent 50%),
    linear-gradient(180deg, var(--color-mist) 0%, var(--color-paper) 35%, var(--color-paper) 100%);
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--color-teal-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 var(--space-md);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 var(--space-md); }

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

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: var(--space-xl) 0;
}

.section--tight {
  padding: var(--space-lg) 0;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: 1.2rem;
  color: var(--color-ink-soft);
  max-width: 40rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  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);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-teal);
  color: #f4f8f6;
  border-color: var(--color-teal);
}

.btn--primary:hover {
  background: var(--color-teal-deep);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line);
}

.btn--ghost:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(244, 248, 246, 0.88);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--space-md);
}

.site-header__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

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

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--color-ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-teal);
}

/* Hero home — full-bleed visual plane */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: #f4f8f6;
  overflow: hidden;
}

.hero-home__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 18s var(--ease) infinite alternate;
}

.hero-home__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(18, 55, 52, 0.92) 0%, rgba(18, 55, 52, 0.72) 42%, rgba(20, 32, 31, 0.35) 100%);
}

.hero-home__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: var(--space-2xl) 0 var(--space-xl);
  max-width: 38rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  animation: rise-in 0.9s var(--ease) both;
}

.hero-home__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 var(--space-md);
  color: #f4f8f6;
}

.hero-home__line {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  margin: 0 0 var(--space-sm);
  color: var(--color-gold-soft);
}

.hero-home__support {
  margin: 0;
  color: rgba(244, 248, 246, 0.88);
  max-width: 28rem;
}

.hero-home .btn--primary {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-ink);
}

.hero-home .btn--primary:hover {
  background: var(--color-gold-soft);
  border-color: var(--color-gold-soft);
  color: var(--color-ink);
}

.hero-home .btn--ghost {
  border-color: rgba(244, 248, 246, 0.45);
  color: #f4f8f6;
}

.hero-home .btn--ghost:hover {
  border-color: #f4f8f6;
  color: #fff;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(0.75rem); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: fade-up 0.7s var(--ease) both;
}

/* Page hero (interior) */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--color-line);
}

.page-hero--media {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #f4f8f6;
  overflow: hidden;
  border-bottom: none;
}

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

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

.page-hero--media .page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 55, 52, 0.35), rgba(18, 55, 52, 0.88));
}

.page-hero--media .page-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.page-hero--media h1,
.page-hero--media .lead {
  color: #f4f8f6;
}

/* Offer list */
.offer-list {
  display: grid;
  gap: var(--space-xl);
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-line);
}

.offer-row:nth-child(even) {
  direction: rtl;
}

.offer-row:nth-child(even) > * {
  direction: ltr;
}

.offer-row__image {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 14rem;
}

.offer-row__image img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.offer-row:hover .offer-row__image img {
  transform: scale(1.04);
}

.offer-row__meta {
  font-size: 0.875rem;
  color: var(--color-ink-soft);
  margin-bottom: var(--space-sm);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.quote-block {
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
}

.quote-block p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-ink-soft);
}

.quote-block cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink);
}

/* Rates */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}

.rate-table th,
.rate-table td {
  text-align: left;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
}

.rate-table th {
  font-family: var(--font-display);
  font-weight: 700;
}

.rate-note {
  background: var(--color-mist);
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--color-teal);
}

/* Reviews */
.review-list {
  display: grid;
  gap: var(--space-lg);
}

.review-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-line);
}

.review-item__service {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-xs);
}

.review-item blockquote {
  margin: 0 0 var(--space-sm);
  font-size: 1.1rem;
}

.review-item figcaption {
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

.story {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}

/* Journal */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: var(--space-lg);
}

.post-tease {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.post-tease:hover h3 {
  color: var(--color-teal);
}

.post-tease__img {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
}

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

.post-tease:hover img {
  transform: scale(1.05);
}

.post-tease__date {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}

.prose {
  max-width: 42rem;
}

.prose p + p {
  margin-top: 0;
}

.prose h2 {
  margin-top: var(--space-xl);
}

/* Forms */
.form {
  display: grid;
  gap: var(--space-md);
  max-width: 36rem;
}

.form__field {
  display: grid;
  gap: 0.35rem;
}

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

.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-ink);
  width: 100%;
}

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

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

.form__error {
  color: var(--color-error);
  font-size: 0.875rem;
  min-height: 1.2em;
}

.form__field.is-invalid input,
.form__field.is-invalid select,
.form__field.is-invalid textarea {
  border-color: var(--color-error);
}

.form__status {
  padding: var(--space-md);
  border-radius: var(--radius);
  display: none;
}

.form__status.is-visible {
  display: block;
}

.form__status--success {
  background: rgba(27, 77, 74, 0.12);
  color: var(--color-success);
  border: 1px solid var(--color-teal);
}

.form__status--error {
  background: rgba(139, 46, 46, 0.08);
  color: var(--color-error);
  border: 1px solid var(--color-error);
}

.contact-aside {
  background: var(--color-mist);
  padding: var(--space-lg);
  border-radius: var(--radius);
}

.contact-aside p {
  margin-bottom: var(--space-md);
}

/* Process steps */
.steps {
  counter-reset: step;
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}

.steps li {
  position: relative;
  padding: var(--space-md) var(--space-md) var(--space-md) 4rem;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.1rem;
}

/* Legal */
.legal {
  max-width: 46rem;
}

.legal h2 {
  margin-top: var(--space-xl);
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0 var(--space-lg);
  font-size: 0.92rem;
}

.legal th,
.legal td {
  border: 1px solid var(--color-line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: var(--color-mist);
}

/* Footer */
.site-footer {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--color-teal-deep);
  color: rgba(244, 248, 246, 0.88);
}

.site-footer a {
  color: var(--color-gold-soft);
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-lg);
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #f4f8f6;
  margin: 0 0 var(--space-sm);
}

.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer__nav a {
  text-decoration: none;
}

.site-footer__nav a:hover {
  text-decoration: underline;
}

.site-footer__copy {
  width: min(100% - 2rem, var(--max));
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(244, 248, 246, 0.15);
  font-size: 0.85rem;
  color: rgba(244, 248, 246, 0.55);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  box-shadow: 0 -8px 30px rgba(20, 32, 31, 0.1);
  padding: var(--space-md) 0;
}

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

.cookie-banner__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 18rem;
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: var(--space-xl) 1rem;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
  margin: 0;
}

/* Detail lists */
.checklist {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--color-gold);
  border-radius: 1px;
}

.cta-band {
  margin: var(--space-xl) 0;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-teal);
  color: #f4f8f6;
  border-radius: var(--radius);
  text-align: center;
}

.cta-band h2 {
  color: #f4f8f6;
}

.cta-band p {
  color: rgba(244, 248, 246, 0.88);
  max-width: 32rem;
  margin-inline: auto;
}

.cta-band .btn--primary {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-ink);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--space-lg);
}

.person img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.person h3 {
  margin-bottom: 0.25rem;
}

.person__role {
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  margin-bottom: var(--space-sm);
}

@media (max-width: 860px) {
  .site-header__toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-line);
    padding: var(--space-md);
    display: none;
  }

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

  .site-nav__list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .offer-row,
  .offer-row:nth-child(even),
  .split,
  .site-footer__inner {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .hero-home {
    min-height: 85vh;
  }
}
