:root {
  --ink: #14201a;
  --ink-soft: #3a4a42;
  --paper: #fff8ef;
  --paper-deep: #f3e6d4;
  --forest: #0b3d2e;
  --forest-mid: #146049;
  --coral: #e85d4c;
  --coral-deep: #c94434;
  --gold: #f4c15d;
  --teal: #1fa6a0;
  --line: rgba(20, 32, 26, 0.14);
  --shadow: 0 18px 40px rgba(11, 61, 46, 0.16);
  --radius: 4px;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --max: 1120px;
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(244, 193, 93, 0.35), transparent 42%),
    radial-gradient(circle at 90% 8%, rgba(232, 93, 76, 0.22), transparent 38%),
    linear-gradient(180deg, #fffaf3 0%, var(--paper) 40%, #f7efe3 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

a {
  color: var(--forest-mid);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

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

h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 750;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 239, 0.9);
  border-bottom: 2px solid var(--forest);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--coral);
}

.nav-toggle {
  display: none;
  border: 2px solid var(--forest);
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

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

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

.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--forest);
}

.nav-cta:hover {
  background: var(--coral-deep);
  color: #fff !important;
}

main {
  overflow-x: clip;
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.hero-visual {
  position: relative;
  min-height: clamp(240px, 42vw, 460px);
  border: 3px solid var(--forest);
  box-shadow: 12px 12px 0 var(--teal);
  overflow: hidden;
  background: var(--forest);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: clamp(240px, 42vw, 460px);
  animation: rise-in 0.9s ease both;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  background: var(--gold);
  color: var(--forest);
  padding: 0.35rem 0.65rem;
  border: 2px solid var(--forest);
  margin-bottom: 1rem;
  animation: slide-in 0.7s ease both;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 36rem;
  animation: slide-in 0.85s ease 0.08s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  animation: slide-in 1s ease 0.15s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--forest);
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 6px 6px 0 var(--forest);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 8px 8px 0 var(--forest);
}

.btn-secondary {
  background: var(--paper);
  color: var(--forest);
  box-shadow: 6px 6px 0 var(--teal);
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.section-alt {
  background: linear-gradient(135deg, rgba(31, 166, 160, 0.12), rgba(244, 193, 93, 0.18));
  border-block: 2px solid var(--line);
}

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

.section-head p {
  color: var(--ink-soft);
}

.offer-list {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .split-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

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

.offer-item {
  border: 2px solid var(--forest);
  background: #fff;
  padding: 1.25rem;
  box-shadow: 8px 8px 0 rgba(11, 61, 46, 0.18);
  transition: transform 0.2s ease;
}

.offer-item:hover {
  transform: translateY(-4px);
}

.offer-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--forest);
}

.offer-item h3 a {
  text-decoration: none;
  color: var(--forest);
}

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

.band {
  background: var(--forest);
  color: #f7efe3;
  padding: clamp(2rem, 5vw, 3.25rem) 0;
  position: relative;
  overflow: hidden;
}

.band::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 180%;
  background: radial-gradient(circle, rgba(244, 193, 93, 0.35), transparent 60%);
  pointer-events: none;
}

.band h2 {
  color: var(--gold);
}

.band p {
  color: rgba(247, 239, 227, 0.9);
  max-width: 36rem;
}

.quote-block {
  border-left: 5px solid var(--coral);
  padding: 0.25rem 0 0.25rem 1rem;
  margin: 1.5rem 0;
  font-size: 1.1rem;
}

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

.page-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
}

.page-hero .lede {
  font-size: 1.15rem;
  max-width: 40rem;
  color: var(--ink-soft);
}

.prose {
  max-width: 42rem;
}

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

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 2px solid var(--forest);
  background: #fff;
}

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

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

th {
  background: var(--forest);
  color: #fff;
  font-family: var(--font-display);
}

.price-row {
  display: grid;
  gap: 1rem;
}

.price-item {
  border: 2px solid var(--forest);
  background: #fff;
  padding: 1.25rem 1.4rem;
  display: grid;
  gap: 0.35rem;
}

.price-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--coral-deep);
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  border: 2px solid var(--forest);
  background: #fff;
  padding: 1.4rem;
  box-shadow: 10px 10px 0 var(--gold);
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 2px solid var(--forest);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
}

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

.field-error {
  color: var(--coral-deep);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}

.field-error.is-visible {
  display: block;
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  border: 2px solid var(--forest);
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(31, 166, 160, 0.2);
}

.form-status.error {
  background: rgba(232, 93, 76, 0.2);
}

.contact-aside {
  border: 2px solid var(--forest);
  background: var(--gold);
  padding: 1.25rem;
  box-shadow: 8px 8px 0 var(--forest);
}

.contact-aside p {
  margin-bottom: 0.5rem;
}

.site-footer {
  margin-top: 3rem;
  background: var(--forest);
  color: #f3e6d4;
  padding: 2.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

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

.site-footer h3 {
  color: #fff;
  font-size: 1.1rem;
}

.footer-nav {
  display: grid;
  gap: 0.35rem;
}

.disclaimer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(243, 230, 212, 0.25);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(243, 230, 212, 0.92);
  white-space: pre-line;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 60;
  max-width: 420px;
  background: #fff;
  border: 3px solid var(--forest);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: slide-up 0.35s ease both;
}

.cookie-banner p {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

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

.cookie-actions button {
  font-family: var(--font-display);
  font-weight: 700;
  border: 2px solid var(--forest);
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.cookie-accept {
  background: var(--coral);
  color: #fff;
}

.cookie-reject {
  background: var(--paper);
  color: var(--forest);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.tag {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.timeline li {
  list-style: none;
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
  background: #fff;
  border: 2px solid var(--forest);
}

.timeline {
  margin: 0;
  padding: 0;
}

.timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.75rem;
  top: 0.9rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  display: grid;
  place-items: center;
}

.workshop-slot {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border: 2px dashed var(--forest);
  background: rgba(244, 193, 93, 0.25);
  margin-bottom: 0.85rem;
}

.blog-list {
  display: grid;
  gap: 1.25rem;
}

.blog-card {
  display: grid;
  gap: 1rem;
  border: 2px solid var(--forest);
  background: #fff;
  overflow: hidden;
}

@media (min-width: 700px) {
  .blog-card {
    grid-template-columns: 240px 1fr;
  }
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.blog-card .body {
  padding: 1rem 1.15rem 1.25rem;
}

.error-page {
  text-align: center;
  padding: 5rem 0;
}

.error-page h1 {
  font-size: clamp(4rem, 16vw, 9rem);
  color: var(--coral);
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) + 0.35rem);
    background: #fff;
    border: 2px solid var(--forest);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

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

  .header-inner {
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
