    :root {
      --bg-body: #f6e6da;
      --bg-shell: #fffaf6;
      --bg-shell-soft: #f8ece2;
      --text-main: #2f231e;
      --text-muted: #6f5b53;
      --accent: #b48562;
      --accent-soft: rgba(180, 133, 98, 0.10);
      --border-subtle: rgba(112, 78, 63, 0.20);
      --shadow-soft: 0 18px 45px rgba(60, 40, 30, 0.10);
      --radius-lg: 22px;
      --radius-pill: 999px;
      --max-width: 1120px;
      --transition-fast: 180ms ease-out;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text-main);
      background: radial-gradient(circle at top left, #fffdfb 0, #f6e6da 48%, #e5cec0 100%);
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
    }

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

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

    .page-shell {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }

    @media (min-width: 900px) {
      .page-shell {
        padding: 0 2rem 4rem;
      }
    }

    header {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(14px);
      background: linear-gradient(
        to bottom,
        rgba(246, 230, 218, 0.96),
        rgba(246, 230, 218, 0.85),
        rgba(246, 230, 218, 0.0)
      );
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      padding: 1.1rem 1.5rem 0.75rem;
      max-width: var(--max-width);
      margin: 0 auto;
      gap: 0.75rem;
    }

    @media (min-width: 900px) {
      .header-inner {
        padding: 1.3rem 2rem 0.9rem;
      }
    }

    .brand-area {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .brand-logo-img {
      height: 40px;
      width: auto;
      display: block;
    }

    @media (min-width: 900px) {
      .brand-logo-img {
        height: 120px;
      }
    }

    .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.4rem;
      height: 2.4rem;
      border-radius: 999px;
      border: 1px solid rgba(60, 40, 30, 0.16);
      background: rgba(255, 250, 246, 0.9);
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }

    .nav-toggle span,
    .nav-toggle::before,
    .nav-toggle::after {
      content: "";
      display: block;
      width: 16px;
      height: 1.7px;
      border-radius: 999px;
      background: #3b2620;
      transition: transform var(--transition-fast), opacity var(--transition-fast);
    }

    .nav-toggle span {
      margin: 3px 0;
    }

    .nav-toggle::before {
      transform: translateY(-4px);
    }

    .nav-toggle::after {
      transform: translateY(4px);
    }

    .nav-toggle.is-open span {
      opacity: 0;
    }

    .nav-toggle.is-open::before {
      transform: translateY(0) rotate(42deg);
    }

    .nav-toggle.is-open::after {
      transform: translateY(0) rotate(-42deg);
    }

    nav {
      position: absolute;
      inset-inline: 0;
      top: 100%;
      padding: 0 1.5rem 1rem;
      max-width: var(--max-width);
      margin: 0 auto;
      display: none;
    }

    nav.is-open {
      display: block;
    }

    .nav-shell {
      background: rgba(255, 250, 246, 0.98);
      border-radius: calc(var(--radius-lg) * 0.8);
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 18px 40px rgba(60, 40, 30, 0.14);
      padding: 0.6rem 0.9rem;
    }

    .nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      padding: 0;
      margin: 0;
      gap: 0.25rem;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.45rem 0.7rem;
      border-radius: 999px;
      font-size: 0.9rem;
      color: var(--text-muted);
      border: none;
      background: transparent;
      cursor: pointer;
      width: 100%;
      transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    }

    .nav-link span {
      font-weight: 500;
    }

    .nav-link:hover {
      background-color: rgba(179, 133, 98, 0.06);
      color: var(--text-main);
    }

    .nav-link.is-active {
      background-color: rgba(179, 133, 98, 0.16);
      color: var(--text-main);
      box-shadow: 0 0 0 1px rgba(179, 133, 98, 0.35);
    }

    .nav-link.nav-cta {
      background: #3b2620;
      color: #fff7f1;
      box-shadow: 0 10px 24px rgba(59, 38, 32, 0.26);
    }

    .nav-link.nav-cta:hover {
      background: #4a3027;
    }

    .nav-link.nav-cta.is-active {
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 10px 26px rgba(59, 38, 32, 0.35);
    }

    @media (min-width: 900px) {
      nav {
        position: static;
        padding: 0;
        display: block !important;
        max-width: none;
        margin: 0;
      }

      .nav-shell {
        box-shadow: none;
        background: transparent;
        border-radius: 999px;
        padding: 0;
        border: none;
      }

      .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 0.2rem;
      }

      .nav-link {
        width: auto;
        font-size: 0.9rem;
        padding: 0.4rem 0.9rem;
      }

      .nav-toggle {
        display: none;
      }
    }

    main {
      flex: 1 0 auto;
    }

    .faq-hero {
      margin-top: 1.8rem;
      padding: 1.6rem 1.4rem 1.8rem;
      border-radius: calc(var(--radius-lg) * 1.1);
      background: radial-gradient(circle at 10% 0, #ffffff 0, #f6e6da 42%, #e5cec0 100%);
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255, 255, 255, 0.9);
    }

    @media (min-width: 900px) {
      .faq-hero {
        margin-top: 2.2rem;
        padding: 2.2rem 2.1rem 2.3rem;
      }
    }

    .faq-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.8rem;
      border-radius: var(--radius-pill);
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(180, 133, 98, 0.4);
      color: #6f4b3a;
      margin-bottom: 0.8rem;
    }

    .faq-chip-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
    }

    .faq-title {
      font-family: "Playfair Display", serif;
      font-size: 1.9rem;
      margin: 0 0 0.6rem;
    }

    .faq-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .faq-subtitle strong {
      color: var(--text-main);
    }

    .faq-layout {
      display: grid;
      gap: 1.6rem;
      margin-top: 2.3rem;
    }

    @media (min-width: 900px) {
      .faq-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
      }
    }

    .faq-aside {
      background: var(--bg-shell);
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.2rem 1.3rem;
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 10px 26px rgba(60, 40, 30, 0.08);
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .faq-aside h2 {
      font-family: "Playfair Display", serif;
      font-size: 1.15rem;
      margin: 0 0 0.5rem;
    }

    .faq-aside p {
      margin: 0 0 0.7rem;
    }

    .faq-aside p:last-child {
      margin-bottom: 0;
    }

    .faq-aside-highlight {
      margin-top: 0.8rem;
      padding: 0.6rem 0.7rem;
      border-radius: 14px;
      background: var(--bg-shell-soft);
      border: 1px dashed rgba(110, 80, 63, 0.35);
      font-size: 0.82rem;
    }

    .faq-aside-highlight strong {
      color: #4b3328;
    }

    .faq-list {
      display: grid;
      gap: 0.8rem;
    }

    .faq-item {
      background: var(--bg-shell);
      border-radius: calc(var(--radius-lg) * 0.85);
      border: 1px solid rgba(255, 255, 255, 0.95);
      box-shadow: 0 10px 26px rgba(60, 40, 30, 0.08);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      text-align: left;
      border: none;
      background: transparent;
      padding: 0.9rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      cursor: pointer;
      font-size: 0.92rem;
      color: var(--text-main);
    }

    .faq-question-text {
      flex: 1;
      font-weight: 600;
    }

    .faq-badge {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 0.15rem;
    }

    .faq-icon {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      border: 1px solid rgba(107, 70, 60, 0.45);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
      background: rgba(255, 250, 246, 0.95);
      transition: transform 200ms ease-out, background-color 200ms ease-out;
    }

    .faq-item.is-open .faq-icon {
      transform: rotate(90deg);
      background: rgba(180, 133, 98, 0.08);
    }

    .faq-answer-wrap {
      max-height: 0;
      overflow: hidden;
      transition: max-height 420ms ease-out, padding-bottom 220ms ease-out;
    }

    .faq-answer {
      padding: 0 1rem 0.9rem;
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--text-muted);
      border-top: 1px dashed rgba(112, 78, 63, 0.18);
    }

    .faq-answer p {
      margin: 0.6rem 0;
    }

    .faq-answer p:first-child {
      margin-top: 0.65rem;
    }

    .faq-answer p:last-child {
      margin-bottom: 0.3rem;
    }

    .faq-answer ul {
      padding-left: 1.1rem;
      margin: 0.4rem 0 0.6rem;
      font-size: 0.9rem;
    }

    .faq-answer ul li {
      margin-bottom: 0.3rem;
    }

    @media (prefers-reduced-motion: reduce) {
      .faq-answer-wrap {
        max-height: none !important;
        overflow: visible !important;
        transition: none !important;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity 900ms cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 900ms cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal--flip {
      transform-origin: center top;
      transform: rotateX(18deg) translateY(24px);
      transition:
        opacity 1100ms cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 1100ms cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .reveal--flip.is-visible {
      transform: rotateX(0deg) translateY(0);
    }

    .reveal-delay-1 { transition-delay: 150ms; }
    .reveal-delay-2 { transition-delay: 350ms; }
    .reveal-delay-3 { transition-delay: 550ms; }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

footer {
    /*padding: 1.6rem 1.5rem 2.2rem;*/
    font-size: 0.8rem;
    color: var(--text-muted);
}


    @media (min-width: 900px) {
      footer {
        padding-inline: 2rem;
      }
    }

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(110, 80, 63, 0.18);
    /*padding-top: 0.9rem;*/
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding: 5px 0 5px 0;
}

    .footer-link {
      font-size: 0.78rem;
    }

    .footer-link strong {
      font-weight: 600;
    }