:root {
  --accent: #b7c656;
  --accent-dark: #6f7629;
  --bg-page: #f6f4ef;
  --bg-section-a: #fffdf8;
  --bg-section-b: #e8edd4;
  --bg-section-c: #dce3c8;
  --text: #1c1f14;
  --text-muted: #3d4530;
  --shadow: 0 12px 40px rgba(28, 31, 20, 0.08);
  --radius: 18px;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.65;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text);
}

.disclaimer-bar {
  background: #2a2f1f;
  color: #f4f6ea;
  font-size: 0.8rem;
  line-height: 1.45;
  padding: 0.55rem 0.85rem;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.footer-compliance,
.compliance-note {
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.92;
  margin: 0.35rem 0 0;
  max-width: 46rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(111, 118, 41, 0.18);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  color: var(--text);
  text-decoration: none;
  min-width: 0;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(28, 31, 20, 0.12);
}

.logo:hover {
  color: var(--accent-dark);
}

.logo:hover .logo-mark {
  box-shadow: 0 2px 8px rgba(111, 118, 41, 0.25);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--accent-dark);
  background: var(--bg-section-a);
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  color: var(--accent-dark);
}

.nav-toggle i {
  font-size: 1.35rem;
  vertical-align: middle;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  font-size: 0.98rem;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-color: var(--accent);
}

main {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  padding: 2.5rem 1.1rem 3rem;
  color: #fffdf8;
  background-color: #3a4224;
  background-image: linear-gradient(
      120deg,
      rgba(24, 28, 16, 0.82) 0%,
      rgba(24, 28, 16, 0.45) 55%,
      rgba(24, 28, 16, 0.75) 100%
    ),
    url("../image/picture.jpg");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  max-width: 18ch;
}

.hero-lead {
  max-width: 36ch;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #eef2d8;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.hero-card {
  background: rgba(255, 253, 248, 0.12);
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 14px;
  padding: 0.85rem 0.75rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.hero-card:hover,
.hero-card:focus-visible {
  transform: translateY(-4px) scale(1.02);
  background: rgba(183, 198, 86, 0.35);
  border-color: rgba(255, 253, 248, 0.55);
  outline: none;
}

.hero-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
  display: block;
}

.hero-card span {
  font-size: 0.92rem;
  font-weight: 600;
}

.section {
  padding: 3rem 1.1rem;
}

.section.alt-a {
  background: var(--bg-section-a);
}

.section.alt-b {
  background: var(--bg-section-b);
  color: var(--text);
}

.section.alt-c {
  background: var(--bg-section-c);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0 0 1rem;
  color: var(--text);
}

.section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.split img {
  box-shadow: var(--shadow);
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(111, 118, 41, 0.25);
  box-shadow: var(--shadow);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  background: rgba(183, 198, 86, 0.35);
  border: 1px solid rgba(111, 118, 41, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.88rem;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.note-card {
  background: var(--bg-section-a);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(111, 118, 41, 0.2);
  box-shadow: var(--shadow);
}

.note-card i {
  color: var(--accent-dark);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.timeline {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  border-left: 3px solid var(--accent);
}

.timeline li {
  padding: 0.65rem 0 0.65rem 1.1rem;
  position: relative;
}

.timeline li::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--accent-dark);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 1rem;
}

.faq details {
  background: var(--bg-section-a);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(111, 118, 41, 0.22);
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] {
  border-color: var(--accent-dark);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(111, 118, 41, 0.25);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
  background: var(--bg-section-a);
}

th,
td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(111, 118, 41, 0.15);
  color: var(--text);
}

th {
  background: rgba(183, 198, 86, 0.35);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--accent-dark);
  background: var(--accent);
  color: #1c1f14;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn-link:hover {
  background: #c9d46f;
  color: #1c1f14;
}

.btn-link.secondary {
  background: transparent;
  color: var(--text);
}

input.btn-link {
  appearance: none;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--accent-dark);
  background: var(--accent);
  color: #1c1f14;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
  cursor: pointer;
}

input.btn-link:hover {
  background: #c9d46f;
  color: #1c1f14;
}

.site-footer {
  background: #2a2f1f;
  color: #eef2d8;
  padding: 2rem 1.1rem;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer a {
  color: #f0f4d4;
}

.site-footer a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  background: #1f2416;
  color: #f4f6ea;
  padding: 1rem 1.1rem 1.25rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions a,
.cookie-actions button {
  font: inherit;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #1c1f14;
  font-weight: 600;
}

.cookie-actions .ghost {
  background: transparent;
  color: #f4f6ea;
}

.cookie-actions .ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(20, 22, 15, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-panel.is-open {
  display: flex;
}

.cookie-dialog {
  background: #fffdf8;
  color: var(--text);
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--shadow);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(111, 118, 41, 0.2);
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #c9c9bf;
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: var(--accent-dark);
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

.switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(111, 118, 41, 0.35);
  font: inherit;
  background: #fffdf8;
  color: var(--text);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.map-embed {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(111, 118, 41, 0.25);
}

.map-embed iframe {
  width: 100%;
  height: min(420px, 60vw);
  border: 0;
  display: block;
}

.two-col-list {
  columns: 2;
  column-gap: 2rem;
  padding-left: 1.1rem;
}

@media (max-width: 720px) {
  .split {
    grid-template-columns: 1fr;
  }

  .two-col-list {
    columns: 1;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 56px;
    background: #fffdf8;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(111, 118, 41, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 0.72rem;
    gap: 0.35rem;
  }

  .logo-mark {
    width: 2rem;
    height: 2rem;
  }
}
