﻿:root {
  --bg: #f6f1ea;
  --ink: #1a1a1a;
  --muted: #55504a;
  --accent: #0f766e;
  --accent-2: #ea580c;
  --accent-3: #0f3d3e;
  --card: #ffffff;
  --border: #e2d7cc;
  --shadow: 0 18px 40px rgba(15, 61, 62, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, rgba(234, 88, 12, 0.12), transparent 45%),
              radial-gradient(circle at 80% 10%, rgba(15, 118, 110, 0.18), transparent 50%),
              linear-gradient(120deg, #fbf7f1 0%, #f4efe7 55%, #f2f6f3 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -20% auto auto;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.18), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: auto auto -25% -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.2), transparent 70%);
  filter: blur(12px);
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--accent-3);
  margin-top: 0;
}

p {
  line-height: 1.7;
  color: var(--muted);
}

a {
  color: inherit;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 241, 234, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo-icon {
  width: 28px;
  height: 28px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-desktop a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-desktop a:hover {
  color: var(--accent);
}

.nav-mobile {
  display: none;
}

.nav-mobile summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--card);
}

.nav-mobile[open] summary {
  border-color: var(--accent);
}

.nav-mobile nav {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav-mobile a {
  text-decoration: none;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 118, 110, 0.24);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--accent-3);
  background: #ffffff;
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.link-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  vertical-align: -2px;
  opacity: 0.8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.meta-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-3);
}

.section {
  padding: 50px 0;
}

.section-title {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  margin-bottom: 12px;
}

.section-lead {
  margin-bottom: 24px;
  max-width: 820px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 61, 62, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fffaf5;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-3);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  background: #ffffff;
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 18px;
}

.step span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-3);
}

.callout {
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 18px;
  padding: 20px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.table-wrap th {
  color: var(--accent-3);
  background: #fdf7f0;
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  background: #ffffff;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--accent-3);
}

.accordion p {
  margin: 10px 0 0;
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 600;
  color: var(--accent-3);
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-section {
  padding: 60px 0;
}

.cta-box {
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.12), rgba(234, 88, 12, 0.12));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--accent-3);
}

.footer-grid a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.1s; }
.reveal.delay-2 { animation-delay: 0.2s; }
.reveal.delay-3 { animation-delay: 0.3s; }
.reveal.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: block;
  }

  .grid-2,
  .grid-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    align-items: flex-start;
  }

  .cta-box {
    padding: 24px;
  }

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

