:root {
  --bg: #f3f6f2;
  --bg-deep: #0f2a24;
  --bg-mid: #1a4037;
  --ink: #14201c;
  --muted: #4d5f58;
  --line: rgba(20, 32, 28, 0.12);
  --accent: #c45c26;
  --accent-2: #2f6f5e;
  --card: rgba(255, 255, 255, 0.72);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 42, 36, 0.12);
  --radius: 18px;
  --max: 1120px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(47, 111, 94, 0.18), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(196, 92, 38, 0.14), transparent 50%),
    linear-gradient(180deg, #eef4ef 0%, var(--bg) 40%, #e8efe9 100%);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bg-deep);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 246, 242, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand span {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  border-color: var(--accent);
}

.nav .cart-link {
  background: var(--bg-deep);
  color: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: none;
}

.nav .cart-link:hover,
.nav .cart-link.is-active {
  color: var(--white);
  border: none;
  background: var(--accent);
}

.disclaimer-bar {
  background: #fff6ef;
  border-bottom: 1px solid rgba(196, 92, 38, 0.25);
  color: #5a3018;
  font-size: 0.88rem;
}

.disclaimer-bar .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(15, 42, 36, 0.88) 15%, rgba(15, 42, 36, 0.45) 55%, rgba(15, 42, 36, 0.2) 100%),
    url("../img/hero.svg") center/cover no-repeat,
    linear-gradient(135deg, var(--bg-deep), var(--bg-mid));
}

.hero-content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.25rem 3.5rem;
  animation: rise 0.8s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  max-width: 10ch;
}

.hero p {
  max-width: 38rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.6rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-dark {
  background: var(--bg-deep);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  max-width: 48rem;
  margin: 0 0 2rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  animation: fade-up 0.7s ease both;
}

.panel h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.price {
  margin-top: 1rem;
  font-weight: 800;
  color: var(--bg-deep);
}

.notice {
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.notice strong {
  display: block;
  margin-bottom: 0.35rem;
}

.legal,
.prose {
  max-width: 760px;
}

.prose p,
.legal p,
.legal li {
  color: var(--muted);
}

.legal h2,
.prose h2 {
  margin-top: 2rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}

th {
  background: rgba(15, 42, 36, 0.06);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.86);
  margin-top: 2rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover {
  color: #ffd2b8;
}

.site-footer h3 {
  font-family: var(--font-display);
  margin: 0 0 0.8rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: rise 0.45s ease both;
}

.cookie-banner p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.flash {
  max-width: var(--max);
  margin: 1rem auto 0;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  background: #e7f6ef;
  border: 1px solid #b7dfc9;
  color: #184b35;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
}

.flash-error {
  background: #fff1f0;
  border-color: #f0c2c0;
  color: #7a221f;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.process-steps {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.process-steps p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 750;
  font-family: var(--font-display);
  font-size: 1.15rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.8rem 0 0;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 0.4rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.footer-meta {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel:nth-child(2) {
  animation-delay: 0.08s;
}

.panel:nth-child(3) {
  animation-delay: 0.16s;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2,
  .footer-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 72vh;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
