/* Shenron Timber — site styles. Shared by index.html (English)
   and si/index.html (Sinhala). Article pages use assets/article.css. */

  /* ---------- Palette: wet-zone tropics ---------- */
  :root {
    --forest-deep:  #12291c;   /* canopy shadow */
    --forest:       #1d4230;   /* rain-forest green */
    --leaf:         #4a7c59;   /* mid leaf */
    --leaf-soft:    #86a789;   /* misted leaf */
    --earth:        #5b3f26;   /* laterite / earth brown */
    --timber:       #b0793f;   /* fresh-sawn timber */
    --timber-light: #d9b98c;   /* planed plank */
    --cream:        #f5f0e4;   /* paper / sky haze */
    --cream-warm:   #efe6d2;
    --ink:          #21281f;
    --gold:         #c99a3c;   /* jak-wood gold accent */
    --error:        #b3402e;
    --ok:           #2e7d4f;
    --radius: 10px;
    --shadow: 0 4px 18px rgba(18, 41, 28, 0.18);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, .display {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.2;
    font-weight: 700;
  }

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

  .wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

  section { padding: 64px 0; }
  @media (min-width: 760px) { section { padding: 88px 0; } }

  .eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--leaf);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .script-accent {
    font-size: 0.95rem;
    color: var(--leaf-soft);
    letter-spacing: 0.04em;
    margin-top: 6px;
  }
  .section-title { font-size: clamp(1.6rem, 4vw, 2.3rem); color: var(--forest-deep); margin-bottom: 14px; }
  .section-lead  { max-width: 640px; color: #4c554a; margin-bottom: 32px; }

  /* ---------- Header / nav ---------- */
  header.site {
    position: sticky; top: 0; z-index: 50;
    background: rgba(18, 41, 28, 0.97);
    color: var(--cream);
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  }
  .nav-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1100px; margin: 0 auto; }
  .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--cream); }
  .brand-mark { width: 42px; height: 42px; flex: none; }
  .brand-name {
    font-family: Georgia, serif; font-size: 1.05rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.05;
  }
  .brand-name small {
    display: block; font-family: inherit; font-size: 0.58rem; font-weight: 400;
    letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold);
  }

  nav.main { display: none; gap: 4px; align-items: center; }
  nav.main a {
    color: var(--cream); text-decoration: none; font-size: 0.85rem;
    padding: 10px 12px; border-radius: 6px;
  }
  nav.main a:hover { background: rgba(245,240,228,0.12); }
  nav.main a.cta {
    background: var(--gold); color: var(--forest-deep); font-weight: 700; margin-left: 8px;
  }
  nav.main a.cta:hover { background: #dbb057; }

  #nav-toggle { display: none; }
  .hamburger {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 12px; margin: -12px;
  }
  .hamburger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .2s; }
  @media (min-width: 880px) {
    nav.main { display: flex; }
    .hamburger { display: none; }
    .mobile-menu { display: none !important; }
  }
  .mobile-menu { display: none; background: var(--forest-deep); border-top: 1px solid rgba(245,240,228,0.15); }
  #nav-toggle:checked ~ .mobile-menu { display: block; }
  .mobile-menu a {
    display: block; padding: 15px 24px; color: var(--cream); text-decoration: none;
    border-bottom: 1px solid rgba(245,240,228,0.08); font-size: 0.95rem;
  }
  .mobile-menu a.cta { background: var(--gold); color: var(--forest-deep); font-weight: 700; }

  /* ---------- Hero ---------- */
  .hero {
    background:
      linear-gradient(180deg, rgba(18,41,28,0.92) 0%, rgba(29,66,48,0.88) 55%, rgba(18,41,28,0.96) 100%),
      var(--forest);
    color: var(--cream);
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .hero-inner { padding: 72px 20px 0; max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
  @media (min-width: 760px) { .hero-inner { padding-top: 104px; } }
  .hero h1 { font-size: clamp(1.75rem, 5vw, 2.9rem); margin: 14px 0 10px; max-width: 900px; margin-left: auto; margin-right: auto; }
  .brand-tagline {
    font-family: Georgia, serif; font-style: italic; color: var(--leaf-soft);
    font-size: clamp(0.95rem, 2.4vw, 1.2rem); margin-bottom: 4px;
  }
  .hero .tagline-scripts { font-size: clamp(0.95rem, 2.5vw, 1.15rem); color: var(--timber-light); margin-bottom: 18px; }
  .hero p.sub { max-width: 620px; margin: 0 auto 30px; color: #d8dfd2; font-size: clamp(0.95rem, 2.5vw, 1.1rem); }
  .hero-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 30px; }
  .hero-badges span {
    font-size: 0.75rem; letter-spacing: 0.06em; padding: 7px 14px; border-radius: 100px;
    border: 1px solid rgba(245,240,228,0.35); color: var(--cream);
  }
  .btn {
    display: inline-block; text-decoration: none; font-weight: 700; border-radius: var(--radius);
    padding: 16px 30px; font-size: 1rem; transition: transform .12s, box-shadow .12s;
    text-align: center; min-height: 48px; cursor: pointer; border: none;
  }
  .btn:active { transform: translateY(1px); }
  .btn-gold { background: var(--gold); color: var(--forest-deep); box-shadow: var(--shadow); }
  .btn-gold:hover { background: #dbb057; }
  .btn-outline { border: 2px solid var(--cream); color: var(--cream); background: transparent; }
  .btn-outline:hover { background: rgba(245,240,228,0.12); }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 26px; }
  .ridgeline { display: block; width: 100%; height: auto; position: relative; z-index: 1; margin-top: 20px; }

  /* ---------- About / estates ---------- */
  .about-grid { display: grid; gap: 36px; align-items: start; }
  @media (min-width: 880px) { .about-grid { grid-template-columns: 1.1fr 0.9fr; } }
  .estate-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
  .estate-chips span {
    background: var(--cream-warm); border: 1px solid var(--timber-light);
    padding: 9px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: var(--earth);
  }
  .provenance {
    background: var(--forest-deep); color: var(--cream); border-radius: var(--radius);
    padding: 26px; box-shadow: var(--shadow);
  }
  .provenance h3 { color: var(--timber-light); font-size: 1.15rem; margin-bottom: 10px; }
  .provenance p { font-size: 0.92rem; color: #cfd8ca; margin-bottom: 12px; }
  .provenance ul { list-style: none; }
  .provenance li { padding: 8px 0 8px 26px; position: relative; font-size: 0.92rem; border-top: 1px solid rgba(245,240,228,0.12); }
  .provenance li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

  /* ---------- Products ---------- */
  .products { background: var(--cream-warm); }
  .product-cards { display: grid; gap: 26px; }
  @media (min-width: 880px) { .product-cards { grid-template-columns: 1fr 1fr; } }
  .product-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; display: flex; flex-direction: column; }
  .product-card .band { padding: 22px 24px; color: var(--cream); }
  .product-card.biomass .band { background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%); }
  .product-card.sawn   .band { background: linear-gradient(135deg, var(--earth) 0%, var(--timber) 100%); }
  .product-card .band .kicker { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
  .product-card .band h3 { font-size: 1.45rem; margin-top: 4px; }
  .product-card .band .script-accent { color: rgba(245,240,228,0.75); }
  .product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
  .species { border: 1px solid #e4dcc9; border-radius: 8px; padding: 14px 16px; }
  .species h4 { font-size: 1rem; color: var(--forest-deep); }
  .species h4 em { font-family: Georgia, serif; }
  .species .figures { font-size: 0.85rem; color: var(--earth); font-weight: 600; }
  .species p { font-size: 0.88rem; color: #5a6156; margin-top: 4px; }
  .product-meta { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
  .product-meta span { font-size: 0.78rem; background: var(--cream); border-radius: 6px; padding: 6px 10px; color: var(--forest); font-weight: 600; }
  .product-body .btn { align-self: flex-start; padding: 12px 22px; font-size: 0.9rem; }
  .guide-strip {
    margin-top: 26px; background: #fff; border: 1px solid #e4dcc9; border-left: 4px solid var(--gold);
    border-radius: var(--radius); padding: 20px 24px; display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between; gap: 14px; text-decoration: none; color: inherit;
  }
  .guide-strip:hover { border-color: var(--leaf); border-left-color: var(--gold); }
  .guide-strip .gs-text { flex: 1 1 320px; }
  .guide-strip .eyebrow { margin-bottom: 4px; }
  .guide-strip strong { display: block; font-family: Georgia, serif; font-size: 1.05rem; color: var(--forest-deep); margin-bottom: 4px; }
  .guide-strip span.sub { font-size: 0.88rem; color: #5a6156; }
  .guide-strip .gs-go { font-weight: 700; color: var(--forest); font-size: 0.9rem; white-space: nowrap; }
  .btn-forest { background: var(--forest); color: var(--cream); }
  .btn-forest:hover { background: var(--leaf); }

  /* ---------- Stats band ---------- */
  .stats { background: var(--forest-deep); color: var(--cream); position: relative; overflow: hidden; }
  .stats .wrap { position: relative; z-index: 2; }
  .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 16px; text-align: center; }
  @media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
  .stat .num { font-family: Georgia, serif; font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 700; color: var(--gold); }
  .stat .num sup { font-size: 0.5em; }
  .stat .label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: #b9c4b3; margin-top: 4px; }

  /* ---------- Gallery ---------- */
  .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  @media (min-width: 700px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
  @media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
  .shot {
    position: relative; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden;
    background:
      repeating-linear-gradient(45deg, rgba(91,63,38,0.10) 0 12px, rgba(91,63,38,0.04) 12px 24px),
      linear-gradient(160deg, var(--cream-warm), var(--timber-light));
    border: 1px dashed var(--timber);
  }
  .shot.wide { grid-column: span 2; aspect-ratio: 8 / 3.05; }
  .shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .shot .ph-label {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 6px; text-align: center; padding: 12px; color: var(--earth);
  }
  .shot .ph-label svg { width: 30px; height: 30px; opacity: 0.65; }
  .shot .ph-label figcaption { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; line-height: 1.35; }

  /* ---------- Logistics ---------- */
  .logistics { background: var(--cream-warm); }
  .logi-grid { display: grid; gap: 36px; align-items: center; }
  @media (min-width: 880px) { .logi-grid { grid-template-columns: 1fr 1fr; } }
  .corridor-map { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
  .logi-steps { list-style: none; counter-reset: step; }
  .logi-steps li { position: relative; padding: 0 0 22px 54px; counter-increment: step; }
  .logi-steps li::before {
    content: counter(step); position: absolute; left: 0; top: 0;
    width: 38px; height: 38px; border-radius: 50%; background: var(--forest); color: var(--cream);
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: Georgia, serif;
  }
  .logi-steps li:not(:last-child)::after {
    content: ""; position: absolute; left: 18.5px; top: 42px; bottom: 4px; width: 1.5px; background: var(--leaf-soft);
  }
  .logi-steps h4 { font-size: 1rem; color: var(--forest-deep); }
  .logi-steps p { font-size: 0.9rem; color: #5a6156; }
  .terms-note {
    margin-top: 18px; background: #fff; border-left: 4px solid var(--gold); border-radius: 6px;
    padding: 14px 16px; font-size: 0.88rem; color: var(--earth);
  }
  .export-card {
    background: var(--forest-deep); color: var(--cream); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow);
  }
  .export-card .kicker {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700;
  }
  .export-card h3 { font-size: 1.25rem; margin: 6px 0 10px; }
  .export-card p { font-size: 0.9rem; color: #cfd8ca; margin-bottom: 16px; }
  .export-card .corridor-map { box-shadow: none; }
  .export-card ul { list-style: none; margin-top: 14px; }
  .export-card li { padding: 7px 0 7px 24px; position: relative; font-size: 0.88rem; color: #cfd8ca; }
  .export-card li::before { content: "→"; position: absolute; left: 0; color: var(--gold); }

  /* ---------- RFQ form ---------- */
  .rfq { background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 100%); color: var(--cream); }
  .rfq .section-title { color: var(--cream); }
  .rfq .eyebrow { color: var(--gold); }
  .rfq .section-lead { color: #cfd8ca; }
  .rfq-card {
    background: var(--cream); color: var(--ink); border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    padding: 26px 20px; max-width: 760px; margin: 0 auto;
  }
  @media (min-width: 700px) { .rfq-card { padding: 40px 44px; } }
  .form-grid { display: grid; gap: 18px; }
  @media (min-width: 700px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
    .form-grid .full { grid-column: 1 / -1; }
  }
  .field label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--forest-deep); margin-bottom: 6px; }
  .field label .req { color: var(--error); }
  .field .hint { font-weight: 400; color: #7a8175; font-size: 0.78rem; }
  .field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=number],
  .field select, .field textarea {
    width: 100%; padding: 13px 14px; font-size: 1rem; font-family: inherit;
    border: 1.5px solid #cfc7b2; border-radius: 8px; background: #fff; color: var(--ink);
    min-height: 48px;
  }
  .field textarea { min-height: 110px; resize: vertical; }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: 2px solid var(--leaf); outline-offset: 1px; border-color: var(--leaf);
  }
  .field.invalid input, .field.invalid select, .field.invalid .check-group, .field.invalid .seg {
    border-color: var(--error);
  }
  .err-msg { display: none; color: var(--error); font-size: 0.8rem; margin-top: 5px; font-weight: 600; }
  .field.invalid .err-msg { display: block; }

  .check-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border: 1.5px solid transparent; border-radius: 8px; }
  .check-group label {
    display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.88rem; color: var(--ink);
    background: #fff; border: 1.5px solid #cfc7b2; border-radius: 8px; padding: 12px; cursor: pointer; min-height: 48px; margin: 0;
  }
  .check-group input { width: 18px; height: 18px; accent-color: var(--forest); flex: none; }
  .check-group label:has(input:checked) { border-color: var(--leaf); background: #eef4ec; }

  .vol-row { display: flex; gap: 10px; }
  .vol-row input { flex: 1; }
  .seg { display: flex; border: 1.5px solid #cfc7b2; border-radius: 8px; overflow: hidden; flex: none; }
  .seg button {
    border: none; background: #fff; padding: 0 14px; font-size: 0.85rem; font-weight: 700; color: #7a8175;
    cursor: pointer; min-height: 48px; font-family: inherit;
  }
  .seg button + button { border-left: 1.5px solid #cfc7b2; }
  .seg button.active { background: var(--forest); color: var(--cream); }

  .radio-row { display: grid; gap: 8px; }
  @media (min-width: 700px) { .radio-row { grid-template-columns: repeat(3, 1fr); } }
  .radio-row label {
    display: flex; align-items: center; gap: 9px; background: #fff; border: 1.5px solid #cfc7b2;
    border-radius: 8px; padding: 12px; font-weight: 600; font-size: 0.88rem; cursor: pointer; min-height: 48px; margin: 0;
  }
  .radio-row input { width: 18px; height: 18px; accent-color: var(--forest); flex: none; }
  .radio-row label:has(input:checked) { border-color: var(--leaf); background: #eef4ec; }

  .rfq-submit { width: 100%; margin-top: 8px; font-size: 1.05rem; }
  .rfq-submit[disabled] { opacity: 0.65; cursor: progress; }
  .send-note { font-size: 0.8rem; color: #7a8175; text-align: center; margin-top: 10px; }
  .send-note.err { color: var(--error); font-weight: 600; }
  /* honeypot — off-screen, never shown to people */
  .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

  /* Confirmation state */
  .rfq-confirm { display: none; text-align: center; }
  .rfq-card.sent-auto form, .rfq-card.sent-manual form { display: none; }
  .rfq-card.sent-auto .rfq-confirm, .rfq-card.sent-manual .rfq-confirm { display: block; }
  .rfq-confirm .state-auto, .rfq-confirm .state-manual { display: none; }
  .rfq-card.sent-auto .rfq-confirm .state-auto { display: block; }
  .rfq-card.sent-manual .rfq-confirm .state-manual { display: block; }
  .rfq-card.sent-auto .send-choices { grid-template-columns: 1fr; max-width: 300px; }
  .rfq-card.sent-auto #send-email { display: none; }
  .rfq-confirm .tick {
    width: 64px; height: 64px; border-radius: 50%; background: var(--ok); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 16px;
  }
  .rfq-confirm h3 { color: var(--forest-deep); font-size: 1.4rem; margin-bottom: 8px; }
  .rfq-confirm p { color: #5a6156; font-size: 0.95rem; max-width: 460px; margin: 0 auto 22px; }
  .send-choices { display: grid; gap: 12px; max-width: 420px; margin: 0 auto 18px; }
  @media (min-width: 700px) { .send-choices { grid-template-columns: 1fr 1fr; } }
  .send-choices a { display: flex; align-items: center; justify-content: center; gap: 10px; }
  .send-choices svg { width: 20px; height: 20px; flex: none; }
  .btn-wa { background: #25d366; color: #073b1c; }
  .btn-wa:hover { background: #3fdf78; }
  .btn-mail { background: var(--forest); color: var(--cream); }
  .btn-mail:hover { background: var(--leaf); }
  .rfq-reset { background: none; border: none; color: var(--leaf); font-weight: 700; cursor: pointer; font-size: 0.9rem; text-decoration: underline; font-family: inherit; }

  /* ---------- Contact ---------- */
  .contact-grid { display: grid; gap: 16px; }
  @media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
  .contact-card {
    background: #fff; border: 1px solid #e4dcc9; border-radius: var(--radius); padding: 22px;
    display: flex; gap: 16px; align-items: flex-start;
  }
  .contact-card .ico {
    width: 44px; height: 44px; flex: none; border-radius: 10px; background: var(--cream-warm);
    display: flex; align-items: center; justify-content: center; color: var(--forest);
  }
  .contact-card .ico svg { width: 22px; height: 22px; }
  .contact-card h4 { font-size: 0.95rem; color: var(--forest-deep); }
  .contact-card p { font-size: 0.9rem; color: #5a6156; word-break: break-word; }
  .contact-card a { color: var(--forest); font-weight: 600; }

  /* ---------- Footer ---------- */
  footer.site {
    background: var(--forest-deep); color: #b9c4b3; padding: 36px 20px 90px; text-align: center; font-size: 0.82rem;
  }
  footer.site .fmark { width: 62px; height: 62px; margin: 0 auto 14px; display: block; }
  footer.site .fbrand {
    color: var(--cream); font-family: Georgia, serif; font-size: 1.15rem;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px;
  }
  footer.site .fbrand span { display: block; font-size: 0.62rem; letter-spacing: 0.38em; color: var(--gold); margin-top: 3px; }
  footer.site .fscripts { color: var(--leaf-soft); margin-bottom: 14px; }

  /* ---------- Intro video overlay ----------
     Only ever shown when assets/intro.mp4 loads fast enough. The site
     underneath is fully rendered the whole time, so if anything at all
     goes wrong the visitor simply sees the site. */
  #intro {
    position: fixed; inset: 0; z-index: 9999; background: var(--forest-deep);
    display: none; align-items: center; justify-content: center; overflow: hidden;
  }
  html.intro-on #intro { display: flex; }
  html.intro-on, html.intro-on body { overflow: hidden; }
  #intro video { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
  /* Sits behind the video — a branded holding frame for the moment
     before the first frame paints, then covered by the footage. */
  #intro .intro-mark {
    position: absolute; z-index: 0; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 96px; height: 96px; opacity: 0.95; pointer-events: none;
  }
  #intro .skip {
    position: absolute; z-index: 2; bottom: 22px; right: 18px;
    background: rgba(18,41,28,0.72); color: var(--cream);
    border: 1px solid rgba(245,240,228,0.45); border-radius: 100px;
    padding: 12px 22px; font: 700 0.9rem/1 inherit; font-family: inherit;
    cursor: pointer; min-height: 48px; letter-spacing: 0.04em;
  }
  #intro .skip:hover { background: rgba(18,41,28,0.9); }
  #intro .skip:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
  #intro.fade { opacity: 0; transition: opacity .45s ease; pointer-events: none; }
  @media (prefers-reduced-motion: reduce) { #intro.fade { transition: none; } }

  /* Sticky mobile RFQ bar */
  .sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
    background: var(--gold); text-align: center; padding: 13px 16px;
    font-weight: 700; color: var(--forest-deep); text-decoration: none; font-size: 1rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  }
  @media (min-width: 880px) { .sticky-cta { display: none; } footer.site { padding-bottom: 36px; } }

  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- Language switch ---------- */
.lang-link {
  border: 1px solid rgba(245,240,228,0.45); border-radius: 100px;
  padding: 8px 14px !important; font-size: 0.8rem !important; letter-spacing: 0.02em;
}
.lang-link:hover { background: rgba(245,240,228,0.16) !important; }
.mobile-menu .lang-link { border: none; border-radius: 0; padding: 15px 24px !important; font-size: 0.95rem !important; }

/* First-visit language chooser — a strip, never a gate.
   The page is fully readable behind it and it appears once. */
#langbar {
  display: none; background: var(--gold); color: var(--forest-deep);
  padding: 12px 20px; text-align: center; font-size: 0.92rem;
}
#langbar.show { display: block; }
#langbar .lb-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; justify-content: center; }
#langbar strong { font-weight: 700; }
#langbar a, #langbar button {
  background: var(--forest-deep); color: var(--cream); border: none; border-radius: 100px;
  padding: 10px 20px; font: 700 0.88rem/1 inherit; font-family: inherit;
  text-decoration: none; cursor: pointer; min-height: 44px; display: inline-flex; align-items: center;
}
#langbar a:hover, #langbar button:hover { background: var(--forest); }
#langbar button.lb-dismiss { background: transparent; color: var(--forest-deep); text-decoration: underline; padding: 10px 12px; }
#langbar a:focus-visible, #langbar button:focus-visible { outline: 3px solid var(--forest-deep); outline-offset: 2px; }
