  :root{
    --paper:#FAF8F4;
    --paper-dim:#F1EDE6;
    --ink:#1C1B19;
    --ink-soft:#5C5650;
    --rule:rgba(28,27,25,0.12);
    --rule-on-dark:rgba(250,248,244,0.14);
    --bordeaux:#9B2237;
    --bordeaux-deep:#7A1B2C;
    --cream-on-dark:#F1EDE6;
    --font-display:'Cormorant', serif;
    --font-body:'Inter', sans-serif;
    --maxw:1240px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--font-body);
    background:var(--paper);
    color:var(--ink);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    font-size:16px;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  ul{list-style:none;}
  button{font-family:inherit;cursor:pointer;border:none;background:none;}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
  }
  :focus-visible{ outline:1.5px solid var(--bordeaux); outline-offset:3px; }

  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 40px;}
  @media (max-width:640px){ .wrap{padding:0 24px;} }

  /* ============ SIGNATURE MESH RULE ============ */
  .mesh-rule{
    display:inline-flex;
    gap:3px;
    margin-bottom:22px;
  }
  .mesh-rule span{
    width:5px; height:5px;
    border:1px solid var(--bordeaux);
  }
  .mesh-rule.on-dark span{ border-color:var(--bordeaux); }

  /* ============ IMAGE PLACEHOLDER ============ */
  .img-slot{
    position:relative;
    overflow:hidden;
    background:
      repeating-linear-gradient(45deg, rgba(28,27,25,0.05) 0 2px, transparent 2px 16px),
      linear-gradient(135deg, #E4DFD4, #D6CFC0);
    display:flex; align-items:center; justify-content:center;
    border:1px solid rgba(28,27,25,0.15);
  }
  .img-slot::before{
    content:attr(data-label);
    font-size:11px;
    letter-spacing:0.04em;
    color:var(--ink-soft);
    background:rgba(250,248,244,0.92);
    padding:7px 14px;
    text-align:center;
    max-width:78%;
    line-height:1.5;
  }
  .img-slot img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
  .img-slot.has-img::before{display:none;}
  .img-slot.product-shot{ background:var(--paper-dim); border:1px solid var(--rule); }
  .img-slot.product-shot img{ object-fit:contain; padding:32px; }
  .img-slot.product-shot.on-dark{ background:#242220; }
  .img-slot.on-dark{
    background:
      repeating-linear-gradient(45deg, rgba(250,248,244,0.05) 0 2px, transparent 2px 16px),
      linear-gradient(135deg, #2A2826, #211F1D);
    border-color:rgba(250,248,244,0.18);
  }
  .img-slot.on-dark::before{
    background:rgba(28,27,25,0.85);
    color:rgba(250,248,244,0.65);
  }

  /* ============ HEADER ============ */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    background:rgba(250,248,244,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--rule);
    transition:background 0.3s;
  }
  .nav{ display:flex; align-items:center; justify-content:space-between; height:84px; }
  .logo{
    font-family:var(--font-display);
    font-weight:600;
    font-size:25px;
    letter-spacing:0.01em;
    display:flex; align-items:center; gap:11px;
  }
  .logo .mark{ width:26px; height:26px; }
  .logo .mark rect{ fill:var(--bordeaux); }
  .logo .mark .gap{ fill:var(--paper); }
  .nav-links{ display:flex; gap:42px; font-size:14px; font-weight:500; }
  .nav-links a{
    color:var(--ink-soft);
    transition:color 0.25s;
    position:relative;
    padding:4px 0;
    letter-spacing:0.01em;
  }
  .nav-links a:hover{color:var(--ink);}
  .nav-links a::after{
    content:''; position:absolute; left:0; bottom:0;
    width:0; height:1px; background:var(--bordeaux);
    transition:width 0.3s;
  }
  .nav-links a:hover::after{width:100%;}
  .nav-cta{ display:flex; align-items:center; gap:26px; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 28px;
    font-size:13.5px; font-weight:600;
    letter-spacing:0.03em;
    transition:all 0.25s;
    white-space:nowrap;
  }
  .btn-primary{ background:var(--ink); color:var(--paper); }
  .btn-primary:hover{ background:var(--bordeaux); }
  .btn-ghost{ color:var(--ink); border:1px solid var(--rule); }
  .btn-ghost:hover{ border-color:var(--ink); }
  .btn-ghost.on-dark{ color:var(--cream-on-dark); border-color:var(--rule-on-dark); }
  .btn-ghost.on-dark:hover{ border-color:var(--cream-on-dark); }
  .btn-primary.on-dark{ background:var(--bordeaux); color:var(--cream-on-dark); }
  .btn-primary.on-dark:hover{ background:#B3273E; }

  .burger{ display:none; flex-direction:column; gap:5px; width:26px; }
  .burger span{ height:1.5px; background:var(--ink); width:100%; }
  @media (max-width:900px){
    .nav-links{display:none;}
    .nav-cta .btn-ghost{display:none;}
    .burger{display:flex;}
  }

  /* ============ HERO ============ */
  .hero{
    background:var(--paper);
    padding:180px 0 90px;
  }
  .hero-top{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    text-align:center;
    max-width:780px;
    margin:0 auto 56px;
  }
  .hero-top .mesh-rule{ justify-content:center; margin:0 auto 24px; }
  .hero h1{
    font-family:var(--font-display);
    font-weight:500;
    font-size:clamp(42px, 6.4vw, 80px);
    line-height:1.06;
    letter-spacing:0;
    margin-bottom:26px;
  }
  .hero h1 em{ font-style:italic; color:var(--bordeaux); }
  .hero-sub{
    font-size:17.5px;
    color:var(--ink-soft);
    max-width:560px;
    margin:0 auto 38px;
    line-height:1.7;
  }
  .hero-ctas{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }

  .hero-imgband{ position:relative; }
  .hero-imgband .img-slot{ height:520px; }
  @media (max-width:900px){ .hero-imgband .img-slot{ height:360px; } }
  @media (max-width:640px){
    .hero{ padding-top:130px; }
    .hero-imgband .img-slot{ height:260px; }
    .hero-ctas{ flex-direction:column; align-items:stretch; }
    .hero-ctas .btn{ justify-content:center; }
  }

  /* ============ INTRO STRIP ============ */
  .intro{ background:var(--paper); padding:100px 0; }
  .intro-grid{
    display:grid;
    grid-template-columns:0.42fr 0.58fr;
    gap:80px;
    align-items:start;
  }
  .intro-label{
    font-size:13px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--bordeaux);
    font-weight:600;
  }
  .intro h2{
    font-family:var(--font-display);
    font-weight:500;
    font-size:clamp(28px, 3.4vw, 40px);
    line-height:1.18;
    margin-bottom:24px;
  }
  .intro h2 em{ font-style:italic; color:var(--bordeaux); }
  .intro p{ font-size:16.5px; color:var(--ink-soft); line-height:1.75; max-width:560px; }
  @media (max-width:900px){
    .intro-grid{grid-template-columns:1fr; gap:28px;}
  }

  /* ============ DARK ACCENT: KOMPETENZ ============ */
  .competence{ background:var(--ink); color:var(--cream-on-dark); padding:110px 0; }
  .competence .mesh-rule span{ border-color:var(--bordeaux); }
  .competence-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:72px;
    align-items:center;
  }
  .competence h2{
    font-family:var(--font-display);
    font-weight:500;
    font-size:clamp(30px,3.6vw,44px);
    line-height:1.12;
    margin-bottom:26px;
  }
  .competence h2 em{ font-style:italic; color:var(--bordeaux); }
  .competence p{
    font-size:16.5px;
    color:rgba(241,237,230,0.72);
    line-height:1.75;
    margin-bottom:36px;
    max-width:480px;
  }
  .pillars{ display:grid; gap:0; }
  .pillar{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:24px;
    padding:22px 0;
    border-top:1px solid var(--rule-on-dark);
  }
  .pillar:last-child{ border-bottom:1px solid var(--rule-on-dark); }
  .pillar .label{
    font-family:var(--font-display);
    font-style:italic;
    font-size:19px;
    color:var(--bordeaux);
    padding-top:1px;
  }
  .pillar .text{ font-size:15px; color:rgba(241,237,230,0.78); line-height:1.6; }
  @media (max-width:900px){
    .competence-grid{grid-template-columns:1fr; gap:40px;}
  }
  @media (max-width:480px){
    .pillar{grid-template-columns:1fr; gap:6px;}
  }

  /* ============ SECTION GENERIC ============ */
  section{ padding:0; }
  .section-head{ max-width:720px; margin-bottom:64px; }
  .section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
  .section-head.center .mesh-rule{ justify-content:center; }
  .section-head h2{
    font-family:var(--font-display);
    font-weight:500;
    font-size:clamp(32px, 4.2vw, 50px);
    line-height:1.08;
  }
  .section-head h2 em{ font-style:italic; color:var(--bordeaux); }
  .section-head p{
    margin-top:22px;
    font-size:17px;
    color:var(--ink-soft);
    line-height:1.7;
    max-width:600px;
  }
  .section-head.center p{ margin-left:auto; margin-right:auto; }

  /* ============ PRODUCT LINES ============ */
  .products{ background:var(--paper); padding:120px 0; }
  .product-line{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:72px;
    align-items:center;
    padding:72px 0;
    border-top:1px solid var(--rule);
  }
  .product-line:last-child{ border-bottom:1px solid var(--rule); }
  .product-line.flip{ direction:rtl; }
  .product-line.flip > *{ direction:ltr; }
  .product-line .img-slot{ aspect-ratio:4/3.3; }
  .img-duo{ display:grid; grid-template-columns:1.3fr 1fr; gap:14px; aspect-ratio:4/3.3; }
  .img-duo .img-slot{ aspect-ratio:unset; height:100%; }

  .pl-index{
    font-family:var(--font-display);
    font-style:italic;
    font-size:15px;
    color:var(--bordeaux);
    margin-bottom:14px;
    display:block;
  }
  .product-line h3{
    font-family:var(--font-display);
    font-weight:500;
    font-size:clamp(26px, 3vw, 36px);
    margin-bottom:22px;
    letter-spacing:0;
  }
  .variant-list{ display:grid; gap:20px; }
  .variant{
    padding-bottom:18px;
    border-bottom:1px solid var(--rule);
  }
  .variant:last-child{ border-bottom:none; padding-bottom:0; }
  .variant .v-name{
    font-weight:600;
    font-size:15.5px;
    color:var(--ink);
    margin-bottom:5px;
    display:block;
  }
  .variant .v-name .accent{ color:var(--bordeaux); }
  .variant p{
    font-size:15px;
    color:var(--ink-soft);
    line-height:1.65;
  }
  .variant p strong{ color:var(--ink); font-weight:600; }

  @media (max-width:900px){
    .product-line, .product-line.flip{ grid-template-columns:1fr; gap:36px; direction:ltr; }
    .products{ padding:80px 0; }
    .img-duo{ aspect-ratio:4/2.6; }
  }

  /* ============ B2B BAND ============ */
  .b2b{ background:var(--paper-dim); padding:120px 0; }
  .b2b-grid{ display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
  .b2b h2{
    font-family:var(--font-display); font-weight:500;
    font-size:clamp(30px,3.6vw,44px); line-height:1.14; margin-bottom:24px;
  }
  .b2b h2 em{ font-style:italic; color:var(--bordeaux); }
  .b2b p{ font-size:16.5px; color:var(--ink-soft); line-height:1.75; max-width:480px; margin-bottom:36px; }

  .stat-row{ display:flex; gap:48px; flex-wrap:wrap; margin-top:8px; }
  .stat{ }
  .stat .num{ font-family:var(--font-display); font-style:italic; font-size:40px; color:var(--bordeaux); line-height:1; }
  .stat .lbl{ font-size:13px; color:var(--ink-soft); margin-top:8px; letter-spacing:0.01em; }

  .b2b-imgs{ position:relative; height:460px; }
  .b2b-imgs .img-slot{ position:absolute; }
  .b2b-imgs .img-1{ width:64%; height:64%; top:0; right:0; }
  .b2b-imgs .img-2{ width:52%; height:46%; bottom:0; left:0; border:6px solid var(--paper-dim); }

  @media (max-width:900px){
    .b2b-grid{ grid-template-columns:1fr; gap:44px; }
    .b2b-imgs{ height:320px; margin-top:8px; }
    .b2b{ padding:80px 0; }
  }

  /* ============ B2B SHOP CTA ============ */
  .shop-cta{ background:var(--ink); color:var(--cream-on-dark); padding:120px 0; }
  .shop-cta .mesh-rule{ justify-content:center; margin-left:auto; margin-right:auto; }
  .shop-cta-inner{ max-width:880px; margin:0 auto; text-align:center; }
  .shop-cta h2{
    font-family:var(--font-display); font-weight:500;
    font-size:clamp(30px, 4vw, 46px); line-height:1.1; margin-bottom:56px;
  }
  .shop-cta h2 em{ font-style:italic; color:var(--bordeaux); }
  .shop-cta-cols{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:48px;
    align-items:start;
    text-align:left;
  }
  .shop-cta-col{ display:flex; flex-direction:column; }
  .shop-cta-divider{ width:1px; background:var(--rule-on-dark); align-self:stretch; }
  .sc-label{
    font-family:var(--font-display); font-style:italic; font-size:21px;
    color:var(--bordeaux); margin-bottom:14px;
  }
  .shop-cta-col p{
    font-size:15.5px; color:rgba(241,237,230,0.72); line-height:1.7;
    margin-bottom:28px; flex-grow:1;
  }
  .shop-cta-col .btn{ align-self:flex-start; }

  @media (max-width:760px){
    .shop-cta{ padding:80px 0; }
    .shop-cta-cols{ grid-template-columns:1fr; gap:40px; text-align:center; }
    .shop-cta-divider{ width:60%; height:1px; margin:0 auto; }
    .shop-cta-col{ align-items:center; }
    .shop-cta-col .btn{ align-self:center; }
  }

  /* ============ INNOVATION ============ */
  .innovation{ background:var(--ink); color:var(--cream-on-dark); padding:120px 0; }
  .innovation-grid{ display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
  .innovation h2{
    font-family:var(--font-display); font-weight:500;
    font-size:clamp(30px,3.6vw,44px); line-height:1.12; margin-bottom:24px;
  }
  .innovation h2 em{ font-style:italic; color:var(--bordeaux); }
  .innovation p{ font-size:16.5px; color:rgba(241,237,230,0.72); line-height:1.75; margin-bottom:36px; max-width:480px; }
  .innovation .img-slot{ aspect-ratio:1/1; }
  @media (max-width:900px){
    .innovation-grid{ grid-template-columns:1fr; gap:40px; }
    .innovation{ padding:80px 0; }
  }

  /* ============ CONTACT ============ */
  .contact{ background:var(--paper); padding:120px 0; }
  .contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:80px; }
  .contact-info h2{
    font-family:var(--font-display); font-weight:500;
    font-size:clamp(30px,3.6vw,44px); margin-bottom:24px; line-height:1.14;
  }
  .contact-info h2 em{ font-style:italic; color:var(--bordeaux); }
  .contact-info p{ font-size:16.5px; color:var(--ink-soft); line-height:1.75; margin-bottom:44px; max-width:440px; }
  .contact-detail{ display:flex; gap:20px; padding:20px 0; border-top:1px solid var(--rule); }
  .contact-detail:last-child{ border-bottom:1px solid var(--rule); }
  .contact-detail .k{ font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--ink-soft); min-width:110px; padding-top:2px; }
  .contact-detail .v{ font-size:16px; font-weight:500; }
  .contact-detail a:hover{ color:var(--bordeaux); }
  .socials{ display:flex; gap:14px; margin-top:36px; }
  .social-btn{ width:42px; height:42px; border:1px solid var(--rule); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:all 0.25s; }
  .social-btn:hover{ background:var(--ink); border-color:var(--ink); }
  .social-btn:hover svg{ stroke:var(--paper); }
  .social-btn svg{ stroke:var(--ink); transition:stroke 0.25s; }

  .form-card{ background:var(--ink); color:var(--cream-on-dark); padding:48px 44px; }
  .form-card h3{ font-family:var(--font-display); font-weight:500; font-style:italic; font-size:28px; margin-bottom:10px; }
  .form-card .sub{ font-size:14.5px; color:rgba(241,237,230,0.55); margin-bottom:36px; }
  .field{ margin-bottom:22px; }
  .field label{ display:block; font-size:12px; letter-spacing:0.05em; text-transform:uppercase; color:rgba(241,237,230,0.55); margin-bottom:9px; }
  .field input, .field textarea{
    width:100%; background:transparent; border:none; border-bottom:1px solid var(--rule-on-dark);
    padding:10px 0; color:var(--cream-on-dark); font-family:var(--font-body); font-size:15px;
    transition:border-color 0.25s;
  }
  .field input:focus, .field textarea:focus{ border-color:var(--bordeaux); outline:none; }
  .field textarea{ resize:vertical; min-height:90px; }
  .field-check{ display:flex; gap:11px; align-items:flex-start; margin-bottom:32px; }
  .field-check input{ width:15px; height:15px; margin-top:3px; accent-color:var(--bordeaux); }
  .field-check label{ font-size:12.5px; color:rgba(241,237,230,0.55); line-height:1.55; text-transform:none; letter-spacing:0; }
  .form-card .btn{ width:100%; justify-content:center; }
  .form-status{ font-size:13.5px; margin-top:16px; text-align:center; min-height:0; }
  .form-status.success{ color:#9CC2A0; }
  .form-status.error{ color:#D98C8C; }

  @media (max-width:900px){
    .contact-grid{ grid-template-columns:1fr; gap:48px; }
    .contact{ padding:80px 0; }
    .form-card{ padding:36px 28px; }
  }

  /* ============ FOOTER ============ */
  footer{ background:var(--ink); color:rgba(241,237,230,0.5); padding:52px 0 32px; }
  .footer-grid{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; padding-bottom:36px; border-bottom:1px solid var(--rule-on-dark); margin-bottom:26px; }
  .footer-logo{ font-family:var(--font-display); font-style:italic; font-size:21px; color:var(--cream-on-dark); }
  .footer-links{ display:flex; gap:30px; flex-wrap:wrap; font-size:13.5px; }
  .footer-links a:hover{ color:var(--cream-on-dark); }
  .footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; }

  /* ============ REVEAL ============ */
  .reveal{ opacity:0; transform:translateY(22px); transition:opacity 0.8s ease, transform 0.8s ease; }
  .reveal.is-visible{ opacity:1; transform:translateY(0); }

  /* ============ BACK TO TOP ============ */
  .top-btn{
    position:fixed; bottom:30px; right:30px; width:46px; height:46px;
    background:var(--ink); border:none; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    opacity:0; pointer-events:none; transition:opacity 0.3s, transform 0.2s; z-index:90;
  }
  .top-btn.show{ opacity:1; pointer-events:auto; }
  .top-btn:hover{ background:var(--bordeaux); transform:translateY(-3px); }
  .top-btn svg{ stroke:var(--paper); }

  /* ============ LEGAL MODAL ============ */
  .legal-modal{
    position:fixed; inset:0; z-index:200;
    background:rgba(28,27,25,0.6);
    display:none;
    align-items:flex-start;
    justify-content:center;
    padding:60px 24px;
    overflow-y:auto;
  }
  .legal-modal.open{ display:flex; }
  .legal-modal-card{
    background:var(--paper);
    max-width:760px;
    width:100%;
    padding:56px 48px 60px;
    position:relative;
    margin-bottom:60px;
  }
  .legal-modal-close{
    position:absolute; top:24px; right:24px;
    width:38px; height:38px;
    display:flex; align-items:center; justify-content:center;
    border:1px solid var(--rule);
    border-radius:50%;
    transition:all 0.2s;
  }
  .legal-modal-close:hover{ background:var(--ink); border-color:var(--ink); }
  .legal-modal-close:hover svg{ stroke:var(--paper); }
  .legal-modal-close svg{ stroke:var(--ink); transition:stroke 0.2s; }
  .legal-modal h2{
    font-family:var(--font-display); font-weight:500; font-style:italic;
    font-size:34px; margin-bottom:8px;
  }
  .legal-modal .mesh-rule{ margin-bottom:32px; }
  .legal-modal h3{
    font-family:var(--font-display); font-weight:600; font-size:20px;
    margin:32px 0 12px; color:var(--ink);
  }
  .legal-modal h3:first-of-type{ margin-top:0; }
  .legal-modal p{ font-size:15px; color:var(--ink-soft); line-height:1.75; margin-bottom:14px; }
  .legal-modal ul{ margin:0 0 14px 0; padding-left:0; }
  .legal-modal ul li{
    font-size:15px; color:var(--ink-soft); line-height:1.7;
    padding-left:18px; position:relative; margin-bottom:6px;
  }
  .legal-modal ul li::before{
    content:''; position:absolute; left:0; top:9px;
    width:5px; height:5px; background:var(--bordeaux);
  }
  .legal-modal a{ color:var(--bordeaux); text-decoration:underline; text-decoration-color:rgba(155,34,55,0.4); }
  .legal-modal strong{ color:var(--ink); font-weight:600; }
  @media (max-width:640px){
    .legal-modal{ padding:32px 14px; }
    .legal-modal-card{ padding:40px 24px 44px; }
  }

  /* ============ COOKIE BANNER ============ */
  .cookie-banner{
    position:fixed; left:24px; right:24px; bottom:24px;
    max-width:760px; margin:0 auto;
    background:var(--ink); color:var(--cream-on-dark);
    padding:28px 30px;
    z-index:300;
    box-shadow:0 16px 48px rgba(0,0,0,0.28);
    transform:translateY(140%);
    transition:transform 0.5s ease;
  }
  .cookie-banner.show{ transform:translateY(0); }
  .cookie-banner-top{ display:flex; gap:20px; align-items:flex-start; margin-bottom:18px; }
  .cookie-banner h4{
    font-family:var(--font-display); font-style:italic; font-weight:500;
    font-size:18px; margin-bottom:8px;
  }
  .cookie-banner p{ font-size:13.5px; color:rgba(241,237,230,0.68); line-height:1.6; }
  .cookie-banner p a{ color:var(--cream-on-dark); text-decoration:underline; text-decoration-color:var(--bordeaux); }
  .cookie-actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }
  .cookie-actions .btn{ padding:11px 22px; font-size:13px; }
  .cookie-actions .btn-link{
    color:rgba(241,237,230,0.6); font-size:13px; font-weight:500;
    padding:11px 4px; text-decoration:underline; text-decoration-color:rgba(241,237,230,0.3);
  }
  .cookie-actions .btn-link:hover{ color:var(--cream-on-dark); }
  @media (max-width:640px){
    .cookie-banner{ left:14px; right:14px; bottom:14px; padding:24px 22px; }
    .cookie-actions{ justify-content:stretch; }
    .cookie-actions .btn{ flex:1; justify-content:center; }
  }

  /* ============ MOBILE MENU ============ */
  .mobile-menu{
    position:fixed; inset:0; background:var(--ink); z-index:99;
    display:flex; flex-direction:column; padding:110px 32px 40px;
    transform:translateX(100%); transition:transform 0.4s ease;
  }
  .mobile-menu.open{ transform:translateX(0); }
  .mobile-menu a{
    color:var(--cream-on-dark); font-family:var(--font-display); font-style:italic;
    font-size:30px; font-weight:500; padding:18px 0; border-bottom:1px solid var(--rule-on-dark);
  }
  .mobile-close{ position:absolute; top:28px; right:28px; width:40px; height:40px; display:flex; align-items:center; justify-content:center; }
