@font-face {
  font-family: "Questrial";
  src: url("../../fonts/Questrial-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --vibe-green: #179a07;
  --vibe-green-dark: #0f6d18;
  --vibe-green-soft: #eff8ed;
  --vibe-text: #23312a;
  --vibe-muted: #5f6f66;
  --vibe-border: #d9e5d7;
  --vibe-bg: #f6f8f5;
  --vibe-card: #ffffff;
  --vibe-footer: #eef3ec;
  --vibe-shadow: 0 14px 36px rgba(23, 37, 29, 0.08);
  --vibe-radius: 18px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--vibe-text);
  background: var(--vibe-bg);
}

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

a {
  color: var(--vibe-green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
  color: #1a2a20;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.site-shell {
  min-height: 100vh;
}

.site-main {
  min-height: calc(100vh - 180px);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

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

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title p {
  margin: 0;
  color: var(--vibe-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 229, 215, 0.9);
}

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

.site-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 0 1 auto;
}

.site-brand:hover {
  text-decoration: none;
}

.site-brand__logo {
  width: auto;
  max-width: 220px;
  height: 88px;
  padding: 0.35rem 0.5rem;
  object-fit: contain;
  object-position: left center;
  border-radius: 14px;
  background: transparent;
  flex-shrink: 0;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-brand__text strong {
  font-family: "Questrial", Arial, Helvetica, sans-serif;
  color: var(--vibe-green-dark);
  font-size: 1.2rem;
  font-weight: 400;
}

.site-brand__text small {
  font-family: "Questrial", Arial, Helvetica, sans-serif;
  color: var(--vibe-green-dark);
  font-size: 0.92rem;
  font-weight: 400;
}

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

.site-nav a {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-family: "Questrial", Arial, Helvetica, sans-serif;
  color: var(--vibe-green-dark);
  font-weight: 400;
}

.site-nav a:hover {
  text-decoration: none;
  background: var(--vibe-green-soft);
  color: var(--vibe-green-dark);
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--vibe-border);
  border-radius: 14px;
  background: #fff;
  color: var(--vibe-green-dark);
  cursor: pointer;
  flex: 0 0 auto;
}

.site-nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav-toggle[aria-expanded="true"] {
  background: var(--vibe-green-soft);
}

.hero {
  padding: 3rem 0 2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero__content {
  padding: 0.5rem 0;
}

.hero__brand-logo {
  display: block;
  width: min(100%, 420px);
  max-height: 160px;
  margin-bottom: 1.1rem;
  object-fit: contain;
  object-position: left center;
}

.hero__content h1 {
  font-family: "Questrial", Arial, Helvetica, sans-serif;
  font-size: clamp(1.95rem, 3.6vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--vibe-green-dark);
  white-space: nowrap;
  margin-bottom: 1rem;
}

.hero__content p {
  max-width: 640px;
  color: var(--vibe-muted);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero__media {
  position: relative;
}

.hero__card {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  min-height: 380px;
  background: linear-gradient(160deg, #ffffff 0%, #f2f8f1 100%);
  border: 1px solid var(--vibe-border);
  border-radius: 28px;
  box-shadow: var(--vibe-shadow);
}

.hero__card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 340px;
  object-fit: contain;
  object-position: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: 0.2s ease;
}

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

.btn--primary {
  background: var(--vibe-green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--vibe-green-dark);
}

.btn--secondary {
  background: #fff;
  border-color: var(--vibe-border);
  color: var(--vibe-green-dark);
}

.btn--secondary:hover {
  background: var(--vibe-green-soft);
}

.btn--ghost {
  background: transparent;
  border-color: var(--vibe-border);
  color: var(--vibe-text);
}

.btn--full {
  width: 100%;
}

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

.offer-card,
.content-card,
.info-card,
.form-card,
.side-card,
.message-box {
  background: var(--vibe-card);
  border: 1px solid var(--vibe-border);
  border-radius: var(--vibe-radius);
  box-shadow: var(--vibe-shadow);
}

.offer-card,
.content-card,
.info-card,
.form-card,
.side-card,
.message-box {
  padding: 1.4rem;
}

.info-card h2 {
  font-family: "Questrial", Arial, Helvetica, sans-serif;
  color: var(--vibe-green-dark);
  font-weight: 400;
}

.offer-card__meta,
.meta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.7rem;
  color: var(--vibe-muted);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.offer-card__date {
  color: var(--vibe-muted);
  font-size: 0.92rem;
}

.offer-card__tag {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 28px;
  max-width: 100%;
  padding: 0.18rem 0.72rem;
  border-radius: 999px;
  background: var(--vibe-green-soft);
  border: 1px solid rgba(23, 154, 7, 0.14);
  color: var(--vibe-green-dark);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
}

.offer-card h3 {
  font-size: 1.35rem;
}

.offer-card p {
  color: #425148;
}

.offer-card__actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.card-grid--offers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.card-grid--offers > .offer-card {
  flex: 0 1 calc((100% - 2.5rem) / 3);
  max-width: calc((100% - 2.5rem) / 3);
}

.meta-list--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.meta-list--stacked span {
  display: block;
}

.layout-split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.95fr);
  gap: 1.5rem;
}

.richtext {
  color: #304137;
  white-space: normal;
}

.richtext p:last-child {
  margin-bottom: 0;
}

.side-card--sticky {
  position: sticky;
  top: 100px;
}

.side-card__image {
  width: 100%;
  max-height: 260px;
  border-radius: 14px;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: center;
  background: #f7faf6;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.form-card h1,
.form-card h2,
.form-card h3 {
  margin-bottom: 0.75rem;
}

.form-intro {
  color: var(--vibe-muted);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  border: 1px solid #cfd8d1;
  border-radius: 14px;
  background: #fff;
  color: var(--vibe-text);
  font: inherit;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group small,
.help-text {
  color: var(--vibe-muted);
}

.radio-group {
  display: grid;
  gap: 0.7rem;
}

.privacy-box {
  margin: 0;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid var(--vibe-border);
  border-radius: 18px;
  background: #fbfdfb;
}

.privacy-box legend {
  padding: 0 0.35rem 0 0;
  font-weight: 700;
  color: #1a2a20;
}

.privacy-box__intro {
  margin-bottom: 0.9rem;
}

.privacy-box__options {
  gap: 0.85rem;
}

.privacy-choice-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--vibe-border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--vibe-border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.radio-option--compact {
  border: 0;
  border-radius: 0;
  padding: 0.9rem 1rem;
}

.radio-option--compact + .radio-option--compact {
  border-top: 1px solid var(--vibe-border);
}

.radio-option input[type="radio"] {
  appearance: auto;
  -webkit-appearance: radio;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  flex: 0 0 18px;
}

.radio-option span {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
  font-weight: 700;
  line-height: 1.45;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  width: min(calc(100% - 0rem), 920px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--vibe-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(23, 37, 29, 0.16);
}

.cookie-banner__text {
  margin: 0;
  color: #425148;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
}

.alert {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.alert--error {
  background: #fff1f1;
  border: 1px solid #e7c4c4;
  color: #8a2d2d;
}

.alert--success {
  background: #eff9ee;
  border: 1px solid #bcdcbc;
  color: #205b22;
}

.alert--info {
  background: #f3f7ff;
  border: 1px solid #c9d7f0;
  color: #2b4b7d;
}

.message-box h1,
.message-box h2,
.message-box h3 {
  margin-bottom: 0.6rem;
}

.pagination-bar {
  margin-top: 1.75rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--vibe-border);
  background: #fff;
  color: var(--vibe-green-dark);
  font-weight: 700;
}

.pagination__link:hover {
  text-decoration: none;
  background: var(--vibe-green-soft);
}

.pagination__link.is-active {
  background: var(--vibe-green);
  border-color: var(--vibe-green);
  color: #fff;
}

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 2.5rem;
  background: var(--vibe-footer);
  border-top: 1px solid var(--vibe-border);
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__copy p {
  margin: 0.4rem 0 0;
  color: var(--vibe-muted);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.empty-state {
  color: var(--vibe-muted);
}

@media (max-width: 1080px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--offers > .offer-card {
    flex-basis: calc((100% - 1.25rem) / 2);
    max-width: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 900px) {
  .site-header__inner,
  .site-footer__inner,
  .section-title,
  .hero__grid,
  .layout-split,
  .info-strip,
  .form-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    text-align: center;
    flex: 1 1 140px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid--offers {
    display: grid;
    grid-template-columns: 1fr;
  }

  .card-grid--offers > .offer-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .side-card--sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    position: relative;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .site-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-brand__text strong {
    font-size: 1.05rem;
  }

  .site-brand__text small {
    font-size: 0.82rem;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0.85rem;
    border: 1px solid var(--vibe-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--vibe-shadow);
  }

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

  .site-nav a {
    width: 100%;
    text-align: center;
    padding: 0.88rem 1rem;
    border: 1px solid var(--vibe-border);
    background: #fff;
  }

  .site-footer {
    padding: 1.6rem 0 2rem;
  }

  .site-footer__inner {
    gap: 1rem;
  }

  .site-footer__copy,
  .site-footer__nav {
    width: 100%;
  }

  .site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .site-footer__nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 0.9rem;
    text-align: center;
    border: 1px solid var(--vibe-border);
    border-radius: 14px;
    background: #fff;
  }

  .pagination-bar {
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .pagination {
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    padding-inline: 0.1rem;
  }

  .pagination__link {
    min-width: 38px;
    height: 38px;
    padding: 0 0.72rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2rem;
  }

  .hero__actions,
  .offer-card__actions,
  .action-row,
  .site-footer__nav,
  .cookie-banner__inner,
  .cookie-banner__actions {
    flex-direction: column;
  }

  .btn,
  .cookie-banner__actions .btn {
    width: 100%;
  }

  .site-brand {
    align-items: flex-start;
  }

  .site-brand__logo {
    max-width: 170px;
    height: 72px;
    padding: 0.25rem 0.35rem;
  }

  .hero__brand-logo {
    width: min(100%, 340px);
    max-height: 132px;
  }

  .hero__content h1 {
    font-size: 1.55rem;
    white-space: normal;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .pagination__link {
    min-width: 34px;
    height: 34px;
    padding: 0 0.6rem;
    font-size: 0.86rem;
  }
}

/* Mobile menu refinement */
@media (max-width: 768px) {
  .site-header {
    position: static;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
  }

  .site-brand {
    gap: 0.7rem;
    align-items: center;
    min-width: 0;
  }

  .site-brand__logo {
    width: auto;
    max-width: 112px;
    height: 56px;
    padding: 0;
  }

  .site-brand__text strong {
    font-size: 0.98rem;
    line-height: 1.1;
  }

  .site-brand__text small {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .site-nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(23, 37, 29, 0.08);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.1rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .site-nav a {
    width: 100%;
    min-height: 0;
    padding: 0.82rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--vibe-border);
    background: #fff;
    box-shadow: 0 8px 20px rgba(23, 37, 29, 0.08);
    font-size: 0.98rem;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .site-brand__logo {
    max-width: 98px;
    height: 50px;
  }

  .site-brand__text strong {
    font-size: 0.9rem;
  }

  .site-brand__text small {
    font-size: 0.68rem;
  }

  .site-nav a {
    padding: 0.78rem 0.9rem;
    font-size: 0.94rem;
  }
}
