
    @font-face { font-family: "EB Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/eb-garamond-400.ttf') format("truetype"); }
    @font-face { font-family: "EB Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/eb-garamond-600.ttf') format("truetype"); }
    @font-face { font-family: "EB Garamond"; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/eb-garamond-700.ttf') format("truetype"); }

:root {
      --paper: #FFFDF7;
      --ink: #231F20;
      --red: #D0462C;
      --line: rgba(35, 31, 32, .24);
      --line-soft: rgba(35, 31, 32, .12);
      --title: "EB Garamond", Georgia, serif;
      --body: "EB Garamond", Georgia, serif;
      --max: 1380px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scrollbar-gutter: stable; }
    body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-weight: 400; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { color: inherit; cursor: pointer; }
    img { display: block; max-width: 100%; }
    :focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

    .site-header { z-index: 20; background: rgba(255, 253, 247, .97); }
    .header-inner { width: min(calc(100% - 80px), var(--max)); min-height: 92px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
    .header-nav { display: flex; align-items: center; gap: 28px; }
    .header-nav a, .cart-link, .footer-heading, .kicker { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
    .header-nav a { position: relative; padding: 10px 0; }
    .header-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--red); transition: right .25s ease; }
    .header-nav a:hover::after, .header-nav a.active::after { right: 0; }
    .logo { display: flex; align-items: center; justify-content: center; width: 120px; height: 86px; }
    .logo img { width: auto; height: 78px; }
    .cart-wrap { display: flex; justify-content: flex-end; }
    .cart-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 0; }
    .cart-link:hover { color: var(--red); }
    .cart-icon { width: 17px; height: 17px; }
    .cart-number { min-width: 18px; }

    .page-shell { width: min(calc(100% - 80px), var(--max)); margin: auto; }
    .page-header { padding: 72px 0 42px; border-bottom: 1px solid var(--line); }
    .kicker { color: var(--red); margin: 0 0 13px; }
    .page-title { margin: 0; font-family: var(--title); font-size: clamp(34px, 4.2vw, 56px); font-weight: 600; line-height: .95; letter-spacing: -.03em; }
    .info-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 8vw, 126px); padding: 66px 0 120px; align-items: start; }
    .info-photo { margin: 0; }
    .info-photo img { width: 100%; max-height: 680px; object-fit: cover; object-position: center; }
    .info-copy { padding-top: 3px; }
    .info-copy p { margin: 0 0 28px; font-size: 17px; line-height: 1.48; }
    .info-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; margin-top: 45px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; }
    .info-contact a:hover { color: var(--red); }

    .urushi-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px; padding: 54px 0 126px; }
    .urushi-card { min-width: 0; }
    .urushi-figure { height: 310px; margin: 0 0 26px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); }
    .urushi-figure img { width: 100%; height: 100%; object-fit: contain; }
    .urushi-card h2 { margin: 0 0 14px; font-family: var(--title); font-size: 25px; font-weight: 600; line-height: 1; }
    .urushi-card p { margin: 0; font-size: 16px; line-height: 1.5; }

    .shop-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 64px 44px; padding: 54px 0 130px; }
    .product-card { min-width: 0; border: 0; background: transparent; padding: 0; text-align: left; }
    .product-card .product-card-link { display: block; width: 100%; color: inherit; text-decoration: none; }
    .product-photo { aspect-ratio: .9; overflow: hidden; margin-bottom: 18px; border: 1px solid var(--line-soft); background: var(--paper); }
    .product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .product-card:hover .product-photo img { transform: scale(1.025); }
    .product-line { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
    .product-name { font-size: 13px; line-height: 1.2; }
    .product-price { font-size: 13px; white-space: nowrap; }
    

    .site-footer { border-top: 1px solid var(--line); }
    .footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 42px; padding: 45px 0 50px; }
    .footer-brand img { height: 52px; width: auto; }
    .footer-description { max-width: 290px; margin: 20px 0 0; font-size: 15px; line-height: 1.45; }
    .footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
    .footer-heading { margin: 4px 0 10px; color: var(--red); }
    .footer-column a { font-size: 14px; line-height: 1.2; }
    .footer-column a:hover, .footer-legal a:hover { color: var(--red); }
    .footer-legal { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 17px 0 24px; border-top: 1px solid var(--line-soft); }
    .footer-legal-links { display: flex; flex-wrap: wrap; gap: 10px 22px; }
    .footer-legal a, .footer-legal-meta { font-size: 12px; }
    .footer-legal-meta { display: flex; gap: 17px; color: rgba(35, 31, 32, .68); }

    .modal-backdrop { position: fixed; inset: 0; z-index: 40; background: rgba(35, 31, 32, .2); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
    .product-dialog { position: fixed; z-index: 41; inset: 50% auto auto 50%; width: min(820px, calc(100% - 48px)); max-height: calc(100vh - 48px); overflow: auto; display: grid; grid-template-columns: .9fr 1fr; background: var(--paper); transform: translate(-50%, -48%) scale(.98); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .3s ease; }
    .product-dialog.is-open + .modal-backdrop { opacity: 1; pointer-events: auto; }
    .product-dialog.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
    .dialog-photo { min-height: 520px; border-right: 1px solid var(--line); }
    .dialog-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
    .dialog-copy { position: relative; padding: 38px 36px 32px; }
    .dialog-close { position: absolute; top: 16px; right: 17px; border: 0; background: transparent; padding: 4px; font-size: 25px; font-weight: 400; }
    .dialog-close:hover { color: var(--red); }
    .dialog-copy h2 { margin: 16px 35px 9px 0; font-family: var(--title); font-size: 34px; font-weight: 600; line-height: .95; }
    .dialog-price { margin-bottom: 28px; font-size: 16px; }
    .dialog-copy p { margin: 0 0 23px; font-size: 16px; line-height: 1.45; }
    .dialog-tech { padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13px !important; }
    .edition-label { display: block; margin: 26px 0 11px; color: var(--red); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
    .edition-grid { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 26px; }
    .edition-number { width: 30px; height: 30px; border: 1px solid var(--line); background: transparent; font-size: 12px; }
    .edition-number:hover, .edition-number.selected { color: var(--paper); border-color: var(--red); background: var(--red); }
    .edition-grid.needs-selection { animation: nudge .22s ease; }
    @keyframes nudge { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
    .dialog-copy .button { width: 100%; min-height: 48px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; font-weight: 600; }
    .dialog-copy .button:hover { border-color: var(--red); background: var(--red); }

    .cart-backdrop { position: fixed; inset: 0; z-index: 50; background: rgba(35, 31, 32, .2); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
    .cart-drawer { position: fixed; z-index: 51; inset: 0 0 0 auto; width: min(430px, 100%); padding: 29px 30px 24px; display: flex; flex-direction: column; background: var(--paper); transform: translateX(100%); transition: transform .3s ease; }
    body.cart-open { overflow: hidden; }
    body.cart-open .cart-backdrop { opacity: 1; pointer-events: auto; }
    body.cart-open .cart-drawer { transform: translateX(0); }
    .cart-head { display: flex; align-items: start; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
    .cart-head h2 { margin: 11px 0 0; font-family: var(--title); font-size: 35px; font-weight: 600; line-height: .9; }
    .cart-close { border: 0; background: transparent; padding: 4px; font-size: 25px; font-weight: 400; }
    .cart-close:hover { color: var(--red); }
    .cart-items { flex: 1; overflow: auto; padding: 22px 0; }
    .cart-empty { margin: 0; font-size: 18px; }
    .cart-item { display: grid; grid-template-columns: 62px 1fr auto; gap: 13px; align-items: start; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
    .cart-item img { width: 62px; height: 78px; object-fit: cover; border: 1px solid var(--line-soft); }
    .cart-item strong { display: block; margin: 4px 0 7px; font-size: 14px; line-height: 1.2; text-transform: uppercase; }
    .cart-item small { font-size: 12px; }
    .cart-item .item-price { font-size: 13px; white-space: nowrap; }
    .cart-remove { grid-column: 2 / -1; justify-self: start; border: 0; padding: 0; background: transparent; color: var(--red); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
    .cart-summary { padding-top: 20px; border-top: 1px solid var(--line); }
    .summary-row { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 11px; font-size: 13px; }
    .summary-row.total { margin-top: 19px; margin-bottom: 22px; font-family: var(--title); font-size: 24px; }
    .cart-summary .button { width: 100%; min-height: 48px; border: 1px solid var(--red); background: var(--red); color: var(--paper); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; font-weight: 600; }
    .cart-summary .button:hover { border-color: var(--red); background: transparent; color: var(--red); }
    .toast { position: fixed; z-index: 60; left: 50%; bottom: 24px; padding: 11px 16px; background: var(--ink); color: var(--paper); opacity: 0; transform: translate(-50%, 10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
    .toast.show { opacity: 1; transform: translate(-50%, 0); }

    @media (max-width: 960px) {
      .header-inner, .page-shell, .site-footer { width: calc(100% - 48px); }
      .info-layout { gap: 42px; }
      .urushi-grid { gap: 24px; }
      .urushi-figure { height: 250px; }
      .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); gap: 30px 22px; }
      .footer-brand-block { grid-row: span 2; }
      .footer-legal { align-items: flex-start; flex-direction: column; }
    }
    @media (max-width: 720px) {
      
      .header-inner { width: calc(100% - 32px); min-height: 76px; }
      .header-nav { gap: 16px; }
      .header-nav a { font-size: 10px; letter-spacing: .1em; }
      .header-nav a:nth-child(2) { display: none; }
      .logo { width: 84px; height: 62px; }
      .logo img { height: 58px; }
      .cart-link { font-size: 10px; letter-spacing: .1em; }
      .page-shell, .site-footer { width: calc(100% - 32px); }
      .page-header { padding: 48px 0 29px; }
      .page-title { font-size: 40px; }
      .info-layout { grid-template-columns: 1fr; gap: 34px; padding: 34px 0 80px; }
      .info-photo img { max-height: 470px; }
      .info-copy p { font-size: 16px; }
      .info-contact { margin-top: 33px; }
      .urushi-grid { grid-template-columns: 1fr; gap: 62px; padding: 35px 0 80px; }
      .urushi-figure { height: 255px; margin-bottom: 19px; }
      .urushi-card h2 { font-size: 23px; }
      .urushi-card p { font-size: 16px; }
      .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 52px 34px; padding: 35px 0 80px; }
      .product-name, .product-price { font-size: 12px; }
      .product-subline { font-size: 11px; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 35px 18px; padding: 30px 0 38px; }
      .footer-brand-block { grid-column: 1 / -1; grid-row: auto; }
      .product-dialog { grid-template-columns: 1fr; max-height: calc(100vh - 24px); width: calc(100% - 24px); }
      .dialog-photo, .dialog-photo img { min-height: 290px; height: 290px; border-right: 0; border-bottom: 1px solid var(--line); }
      .dialog-copy { padding: 27px 22px 25px; }
      .dialog-copy h2 { font-size: 30px; }
      .cart-drawer { padding: 24px 20px 20px; }
    }
    @media (max-width: 480px) {
      .header-inner { grid-template-columns: 1fr auto 1fr; }
      .header-nav a { font-size: 9px; }
      .cart-link { gap: 5px; font-size: 9px; }
      .cart-icon { width: 15px; height: 15px; }
      .logo img { height: 54px; }
      .shop-grid { grid-template-columns: 1fr; }
      .product-photo { aspect-ratio: .84; }
      .footer-column a { overflow-wrap: anywhere; }
      .footer-legal-links { gap: 9px 15px; }
    }

  
    /* Hero infos : image et contenu partagent exactement la même hauteur. */
    .info-layout { align-items: stretch; }
    .info-photo { height: 100%; }
    .info-photo img { height: 100%; max-height: none; object-fit: cover; }
    .info-copy p { font-weight: 400; }
    .info-copy .info-title { font-weight: 700; }
    .info-contact { font-weight: 700; }
    .contact-link { display: inline-flex; align-items: center; gap: 10px; }
    .contact-icon { width: 18px; height: 18px; flex: 0 0 18px; }
    @media (max-width: 720px) {
      .info-layout { align-items: start; }
      .info-photo { height: auto; }
      .info-photo img { height: auto; max-height: 470px; }
    }

    /* Image du bloc d’accueil : sa hauteur est synchronisée avec le texte. */
    .info-layout { align-items: start; }
    .info-photo { height: auto; min-height: 0; overflow: hidden; }
    .info-photo img { height: 100%; min-height: 0; max-height: none; object-fit: cover; }
    .footer-contact-link { display: inline-flex; align-items: center; gap: 9px; }
    .footer-contact-icon { width: 16px; height: 16px; flex: 0 0 16px; }
    @media (max-width: 720px) {
      .info-photo { height: auto; }
      .info-photo img { height: auto; max-height: 470px; }
    }

    .contact-link img.contact-icon, .footer-contact-link img.footer-contact-icon { object-fit: contain; }
    .dialog-schema { height: 110px; margin: 0 0 20px; display: flex; align-items: center; justify-content: center; }
    .dialog-schema img { width: 100%; height: 100%; object-fit: contain; }
    @media (max-width: 720px) { .dialog-schema { height: 90px; } }

    /* Scroll reveal: discreet, progressive and disabled when reduced motion is requested. */
    body.reveal-ready [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
    body.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }
    body.reveal-ready [data-delay="1"] { transition-delay: .07s; }
    body.reveal-ready [data-delay="2"] { transition-delay: .14s; }
    body.reveal-ready [data-delay="3"] { transition-delay: .21s; }
    @media (prefers-reduced-motion: reduce) {
      body.reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
    }

    /* Client SVG pictograms remain crisp at every size. */
    .contact-icon, .footer-contact-icon { object-fit: contain; }

    /* Product-first visual: a quiet frame that gives a rare object enough presence. */
    .info-photo { position: relative; padding: 34px 20px 24px; border: 1px solid var(--line); background: var(--paper); }
    .info-photo::before { content: "ÉTUI DE POCHE"; position: absolute; top: 12px; left: 20px; color: var(--red); font-size: 10px; letter-spacing: .13em; }
    .info-photo::after { content: "forme I · forme II · forme III"; position: absolute; right: 20px; bottom: 9px; color: rgba(35,31,32,.68); font-size: 11px; }
    .info-photo img { background: var(--paper); }
    .shop-feature { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr); gap: clamp(40px, 7vw, 100px); align-items: center; padding: 54px 0 68px; border-bottom: 1px solid var(--line); }
    .shop-feature-image { height: 560px; margin: 0; padding: 20px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--paper); }
    .shop-feature-image img { width: 100%; height: 100%; object-fit: contain; }
    .shop-feature-copy { max-width: 410px; }
    .shop-feature-copy h2 { margin: 15px 0 12px; font-family: var(--title); font-size: clamp(27px, 3.4vw, 45px); font-weight: 600; line-height: .98; }
    .shop-feature-price { margin: 0 0 25px; font-size: 17px; }
    .shop-feature-copy p:not(.kicker):not(.shop-feature-price) { margin: 0 0 28px; font-size: 16px; line-height: 1.48; }
    .shop-feature .button { min-height: 48px; padding: 0 22px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; font-weight: 600; }
    .shop-feature .button:hover { border-color: var(--red); background: var(--red); }

    /* Keep URUSHI visible alongside INFOS and SHOP on narrow screens. */
    @media (max-width: 720px) {
      .header-nav a:nth-child(2), .header-nav a:nth-child(3) { display: inline; }
      .header-nav { gap: 12px; }
      .shop-feature { grid-template-columns: 1fr; gap: 30px; padding: 35px 0 47px; }
      .shop-feature-image { height: min(600px, 112vw); }
      .shop-feature-copy { max-width: none; }
    }
    @media (max-width: 480px) {
      .header-nav { gap: 7px; }
      .header-nav a { font-size: 8px; letter-spacing: .06em; }
      .cart-link { font-size: 8px; letter-spacing: .06em; }
      .logo { width: 76px; }
      .info-photo { padding-left: 12px; padding-right: 12px; }
      .info-photo::before { left: 12px; }
      .info-photo::after { right: 12px; font-size: 9px; }
    }

    /* Présentation produit inspirée des fiches de galerie : photo libre, sans cadre. */
    .shop-feature { grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); border-bottom: 0; padding: 55px 0 76px; }
    .shop-feature-image { height: 610px; padding: 0; border: 0; background: transparent; }
    .shop-feature-image img { object-fit: contain; }
    .shop-feature-copy { max-width: 430px; }
    .shop-feature-copy h2 { font-size: clamp(27px, 3vw, 39px); }
    .shop-feature-copy p.shop-feature-tech, .shop-feature-copy p.shop-feature-description { margin-bottom: 24px; font-size: 16px; line-height: 1.48; }
    .shop-feature-copy .shop-feature-description { margin-bottom: 30px; }
    @media (max-width: 720px) {
      .shop-feature { gap: 27px; padding: 35px 0 52px; }
      .shop-feature-image { height: min(610px, 125vw); }
    }

    /* Le produit vedette reste visible immédiatement, notamment sur mobile. */
    .shop-feature-image { display: flex; visibility: visible; opacity: 1; }
    .shop-feature-image img { display: block; visibility: visible; opacity: 1; }
    @media (max-width: 720px) {
      .shop-feature-image { height: 460px; min-height: 460px; }
    }


      .product-page { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: clamp(28px, 5vw, 80px); align-items: stretch; padding: 40px 0 120px; }
      .product-page-media { margin: 0; display: flex; align-items: flex-start; justify-content: center; }
      .product-page-media img { width: 100%; height: 100%; max-height: calc(100vh - 200px); object-fit: contain; }
      .product-page-info { max-width: 560px; display: flex; flex-direction: column; justify-content: center; }
      .product-page-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding-bottom: 18px; }
      .product-page-title { margin: 0; font-family: var(--title); font-size: clamp(24px, 2.4vw, 34px); font-weight: 600; line-height: 1.05; }
      .product-page-price { font-size: 18px; white-space: nowrap; }
      .product-page-actions { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: nowrap; margin: 30px 0; }
      .product-page-editions { display: flex; flex-wrap: nowrap; gap: 4px; }
      .product-page-editions.needs-selection .edition-number { animation: nudge .22s ease; }
      .product-page-buy { height: 30px; min-height: 30px; padding: 0 16px; border: 1px solid var(--red); background: var(--red); color: var(--paper); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; line-height: 1; white-space: nowrap; display: inline-flex; align-items: center; }
      .product-page-tech { margin: 0 0 20px; font-size: 14px; font-style: italic; line-height: 1.5; }
      .product-page-desc { margin: 0; font-size: 16px; line-height: 1.55; }
      .product-page-schema { margin: 48px 0 0; }
      .product-page-schema img { width: 100%; height: auto; display: block; }
      @media (max-width: 960px) { .product-page { grid-template-columns: 1fr; align-items: start; } .product-page-media { justify-content: center; align-self: auto; } .product-page-media img { height: auto; max-height: 70vh; } .product-page-info { max-width: 100%; } }
      @media (max-width: 720px) { .product-page { gap: 26px; padding: 24px 0 80px; } .product-page-actions { flex-wrap: wrap; justify-content: flex-start; } .product-page-editions { flex-wrap: wrap; } .product-page-media img { height: auto; max-height: 55vh; } .product-page-schema { margin-top: 36px; } }

/* ============================================================
   [W] INFOS — photo ouverte, icônes contact (hérité du proto)
   ============================================================ */
.info-photo { padding: 0; border: 0; background: transparent; }
.info-photo::before, .info-photo::after { display: none; }
.contact-link img.contact-icon { width: 18px; height: 18px; }

/* ============================================================
   [X] Pages WordPress génériques + contenus riches (légales, 404)
   ============================================================ */
.page-content { padding: 46px 0 110px; }
.page-content .page-header { padding-bottom: 34px; margin-bottom: 40px; }
.page-content .page-body, .laaq-rich { font-size: 17px; line-height: 1.55; }
.laaq-rich p { margin: 0 0 22px; }
.laaq-rich h2 { margin: 42px 0 14px; font-family: var(--title); font-size: 28px; font-weight: 600; line-height: 1.1; }
.laaq-rich h3 { margin: 34px 0 12px; font-family: var(--title); font-size: 22px; font-weight: 600; }
.laaq-rich ul, .laaq-rich ol { margin: 0 0 22px; padding-left: 22px; }
.laaq-rich li { margin-bottom: 8px; }
.laaq-rich a { color: var(--red); }
.laaq-rich a:hover { text-decoration: underline; text-underline-offset: 3px; }
.laaq-rich hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.button.laaq-button, .laaq-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border: 1px solid var(--red); background: var(--red); color: var(--paper); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; cursor: pointer; }
.button.laaq-button:hover, .laaq-button:hover { background: transparent; color: var(--red); }

/* skip-link WCAG */
.skip-link { position: absolute; left: 16px; top: -48px; z-index: 200; padding: 10px 14px; background: var(--red); color: var(--paper); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; transition: top .2s ease; }
.skip-link:focus { top: 16px; width: auto !important; height: auto !important; clip: auto !important; clip-path: none !important; white-space: normal; }
