:root {
  --ink: #142028;
  --ink-soft: #2a3b45;
  --paper: #eef2f4;
  --paper-deep: #dde5ea;
  --mist: #f6f8f9;
  --copper: #a67c3d;
  --copper-deep: #7e5a28;
  --sage: #4f7468;
  --sage-soft: #6e9488;
  --line: rgba(20, 32, 40, 0.12);
  --shadow: 0 18px 48px rgba(20, 32, 40, 0.08);
  --radius: 4px;
  --font-display: "Syne", sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
}

*,
*::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(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(79, 116, 104, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(166, 124, 61, 0.1), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 40%, var(--paper-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul {
  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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: var(--mist);
  padding: 0.6rem 1rem;
  z-index: 1000;
  font-family: var(--font-ui);
}

.skip-link:focus {
  top: 1rem;
}

.inline-error {
  background: #f3d9d4;
  color: #6b2a22;
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  text-align: center;
}

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

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 50% 12%;
  background: linear-gradient(135deg, var(--sage) 0%, transparent 55%),
    linear-gradient(225deg, var(--copper) 0%, transparent 45%);
  transform: rotate(-18deg);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}

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

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

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

.nav-list a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: var(--mist) !important;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--sage);
  color: var(--mist) !important;
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--mist);
}

.btn-primary:hover {
  background: var(--sage);
  color: var(--mist);
}

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

.btn-secondary:hover {
  background: var(--ink);
  color: var(--mist);
}

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

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

/* Hero variants */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--mist);
}

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

.hero-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(20, 32, 40, 0.88) 0%, rgba(20, 32, 40, 0.55) 48%, rgba(20, 32, 40, 0.28) 100%),
    linear-gradient(0deg, rgba(20, 32, 40, 0.7) 0%, transparent 42%);
}

.hero-home-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem 4rem;
  width: 100%;
}

.hero-home .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1.1rem;
  color: var(--mist);
}

.hero-home h1 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  max-width: 22ch;
  color: rgba(246, 248, 249, 0.95);
  margin-bottom: 0.85rem;
}

.hero-home .hero-support {
  max-width: 36rem;
  color: rgba(238, 242, 244, 0.86);
  font-size: 1.08rem;
}

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

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

.hero-home .btn-secondary {
  border-color: rgba(246, 248, 249, 0.55);
  color: var(--mist);
}

.hero-home .btn-secondary:hover {
  background: var(--mist);
  color: var(--ink);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-1.5%);
  }
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(79, 116, 104, 0.08), transparent 50%),
    linear-gradient(to right, var(--mist), var(--paper));
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}

.page-hero.with-media {
  padding: 0;
  border: none;
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

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

.page-hero.with-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 32, 40, 0.82), rgba(20, 32, 40, 0.35));
}

.page-hero.with-media .wrap {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 3rem;
  color: var(--mist);
}

.page-hero.with-media h1,
.page-hero.with-media .eyebrow,
.page-hero.with-media .lede {
  color: var(--mist);
}

.page-hero.with-media .lede {
  color: rgba(246, 248, 249, 0.85);
}

/* Offer strips / grids */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offer-item {
  padding: 0;
  border: none;
  background: transparent;
}

.offer-item figure {
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.offer-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.offer-item p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}

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

.panel {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.quote-block {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-soft);
  border-left: 3px solid var(--copper);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

.quote-meta {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-style: normal;
  color: var(--ink);
  margin-top: 0.75rem;
}

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

.rate-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.rate-list strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.rate-list .price {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--copper-deep);
  white-space: nowrap;
}

.rate-list .desc {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
}

.article-list {
  display: grid;
  gap: 1.75rem;
}

.article-teaser {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.article-teaser figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.article-teaser h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.article-teaser h2 a {
  color: var(--ink);
  text-decoration: none;
}

.article-teaser h2 a:hover {
  color: var(--sage);
}

.meta {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.prose {
  max-width: 42rem;
}

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

.prose h3 {
  margin-top: 1.6rem;
  font-size: 1.2rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--sage);
}

.seminar-row {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.seminar-date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--copper-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
}

.field-error {
  color: #8a3228;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
}

.form-status.is-success {
  background: rgba(79, 116, 104, 0.15);
  color: #23463d;
}

.form-status.is-error {
  background: #f3d9d4;
  color: #6b2a22;
}

.address-block {
  font-style: normal;
  line-height: 1.7;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

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

th {
  background: rgba(20, 32, 40, 0.04);
  font-weight: 650;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -0.05em;
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 540px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--mist);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  animation: riseIn 0.45s ease;
}

.cookie-banner a {
  color: var(--sage-soft);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
  justify-content: flex-end;
}

.cookie-banner .btn-ghost {
  color: var(--mist);
  border-color: rgba(246, 248, 249, 0.25);
}

.cookie-banner .btn-primary {
  background: var(--copper);
  color: var(--ink);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  background: var(--ink);
  color: rgba(246, 248, 249, 0.82);
  padding: 3.5rem 0 2rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mist);
  margin-bottom: 0.5rem;
}

.footer-tag {
  max-width: 28rem;
  margin-bottom: 2rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-heading {
  font-weight: 700;
  color: var(--mist);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

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

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: rgba(246, 248, 249, 0.78);
  text-decoration: none;
}

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

.footer-address {
  font-style: normal;
  margin-bottom: 0.75rem;
}

.footer-copy {
  border-top: 1px solid rgba(246, 248, 249, 0.12);
  padding-top: 1.25rem;
  font-size: 0.82rem;
  opacity: 0.7;
}

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

.portrait figure {
  margin: 0 0 0.85rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.5rem 3rem;
  border-left: 1px solid var(--line);
  margin-left: 0.7rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: -0.85rem;
  top: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--mist);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.notice {
  background: rgba(166, 124, 61, 0.12);
  border-left: 3px solid var(--copper);
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .offer-grid,
  .split,
  .split.reverse,
  .contact-grid,
  .footer-cols,
  .article-teaser,
  .portrait-grid,
  .seminar-row {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--mist);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.35rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .hero-home-content {
    padding-top: 4rem;
  }

  .rate-list li {
    grid-template-columns: 1fr;
  }
}
