/* ============================================================
   JIMMLY – Landing Page Styles v3
   Marka / wizytówka B2B — lekki, nowoczesny, mobile-first
   ============================================================ */

/* ---- RESET ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:'Poppins',system-ui,-apple-system,sans-serif;color:#1e1b3a;background:#fff;line-height:1.65;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;font-family:inherit;border:none;background:none}
input,textarea,select{font-family:inherit}

@media (prefers-reduced-motion: reduce) {
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
}

/* ---- TOKENS ---- */
:root{
  --cl:#7c5cbf;          /* lavender primary */
  --cl-light:#ede9f8;    /* lavender bg */
  --cl-mid:#c8b8f0;      /* lavender mid */
  --cl-deep:#5e3fa3;     /* lavender deep */
  --ct:#1e1b3a;          /* text */
  --ctm:#6b7280;         /* text muted */
  --cborder:#ede9f8;

  --r-sm:14px;
  --r-md:22px;
  --r-lg:32px;
  --r-xl:44px;
  --r-pill:999px;

  --sh-xs:0 2px 8px rgba(124,92,191,.08);
  --sh-sm:0 4px 16px rgba(124,92,191,.11);
  --sh-md:0 10px 36px rgba(124,92,191,.15);
  --sh-lg:0 22px 60px rgba(124,92,191,.20);

  --ease:.24s cubic-bezier(.4,0,.2,1);
  --w:1320px;
  --hh:76px;
}

/* ---- UTILITIES ---- */
.container{width:100%;max-width:var(--w);margin:0 auto;padding:0 1.5rem}
.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}
.section{padding:5.5rem 0}
.section--bg{background:#faf9ff}
.section--lavender{background:linear-gradient(135deg,var(--cl) 0%,var(--cl-deep) 100%);color:#fff}
.section-center{text-align:center;display:flex;flex-direction:column;align-items:center}

.skip-link{
  position:absolute;top:-100%;left:1rem;z-index:1000;
  background:var(--cl);color:#fff;padding:.75rem 1.25rem;border-radius:var(--r-sm);
  font-weight:700;font-size:.9rem;transition:top var(--ease);
}
.skip-link:focus{top:1rem}

/* ---- TYPE ---- */
.chip{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--cl-deep);background:var(--cl-light);padding:.35rem 1rem;border-radius:var(--r-pill);margin-bottom:1.1rem}
.chip--light{color:#fff;background:rgba(255,255,255,.22)}
.h2{font-size:clamp(1.7rem,3.5vw,2.6rem);font-weight:800;line-height:1.15;margin-bottom:.75rem;color:var(--ct)}
.h2--light{color:#fff}
.subtitle{color:var(--ctm);max-width:580px;margin-bottom:2.75rem;font-size:1rem;line-height:1.7}
.subtitle--c{margin-inline:auto;text-align:center}

/* ---- BUTTONS ---- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;padding:.8rem 1.9rem;border-radius:var(--r-pill);font-weight:700;font-size:.95rem;transition:transform var(--ease),box-shadow var(--ease),background var(--ease);white-space:nowrap;letter-spacing:.01em;min-height:44px}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
.btn--primary{background:var(--cl);color:#fff;box-shadow:0 6px 24px rgba(124,92,191,.38)}
.btn--primary:hover{background:var(--cl-deep);box-shadow:0 10px 32px rgba(124,92,191,.48)}
.btn--outline{background:transparent;color:var(--cl);border:2.5px solid var(--cl)}
.btn--outline:hover{background:var(--cl-light)}
.btn--white{background:#fff;color:var(--cl);box-shadow:0 4px 20px rgba(0,0,0,.12)}
.btn--white:hover{background:var(--cl-light)}
.btn--ghost{background:rgba(255,255,255,.5);color:var(--cl);border:2px solid var(--cl-mid)}
.btn--ghost:hover{background:#fff}
.btn--sm{padding:.55rem 1.3rem;font-size:.85rem;min-height:38px}
.btn--full{width:100%;justify-content:center}
.btn--lg{padding:1rem 2.4rem;font-size:1.05rem}

.badge-soon{
  font-size:.62rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em;
  background:rgba(124,92,191,.15);color:var(--cl);padding:.2rem .5rem;border-radius:var(--r-pill);
}

/* ============================================================
   HEADER
   ============================================================ */
.header{
  position:sticky;top:0;z-index:200;
  height:var(--hh);
  background:#fff;
  border-bottom:1px solid #f0edf8;
  transition:box-shadow var(--ease);
}
.header.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.08)}
.header__inner{display:flex;align-items:center;gap:1.5rem;height:100%}

.header__logo{display:flex;align-items:center;flex-shrink:0;text-decoration:none}
.header__logo-img{height:38px;width:auto;max-width:150px;object-fit:contain}

/* Nav */
.header__nav{flex:1;display:flex;justify-content:center}
.header__nav-list{display:flex;align-items:center;gap:.15rem}
.header__nav-link{
  display:inline-flex;align-items:center;gap:.3rem;
  padding:.6rem .85rem;
  border-radius:var(--r-sm);
  font-size:.85rem;font-weight:500;color:#374151;
  transition:color var(--ease),background var(--ease);
  white-space:nowrap;
}
.header__nav-link:hover{color:var(--cl);background:var(--cl-light)}

.header__cta{flex-shrink:0}

/* Hamburger */
.header__hamburger{display:none;flex-direction:column;gap:5px;width:44px;height:44px;align-items:center;justify-content:center;border-radius:var(--r-sm);transition:background var(--ease);flex-shrink:0}
.header__hamburger:hover{background:var(--cl-light)}
.header__hamburger span{display:block;width:22px;height:2px;background:#374151;border-radius:2px;transition:transform var(--ease),opacity var(--ease)}
.header__hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.header__hamburger.active span:nth-child(2){opacity:0;transform:scaleX(0)}
.header__hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ============================================================
   HERO
   ============================================================ */
.hero{background:#fff;overflow:hidden;padding:0}
.hero__inner{display:grid;grid-template-columns:1fr 1fr;min-height:480px;align-items:stretch;max-width:100%}

.hero__content{
  padding:4rem 2rem 4rem calc((100vw - var(--w)) / 2 + 1.5rem);
  padding-left:max(1.5rem, calc((100vw - var(--w)) / 2 + 1.5rem));
  max-width:calc(var(--w) / 2 + (100vw - var(--w)) / 2);
  display:flex;flex-direction:column;justify-content:center;
}
.hero__title{
  font-size:clamp(2rem,3.8vw,3rem);
  font-weight:800;line-height:1.15;
  color:#111827;
  margin-bottom:1.1rem;
  letter-spacing:-.02em;
}
.hero__desc{
  font-size:1.05rem;color:#4b5563;
  line-height:1.7;margin-bottom:2rem;
  max-width:460px;
}
.hero__cta{display:flex;gap:.85rem;flex-wrap:wrap}

.btn--hero-primary{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.85rem 2rem;border-radius:var(--r-sm);
  background:#4f3a8c;color:#fff;font-weight:600;font-size:.98rem;
  transition:background var(--ease),transform var(--ease);
  min-height:48px;
}
.btn--hero-primary:hover{background:#3d2d73;transform:translateY(-1px)}

.hero__photo{position:relative;display:flex;align-items:center;justify-content:flex-end;overflow:hidden}
.hero__photo-img{width:115%;max-width:none;height:auto;display:block;margin-right:-5%}

/* ============================================================
   ABOUT / O MARCE
   ============================================================ */
.about__grid{display:grid;grid-template-columns:1.15fr 1fr;gap:3.5rem;align-items:center}
.about__text p{color:var(--ctm);margin-bottom:1rem;line-height:1.8}

/* Premium "brand at a glance" panel */
.about__panel{
  position:relative;background:linear-gradient(155deg,#fff 0%,#faf8ff 100%);
  border-radius:var(--r-xl);padding:2rem 1.75rem 1.75rem;
  border:1.5px solid rgba(124,92,191,.14);box-shadow:var(--sh-md);
  overflow:hidden;
}
.about__panel::before{
  content:'';position:absolute;top:-60px;right:-60px;width:160px;height:160px;
  background:radial-gradient(circle,rgba(124,92,191,.14),transparent 70%);
  border-radius:50%;pointer-events:none;
}
.about__panel-head{display:flex;align-items:center;gap:.75rem;margin-bottom:1.5rem;position:relative}
.about__panel-icon{
  width:40px;height:40px;border-radius:var(--r-sm);overflow:hidden;flex-shrink:0;
  box-shadow:var(--sh-xs);border:1.5px solid rgba(124,92,191,.15);
}
.about__panel-icon img{width:100%;height:100%;object-fit:cover}
.about__panel-eyebrow{font-size:.78rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--cl-deep)}
.about__panel-grid{display:grid;grid-template-columns:1fr 1fr;gap:.9rem;position:relative}
.about__feature{
  display:flex;flex-direction:column;gap:.6rem;
  background:#fff;border-radius:var(--r-md);padding:1.1rem .9rem;
  border:1.5px solid var(--cborder);box-shadow:var(--sh-xs);
  transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease);
}
.about__feature:hover{transform:translateY(-3px);box-shadow:var(--sh-sm);border-color:var(--cl-mid)}
.about__feature span{font-size:.82rem;font-weight:700;color:var(--ct);line-height:1.3}
.about__feature-icon{
  width:34px;height:34px;border-radius:var(--r-sm);
  display:flex;align-items:center;justify-content:center;color:#fff;flex-shrink:0;
}
.about__feature-icon--a{background:linear-gradient(135deg,#8b5cf6,#7c5cbf)}
.about__feature-icon--b{background:linear-gradient(135deg,#f472b6,#ec4899)}
.about__feature-icon--c{background:linear-gradient(135deg,#fbbf24,#f59e0b)}
.about__feature-icon--d{background:linear-gradient(135deg,#38bdf8,#0ea5e9)}
.about__panel-foot{
  margin-top:1.25rem;padding-top:1.1rem;border-top:1px solid var(--cborder);
  font-size:.8rem;color:var(--ctm);line-height:1.5;position:relative;
}

/* ============================================================
   HISTORIA
   ============================================================ */
.history__grid{display:grid;grid-template-columns:1fr 1.2fr;gap:3.5rem;align-items:center}
.history__photo img{border-radius:var(--r-xl);box-shadow:var(--sh-md);width:100%;height:auto;aspect-ratio:4/3;object-fit:cover}
.history__text p{color:var(--ctm);margin-bottom:1rem;line-height:1.8}
.history__text p:last-child{margin-bottom:0}

/* ============================================================
   OBSZARY / PRODUKTY
   ============================================================ */
.areas__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
}
.area-card{
  background:#fff;border-radius:var(--r-md);padding:1.75rem 1.5rem;
  box-shadow:var(--sh-xs);border:2px solid var(--cborder);
  transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease);
}
.area-card:hover{transform:translateY(-5px);box-shadow:var(--sh-md);border-color:var(--cl-mid)}
.area-card__icon{
  width:52px;height:52px;border-radius:var(--r-sm);
  background:var(--cl-light);color:var(--cl);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;
}
.area-card__title{font-size:1rem;font-weight:800;color:var(--ct);margin-bottom:.4rem}
.area-card__desc{font-size:.86rem;color:var(--ctm);line-height:1.55}

/* ============================================================
   WHY / DLACZEGO JIMMLY
   ============================================================ */
.why__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.why__card{
  background:#fff;border-radius:var(--r-md);padding:2rem 1.5rem 1.75rem;
  box-shadow:var(--sh-xs);
  transition:transform var(--ease),box-shadow var(--ease);
  border-bottom:4px solid var(--cl-light);
}
.why__card:hover{transform:translateY(-6px);box-shadow:var(--sh-md);border-bottom-color:var(--cl-mid)}
.why__icon{
  width:52px;height:52px;border-radius:50%;
  background:var(--cl-light);color:var(--cl);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;
}
.why__card h3{font-size:.98rem;font-weight:800;margin-bottom:.55rem;color:var(--ct)}
.why__card p{font-size:.85rem;color:var(--ctm);line-height:1.6}

/* ============================================================
   MISJA
   ============================================================ */
.mission__inner{max-width:680px;margin:0 auto;text-align:center}
.mission__inner .chip--light{margin-bottom:1.1rem}
.mission__inner h2{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:900;color:#fff;margin-bottom:1.25rem;line-height:1.15}
.mission__inner p{color:rgba(255,255,255,.96);line-height:1.8;margin-bottom:.75rem;font-size:1.05rem}

/* ============================================================
   DYSTRYBUCJA + B2B
   ============================================================ */
.distribution__top{display:grid;grid-template-columns:1.3fr 1fr;gap:3rem;align-items:start;margin-bottom:4rem}
.distribution__text p{color:var(--ctm);line-height:1.8;margin-bottom:1.5rem}

.benefit-list{display:flex;flex-direction:column;gap:.85rem}
.benefit-list li{
  display:flex;align-items:center;gap:.75rem;
  font-size:.9rem;font-weight:600;color:var(--ct);
}
.benefit-list__icon{
  width:24px;height:24px;border-radius:50%;flex-shrink:0;
  background:var(--cl-light);color:var(--cl-deep);
  display:flex;align-items:center;justify-content:center;
}

.b2b-card{
  background:linear-gradient(160deg,var(--cl) 0%,var(--cl-deep) 100%);
  border-radius:var(--r-xl);padding:2.5rem 2rem;color:#fff;
  box-shadow:var(--sh-lg);position:relative;overflow:hidden;
}
.b2b-card::after{
  content:'';position:absolute;bottom:-70px;right:-70px;width:180px;height:180px;
  background:radial-gradient(circle,rgba(255,255,255,.14),transparent 70%);
  border-radius:50%;pointer-events:none;
}
.b2b-card__icon{
  width:56px;height:56px;border-radius:var(--r-md);
  background:rgba(255,255,255,.16);display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;position:relative;
}
.b2b-card h3{font-size:1.3rem;font-weight:900;margin-bottom:.75rem;position:relative}
.b2b-card p{opacity:.92;font-size:.9rem;line-height:1.65;margin-bottom:1.75rem;position:relative}
.b2b-card__actions{display:flex;flex-direction:column;gap:.85rem;position:relative}
.b2b-card__actions .btn{width:100%;white-space:normal;text-align:center;line-height:1.3}
.b2b-card__note{font-size:.78rem;color:rgba(255,255,255,.85);line-height:1.6}
.b2b-card__note .badge-soon{display:inline-block;background:rgba(255,255,255,.22);color:#fff;margin-right:.35rem;margin-bottom:.2rem}

/* Brand portfolio */
.brands__head{margin-bottom:2rem}
.brands__title{font-size:clamp(1.15rem,2vw,1.5rem);font-weight:800;color:var(--ct)}
.brands__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.brand-card{
  background:#fff;border-radius:var(--r-lg);padding:2.25rem 1.75rem;text-align:center;
  border:1.5px solid var(--cborder);box-shadow:var(--sh-xs);
  transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease);
  display:flex;flex-direction:column;align-items:center;gap:1.1rem;
}
.brand-card:hover{transform:translateY(-6px);box-shadow:var(--sh-md);border-color:var(--cl-mid)}
.brand-card__logo-wrap{display:flex;flex-direction:column;align-items:center;gap:.6rem;min-height:64px;justify-content:center}
.brand-card__logo{height:40px;width:auto;max-width:170px;object-fit:contain}
.brand-card__monogram{
  width:56px;height:56px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;font-weight:900;color:#fff;
}
.brand-card--lena .brand-card__monogram{background:linear-gradient(135deg,#38bdf8,#0ea5e9)}
.brand-card--berbesa .brand-card__monogram{background:linear-gradient(135deg,#fb923c,#f59e0b)}
.brand-card__wordmark{font-size:1.1rem;font-weight:900;letter-spacing:-.01em;color:var(--ct)}
.brand-card__desc{font-size:.85rem;color:var(--ctm);line-height:1.6}

/* ============================================================
   KONTAKT / FORMULARZ B2B
   ============================================================ */
.contact__form{
  max-width:760px;margin:0 auto;
  background:#fff;border-radius:var(--r-xl);padding:2.5rem;
  box-shadow:var(--sh-md);border:2px solid var(--cborder);
  display:flex;flex-direction:column;gap:1.25rem;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.form-group{display:flex;flex-direction:column;gap:.4rem}
.form-group label{font-size:.85rem;font-weight:700;color:var(--ct)}
.form-group input,.form-group textarea,.form-group select{
  padding:.85rem 1.1rem;border:2px solid var(--cborder);border-radius:var(--r-sm);
  font-size:.95rem;color:var(--ct);transition:border-color var(--ease),box-shadow var(--ease);
  outline:none;background:#fff;min-height:48px;
}
.form-group select{appearance:auto}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--cl-mid);box-shadow:0 0 0 4px rgba(124,92,191,.1)}
.form-group input.error,.form-group textarea.error{border-color:#ef4444;box-shadow:0 0 0 4px rgba(239,68,68,.1)}
.form-group textarea{resize:vertical;min-height:120px}
.form-error{font-size:.78rem;color:#dc2626;min-height:1em;display:block}

.form-group--checkbox{flex-direction:row;flex-wrap:wrap;align-items:flex-start;gap:.6rem}
.form-group--checkbox input[type="checkbox"]{
  width:22px;height:22px;flex-shrink:0;accent-color:var(--cl);margin-top:.1rem;
}
.form-group--checkbox label{font-size:.8rem;font-weight:500;color:var(--ctm);line-height:1.5;flex:1;min-width:200px}
.form-group--checkbox .form-error{flex-basis:100%}

.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

.form-notice{
  padding:1rem 1.25rem;border-radius:var(--r-sm);font-size:.87rem;line-height:1.55;
  background:var(--cl-light);color:var(--cl-deep);border:1.5px solid rgba(124,92,191,.2);
}
.form-notice.is-error{background:#fef2f2;color:#b91c1c;border-color:#fecaca}
.form-notice.is-success{background:#f0fdf4;color:#15803d;border-color:#bbf7d0}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:#13112a;color:rgba(255,255,255,.75);padding:4rem 0 0}
.footer__grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:2.5rem;padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer__brand p{font-size:.83rem;margin-top:1rem;line-height:1.7;max-width:280px;color:rgba(255,255,255,.6)}
.footer__logo{display:inline-flex}
.footer__logo-plate{
  display:inline-flex;align-items:center;background:#fff;border-radius:var(--r-sm);
  padding:.5rem .9rem;
}
.footer__logo-plate img{height:28px;width:auto}
.footer__heading{font-size:.86rem;font-weight:800;color:#fff;margin-bottom:1.1rem}
.footer__links{display:flex;flex-direction:column;gap:.65rem}
.footer__links li a,.footer__links li span{font-size:.82rem;color:rgba(255,255,255,.58);transition:color var(--ease)}
.footer__links li a:hover{color:#fff}
.footer__soon{color:rgba(255,255,255,.4);font-style:italic}
.footer__bottom{
  padding:1.35rem 0;display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:.75rem;font-size:.76rem;color:rgba(255,255,255,.38);
}
.footer__legal-pending{color:rgba(255,255,255,.35);font-style:italic}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:150;
  padding:.85rem 1rem;
  background:rgba(255,255,255,.97);backdrop-filter:blur(10px);
  border-top:1px solid var(--cborder);
  box-shadow:0 -4px 24px rgba(0,0,0,.1);
  padding-bottom:max(.85rem, env(safe-area-inset-bottom));
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1200px){
  .why__grid{grid-template-columns:repeat(3,1fr)}
  .footer__grid{grid-template-columns:1fr 1fr 1fr}
  .footer__brand{grid-column:1/-1}
}
@media(max-width:1024px){
  .hero__inner{gap:2rem}
  .about__grid{grid-template-columns:1fr;gap:2rem}
  .about__panel{max-width:480px}
  .history__grid{grid-template-columns:1fr;gap:2rem}
  .history__photo{order:-1}
  .areas__grid{grid-template-columns:repeat(2,1fr)}
  .why__grid{grid-template-columns:repeat(2,1fr)}
  .distribution__top{grid-template-columns:1fr;margin-bottom:3rem}
  .form-row{grid-template-columns:1fr}
}
@media(max-width:768px){
  :root{--hh:64px}
  .section{padding:3.5rem 0}
  /* Header mobile */
  .header__nav{
    display:none;position:fixed;top:var(--hh);left:0;right:0;bottom:0;
    background:rgba(255,255,255,.98);backdrop-filter:blur(16px);
    flex-direction:column;align-items:center;justify-content:center;z-index:99;
  }
  .header__nav.open{display:flex}
  .header__nav-list{flex-direction:column;gap:.35rem;text-align:center}
  .header__nav-link{font-size:1.2rem;padding:.9rem 2.5rem}
  .header__hamburger{display:flex}
  .header__cta{display:none}
  .header__logo-img{height:32px}
  /* Hero mobile */
  .hero__inner{grid-template-columns:1fr}
  .hero__photo{display:none}
  .hero__content{padding:3rem 1.5rem 2.5rem;max-width:100%}
  .areas__grid{grid-template-columns:1fr 1fr}
  .why__grid{grid-template-columns:1fr}
  .distribution__top{margin-bottom:2.5rem}
  .brands__grid{grid-template-columns:1fr}
  .brand-card{padding:1.75rem 1.5rem}
  .footer__grid{grid-template-columns:1fr 1fr;gap:2rem}
  .footer__brand{grid-column:1/-1}
  .mobile-cta{display:block}
  body{padding-bottom:78px}
  .contact__form{padding:1.75rem}
}
@media(max-width:540px){
  .hero__cta .btn--hero-primary{width:100%;justify-content:center}
  .areas__grid{grid-template-columns:1fr 1fr}
  .footer__grid{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;text-align:center}
  .footer__legal{display:flex;flex-direction:column;align-items:center;gap:.5rem}
  .contact__form{padding:1.5rem}
}
@media(max-width:400px){
  .areas__grid{grid-template-columns:1fr}
  .about__panel-grid{grid-template-columns:1fr}
}

/* ============================================================
   FOCUS
   ============================================================ */
:focus-visible{outline:3px solid var(--cl);outline-offset:3px;border-radius:4px}
