:root {
  --accent: #dfef89;
  --accent-dark: #b8c94a;
  --ink: #0e0e0e;
  --ink-soft: #1c1c1c;
  --paper: #f6f6f2;
  --muted: #9aa0a6;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1120px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --space: clamp(1rem, 2vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--paper);
  background: var(--ink);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--ink);
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.brand img {
  width: 44px;
  height: 44px;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.nav-desktop a {
  color: var(--paper);
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  gap: 0.35rem;
  font: inherit;
}

.menu-toggle i {
  font-size: 1.35rem;
  color: var(--accent);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-desktop {
    position: fixed;
    inset: 0 0 auto 0;
    top: 64px;
    background: var(--ink-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--space) 1.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .nav-desktop.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-desktop a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
  }
}

.disclaimer-bar {
  background: var(--accent);
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.5;
}

.disclaimer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem var(--space);
}

main {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: stretch;
  color: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.06);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 14, 14, 0.88) 0%, rgba(14, 14, 14, 0.55) 45%, rgba(14, 14, 14, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--space);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero-copy p {
  margin: 0 0 1.25rem;
  color: rgba(246, 246, 242, 0.92);
  max-width: 36ch;
}

.hero-card {
  background: rgba(28, 28, 28, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.hero-card label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--accent);
}

.hero-card input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.65);
  color: var(--paper);
  font: inherit;
  margin-bottom: 0.85rem;
}

.hero-card input[type="email"]::placeholder {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

button.btn {
  appearance: none;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  background: transparent;
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--ink);
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space);
}

.section--dark {
  background: #eef1e8;
  color: var(--ink);
}

.section--dark .tag {
  border-color: rgba(14, 14, 14, 0.18);
  color: var(--ink-soft);
}

.section--dark .tag i {
  color: var(--accent);
}

.section--dark .card {
  background: #fff;
  border-color: rgba(14, 14, 14, 0.1);
}

.section--dark .icon-title i {
  color: var(--ink);
}

.section--dark .pill-list li {
  border-color: rgba(14, 14, 14, 0.15);
}

.section--dark .stat {
  border-color: rgba(14, 14, 14, 0.22);
}

.section--dark .stat strong {
  color: var(--ink);
}

.section--dark .faq-item {
  border-color: rgba(14, 14, 14, 0.12);
}

.section--dark .faq-item button i {
  color: var(--ink);
}

.section--dark .table-scroll {
  border-color: rgba(14, 14, 14, 0.12);
}

.section--dark th,
.section--dark td {
  border-color: rgba(14, 14, 14, 0.1);
}

.section--dark th {
  background: rgba(223, 239, 137, 0.45);
  color: var(--ink);
}

.section--dark .figure {
  border-color: rgba(14, 14, 14, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.section--dark .note-box {
  background: rgba(223, 239, 137, 0.28);
  color: var(--ink);
}

.section--dark .btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.section--dark .btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.section--accent {
  background: var(--accent);
  color: var(--ink);
}

.section--accent a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
}

.section--accent .tag {
  border-color: rgba(14, 14, 14, 0.25);
  color: var(--ink);
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.section--light a {
  color: var(--ink-soft);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
  color: #0a0a0a;
}

.section-head h1,
.section-head h2 {
  color: #0a0a0a;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.section-head h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
}

.section-head p.lead {
  margin: 0;
  font-size: 1.05rem;
  color: #0a0a0a;
  opacity: 0.88;
}

.section--dark .section-head .tag {
  color: #0a0a0a;
  border-color: rgba(10, 10, 10, 0.22);
}

.section--dark .section-head .tag i {
  color: #0a0a0a;
}

.contact-intro .check-list i {
  color: #0a0a0a;
}

.contact-intro .check-list,
.contact-intro .check-list a {
  color: #0a0a0a;
}

.contact-intro .check-list a:hover {
  color: #0a0a0a;
  opacity: 0.75;
  text-decoration: underline;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--line);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.tag i {
  font-size: 1rem;
}

.grid-2 {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.section--light .card {
  background: #fff;
  border-color: rgba(14, 14, 14, 0.08);
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  opacity: 0.95;
}

.icon-title {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.icon-title i {
  font-size: 1.5rem;
  color: var(--accent);
}

.section--accent .icon-title i {
  color: var(--ink);
}

.section--light .icon-title i {
  color: var(--ink);
}

.section--light .btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.section--light .btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.split-panel {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.prose {
  font-size: 1.02rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.prose li {
  margin-bottom: 0.45rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  align-items: flex-start;
}

.check-list i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.section--accent .check-list i {
  color: var(--ink);
}

.imprint-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(14, 14, 14, 0.12);
  border-radius: var(--radius);
}

.imprint-card h2 {
  margin-top: 0;
}

.imprint-note {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.imprint-note a {
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--line);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.section--light .pill-list li {
  border-color: rgba(14, 14, 14, 0.15);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--line);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--accent);
}

.section--accent .stat strong {
  color: var(--ink);
}

.timeline {
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  margin: 0;
}

.timeline article {
  margin-bottom: 1.5rem;
}

.timeline h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.section--light .faq-item {
  border-color: rgba(14, 14, 14, 0.12);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item button i {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.section--light .faq-item button i {
  color: var(--ink);
}

.faq-item.is-open button i {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding-top: 0.65rem;
  opacity: 0.95;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.section--light th,
.section--light td {
  border-color: rgba(14, 14, 14, 0.1);
}

th {
  background: rgba(223, 239, 137, 0.12);
  color: var(--accent);
}

.section--light th {
  background: rgba(223, 239, 137, 0.35);
  color: var(--ink);
}

.site-footer {
  background: #0a0a0a;
  color: var(--paper);
  padding: 2.5rem var(--space);
  border-top: 1px solid var(--line);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-grid > div > .footer-disclosure {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-meta {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-meta-links {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-meta-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-meta-links a:hover {
  color: var(--accent);
}

.footer-meta-geo {
  display: inline-block;
  margin-right: 0.25rem;
}

.cookie-banner {
  position: fixed;
  z-index: 950;
  left: var(--space);
  right: var(--space);
  bottom: var(--space);
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink-soft);
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.cookie-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cookie-panel.is-open {
  display: block;
}

.switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  display: inline-block;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #444;
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--paper);
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: var(--accent);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(14, 14, 14, 0.15);
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 640px) {
  .map-wrap iframe {
    height: 260px;
  }
}

.note-box {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.1rem;
  background: rgba(223, 239, 137, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.section--light .note-box {
  background: rgba(223, 239, 137, 0.25);
  color: var(--ink);
}

.service-layout {
  max-width: 860px;
  margin: 0 auto;
}

.service-layout h2 {
  margin-top: 2rem;
}

.service-layout h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.success-hero {
  text-align: center;
  padding: clamp(3rem, 10vw, 6rem) var(--space);
}

.success-hero i {
  font-size: 3rem;
  color: var(--accent);
}

@media (max-width: 360px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
