:root {
  --ink: #07110b;
  --ink-2: #101d14;
  --ink-3: #17261b;
  --ink-4: #1a281e;
  --green: #10d46d;
  --green-deep: #0a8c43;
  --muted: #5b6b61;
  --muted-2: #526157;
  --slate: #324237;
  --slate-2: #27342b;
  --body: #425045;
  --mint: #e9ffe5;
  --dark-card: #050806;
  --line: rgba(7, 17, 11, 0.14);
  --line-soft: rgba(7, 17, 11, 0.12);
  --max: 1440px;
  --pad: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  overflow-x: clip;
  background-color: #f4fff0;
  background-image:
    radial-gradient(620px 660px at 8% 9%, rgba(37, 218, 107, 0.30), rgba(37, 218, 107, 0) 42%),
    radial-gradient(640px 680px at 92% 3%, rgba(148, 255, 98, 0.28), rgba(148, 255, 98, 0) 40%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 255, 234, 0.96) 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo-mark {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  filter: drop-shadow(0 8px 5px rgba(16, 212, 109, 0.28));
}

.logo-mark span {
  position: absolute;
  background: var(--ink);
  border-radius: 99px;
}

.logo-mark span:nth-child(1) {
  width: 28px;
  height: 10px;
  left: 0;
  top: 9px;
  transform: rotate(45deg);
}

.logo-mark span:nth-child(2) {
  width: 10px;
  height: 28px;
  left: 9px;
  top: 0;
}

.logo-mark span:nth-child(3) {
  width: 28px;
  height: 10px;
  left: 0;
  top: 9px;
  transform: rotate(-45deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  background: rgba(247, 255, 246, 0.75);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad) 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__name {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1.17px;
  color: var(--ink);
}

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-2);
  padding: 9px 0 10px;
}

.bar {
  display: flex;
  align-items: flex-start;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bar__title {
  flex: 1 0 0;
  min-width: 0;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: var(--ink);
  padding: 2px 0 3px;
}

.bar__label {
  flex: 1 0 0;
  min-width: 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--muted);
  padding: 1px 0 2px;
}

.watermark {
  height: 162px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.watermark span {
  font-weight: 700;
  font-size: 230.4px;
  line-height: 161.28px;
  letter-spacing: -18.432px;
  color: rgba(14, 42, 22, 0.04);
  white-space: nowrap;
}

.site-footer {
  display: flex;
  flex-direction: column;
  padding: 54px 0 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 32px;
}

.footer-brand__name {
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -1.35px;
  color: var(--ink);
}

.footer-address {
  margin-top: 54px;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  line-height: 18.48px;
  color: var(--ink-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 56px;
}

.footer-links a {
  font-weight: 700;
  font-size: 15px;
  line-height: 18.75px;
  color: var(--ink);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  color: var(--muted-2);
  padding-top: 1px;
}

.footer-social {
  flex: none;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}

/* ---------- Interactions: hover & focus ---------- */
.main-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.main-nav a:hover {
  color: var(--green-deep);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.brand {
  transition: transform 0.25s ease;
}

.brand .logo-mark {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .logo-mark {
  transform: scale(1.12) rotate(-8deg);
}

.footer-links a {
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
  color: var(--green-deep);
  padding-left: 6px;
}

.footer-social a {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 12px 22px rgba(16, 212, 109, 0.42);
}

.policy__body a {
  transition: color 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Scroll-reveal animations ---------- */
.js-reveal .reveal {
  opacity: 0;
}

.js-reveal .reveal.is-in {
  animation: reveal-up 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  width: 360px;
  max-width: calc(100vw - 48px);
  padding: 30px 32px 34px;
  background: #ececec;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(7, 17, 11, 0.24);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__title {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 18px;
}

.cookie-banner__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 28px;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.cookie-btn {
  display: inline-block;
  margin: 0;
  padding: 0 0 7px;
  border: none;
  border-bottom: 3px solid rgba(7, 17, 11, 0.55);
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1.8px;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cookie-btn:hover {
  color: var(--green-deep);
  border-bottom-color: var(--green-deep);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  :root {
    --pad: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    padding: 26px 24px 28px;
  }

  .cookie-btn {
    font-size: 30px;
    letter-spacing: -1.4px;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 12px 21px;
  }

  .main-nav {
    margin-top: 20px;
    gap: 34px;
  }

  .footer-address {
    margin-top: 56px;
  }

  .watermark span {
    font-size: 96px;
    line-height: 100px;
    letter-spacing: -6px;
  }
}
