:root {
  --bg: #fbf6e8;
  --bg-warm: #f6ead0;
  --card: #fcf8ec;
  --card-peach: #f9e5c6;
  --amber: #ee940e;
  --amber-deep: #cb8112;
  --amber-soft: #fbe3ac;
  --amber-faint: #fbf0d6;
  --pill-fill: #f8e3c3;
  --ink: #2b1e12;
  --ink-2: #4b3a28;
  --muted: #6e5a42;
  --line: #eaddc0;
  --line-soft: #f0e4cc;
  --shadow-soft: 0 1px 2px rgba(43, 30, 18, 0.04), 0 8px 24px rgba(43, 30, 18, 0.05);
  --shadow-card: 0 1px 2px rgba(43, 30, 18, 0.04), 0 12px 32px rgba(43, 30, 18, 0.06);
  --shadow-btn: 0 3px 6px rgba(43, 30, 18, 0.14), 0 8px 20px rgba(43, 30, 18, 0.18);
  --shadow-btn-hover: 0 5px 10px rgba(43, 30, 18, 0.16), 0 12px 28px rgba(43, 30, 18, 0.22);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --maxw: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "Nunito",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 232, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  overflow: visible;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 76px;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 4px 8px rgba(43, 30, 18, 0.2)) drop-shadow(0 6px 16px rgba(43, 30, 18, 0.3));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links > a {
  font-weight: 600;
  color: var(--ink-2);
  font-size: 16px;
}

.nav-links > a:hover {
  color: var(--ink);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--ink-2);
}

.hamburger:hover {
  background: var(--amber-faint);
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
  border: 3px solid #fff;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 18px;
  border-radius: 999px;
}

.nav-signup {
  padding: 10px 22px;
  font-size: 15px;
}

/* ---------- CONTENT PAGES ---------- */
.content-main {
  padding: 48px 0 72px;
}

.content-section {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-soft);
}

.content-section h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--ink);
}

.content-section h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.2;
  font-weight: 800;
  margin: 36px 0 12px;
  color: var(--ink);
}

.content-section h3 {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
  margin: 24px 0 10px;
  color: var(--ink);
}

.content-section p,
.content-section li {
  color: var(--ink-2);
  margin: 0 0 14px;
}

.content-section ol,
.content-section ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
}

.content-section ol li,
.content-section ul li {
  margin-bottom: 10px;
}

.content-section a:not(.btn) {
  color: var(--amber-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-section a:not(.btn):hover {
  color: var(--amber);
}

.content-section .faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 20px 0;
}

.content-section .faq-item:first-of-type {
  border-top: 1px solid var(--line-soft);
}

.content-section .faq-item:last-child {
  border-bottom: none;
}

.content-section .faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.content-section .faq-answer {
  color: var(--ink-2);
  margin: 0;
}

.content-section .contact-note {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-inner a:hover {
  color: var(--ink-2);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .wrap {
    padding: 0 28px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding-bottom: 18px;
  }

  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 60;
    padding: 24px 28px 40px;
    overflow: visible;
  }

  .mobile-menu .mm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }

  .mobile-menu .mm-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
    overflow: visible;
  }

  .mobile-menu .mm-list a {
    padding: 18px 4px;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px solid var(--line-soft);
  }

  .mobile-menu .mm-list a.btn {
    display: inline-flex;
    align-self: flex-start;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    border: 3px solid #fff;
    margin-top: 12px;
    margin-bottom: 8px;
  }

  .mobile-menu .mm-list a:last-child:not(.btn) {
    border-bottom: none;
  }

  .content-main {
    padding: 32px 0 56px;
  }

  .content-section {
    padding: 32px 28px;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }

  .logo img {
    height: 64px;
    max-width: none;
  }

  .content-section {
    padding: 28px 22px;
  }
}
