/* Smijl Theme: #fff / #369694 */
:root{
  --bg:#ffffff;
  --ink:#0f2020;
  --muted:#5f6b6b;
  --line:rgba(15,32,32,.08);
  --brand:#369694;
  --brand-soft:rgba(54,150,148,.12);
  --brand-strong:#2d7f7d;
  --radius:22px;
  --shadow:0 20px 60px rgba(15,32,32,.08);
  --header-h:78px;
}

/* 1) Make width calculations predictable */
*, *::before, *::after{
  box-sizing:border-box;
}

/* 2) Never allow horizontal page overflow */
html, body{
  width:100%;
  max-width:100%;
  overflow-x:clip;
}

/* fallback for browsers that don't support clip */
@supports not (overflow: clip){
  html, body{
    overflow-x:hidden;
  }
}

/* 3) Prevent media from forcing overflow */
img, svg, video, canvas{
  max-width:100%;
  height:auto;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.35;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}

.container{
  width:min(1200px, calc(100% - 2rem));
  margin-inline:auto;
}

.tm {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.05em;
  vertical-align: super;
  line-height: 0;
}

.tm svg {
  display: block;
  width: 100%;
  height: 100%;
}

.tm circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.tm-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero, .page-hero{
  position:relative;
  min-height:100svh;
  background-size:cover;
  background-position:top right;
  display:grid;
  align-items:end;
  padding-top:var(--header-h);

}
.page-hero{
  min-height:62svh;
}
.page-hero.slim{
  min-height:44svh;

}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(54,150,148,.15), transparent 55%),
    linear-gradient(to top, rgba(8,15,15,.78), rgba(8,15,15,0));
}
.hero-content,.page-hero-content{
  position:relative;
  z-index:1;
  color:#fff;
  padding:7rem 0 3rem;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  font-weight:800;
  color:var(--brand);
}
.hero .eyebrow,.page-hero .eyebrow{color:#d7fffd}
h1,h2,h3{
  margin:.4rem 0 0;
  line-height:1.05;
  letter-spacing:-.02em;
}
h1{font-size:clamp(2.1rem, 5vw, 4.2rem); font-weight:800}
h2{font-size:clamp(1.8rem, 3vw, 3rem); font-weight:800}

.hero-grid{
  margin-top:1.1rem;
  display:flex; flex-wrap:wrap; gap:.65rem;
}
.hero-grid span{
  padding:.6rem .9rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  font-weight:600;
  font-size:.95rem;
}
.hero-grid.compact span{font-size:.88rem; padding:.5rem .8rem}

.cta-row{
  display:flex; flex-wrap:wrap; gap:.8rem;
  margin-top:1.25rem;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  padding:.8rem 1rem;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(15,32,32,.12);
}
.btn-lg{padding:1rem 1.2rem; font-size:1rem}
.btn-block{width:100%}
.btn-primary{
  background:var(--brand);
  color:#fff;
}
.btn-primary:hover{background:var(--brand-strong)}
.btn-ghost{
  background:#fff;
  color:var(--ink);
  border-color:var(--line);
}
.hero .btn-ghost, .page-hero .btn-ghost{
  background:rgba(255,255,255,.1);
  color:#fff;
  border-color:rgba(255,255,255,.22);
}
.hero .btn-ghost:hover, .page-hero .btn-ghost:hover{
  background:rgba(255,255,255,.2);
}

.section{
  padding:4.5rem 0;
}
.alt-section{
  background:var(--brand);
  border-top:1px solid rgba(54,150,148,.06);
  border-bottom:1px solid rgba(54,150,148,.06);
  border-radius: 50px;
  margin: 20px 10px;
}
.section-head{
  display:grid; gap:.35rem;
  margin-bottom:1.5rem;
}
.section-line{
  color:#eef6f6df;
  font-weight:600;
}
.section-line-dark{
  color:var(--ink);
  font-weight:600;
}
.category-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}
.category-card{
  position:relative;
  min-height:50svh;
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,32,32,.04);
}
.category-card img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;
}
.category-card-overlay{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,16,16,.8), rgba(8,16,16,.15) 55%);
}
.category-card-content{
  position:absolute; inset:auto 1rem 1rem 1rem;
  color:#fff;
  display:grid; gap:.4rem;

}

.category-card:hover .category-link{
  color: var(--brand);
}
.badge{
  display:inline-flex; width:max-content;
  padding:.35rem .55rem; border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  font-size:.72rem; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase;
}
.category-title{font-size:1.5rem;font-weight:800}
.category-sub{opacity:.95;font-weight:600}
.category-link{font-weight:700}
.category-card:hover img{transform:scale(1.06)}

.split-panel{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:1rem;
  align-items:stretch;
}
.split-media{
  border-radius:26px;
  min-height:800px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
}

.split-media-home{
  border-radius:26px;
  min-height:800px;
  background-size:cover;
  background-position:top right;
  box-shadow:var(--shadow);
}

.split-copy{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:1.2rem;
  display:grid; align-content:start; gap:.9rem;
}
.statement-list{
  margin:0; padding:0; list-style:none;
  display:grid; gap:.65rem;
}
.statement-list li{
  padding:.8rem .9rem;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:600;
}
.alt-section .statement-list li{
  background:rgba(255,255,255,.75);
}
.statement-list.compact li{
  padding:.65rem .8rem;
  font-size:.95rem;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}
.product-card{
  background:#fff;
  border-radius:22px;
  border:1px solid var(--line);
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,32,32,.05);
  display:grid;
}
.product-image-wrap{
  position:relative;
  aspect-ratio: 4/4.8;
  overflow:hidden;
}
.product-image-wrap img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .4s ease;
}
.product-hover-chip{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%, -42%);
  background:rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.95);
  border-radius:999px;
  padding:.55rem .85rem;
  font-weight:700; font-size:.85rem;
  opacity:0; transition:all .2s ease;
}
.product-card:hover .product-image-wrap img{transform:scale(1.05)}
.product-card:hover .product-hover-chip{opacity:1; transform:translate(-50%, -50%)}
.product-card-body{
  padding:1rem;
  display:grid; gap:.65rem;
}
.product-meta{
  display:flex; justify-content:space-between; gap:.4rem;
  color:var(--muted); font-weight:600; font-size:.8rem;
}
.product-title{
  font-size:1.1rem; font-weight:800; line-height:1.15;
}
.product-tagline{
  color:var(--muted); font-weight:600; font-size:.92rem;
}
.product-tagline.detail{font-size:1rem}
.product-price{
  font-size:1.25rem; font-weight:800; color:var(--brand-strong);
}
.product-price.detail{font-size:1.6rem}
.product-cta-row{
  display:grid; grid-template-columns:1fr auto; gap:.6rem;
}
.center-cta{
  margin-top:1.4rem;
  display:flex; justify-content:center;
}

.feature-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1rem;
}
.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.1rem;
  display:grid; gap:.35rem;
  box-shadow:0 12px 28px rgba(15,32,32,.04);
}
.feature-card i{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background:var(--brand-soft);
  color:var(--brand);
}
.feature-card > div{
  font-size:1.1rem;
  font-weight:800;
}
.feature-card > span{
  color:var(--muted);
  font-weight:600;
}

.category-pills{
  display:flex; flex-wrap:wrap; gap:.55rem;
  margin-bottom:1rem;
}
.pill{
  padding:.65rem .95rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
  transition:.18s ease;
}
.pill:hover, .pill.active{
  background:var(--brand-soft);
  border-color:rgba(54,150,148,.2);
  color:var(--brand-strong);
}

.product-detail-page{padding-top:calc(var(--header-h) + 2rem)}
.product-detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  align-items:start;
}
.product-gallery{
  position:sticky;
  top:calc(var(--header-h) + 1rem);
  display:grid; gap:.8rem;
}
.main-image{
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}
.main-image img{width:100%; aspect-ratio:4/4.8; object-fit:cover}
.thumb-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:.6rem;
}
.thumb-grid img{
  border-radius:16px;
  border:1px solid var(--line);
  aspect-ratio:1/1;
  object-fit:cover;
}
.product-detail-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:1.1rem;
  box-shadow:var(--shadow);
  display:grid; gap:.9rem;
}
.detail-badges{
  display:flex; flex-wrap:wrap; gap:.55rem;
}
.detail-badges span{
  padding:.45rem .7rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--brand-soft);
  font-weight:700;
  color:var(--brand-strong);
  font-size:.85rem;
}
.add-to-cart-form{
  display:grid; grid-template-columns:130px 1fr 1fr; gap:.6rem;
  align-items:end;
}
.add-to-cart-form label{
  display:grid; gap:.3rem; font-weight:700; color:var(--muted);
}
.add-to-cart-form input[type="number"]{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.75rem .85rem;
}
.detail-block{
  display:grid; gap:.5rem;
}
.detail-title{
  font-weight:800;
  font-size:1rem;
}

.flash{
  margin-top:calc(var(--header-h) + .9rem);
  margin-bottom:-1.1rem;
  border-radius:16px;
  padding:.9rem 1rem;
  border:1px solid var(--line);
  display:flex; align-items:center; gap:.7rem;
  font-weight:700;
}
.flash.success{
  background:rgba(54,150,148,.1);
  color:var(--brand-strong);
  border-color:rgba(54,150,148,.2);
}
.flash.error{
  background:rgba(200,48,48,.08);
  color:#9a2d2d;
  border-color:rgba(200,48,48,.2);
}

.page-center{
  min-height:75svh;
  display:grid; align-items:center;
  padding-top:calc(var(--header-h) + 2rem);
}
.center-stack{
  display:grid; gap:.8rem; justify-items:center; text-align:center;
}

.cart-layout, .checkout-layout, .contact-layout{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:1rem;
}
.cart-items, .checkout-form, .contact-card, .contact-form{
  display:grid; gap:.9rem;
}
.empty-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:1.1rem;
  box-shadow:var(--shadow);
  display:grid; gap:.8rem; justify-items:start;
}
.empty-box i{
  width:46px; height:46px; border-radius:14px;
  display:grid; place-items:center;
  background:var(--brand-soft); color:var(--brand);
}
.cart-row{
  display:grid;
  grid-template-columns:88px 1fr auto auto auto;
  gap:.8rem;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:.7rem;
}
.cart-row img{
  width:88px;height:88px; object-fit:cover;
  border-radius:14px;
}
.cart-row-info{display:grid; gap:.25rem}
.cart-row-title{font-weight:800}
.cart-row-sub{font-size:.86rem; color:var(--muted); font-weight:600}
.cart-row-price{color:var(--brand-strong); font-weight:800}
.cart-row-total{font-weight:800}
.cart-qty-form{
  display:flex; gap:.5rem; align-items:center;
}
.cart-qty-form input{
  width:74px;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.55rem .65rem;
}
.icon-btn{
  width:42px;height:42px;border-radius:12px;
  border:1px solid var(--line);
  background:#fff; cursor:pointer;
  transition:.18s ease;
}
.icon-btn:hover{
  background:rgba(200,48,48,.06);
  border-color:rgba(200,48,48,.2);
  color:#9a2d2d;
}

.cart-summary{
  position:sticky;
  top:calc(var(--header-h) + 1rem);
  align-self:start;
}
.summary-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:1rem;
  display:grid; gap:.75rem;
}
.summary-title{
  font-size:1.05rem; font-weight:800;
}
.summary-line{
  display:flex; justify-content:space-between; gap:.6rem;
  font-weight:600;
  color:var(--muted);
}
.summary-line strong{color:var(--ink)}
.summary-line.compact{font-size:.9rem}
.summary-line.total{
  padding-top:.65rem;
  margin-top:.2rem;
  border-top:1px solid var(--line);
  font-size:1.05rem;
}
.summary-line.total strong{color:var(--brand-strong)}

.form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 12px 28px rgba(15,32,32,.04);
  padding:1rem;
  display:grid;
  gap:.8rem;
}
.form-card-title{
  font-size:1rem;
  font-weight:800;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.8rem;
}
.form-grid label{
  display:grid; gap:.35rem;
  font-weight:700;
  color:var(--muted);
}
.form-grid label.full{grid-column:1/-1}
.form-grid input,
.form-grid textarea,
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.8rem .9rem;
  background:#fff;
  color:var(--ink);
}
.form-grid textarea, .form-card textarea{resize:vertical}
.radio-grid{
  display:grid;
  gap:.6rem;
}
.radio-grid label{
  display:flex; align-items:center; gap:.6rem;
  padding:.75rem .85rem;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:700;
  background:#fff;
}
.radio-grid.payments label i{color:var(--brand)}
.muted-line{
  color:var(--muted);
  font-weight:600;
  font-size:.9rem;
}

.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:1rem;
  align-content:start;
}
.contact-title{font-size:1.3rem;font-weight:800}
.contact-mini-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:.6rem;
}
.contact-mini-grid a{
  padding:.8rem .9rem;
  border:1px solid var(--line);
  border-radius:14px;
  font-weight:700;
  background:var(--brand-soft);
  color:var(--brand-strong);
}
.contact-mini-grid a i{margin-right:.45rem}

.faq-wrap{
  display:grid; gap:.8rem;
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 12px 28px rgba(15,32,32,.04);
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:1rem;
  font-weight:800;
  position:relative;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  position:absolute; right:1rem; top:.9rem;
  color:var(--brand);
  font-size:1.1rem; font-weight:800;
}
.faq-item[open] summary::after{content:"–"}
.faq-answer{
  padding:0 1rem 1rem;
  color:var(--muted);
  font-weight:600;
}

.card-grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}
.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:1rem;
  box-shadow:0 14px 32px rgba(15,32,32,.04);
  display:grid; gap:.7rem;
}
.info-card-title{
  font-weight:800;
  font-size:1rem;
}
.chip-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}
.chip-cloud span{
  padding:.7rem .9rem;
  border-radius:999px;
  border:1px solid rgba(54,150,148,.18);
  background:var(--brand-soft);
  color:var(--brand-strong);
  font-weight:700;
}

.site-footer{
  margin-top:2rem;
  background:#0f1818;
  color:#eef6f6;
  border-top:1px solid rgba(255,255,255,.05);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .7fr .7fr 1.2fr;
  gap:1rem;
  padding:2rem 0 1.2rem;
}


/* First column brand panel */
.footer-brand-block{
  display:grid;
  gap:.85rem;
  align-content:start;
  padding:1rem;
}

/* Brand row */
.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  font-weight:800;
  font-size:1.08rem;
  letter-spacing:.02em;
  text-decoration:none;
  line-height:1;
}

/* Logo chip (fits footer style better) */
.footer-brand-logo-wrap{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  flex:0 0 42px;
}

.footer-brand-logo{
  width:42px;
  height:42px;
  object-fit:contain;
  display:block;
}

/* Brand text: mostly white for consistency, brand accent via subtle glow */
.footer-brand-text{
  color:var(--brand);
  line-height:1;
  text-shadow:0 0 12px rgba(54,150,148,.16);
}

/* Info lines */
.footer-lines{
  display:grid;
  gap:.45rem;
  color:#b8caca;
  font-weight:600;
  font-size:.92rem;
  line-height:1.35;
}

/* Each line as a subtle row */
.footer-lines > div{
  position:relative;
  padding-left:.8rem;
}


/* First line slightly stronger */
.footer-lines > div:first-child{
  color:#e3efef;
  font-weight:700;
}

/* Optional: make first footer column breathe a bit more */
.footer-grid > :first-child{
  min-width:0;
}

.footer-col{
  display:grid; align-content:start; gap:.55rem;
}
.footer-col a{
  color:#dbe8e8;
  font-weight:600;
  transition:color .15s ease;
}
.footer-col a:hover{color:#fff}
.footer-title{
  font-weight:800;
  font-size:1rem;
  margin-bottom:.2rem;
}
.footer-note{
  color:#bdd0d0;
  font-weight:600;
  font-size:.9rem;
}
.newsletter-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:.55rem;
}
.newsletter-form input{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:12px;
  padding:.8rem .9rem;
}
.newsletter-form input::placeholder{color:#adc1c1}
.payment-badges{
  margin-top: 20px;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.payment-badges span{
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.5rem .7rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  font-weight:700;
  font-size:.82rem;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.07);
  padding:1rem 0 1.4rem;
  display:block; 
  color:#a8b9b9; font-weight:600;
}

.footer-bottom{padding-top:14px; margin-top:18px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.footer-credits-text{
  margin-top:18px;
}
.parallax{
  background-attachment:fixed;
  will-change:background-position;
}

@media (max-width: 1120px){
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .feature-row{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .product-detail-grid{grid-template-columns:1fr}
  .product-gallery{position:static}
  .cart-layout,.checkout-layout,.contact-layout{grid-template-columns:1fr}
  .cart-summary{position:static}
}

@media (max-width: 860px){
  :root{--header-h:72px}
  .category-grid,
  .card-grid-2{grid-template-columns:1fr}
  .split-panel{grid-template-columns:1fr}
  .split-media{min-height:520px}
  .category-card{min-height:360px}
  .hero, .page-hero{min-height:100svh}
  .hero-content,.page-hero-content{padding:5.5rem 0 2rem}
  .add-to-cart-form{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .newsletter-form{grid-template-columns:1fr}
  .cart-row{
    grid-template-columns:70px 1fr;
    align-items:start;
  }
  .cart-row img{width:70px;height:70px}
  .cart-qty-form{grid-column:2; justify-self:start}
  .cart-row-total{
    grid-column:2;
    justify-self:start;
  }
  .cart-row > form:last-child{
    position:absolute;
    right:1.1rem;
    margin-top:.2rem;
  }
  .cart-row{position:relative}
  .product-grid{grid-template-columns:1fr}
  .feature-row{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
  .parallax{background-attachment:scroll}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .parallax{background-attachment:scroll}
  .product-card:hover .product-image-wrap img,
  .category-card:hover img{transform:none}
}


/* =========================================================
   FOOTER MOBILE ALIGNMENT PATCH
   append after your current footer CSS
========================================================= */

@media (max-width: 860px){
  .site-footer{
    text-align:center;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:1.4rem;
    padding:2rem 0 1.4rem;
  }

  .footer-brand-block,
  .footer-col,
  .footer-newsletter{
    justify-items:center;
    text-align:center;
    padding-inline:0;
  }

  .footer-brand{
    justify-content:center;
  }

  .footer-lines{
    justify-items:center;
    text-align:center;
  }

  .footer-lines > div{
    padding-left:0;
  }

  .footer-col a{
    justify-self:center;
  }

  .newsletter-form{
    grid-template-columns:1fr;
    width:100%;
    max-width:420px;
    margin-inline:auto;
  }

  .newsletter-form .btn{
    width:100%;
    justify-content:center;
  }

  .payment-badges{
    justify-content:center;
    margin-top:16px;
  }

  .footer-bottom{
    display:grid;
    gap:.7rem;
    justify-items:center;
    text-align:center;
    padding:1rem 0 1.4rem;
  }

  .footer-credits-text{
    margin-top:0;
  }
}

@media (max-width: 560px){
  .footer-brand-block{
    padding:.4rem 0;
  }

  .footer-brand{
    gap:.6rem;
  }

  .footer-title{
    margin-bottom:.1rem;
  }

  .payment-badges{
    flex-direction:column;
    align-items:center;
  }

  .payment-badges span{
    justify-content:center;
    min-width:min(100%, 240px);
  }
}


/* =========================================================
   HOME PAGE THEME EXPANSION
========================================================= */

.hero-lead{
  max-width:640px;
  margin-top:1rem;
  color:rgba(255,255,255,.92);
  font-size:1.06rem;
  line-height:1.7;
}

.theme-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1rem;
}

.theme-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:1.35rem;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.theme-card:hover{
  transform:translateY(-5px);
  border-color:rgba(var(--brand-rgb), .25);
  box-shadow:0 24px 60px rgba(15,32,32,.12);
}

.theme-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:var(--brand-soft);
  color:var(--brand);
  font-size:1.15rem;
  margin-bottom:1rem;
}

.theme-card h3{
  margin:0 0 .55rem;
  font-size:1.08rem;
  color:var(--ink);
}

.theme-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.section-band{
  position:relative;
  overflow:hidden;
  min-height:420px;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
}

.section-band-soft{
  min-height:480px;
}

.section-band-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(7,20,20,.72), rgba(7,20,20,.34));
}

.section-band-content,
.lifestyle-stats{
  position:relative;
  z-index:1;
  color:#fff;
}

.section-band-content{
  max-width:720px;
  padding:5rem 0;
}

.section-band-content h2{
  margin:.2rem 0 .8rem;
  color:#fff;
}

.section-band-content p{
  max-width:620px;
  color:rgba(255,255,255,.88);
  line-height:1.75;
  margin-bottom:1.2rem;
}

.split-lead{
  color:var(--muted);
  line-height:1.7;
  margin:.4rem 0 1rem;
}


.lifestyle-stats{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:1.2rem;
  align-items:center;
  padding:5rem 0;
}

.lifestyle-copy h2{
  color:#fff;
  margin:.2rem 0 .8rem;
}

.lifestyle-copy p{
  max-width:640px;
  color:rgba(255,255,255,.88);
  line-height:1.75;
  margin:0;
}

.lifestyle-grid{
  display:grid;
  gap:.85rem;
}

.lifestyle-stat{
  display:grid;
  gap:.2rem;
  padding:1rem 1.1rem;
  border-radius:20px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(8px);
}

.lifestyle-stat strong{
  color:#fff;
  font-size:1.05rem;
}

.lifestyle-stat span{
  color:rgba(255,255,255,.8);
  font-weight:600;
}

.cta-bottom{
  padding-top:0;
  margin-top: 50px;
}

.cta-bottom-card{
  display:grid;
  grid-template-columns:1.2fr auto;
  gap:1rem;
  align-items:center;
  padding:1.4rem;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(54,150,148,.12), rgba(54,150,148,.05));
  border:1px solid rgba(var(--brand-rgb), .18);
  box-shadow:var(--shadow);
}

.cta-bottom-copy h2{
  margin:.2rem 0 .55rem;
}

.cta-bottom-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  max-width:720px;
}

.cta-bottom-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  justify-content:flex-end;
}

@media (max-width: 1120px){
  .theme-grid{
    grid-template-columns:1fr 1fr;
  }

  .feature-row-rich{
    grid-template-columns:1fr 1fr;
  }

  .lifestyle-stats,
  .cta-bottom-card{
    grid-template-columns:1fr;
    align-items: end;
    text-align: center;
    justify-content: center;
  }
  .cta-bottom-actions{
    justify-content:center;
  }
}

@media (max-width: 860px){
  .theme-grid,
  .feature-row-rich,
  .lifestyle-grid{
    grid-template-columns:1fr;
  }

  .section-band,
  .section-band-soft{
    min-height:auto;
  }

  .section-band-content,
  .lifestyle-stats{
    padding:4rem 0;
  }


  .cta-bottom-card{
    padding:1.1rem;
    border-radius:22px;
  }

  .cta-bottom-actions{
    justify-content:stretch;
  }

  .cta-bottom-actions .btn{
    width:100%;
    justify-content:center;
  }
}


.feature-row-rich{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:1rem;
}

.feature-card-rich{
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  text-decoration:none;
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.feature-card-rich:hover{
  transform:translateY(-8px);
  border-color:rgba(var(--brand-rgb), .24);
  box-shadow:0 28px 70px rgba(15,32,32,.16);
}

.feature-card-media{
  position:relative;
  height:220px;
  overflow:hidden;
}

.feature-card-media img{
  width:100%;
  height:100%;
  border-radius: var(--radius);
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}



.feature-card-body{
  display:grid;
  align-content:start;
  gap:.75rem;
  padding:1.2rem;
  color:var(--ink);
}


.feature-title{
  font-size:1.08rem;
  font-weight:800;
  color:var(--ink);
}

.feature-card-body span{
  color:var(--muted);
  line-height:1.6;
}

.feature-link{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  margin-top:.15rem;
  color:var(--brand);
  font-weight:700;
}

.feature-link i{
  transition:transform .18s ease;
}

.feature-card-rich:hover .feature-link i{
  transform:translateX(4px);
}

/* icon sits on photo */
.feature-card-media{
  position:relative;
}

.feature-icon-media{
  position:absolute;
  inset:0;
  z-index:2;
  display:grid;
  place-items:center;
  width:100%;
  height:100%;
  color:#fff;
  background:transparent;
  border:none;
  border-radius:0;
  backdrop-filter:none;
  box-shadow:none;
  pointer-events:none;
}

.feature-icon-media i{
  font-size:3rem;
  line-height:1;
  color:#fff;
  text-shadow:0 10px 24px rgba(0,0,0,.28);
}
/* desktop: icon reveals over photo on hover */
/* desktop: icon reveals centered over full image on hover */
@media (min-width: 861px){
  .feature-icon-media{
    opacity:0;
    transform:scale(.92);
    transition:opacity .24s ease, transform .24s ease;
  }

  .feature-card-rich:hover .feature-icon-media{
    opacity:1;
    transform:scale(1);
  }

  .feature-card-rich:hover .feature-card-overlay{
    background:linear-gradient(to top, rgba(8,22,22,.52), rgba(8,22,22,.22));
  }
}

/* mobile: icon always visible, centered on image */
@media (max-width: 860px){

  .feature-row-rich{
    display:grid;
    grid-template-columns:1fr;
    gap:1rem;
  }

  .feature-card-media{
    height:200px;
  }

  .feature-icon-media{
    display:none;
  }

  .feature-icon-media i{
    font-size:2.4rem;
  }
}



.hero,
.page-hero{
  position:relative;
  min-height:100svh;
  display:grid;
  align-items:end;
  padding-top:var(--header-h);
  overflow:hidden;
  isolation:isolate;
}

.page-hero{
  min-height:62svh;
}

.page-hero.slim{
  min-height:44svh;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 20% 10%, rgba(54,150,148,.15), transparent 55%),
    linear-gradient(to top, rgba(8,15,15,.78), rgba(8,15,15,0));
}

.hero-content,
.page-hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:7rem 0 3rem;
}


/* =========================================================
   ABOUT PAGE - FULL REWORK
========================================================= */

.about-hero .page-hero-content{
  max-width:860px;
}

.founder-story-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:1rem;
  align-items:stretch;
}

.founder-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:grid;
}

.founder-photo-wrap{
  min-height:560px;
}

.founder-photo{
  width:100%;
  height:100%;
  object-fit:cover;
}

.founder-card-body{
  padding:1.2rem;
  display:grid;
  gap:.9rem;
  align-content:start;
}

.founder-meta{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
}

.founder-meta span{
  display:inline-flex;
  padding:.55rem .8rem;
  border-radius:999px;
  background:var(--brand-soft);
  border:1px solid rgba(54,150,148,.16);
  color:var(--brand-strong);
  font-weight:700;
  font-size:.88rem;
}

.founder-note{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-weight:600;
}

.story-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:1.5rem;
  display:grid;
  gap:1rem;
  align-content:start;
}

.story-lead{
  margin:0;
  color:var(--ink);
  font-size:1.08rem;
  line-height:1.7;
  font-weight:700;
}

.story-flow{
  display:grid;
  gap:.95rem;
}

.story-flow p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-weight:600;
}

.story-quote{
  padding:1rem 1.1rem;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(54,150,148,.14), rgba(54,150,148,.05));
  border:1px solid rgba(54,150,148,.16);
  color:var(--ink);
  font-size:1.08rem;
  font-weight:800;
  line-height:1.5;
}

/* Journey cards with stock photos */
.journey-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:1rem;
}

.journey-card-photo{
  position:relative;
  min-height:420px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 18px 40px rgba(8,15,15,.12);
  background:#123;
  isolation:isolate;
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.journey-card-media{
  position:absolute;
  inset:0;
  z-index:0;
}

.journey-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease, filter .35s ease;
}

.journey-card-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(8,16,16,.9) 0%, rgba(8,16,16,.58) 42%, rgba(8,16,16,.18) 72%, rgba(8,16,16,.06) 100%),
    radial-gradient(circle at 20% 18%, rgba(54,150,148,.22), transparent 42%);
  transition:background .3s ease;
}

.journey-card-body{
  position:relative;
  z-index:1;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:.55rem;
  padding:1.15rem;
}

.journey-step{
  display:inline-flex;
  width:max-content;
  padding:.38rem .62rem;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  color:#d7fffd;
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
}

.journey-card h3{
  margin:0;
  color:#fff;
  font-size:1.12rem;
  line-height:1.12;
  text-shadow:0 4px 16px rgba(0,0,0,.28);
}

.journey-card p{
  margin:0;
  color:rgba(255,255,255,.92);
  line-height:1.65;
  font-weight:600;
  text-shadow:0 3px 14px rgba(0,0,0,.26);
}

@media (hover:hover){
  .journey-card-photo:hover{
    transform:translateY(-6px);
    box-shadow:0 26px 55px rgba(8,15,15,.18);
    border-color:rgba(255,255,255,.24);
  }

  .journey-card-photo:hover .journey-card-media img{
    transform:scale(1.06);
    filter:saturate(1.06);
  }

  .journey-card-photo:hover .journey-card-overlay{
    background:
      linear-gradient(to top, rgba(8,16,16,.92) 0%, rgba(8,16,16,.5) 42%, rgba(8,16,16,.14) 72%, rgba(8,16,16,.04) 100%),
      radial-gradient(circle at 20% 18%, rgba(54,150,148,.3), transparent 46%);
  }
}

/* Vision / Mission bands */
.about-band{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:1rem;
  align-items:stretch;
  margin-bottom:1.2rem;
}

.about-band-reverse{
  grid-template-columns:.85fr 1.15fr;
}

.about-band-media{
  min-height:360px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}

.about-band-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.about-band-copy{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:1.35rem;
  display:grid;
  align-content:center;
  gap:.75rem;
}

.about-band-copy h3{
  margin:0;
  font-size:clamp(1.3rem, 2.4vw, 2rem);
}

.about-band-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-weight:600;
}

/* Vision / Mission rich cards */
.rich-info-grid{
  gap:1rem;
}

.info-card-photo{
  overflow:hidden;
  padding:0;
  border-radius:24px;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.info-card-photo:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 55px rgba(15,32,32,.1);
  border-color:rgba(54,150,148,.16);
}

.info-card-media{
  position:relative;
  height:220px;
  overflow:hidden;
}

.info-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.info-card-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(8,16,16,.58), rgba(8,16,16,.08)),
    radial-gradient(circle at 18% 18%, rgba(54,150,148,.18), transparent 40%);
  pointer-events:none;
}

.info-card-photo:hover .info-card-media img{
  transform:scale(1.05);
}

.info-card-body{
  padding:1rem;
  display:grid;
  gap:.8rem;
}

.info-card-photo .statement-list li{
  background:#fff;
}

/* Values */
.values-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:1rem;
  align-items:start;
}

.values-copy{
  position:sticky;
  top:calc(var(--header-h) + 1rem);
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:1.35rem;
  display:grid;
  gap:1rem;
}

.manifesto-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.75rem;
}

.manifesto-list li{
  padding:.9rem .95rem;
  border-radius:16px;
  background:var(--brand-soft);
  border:1px solid rgba(54,150,148,.14);
  color:var(--ink);
  font-weight:800;
}

.values-callout{
  padding:1rem 1.05rem;
  border-radius:22px;
  background:#0f1818;
  color:#fff;
  display:grid;
  gap:.35rem;
}

.values-callout strong{
  font-size:1rem;
}

.values-callout p{
  margin:0;
  color:rgba(255,255,255,.84);
  line-height:1.7;
  font-weight:600;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1rem;
}

.value-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:1.2rem;
  display:grid;
  gap:.7rem;
  min-height:100%;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.value-card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 55px rgba(15,32,32,.10);
  border-color:rgba(54,150,148,.18);
}

.value-kicker{
  display:inline-flex;
  width:max-content;
  padding:.38rem .58rem;
  border-radius:999px;
  background:var(--brand-soft);
  border:1px solid rgba(54,150,148,.16);
  color:var(--brand-strong);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
}

.value-card h3{
  margin:0;
  font-size:1.08rem;
  color:var(--ink);
}

.value-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-weight:600;
}

.values-chips-wrap{
  margin-top:1rem;
}

.values-head-inline{
  margin-bottom:1rem;
}

/* Manifesto */
.about-manifesto{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  padding:2rem;
  background:linear-gradient(135deg, #0f1818, #143434);
  box-shadow:var(--shadow);
}

.about-manifesto::before{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(54,150,148,.28), transparent 65%);
  pointer-events:none;
}

.about-manifesto h2{
  color:#fff;
}

.about-manifesto p{
  max-width:760px;
  margin:.9rem 0 1.1rem;
  color:rgba(255,255,255,.86);
  line-height:1.8;
  font-weight:600;
}

.manifesto-chips span{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}

/* Responsive */
@media (max-width: 1120px){
  .founder-story-grid,
  .about-band,
  .about-band-reverse,
  .values-layout{
    grid-template-columns:1fr;
  }

  .journey-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .values-copy{
    position:static;
  }
}

@media (max-width: 860px){
  .founder-photo-wrap{
    min-height:420px;
  }

  .story-panel,
  .values-copy,
  .about-manifesto,
  .about-band-copy{
    padding:1.2rem;
  }

  .journey-grid,
  .values-grid,
  .card-grid-2{
    grid-template-columns:1fr;
  }

  .journey-card-photo{
    min-height:340px;
  }

  .journey-card-body{
    padding:1rem;
  }

  .journey-card h3{
    font-size:1.05rem;
  }

  .journey-card p{
    font-size:.95rem;
    line-height:1.58;
  }

  .about-band-media,
  .info-card-media{
    height:auto;
    min-height:240px;
  }
}


/* =========================================================
   PAYMENT BADGES / FOOTER PAYMENT CHIPS
   Works with Font Awesome icons and image logos
========================================================= */

.payment-badges {
  width: 100%;
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
}

.payment-chip2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 56px;
  height: 44px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  color: #eef6f6;
  line-height: 1;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.payment-chip2:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.payment-chip2 i {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  color: currentColor;
}

.payment-chip2 .fa-google-pay {
  font-size: 2.15rem;
}

.payment-chip-logo {
  min-width: 74px;
  padding-inline: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
}

.payment-chip-logo:hover {
  background: #ffffff;
}

.payment-logo {
  display: block;
  width: auto;
  height: 24px;
  max-width: 112px;
  object-fit: contain;
  border-radius: 0;
}

.payment-chip-logo[title="TWINT"] .payment-logo {
  height: 22px;
  max-width: 82px;
}

.payment-chip-logo[title="PostFinance Pay"] .payment-logo {
  height: 24px;
  max-width: 118px;
}

/* Prevent old generic span styling from stretching logos oddly */
.payment-badges span.payment-chip2 {
  gap: 0;
  font-size: 1rem;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 860px) {
  .payment-badges {
    justify-content: center;
    gap: 0.6rem;
    max-width: 420px;
    margin-inline: auto;
  }

  .payment-chip2 {
    height: 46px;
    min-width: 58px;
  }

  .payment-chip2 i {
    font-size: 1.85rem;
  }

  .payment-chip2 .fa-google-pay {
    font-size: 2.25rem;
  }

  .payment-chip-logo {
    min-width: 86px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .payment-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
    max-width: 340px;
  }

  .payment-chip2 {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0.35rem 0.45rem;
    border-radius: 16px;
  }

  .payment-chip-logo {
    min-width: 0;
    padding-inline: 0.5rem;
  }

  .payment-logo {
    height: 22px;
    max-width: 92px;
  }

  .payment-chip-logo[title="TWINT"] .payment-logo {
    height: 20px;
    max-width: 70px;
  }

  .payment-chip-logo[title="PostFinance Pay"] .payment-logo {
    height: 22px;
    max-width: 94px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .payment-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 260px;
  }
}

/* =========================================================
   LEGAL PAGES (Impressum / Datenschutz)
========================================================= */
.legal-wrap{
  max-width:820px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:2.2rem;
}
.legal-wrap h2{
  margin:2rem 0 .7rem;
  font-size:1.15rem;
  line-height:1.35;
}
.legal-wrap h2:first-child,
.legal-wrap > p:first-child{
  margin-top:0;
}
.legal-wrap p{
  margin:0 0 1rem;
  line-height:1.75;
}
.legal-wrap a{
  color:var(--brand);
}
.legal-wrap .statement-list{
  margin:0 0 1rem;
}
.legal-wrap .muted-line{
  margin-top:1.6rem;
}

@media (max-width: 720px){
  .legal-wrap{
    padding:1.4rem;
    border-radius:18px;
  }
}