.elementor-1535 .elementor-element.elementor-element-13d43be{--display:flex;}/* Start custom CSS */:root {
    --cream: #F5F0E8;
    --warm-white: #FAF8F4;
    --charcoal: #1C1C1E;
    --mid: #4A4A52;
    --soft: #8A8A96;
    --accent: #C17B5C;
    --accent-light: #E8C4B0;
    --green: #5C8C6A;
    --green-light: #C4DEC9;
    --amber: #C49A3C;
    --amber-light: #EDD9A3;
    --red: #B85C5C;
    --red-light: #DEB0B0;
    --border: #D8D0C4;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Subtle grain texture */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
  }

  .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    position: relative;
    z-index: 1;
  }

  /* Header */
  .header {
    text-align: center;
    margin-bottom: 56px;
    animation: fadeSlideDown 0.8s ease both;
  }

  .header-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }

  .header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
  }

  .header h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .header-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mid);
    max-width: 520px;
    margin: 0 auto 24px;
  }

  .header-note {
    display: inline-block;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 12.5px;
    color: var(--soft);
    line-height: 1.5;
  }

  /* Progress */
  .progress-bar {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
    animation: fadeIn 0.6s ease 0.4s both;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #D4956E);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
  }

  .progress-label {
    text-align: right;
    font-size: 12px;
    color: var(--soft);
    margin-bottom: 6px;
    animation: fadeIn 0.6s ease 0.4s both;
  }

  /* Screen management */
  .screen { display: none; }
  .screen.active { display: block; }

  /* Intro screen */
  #intro-screen { animation: fadeSlideUp 0.6s ease both; }

  .start-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 32px auto 0;
    padding: 16px 32px;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .start-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s;
  }

  .start-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .start-btn:hover::after { opacity: 1; }
  .start-btn:active { transform: translateY(0); }

  /* Category header */
  .category-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    animation: fadeSlideDown 0.5s ease both;
  }

  .category-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
  }

  .category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
  }

  /* Question card */
  .question-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
    animation: fadeSlideUp 0.4s ease both;
  }

  .question-card:hover { border-color: var(--accent-light); }

  .question-number {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--soft);
    margin-bottom: 10px;
  }

  .question-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 400;
  }

  .question-hint {
    font-size: 12.5px;
    color: var(--soft);
    font-style: italic;
    margin-top: -12px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  /* Options */
  .options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
  }

  .option-btn {
    padding: 10px 14px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: center;
    font-weight: 400;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .option-btn:hover {
    border-color: var(--accent);
    color: var(--charcoal);
    background: rgba(193, 123, 92, 0.06);
  }

  .option-btn.selected {
    border-color: var(--accent);
    background: rgba(193, 123, 92, 0.12);
    color: var(--charcoal);
    font-weight: 500;
  }

  .option-btn.selected-strong {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: var(--cream);
    font-weight: 500;
  }

  /* Navigation */
  .nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    animation: fadeIn 0.4s ease 0.2s both;
  }

  .btn-back {
    padding: 12px 24px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .btn-back:hover { border-color: var(--mid); color: var(--charcoal); }

  .btn-next {
    padding: 12px 32px;
    background: var(--charcoal);
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.35;
    pointer-events: none;
  }

  .btn-next.enabled {
    opacity: 1;
    pointer-events: all;
  }

  .btn-next.enabled:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

  /* Validation message */
  .validation-msg {
    font-size: 12.5px;
    color: var(--accent);
    text-align: center;
    margin-top: 12px;
    height: 18px;
    transition: opacity 0.2s;
    opacity: 0;
  }

  .validation-msg.show { opacity: 1; }

  /* Results */
  #results-screen { animation: fadeSlideUp 0.7s ease both; }

  .result-card {
    border-radius: 16px;
    padding: 48px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
  }

  .result-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.12;
  }

  .result-low { background: var(--green-light); border: 1px solid #A8CEB0; }
  .result-low::before { background: var(--green); }
  .result-moderate { background: var(--amber-light); border: 1px solid #D4B870; }
  .result-moderate::before { background: var(--amber); }
  .result-high { background: var(--red-light); border: 1px solid #CCAAAA; }
  .result-high::before { background: var(--red); }

  .result-likelihood {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .result-low .result-likelihood { color: var(--green); }
  .result-moderate .result-likelihood { color: #8C6E1C; }
  .result-high .result-likelihood { color: var(--red); }

  .result-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .result-score {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 20px;
  }

  .result-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--mid);
  }

  /* Result breakdown */
  .breakdown {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
  }

  .breakdown h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--charcoal);
  }

  .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
  }

  .breakdown-item:last-child { border-bottom: none; }
  .breakdown-name { color: var(--mid); }
  .breakdown-bar-wrap { flex: 1; margin: 0 16px; height: 4px; background: var(--border); border-radius: 2px; }
  .breakdown-bar { height: 100%; border-radius: 2px; background: var(--accent); transition: width 1s cubic-bezier(0.4,0,0.2,1); }
  .breakdown-score { color: var(--charcoal); font-weight: 500; min-width: 32px; text-align: right; }

  /* What is section */
  .explainer {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
  }

  .explainer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--charcoal);
  }

  .explainer p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 12px;
  }

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

  /* Disclaimer */
  .disclaimer {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 12.5px;
    color: var(--soft);
    line-height: 1.65;
    text-align: center;
    margin-bottom: 28px;
  }

  .restart-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 28px;
    background: transparent;
    border: 1.5px solid var(--charcoal);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .restart-btn:hover { background: var(--charcoal); color: var(--cream); }

  /* Divider */
  .section-divider {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soft);
    margin: 36px 0 28px;
    position: relative;
  }

  .section-divider::before, .section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: var(--border);
  }

  .section-divider::before { left: 0; }
  .section-divider::after { right: 0; }

  /* Animations */
  @keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @media (max-width: 480px) {
    .container { padding: 32px 16px 60px; }
    .result-card { padding: 32px 24px; }
    .options { grid-template-columns: 1fr 1fr; }
  }/* End custom CSS */