:root {
      --night: #1a120d;
      --coffee: #241811;
      --walnut: #3a2619;
      --cedar: #553923;
      --bark: #725033;
      --copper: #b97736;
      --copper-light: #d69a56;
      --ember: #f0b768;
      --paper: #f3eadc;
      --paper-deep: #e8d8bf;
      --cream: #fff7ea;
      --ink: #25180f;
      --muted: #77604c;
      --soft: #b99f82;
      --line: rgba(255, 236, 204, 0.18);
      --line-dark: rgba(58, 38, 25, 0.18);
      --shadow: 0 16px 42px rgba(0,0,0,.28);
      --shadow-soft: 0 7px 24px rgba(42, 25, 15, .14);
      --radius: 10px;
      --max: 1120px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--paper);
      background:
        radial-gradient(circle at top left, rgba(185,119,54,.22), transparent 32rem),
        linear-gradient(180deg, #1a120d 0%, #241811 40%, #1a120d 100%);
      line-height: 1.55;
      font-size: 16px;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .08;
      background-image:
        linear-gradient(45deg, rgba(255,255,255,.6) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,.45) 1px, transparent 1px);
      background-size: 38px 38px, 53px 53px;
      mix-blend-mode: screen;
      z-index: 0;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    p { color: inherit; }
    h1, h2, h3, h4 { font-family: 'Libre Baskerville', Georgia, serif; line-height: 1.16; }

    .site-shell { position: relative; z-index: 1; }

    .top-strip {
      background: #120c08;
      border-bottom: 1px solid var(--line);
      color: var(--soft);
      font-size: .78rem;
    }
    .top-strip-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 5px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-align: center;
    }
    .top-strip strong { color: var(--ember); }
    .service-alert {
      background: linear-gradient(180deg, rgba(58,38,25,.96), rgba(36,24,17,.98));
      border-bottom: 1px solid rgba(240,183,104,.24);
      color: var(--paper-deep);
      font-size: .91rem;
    }
    .service-alert-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 10px 20px;
      text-align: center;
    }
    .service-alert strong { color: var(--ember); }

    .about-profile {
      display: grid;
      grid-template-columns: minmax(240px, 340px) 1fr;
      gap: 24px;
      align-items: start;
    }
    .about-photo {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: 0 14px 34px rgba(0,0,0,.22);
      background: rgba(255,247,234,.06);
    }
    .about-photo img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: 42% 38%;
    }
    .about-copy p { color: var(--paper-deep); margin-bottom: 13px; }
    .about-copy p:last-child { margin-bottom: 0; }

    .top-links { display: none; }

    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #17100b;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 6px 24px rgba(0,0,0,.25);
    }
    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      min-height: 70px;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
      min-width: 0;
    }
    .brand img {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 2px solid rgba(240,183,104,.45);
      box-shadow: 0 0 0 4px rgba(185,119,54,.12);
      object-fit: cover;
    }
    .brand-name {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-size: 1.06rem;
      letter-spacing: .01em;
      color: var(--cream);
    }
    .brand-tag {
      display: none;
    }
    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-links a {
      color: var(--paper-deep);
      padding: 9px 11px;
      border-radius: 7px;
      font-size: .93rem;
      font-weight: 700;
    }
    .nav-links a:hover { background: rgba(255,255,255,.07); color: var(--ember); }
    .nav-book {
      margin-left: 4px;
      background: linear-gradient(180deg, var(--copper-light), var(--copper));
      color: #1c1109 !important;
      border: 1px solid rgba(255,255,255,.22);
      box-shadow: 0 5px 16px rgba(185,119,54,.26);
    }
    .nav-book:hover { background: var(--ember) !important; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 9px;
      background: rgba(255,247,234,.07);
      border: 1px solid rgba(255,247,234,.16);
      border-radius: 9px;
      box-shadow: none;
      appearance: none;
      -webkit-appearance: none;
    }
    .hamburger span { width: 24px; height: 2px; background: var(--ember); border-radius: 2px; }
    .hamburger:hover { background: rgba(255,247,234,.11); border-color: rgba(240,183,104,.36); }
    .mobile-menu { display: none; background: var(--coffee); border-top: 1px solid var(--line); padding: 12px 20px 20px; }
    .mobile-menu.open { display: grid; gap: 6px; }
    .mobile-menu a { padding: 11px 12px; border-radius: 8px; font-weight: 800; color: var(--paper-deep); }
    .mobile-menu a:hover { background: rgba(255,255,255,.07); }
    .mobile-menu .nav-book { text-align: center; color: #1c1109 !important; }

    .page { display: block; }

    .hero {
      position: relative;
      min-height: 620px;
      display: grid;
      align-items: center;
      padding: 58px 20px;
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(26,18,13,.94) 0%, rgba(26,18,13,.86) 48%, rgba(26,18,13,.47) 100%),
        url('logo.png');
      background-size: cover;
      background-position: center right;
      opacity: .78;
      z-index: -2;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 180px;
      background: linear-gradient(transparent, var(--coffee));
      z-index: -1;
    }
    .hero-inner {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 680px) 1fr;
      gap: 40px;
      align-items: center;
    }
    .eyebrow {
      color: var(--ember);
      font-size: .83rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .15em;
      margin-bottom: 14px;
    }
    .hero h1 {
      font-size: clamp(2.25rem, 5vw, 4.55rem);
      max-width: 720px;
      color: var(--cream);
      text-shadow: 0 3px 14px rgba(0,0,0,.35);
      letter-spacing: -.035em;
    }
    .hero-lede {
      margin-top: 18px;
      font-size: clamp(1.05rem, 2vw, 1.25rem);
      color: var(--paper-deep);
      max-width: 610px;
    }
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin: 24px 0 30px;
    }
    .trust-pill {
      border: 1px solid rgba(240,183,104,.28);
      background: rgba(255,247,234,.08);
      color: var(--paper);
      padding: 8px 11px;
      border-radius: 999px;
      font-weight: 800;
      font-size: .88rem;
    }
    .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 20px;
      border-radius: 8px;
      font-weight: 900;
      font-size: 1rem;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform .15s ease, background .15s ease, color .15s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: rgba(240,183,104,.92); color: #1d120a; border-color: rgba(255,255,255,.20); box-shadow: 0 6px 18px rgba(185,119,54,.18); }
    .btn-primary:hover { background: #ffd08a; }
    .btn-secondary { background: var(--ember); color: #1d120a; border-color: rgba(255,255,255,.24); box-shadow: 0 8px 24px rgba(185,119,54,.24); }
    .btn-secondary:hover { background: #ffd08a; }
    .btn-outline { background: rgba(255,255,255,.045); color: var(--cream); border-color: rgba(255,255,255,.24); }
    .btn-outline:hover { background: rgba(255,255,255,.10); }
    .btn-small { padding: 10px 15px; font-size: .92rem; }
    .hero-note {
      margin-top: 18px;
      color: var(--soft);
      font-size: .92rem;
      max-width: 520px;
    }
    .hero-card {
      align-self: end;
      background: rgba(30,20,13,.86);
      color: var(--paper);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid rgba(240,183,104,.26);
      padding: 22px;
      max-width: 360px;
      justify-self: end;
      backdrop-filter: blur(4px);
    }
    .hero-card h3 { color: var(--cream); font-size: 1.08rem; margin-bottom: 10px; }
    .hero-card ul { list-style: none; display: grid; gap: 8px; }
    .hero-card li { color: var(--paper-deep); font-weight: 700; padding-left: 22px; position: relative; }
    .hero-card li::before { content: "✓"; position: absolute; left: 0; color: var(--copper); font-weight: 900; }

    section { padding: 58px 20px; }
    .section-inner { max-width: var(--max); margin: 0 auto; }
    .section-head { margin-bottom: 30px; max-width: 760px; }
    .section-label {
      font-size: .8rem;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--copper-light);
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(1.65rem, 3vw, 2.5rem);
      color: var(--cream);
      letter-spacing: -.018em;
    }
    .section-subtitle {
      margin-top: 12px;
      color: var(--paper-deep);
      max-width: 680px;
      font-size: 1.04rem;
    }
    .paper-section {
      background:
        radial-gradient(circle at top right, rgba(185,119,54,.12), transparent 28rem),
        linear-gradient(180deg, #21160f 0%, #1a120d 100%);
      color: var(--paper);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .paper-section .section-title { color: var(--cream); }
    .paper-section .section-subtitle { color: var(--paper-deep); }
    .paper-section .section-label { color: var(--ember); }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 44px;
      align-items: center;
    }
    .logo-frame {
      background: #1d130d;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }
    .logo-frame img { border-radius: 10px; }
    .copy-card {
      background: rgba(255,247,234,.055);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 28px;
    }
    .copy-card p { color: var(--paper-deep); margin-bottom: 13px; }
    .copy-card p:last-child { margin-bottom: 0; }
    .paper-section .copy-card { background: rgba(255,247,234,.065); border-color: var(--line); }
    .paper-section .copy-card p { color: var(--paper-deep); }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 22px;
    }
    .stat {
      background: rgba(255,247,234,.08);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 16px;
    }
    .stat-num { font-family: 'Libre Baskerville', Georgia, serif; color: var(--ember); font-size: 1.8rem; font-weight: 700; }
    .stat-label { color: var(--soft); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; }
    .paper-section .stat { background: rgba(255,247,234,.075); border-color: var(--line); }
    .paper-section .stat-label { color: var(--soft); }

    .feature-grid,
    .service-grid,
    .reviews-grid,
    .pricing-grid,
    .steps-grid {
      display: grid;
      gap: 16px;
    }
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }

    .card {
      border-radius: 12px;
      padding: 22px;
      border: 1px solid var(--line);
      background: rgba(255,247,234,.075);
      box-shadow: 0 8px 26px rgba(0,0,0,.12);
    }
    .paper-section .card {
      background: rgba(255,247,234,.07);
      border-color: var(--line);
      box-shadow: 0 8px 26px rgba(0,0,0,.14);
    }
    .card h3 { color: var(--cream); font-size: 1.08rem; margin-bottom: 9px; }
    .paper-section .card h3 { color: var(--cream); }
    .card p { color: var(--paper-deep); font-size: .96rem; }
    .paper-section .card p { color: var(--paper-deep); }
    .icon { font-size: 1.55rem; margin-bottom: 10px; }
    .card.featured {
      background: linear-gradient(145deg, var(--walnut), var(--cedar));
      border-color: rgba(240,183,104,.32);
      color: var(--paper);
      grid-column: span 2;
    }
    .paper-section .card.featured h3,
    .card.featured h3 { color: var(--cream); }
    .paper-section .card.featured p,
    .card.featured p { color: var(--paper-deep); }
    .badge {
      display: inline-block;
      background: rgba(240,183,104,.18);
      color: var(--ember);
      border: 1px solid rgba(240,183,104,.28);
      border-radius: 999px;
      padding: 5px 10px;
      font-size: .73rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-weight: 900;
      margin-bottom: 11px;
    }

    .quote-panel {
      background: #17100b;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 34px 20px;
    }
    .quote-panel-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 26px;
      align-items: center;
    }
    .quote-text {
      font-family: 'Libre Baskerville', Georgia, serif;
      color: var(--cream);
      font-size: clamp(1.35rem, 2.3vw, 2rem);
      line-height: 1.28;
    }
    .quote-aside {
      color: var(--soft);
      border-left: 3px solid var(--copper);
      padding-left: 18px;
      font-weight: 600;
    }

    .price-num {
      font-family: 'Libre Baskerville', Georgia, serif;
      color: var(--copper);
      font-size: 2.3rem;
      font-weight: 700;
      margin: 8px 0 3px;
    }
    .price-sub { color: var(--paper-deep); font-weight: 800; font-size: .88rem; margin-bottom: 12px; }
    .pricing-note {
      margin-top: 18px;
      background: linear-gradient(180deg, rgba(58,38,25,.92), rgba(36,24,17,.96));
      border: 1px solid var(--line);
      border-left: 5px solid var(--copper);
      border-radius: 8px;
      padding: 20px 22px;
    }
    .pricing-note h4 { color: var(--cream); margin-bottom: 10px; }
    .pricing-note ul { list-style: none; display: grid; gap: 7px; }
    .pricing-note li { position: relative; padding-left: 22px; color: var(--paper-deep); }
    .pricing-note li::before { content: "•"; position: absolute; left: 5px; color: var(--copper); font-weight: 900; }

    .review-card .stars { color: var(--copper); letter-spacing: 2px; margin-bottom: 9px; font-weight: 900; }
    .review-text { font-style: italic; }
    .reviewer { margin-top: 14px; font-weight: 900; color: var(--cream); }
    .reviewer span { display: block; color: var(--soft); font-size: .84rem; font-weight: 700; }



    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .project-card {
      overflow: hidden;
      padding: 0;
      display: flex;
      flex-direction: column;
    }
    .project-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-bottom: 1px solid var(--line);
      background: rgba(255,247,234,.06);
    }
    .project-card.wide {
      grid-column: span 2;
    }
    .project-card.wide img { aspect-ratio: 16 / 9; }
    .project-card.subtle { opacity: .92; }
    .project-case {
      grid-column: 1 / -1;
      padding: 0;
      overflow: hidden;
    }
    .case-images {
      display: grid;
      grid-template-columns: .82fr 1.1fr 1.1fr;
      gap: 1px;
      background: var(--line);
      border-bottom: 1px solid var(--line);
    }
    .case-images img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      background: rgba(255,247,234,.06);
    }
    .case-images .paper-shot { object-position: center; }
    .case-images .loft-bed-complete { object-position: 30% center; }
    .case-images.repair-sequence {
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
    }
    .case-images.repair-sequence img {
      height: 290px;
      object-position: center;
    }
    .repair-step {
      position: relative;
      min-width: 0;
      overflow: hidden;
      background: rgba(255,247,234,.04);
    }
    .repair-step figcaption {
      position: absolute;
      left: 10px;
      bottom: 10px;
      margin: 0;
      padding: 6px 9px;
      border-radius: 6px;
      background: rgba(18,12,8,.82);
      color: var(--cream);
      font-size: .73rem;
      line-height: 1.2;
      font-weight: 800;
      box-shadow: 0 2px 8px rgba(0,0,0,.18);
      backdrop-filter: blur(3px);
    }
    .repair-step figcaption strong { color: var(--cream); }
    @media (max-width:760px) {
      .case-images.repair-sequence { grid-template-columns: repeat(2, 1fr); }
      .case-images.repair-sequence img { height: 260px; }
    }
    .case-body { padding: 20px; }
    .case-body h3 { color: var(--cream); font-size: 1.18rem; margin-bottom: 8px; }
    .case-body p { color: var(--paper-deep); font-size: .96rem; max-width: 880px; }
    .project-body { padding: 18px; }
    .project-body h3 { color: var(--cream); font-size: 1rem; margin-bottom: 7px; }
    .project-body p { color: var(--paper-deep); font-size: .93rem; }
    .project-kicker {
      color: var(--ember);
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .faq-list { display: grid; gap: 10px; }
    .faq-item {
      background: linear-gradient(180deg, rgba(58,38,25,.96), rgba(36,24,17,.98));
      color: var(--paper);
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 22px rgba(0,0,0,.18);
    }
    .faq-q {
      padding: 17px 20px;
      font-weight: 900;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      color: var(--paper);
    }
    .faq-q:hover { background: rgba(255,247,234,.055); }
    .faq-a {
      color: var(--paper-deep);
      border-top: 0 solid transparent;
    }
    .faq-item[open] .faq-a {
      padding: 0 20px 18px;
    }
    .faq-arrow { color: var(--ember); }

    .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }
    .contact-method { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; margin-bottom: 16px; }
    .contact-icon { width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,247,234,.08); border: 1px solid var(--line); }
    .contact-label { text-transform: uppercase; letter-spacing: .09em; font-size: .75rem; color: var(--soft); font-weight: 900; }
    .contact-value { color: var(--copper); font-weight: 900; }
    .contact-value a { color: var(--copper); }

    .tally-card {
      background: linear-gradient(180deg, rgba(58,38,25,.96), rgba(32,21,14,.985));
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 18px;
      box-shadow: 0 14px 34px rgba(0,0,0,.28);
      overflow: hidden;
    }
    .tally-card h3 { color: var(--cream); margin-bottom: 8px; }
    .tally-intro { color: var(--paper-deep); margin-bottom: 14px; font-size: .95rem; }
    .tally-frame {
      width: 100%;
      min-height: 760px;
      border: 0;
      border-radius: 10px;
      background: transparent;
    }
    .tally-note { color: rgba(255,247,234,.62); margin-top: 10px; font-size: .82rem; line-height: 1.35; }
    footer { background: #100a06; border-top: 1px solid var(--line); padding: 40px 20px 28px; color: var(--soft); }
    .footer-inner { max-width: var(--max); margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
    .footer-brand { color: var(--cream); font-family: 'Libre Baskerville', Georgia, serif; font-weight: 700; margin-bottom: 9px; }
    .footer-col h4 { color: var(--cream); font-size: .96rem; margin-bottom: 10px; }
    .footer-col a { display: block; color: var(--paper-deep); margin-bottom: 7px; font-weight: 700; }
    .footer-col a:hover { color: var(--ember); }
    .footer-bottom { border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }
    .footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
    .disclaimer { margin-top: 14px; font-size: .78rem; color: rgba(255,247,234,.43); }

    @media (max-width: 900px) {
      .about-profile { grid-template-columns: 1fr; }
      .about-photo img { height: 460px; object-position: 45% 32%; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero { min-height: auto; }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-card { justify-self: start; max-width: 100%; }
      .split, .quote-panel-inner, .contact-grid { grid-template-columns: 1fr; }
      .feature-grid, .service-grid, .reviews-grid, .pricing-grid, .steps-grid, .portfolio-grid { grid-template-columns: 1fr 1fr; }
      .case-images { grid-template-columns: 1fr 1fr; }
      .case-images .paper-shot { display: none; }
      .footer-top { grid-template-columns: 1fr; }
    }
    @media (max-width: 620px) {
      .about-photo img { height: 420px; object-position: 45% 30%; }
      .top-strip-inner { align-items: center; padding: 5px 16px; }
      .top-strip { font-size: .74rem; }
      .top-links { display: none; }
      .top-strip-inner span { white-space: normal; line-height: 1.25; }
      .brand { min-width: 0; }
      .brand img { width: 50px; height: 50px; }
      .brand-name { font-size: .98rem; }
      .brand-tag { display: none; }
      .hero { padding: 44px 18px; }
      section { padding: 44px 18px; }
      .feature-grid, .service-grid, .reviews-grid, .pricing-grid, .steps-grid, .portfolio-grid, .stats { grid-template-columns: 1fr; }
      .card.featured, .project-card.wide { grid-column: auto; }
      .case-images.repair-sequence { grid-template-columns: 1fr 1fr; }
      .case-images.repair-sequence img { height: 250px; }

      .hero-cta .btn { width: 100%; }
      .footer-bottom { flex-direction: column; }
    }
  
    .nav-links a[aria-current="page"], .mobile-menu a[aria-current="page"] { color: var(--ember); background: rgba(255,255,255,.07); }
    .nav-links a.nav-book[aria-current="page"], .mobile-menu a.nav-book[aria-current="page"] { color: #1c1109 !important; background: linear-gradient(180deg, var(--copper-light), var(--copper)); }
    .brand:hover .brand-name { color: var(--ember); }

    .skip-link {
      position: fixed;
      left: 12px;
      top: 12px;
      transform: translateY(-160%);
      opacity: 0;
      pointer-events: none;
      background: var(--ember);
      color: #1d120a;
      padding: 10px 14px;
      border-radius: 8px;
      font-weight: 900;
      z-index: 9999;
      box-shadow: 0 8px 22px rgba(0,0,0,.28);
      transition: transform .12s ease, opacity .12s ease;
    }
    .skip-link:focus, .skip-link:focus-visible {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
      outline: 2px solid var(--cream);
      outline-offset: 3px;
    }
    .discount-highlight {
      margin-top: 20px;
      background: linear-gradient(180deg, rgba(58,38,25,.92), rgba(36,24,17,.96));
      border: 1px solid var(--line);
      border-left: 5px solid var(--copper);
      border-radius: 10px;
      padding: 22px 24px;
      box-shadow: 0 10px 28px rgba(0,0,0,.14);
    }
    .discount-highlight h2 {
      margin: 0 0 18px;
      color: var(--cream);
    }
    .save-options {
      display: grid;
      grid-template-columns: .85fr 1.35fr;
      gap: 26px;
      align-items: start;
    }
    .save-option { padding: 0; }
    .save-option + .save-option {
      border-left: 1px solid rgba(240,183,104,.18);
      padding-left: 26px;
    }
    .save-option h3 { margin: 0 0 8px; color: var(--cream); }
    .save-option p { margin: 7px 0 0; color: var(--paper-deep); }
    .flex-steps {
      margin: 9px 0 0 20px;
      color: var(--paper-deep);
    }
    .flex-steps li { margin: 5px 0; padding-left: 3px; }
    .save-stack {
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(240,183,104,.16);
      color: var(--paper-deep);
    }
    @media (max-width:620px) {
      .discount-highlight { padding: 20px 18px; }
      .save-options { grid-template-columns: 1fr; gap: 18px; }
      .save-option + .save-option {
        border-left: 0;
        border-top: 1px solid rgba(240,183,104,.18);
        padding-left: 0;
        padding-top: 18px;
      }
    }

    .card-owl {
      border-color: rgba(240,183,104,.30);
      background: linear-gradient(180deg, rgba(58,38,25,.78), rgba(32,21,14,.92));
    }
    .owl-badge {
      display: inline-block;
      background: rgba(240,183,104,.12);
      color: var(--ember);
      border: 1px solid rgba(240,183,104,.28);
      font-size: .75rem;
      font-weight: 900;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
    }
/* Native disclosures preserve keyboard and screen-reader behavior. */
.faq-q { list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:focus-visible { outline: 2px solid var(--ember); outline-offset: -4px; }
/* Two destinations within the existing button outline. */
