@font-face{
  font-family:"Montserrat";
  src:url("../font/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

/* Fonty i zmienne */
:root{
  --bg:#f3eee8;
  --panel:rgba(255,255,255,.94);
  --panel-strong:rgba(255,255,255,.98);

  --nav-bg:rgba(139,116,95,.94);
  --nav-bg-scrolled:rgba(126,103,84,.97);

  --text:#002097;
  --text-soft:rgba(0,32,151,.78);
  --text-muted:rgba(0,32,151,.68);
  --white:#ffffff;

  --border:rgba(0,32,151,.12);
  --accent:#002097;
  --accent-soft:rgba(0,32,151,.08);
  --brown:#8b745f;

  --radius:18px;
  --container:1180px;
  --header-h:78px;

  --brand-desktop-slot:clamp(330px, 20vw, 380px);
}

/* Reset, baza i klasy pomocnicze */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:var(--header-h);
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}

body{
  margin:0;
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#f3eee8;
  background:var(--bg);
  color:#002097;
  color:var(--text);
  line-height:1.55;
  max-width:100%;
  overflow-x:hidden;
  overscroll-behavior-x:none;
}

body.no-scroll{
  overflow:hidden;
  overscroll-behavior:none;
}

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

button,
input,
textarea,
select{
  font:inherit;
  color:inherit;
}

a,
a:visited{
  color:#002097;
  color:var(--text);
}

.container{
  width:calc(100% - 32px);
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  top:12px;
  left:-999px;
  z-index:9999;
  padding:10px 12px;
  color:#fff;
  background:#000;
  border-radius:10px;
}

.skip-link:focus{
  left:12px;
}

.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;
}

.nav-link:focus-visible,
.to-top:focus-visible,
.nav-toggle:focus-visible,
.link:focus-visible{
  outline:2px solid rgba(0,32,151,.75);
  outline-offset:3px;
}

/* Ikony i linki kontaktowe */

.icon-img-onas{
  width:52px;
  height:52px;
  object-fit:contain;
}

.icon-img{
  width:35px;
  height:35px;
  object-fit:contain;
}

.arrow-img{
  width:30px;
  height:30px;
  object-fit:contain;
}

.link-mobile{
  display:none;
}

.link-desktop{
  display:inline;
}

/* Navbar */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:78px;
  height:var(--header-h);
  display:flex;
  align-items:center;
  background:rgba(139,116,95,.94);
  background:var(--nav-bg);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.10);
  transition:background .18s ease, box-shadow .18s ease;
}

.site-header.is-scrolled{
  background:rgba(126,103,84,.97);
  background:var(--nav-bg-scrolled);
  box-shadow:0 10px 34px rgba(73,54,40,.22);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:30px;
  width:100%;
}

.brand{
  display:flex;
  align-items:center;
  flex:0 0 var(--brand-desktop-slot);
  margin-left:clamp(10px, 8vw, 150px);
  text-decoration:none;
}

.brand img{
  width:auto;
  max-width:100%;
  height:65px;
  padding:0;
  background:transparent;
  border-radius:0;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.20));
}

.nav{
  position:relative;
  margin-left:0;
}

.nav-list{
  display:flex;
  align-items:center;
  gap:30px;
  padding:0;
  margin:0;
  list-style:none;
}

.nav-link,
.nav-link:visited{
  padding:10px;
  color:rgba(255,255,255,.92);
  font-size:clamp(.90rem, .82vw, 1rem);
  text-decoration:none;
  font-weight:850;
  border-radius:12px;
  transition:transform .14s ease, background .14s ease, color .14s ease;
}

.nav-link:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-1px);
}

.nav-link.is-active,
.nav-link.is-active:visited{
  color:#fff;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.32);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}

.nav-toggle{
  display:none;
  margin-left:auto;
  padding:12px;
  appearance:none;
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  cursor:pointer;
}

.burger{
  position:relative;
  display:block;
  width:22px;
  height:16px;
  background:linear-gradient(
    to bottom,
    transparent 7px,
    rgba(255,255,255,.9) 7px,
    rgba(255,255,255,.9) 9px,
    transparent 9px
  );
}

.burger::before,
.burger::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:rgba(255,255,255,.9);
  border-radius:999px;
}

.burger::before{
  top:0;
}

.burger::after{
  bottom:0;
}

/* Hero / Start */

.hero{
  position:relative;
  display:flex;
  align-items:stretch;
  min-height:calc(100vh - 78px);
  min-height:calc(100svh - var(--header-h));
  overflow-x:clip;
  background-image:url("../img/tlo.png");
  background-repeat:no-repeat;
  background-position:center bottom;
  background-size:cover;
}

@supports (background-image:image-set(url("../img/tlo.webp") type("image/webp"))){
  .hero{
    background-image:image-set(
      url("../img/tlo.webp") type("image/webp"),
      url("../img/tlo.png") type("image/png")
    );
  }
}

.hero::before,
.hero::after{
  content:none !important;
  display:none !important;
  background:transparent !important;
}

.hero .container{
  width:calc(100% - 100px);
  width:min(100%, calc(100% - 100px));
}

.hero-grid{
  position:relative;
  z-index:1;
  width:100%;
  min-height:calc(100vh - 78px);
  min-height:calc(100svh - var(--header-h));
  padding:clamp(28px, 4vw, 54px) 0;
}

.hero-content{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:calc(100vh - 168px);
  min-height:calc(100svh - var(--header-h) - clamp(56px, 6vw, 90px));
}

.hero-copy{
  width:100%;
  width:min(100%, 1380px);
  max-width:1380px;
  padding-left:3%;
  padding-right:clamp(18px, 3vw, 42px);
}

.hero-title{
  max-width:1380px;
  margin:0 0 12px;
  color:#002097;
  color:var(--text);
  font-size:2rem;
  font-size:clamp(1.68rem, 2.2vw, 2.1rem);
  line-height:1.05;
  letter-spacing:-.02em;
}

.hero-bullets{
  display:grid;
  gap:10px;
  max-width:78ch;
  padding:0;
  margin:0;
  color:#002097;
  color:var(--text);
  list-style:none;
  white-space:normal;
}
.hero-link,
.hero-link:visited,
.hero-link:hover,
.hero-link:focus-visible{
  color:inherit;
  font:inherit;
}

.hero-bullets li{
  position:relative;
  min-width:0;
  padding-left:45px;
  color:#002097;
  color:var(--text);
  font-size:1rem;
  font-size:clamp(1rem, 1.25vw, 1.22rem);
  font-weight:700;
  line-height:1.35;
  overflow-wrap:break-word;
}

.hero-bullets li::before{
  content:"✓";
  position:absolute;
  top:50%;
  left:0;
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  color:currentColor;
  font-size:20px;
  font-weight:700;
  line-height:1;
  border:2px solid currentColor;
  border-radius:8px;
  box-sizing:border-box;
  transform:translateY(-50%);
}


.hero-badge-wrap{
  position:absolute;
  right:clamp(24px, 5vw, 90px);
  bottom:clamp(4px, 1vw, 14px);
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  padding:0;
}

.hero-subtitle{
  padding:14px 22px;
  margin:0;
  color:#002097;
  color:var(--text);
  font-size:1.15rem;
  font-size:clamp(1rem, 1.35vw, 1.55rem);
  font-weight:800;
  text-align:right;
  white-space:nowrap;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(27,63,136,.12);
  border-radius:16px;
  box-shadow:0 12px 28px rgba(27,63,136,.10);
}

@supports (text-wrap: pretty){
  p,
  li,
  .mission-card p,
  .about-block p,
  .offer-card p,
  .pricing-card p,
  .pricing-note p,
  .contact-panel p,
  .footer-copy,
  .footer-copy1{
    text-wrap:pretty;
  }
}

.hero-title,
.hero-bullets li,
.footer-copy1,
.footer-col,
.contact-label{
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
}

/* SEKCJE WSPÓLNE */

.section{
  padding:20px 0;
}

.section-dark{
  background:transparent;
}

.section-titlebar{
  display:flex;
  align-items:center;
  margin-bottom:14px;
}

.section-pill{
  display:flex;
  align-items:center;
  width:100%;
  padding:14px clamp(20px, 5vw, 80px);
  padding-top:12px;
  padding-right:clamp(18px, 4vw, 64px);
  padding-bottom:12px;
  padding-left:clamp(6px, .55vw, 10px);
  margin:0;
  color:#ffffff;
  color:var(--white);
  font-size:1.5rem;
  font-weight:900;
  letter-spacing:.4px;
  background:linear-gradient(90deg, #7b6654, #9b846f);
  border:1px solid rgba(255,255,255,.10);
}

.mission-card,
.contact-card,
.footer-panel,
.about-block,
.offer-card,
.pricing-card,
.intro-panel,
.pricing-intro,
.contact-panel,
.pricing-note{
  background:rgba(255,255,255,.94);
  background:var(--panel);
  border:1px solid rgba(0,32,151,.12);
  border:1px solid var(--border);
  box-shadow:0 14px 34px rgba(73,54,40,.075);
}

.about-block,
.contact-panel,
.pricing-intro,
.intro-panel,
.pricing-note{
  box-shadow:0 12px 28px rgba(73,54,40,.055);
}

.intro-panel,
.pricing-intro,
.contact-panel{
  display:block;
  padding:18px;
  margin-bottom:18px;
  border-radius:var(--radius);
}

.eyebrow{
  margin:0 0 8px;
  color:#002097;
  color:var(--text);
  font-size:.9rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.section-heading{
  margin:0;
  color:#002097;
  color:var(--text);
  font-size:1.35rem;
  font-size:clamp(1.25rem, 1.6vw, 1.72rem);
  line-height:1.22;
}

.intro-copy{
  width:100%;
  max-width:none;
  margin:14px 0 0;
  color:rgba(0,32,151,.78);
  color:var(--text-soft);
}

.intro-panel .intro-copy,
.pricing-intro .intro-copy,
.about-block p,
.pricing-note p,
.contact-panel p{
  width:100%;
  max-width:none;
}

/* O NAS - MISJA / WIZJA / ZASADY */

.mission-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  align-items:stretch;
  gap:0;
  padding:18px;
  margin:14px 0 26px;
  background:rgba(255,255,255,.94);
  background:var(--panel);
  border:1px solid rgba(0,32,151,.12);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 12px 28px rgba(73,54,40,.055);
}

.mission-card{
  min-height:100%;
  padding:8px 18px;
  text-align:center;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.mission-card + .mission-card{
  border-left:1px solid rgba(0,32,151,.12);
  border-left:1px solid var(--border);
}

.mission-icon{
  display:grid;
  place-items:center;
  width:72px;
  height:72px;
  margin:0 auto 14px;
  background:rgba(0,32,151,.08);
  background:var(--accent-soft);
  border:1px solid rgba(0,32,151,.12);
  border:1px solid var(--border);
  border-radius:16px;
}

.mission-card h3,
.about-head{
  margin:4px 0 10px;
  color:#002097;
  color:var(--text);
  font-weight:900;
  letter-spacing:.04em;
}

.mission-card p{
  margin:0;
  color:rgba(0,32,151,.78);
  color:var(--text-soft);
}

/* O NAS - TREŚĆ */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  gap:18px;
}

.about-block{
  min-height:100%;
  padding:18px;
  border-radius:18px;
}

.about-head{
  margin:0 0 10px;
  letter-spacing:.6px;
}

.about-block p{
  margin:0 0 12px;
  color:rgba(0,32,151,.78);
  color:var(--text-soft);
}

.steps-list{
  display:grid;
  gap:12px;
  margin-top:10px;
}

.step-item{
  display:grid;
  gap:4px;
  padding:14px 16px;
  color:rgba(0,32,151,.78);
  color:var(--text-soft);
  background:rgba(0,32,151,.08);
  background:var(--accent-soft);
  border:1px solid rgba(0,32,151,.12);
  border:1px solid var(--border);
  border-radius:14px;
}

.step-item strong{
  color:#002097;
  color:var(--text);
}

/* O NAS - OFERTA */

.offer-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  align-items:stretch;
  gap:0;
  padding:18px;
  margin-top:26px;
  background:rgba(255,255,255,.94);
  background:var(--panel);
  border:1px solid rgba(0,32,151,.12);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 12px 28px rgba(73,54,40,.055);
}

.offer-card{
  padding:14px 18px;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.offer-card:not(:nth-child(3n+1)){
  border-left:1px solid rgba(0,32,151,.12);
  border-left:1px solid var(--border);
}

.offer-card:nth-child(n+4){
  border-top:1px solid rgba(0,32,151,.12);
  border-top:1px solid var(--border);
}

.offer-card h3{
  margin:0 0 10px;
  color:#002097;
  color:var(--text);
  font-size:1.08rem;
}

.offer-card p{
  margin:0;
  color:rgba(0,32,151,.78);
  color:var(--text-soft);
}

/* Cennik */

.pricing-copy{
  display:grid;
  gap:10px;
}

.pricing-copy p{
  max-width:none;
  margin:0;
}

.pricing-rate{
  color:#002097;
  color:var(--text);
  font-size:1.35rem;
  font-size:clamp(1.25rem, 2vw, 1.7rem);
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  align-items:stretch;
  gap:0;
  padding:18px;
  margin-top:18px;
  background:rgba(255,255,255,.94);
  background:var(--panel);
  border:1px solid rgba(0,32,151,.12);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 12px 28px rgba(73,54,40,.055);
}

.pricing-card,
.pricing-card--featured{
  min-height:100%;
  padding:8px 18px;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.pricing-card + .pricing-card{
  border-left:1px solid rgba(0,32,151,.12);
  border-left:1px solid var(--border);
}

.pricing-card h3{
  margin:0 0 10px;
  color:#002097;
  color:var(--text);
}

.pricing-card p{
  margin:0;
  color:rgba(0,32,151,.78);
  color:var(--text-soft);
}

.pricing-label{
  display:none;
  margin-bottom:12px;
  padding:6px 10px;
  color:#002097;
  color:var(--text);
  font-size:.85rem;
  font-weight:800;
  background:rgba(0,32,151,.08);
  background:var(--accent-soft);
  border-radius:999px;
}

.pricing-note{
  padding:18px 22px;
  margin-top:18px;
  border-radius:18px;
}

.pricing-note p{
  margin:0;
  color:rgba(0,32,151,.78);
  color:var(--text-soft);
}

/* Kontakt */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  gap:26px;
  margin-top:14px;
}

.contact-left p,
.contact-panel p{
  color:rgba(0,32,151,.78);
  color:var(--text-soft);
}

.contact-panel{
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
}

.contact-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-content:stretch;
  gap:14px;
  white-space:nowrap;
}

.contact-card{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:126px;
  height:100%;
  padding:18px;
  border-radius:14px;
}

.contact-card--wide{
  grid-column:1 / -1;
  min-height:126px;
}

.contact-icon{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  background:rgba(0,32,151,.08);
  background:var(--accent-soft);
  border:1px solid rgba(0,32,151,.12);
  border:1px solid var(--border);
  border-radius:14px;
}

.contact-label{
  color:#002097;
  color:var(--text);
  font-weight:650;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
  white-space:normal;
}

.link,
.link:visited{
  color:#002097;
  color:var(--text);
  text-underline-offset:3px;
}

.link:hover{
  color:rgba(0,32,151,.78);
}

/* KOPIOWANIE DO SCHOWKA */

.copy-value{
  position:relative;
  display:inline-block;
  max-width:100%;
  appearance:none;
  padding:0;
  margin:0;
  color:inherit;
  font:inherit;
  font-weight:inherit;
  line-height:inherit;
  text-align:inherit;
  text-decoration:none;
  background:transparent;
  border:0;
  border-radius:8px;
  cursor:pointer;
}

.copy-value:hover,
.bank-copy:hover,
.bank-copy:hover span,
.bank-copy:hover .bank-account,
.footer-id-copy:hover,
.footer-id-copy:hover strong{
  text-decoration:underline;
  text-underline-offset:3px;
}

.copy-value:focus-visible{
  outline:2px solid rgba(0,32,151,.75);
  outline-offset:4px;
}

.copy-value.is-copied::after{
  content:"Skopiowano";
  position:absolute;
  left:50%;
  bottom:calc(100% + 8px);
  z-index:20;
  padding:5px 8px;
  color:#ffffff;
  font-size:.72rem;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  background:rgba(0,32,151,.92);
  border-radius:999px;
  box-shadow:0 10px 22px rgba(73,54,40,.16);
  transform:translateX(-50%);
}

.contact-card .copy-value,
.footer-col .copy-value,
.footer-copy2 .copy-value{
  max-width:100%;
}

.footer-col .copy-value,
.footer-id-copy,
.bank-copy{
  text-align:center;
}

/* Stopka */

.footer{
  padding:36px 0 54px;
  background:transparent;
}

.footer-panel{
  overflow:visible;
  padding:28px 22px 18px;
  font-size:clamp(.92rem, .88vw, 1rem);
  border-radius:0;
}

.footer-brand{
  display:grid;
  place-items:center;
  gap:10px;
  margin-bottom:18px;
  text-align:center;
}

.footer-brand img{
  width:auto;
  height:70px;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.12));
}

.footer-cols{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  width:100%;
  margin-top:14px;
}

.footer-col,
.footer-copy2{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  min-width:0;
  color:#002097;
  color:var(--text);
  font-size:clamp(.92rem, .88vw, 1rem);
  line-height:1.42;
  text-align:center;
  white-space:nowrap;
}

.footer-ico{
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  background:rgba(0,32,151,.08);
  background:var(--accent-soft);
  border:1px solid rgba(0,32,151,.12);
  border:1px solid var(--border);
  border-radius:16px;
}

.footer-ico .icon-img{
  width:35px;
  height:35px;
}

.footer-cols2{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  width:100%;
  margin-top:14px;
  border-top:1px solid rgba(0,32,151,.12);
  border-top:1px solid var(--border);
}

.footer-copy2{
  padding-top:18px;
}

.footer-copy1,
.footer-copy{
  padding-top:16px;
  margin-top:18px;
  color:rgba(0,32,151,.78);
  color:var(--text-soft);
  line-height:1.42;
  text-align:center;
  border-top:1px solid rgba(0,32,151,.12);
  border-top:1px solid var(--border);
}

.footer-copy{
  font-size:clamp(.92rem, .88vw, 1rem);
}

.footer-copy1{
  font-size:clamp(.82rem, .76vw, .93rem);
}

.footer-registry-line{
  max-width:100%;
  overflow:visible;
  font-size:clamp(.78rem, .72vw, .88rem);
  line-height:1.38;
  letter-spacing:-.015em;
}

.bank-copy{
  line-height:1.42;
}

.bank-account{
  display:inline-block;
  max-width:100%;
  font-size:clamp(.92rem, .88vw, 1rem);
  font-variant-numeric:tabular-nums;
  letter-spacing:-.015em;
  white-space:nowrap;
}

/* Strzałka do góry */

.to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:2000;
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  cursor:pointer;
  pointer-events:none;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(0,32,151,.12);
  border:1px solid var(--border);
  border-radius:999px;
  box-shadow:0 18px 44px rgba(73,54,40,.16);
  opacity:0;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transform:translateY(10px);
  transition:opacity .18s ease, transform .18s ease;
}

.to-top.is-visible{
  pointer-events:auto;
  opacity:1;
  transform:translateY(0);
}

/* Responsywność i dostępność */

@media (min-width:1200px){
  .hero-title{
    white-space:nowrap;
  }
}

@media (min-width:1200px) and (max-width:1450px){
  .hero-copy{
    padding-right:0;
  }

  .hero-title{
    max-width:calc(100vw - 120px);
    font-size:clamp(1.68rem, 2.2vw, 2rem);
    white-space:nowrap;
  }
}

@media (max-width:1259px){
  .hero-copy{
    width:100%;
    width:min(100%, 760px);
    max-width:760px;
  }

  .hero-title{
    max-width:760px;
    white-space:normal;
  }
}

@media (max-width:1080px){
  .hero-copy{
    width:100%;
    width:min(100%, 680px);
  }

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

@media (max-width:980px){
  :root{
    --header-h:74px;
  }

  .section{
    padding:18px 0;
  }

  .section-titlebar{
    margin-bottom:12px;
  }

  .section-pill{
    padding-top:11px;
    padding-bottom:11px;
    padding-left:14px;
  }

  .link-mobile{
    display:inline;
  }

  .link-desktop{
    display:none;
  }

  .link-desktop.copy-value{
    display:none;
  }

  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    gap:12px;
    padding-left:16px;
    padding-right:16px;
  }

  .brand{
    flex:0 0 auto;
    margin-left:0;
  }

  .brand img{
    width:180px;
    width:clamp(150px, 55vw, 220px);
    max-width:100%;
    height:auto;
  }

  .nav{
    order:3;
    flex:0 0 auto;
    overflow:visible;
  }

  .nav-toggle{
    z-index:4000;
    order:2;
    display:inline-flex;
    margin-right:6px;
    margin-left:auto;
  }

  .nav-list{
    position:fixed;
    top:calc(var(--header-h) + 10px);
    left:16px;
    right:16px;
    z-index:9999;
    display:none;
    flex-direction:column;
    gap:8px;
    width:auto;
    max-width:none;
    max-height:calc(100vh - 98px);
    max-height:calc(100svh - var(--header-h) - 24px);
    padding:12px;
    margin:0;
    overflow:auto;
    background:rgba(139,116,95,.97);
    border:1px solid rgba(255,255,255,.16);
    border-radius:16px;
    box-shadow:0 18px 44px rgba(73,54,40,.28);
  }

  .nav-list.is-open{
    display:flex;
  }

  .nav-link{
    width:100%;
    padding:14px 12px;
  }

  .hero{
    align-items:stretch;
    background-position:60% bottom;
  }

  .hero .container{
    width:calc(100% - 32px);
    width:min(var(--container), calc(100% - 32px));
  }

  .hero-grid{
    min-height:calc(100vh - 78px);
    min-height:calc(100svh - var(--header-h));
    padding:26px 0;
  }

  .hero-content{
    min-height:calc(100vh - 98px);
    min-height:calc(100svh - var(--header-h) - 24px);
  }

  .hero-copy{
    width:100%;
    width:min(100%, 620px);
    max-width:100%;
    padding:8px 0 0;
    margin-left:0;
  }

  .hero-title{
    max-width:100%;
    margin:0 0 12px;
    font-size:1.9rem;
    font-size:clamp(1.7rem, 6vw, 2.7rem);
    letter-spacing:-.01em;
    white-space:normal;
  }

  .hero-bullets{
    max-width:100%;
    white-space:normal;
  }

  .hero-bullets li{
    padding-left:45px;
    font-size:1rem;
    font-size:clamp(1rem, 1.25vw, 1.22rem);
  }

  .hero-bullets li::before{
    width:28px;
    height:28px;
    font-size:20px;
  }

  .hero-badge-wrap{
    width:auto;
    padding-right:0;
    padding-bottom:16px;
    margin:0;
  }

  .hero-subtitle{
    min-width:0;
    max-width:none;
    padding:12px 16px;
    font-size:1rem;
    font-size:clamp(.95rem, 3vw, 1.15rem);
    text-align:right;
    white-space:nowrap;
  }

  .intro-panel,
  .pricing-intro,
  .contact-panel,
  .about-block,
  .offer-card,
  .pricing-card,
  .pricing-note{
    padding:18px;
  }

  .section-heading{
    font-size:1.35rem;
    font-size:clamp(1.2rem, 5vw, 1.55rem);
  }

  .mission-grid,
  .about-grid,
  .offer-grid,
  .pricing-grid,
  .contact-grid,
  .contact-cards{
    grid-template-columns:1fr;
  }

  .mission-grid,
  .offer-grid,
  .pricing-grid{
    padding:14px;
  }

  .mission-card,
  .offer-card,
  .pricing-card,
  .pricing-card--featured{
    padding:16px 10px;
  }

  .mission-card + .mission-card,
  .pricing-card + .pricing-card{
    border-left:0;
    border-top:1px solid rgba(0,32,151,.12);
    border-top:1px solid var(--border);
  }

  .offer-card:not(:nth-child(3n+1)){
    border-left:0;
  }

  .offer-card:nth-child(n+4){
    border-top:0;
  }

  .offer-card + .offer-card{
    border-top:1px solid rgba(0,32,151,.12);
    border-top:1px solid var(--border);
  }

  .contact-cards{
    white-space:normal;
  }

  .footer-panel{
    padding:26px 18px 18px;
  }

  .footer-brand img{
    width:min(250px, 76vw);
    height:auto;
  }

  .footer-cols{
    grid-template-columns:1fr 1fr;
    gap:18px 12px;
  }

  .footer-col,
  .footer-copy2,
  .footer-registry-line{
    white-space:normal;
  }

  .footer-copy1,
  .footer-copy{
    font-size:.92rem;
  }
  .to-top{
    right:max(18px, env(safe-area-inset-right));
    bottom:max(18px, env(safe-area-inset-bottom));
  }
}

@media (max-width:620px){
  .hero{
    background-position:64% bottom;
  }

  .hero-content{
    min-height:calc(100vh - 92px);
    min-height:calc(100svh - var(--header-h) - 18px);
  }
}

@media (max-width:680px){
  .footer-cols,
  .footer-cols2{
    grid-template-columns:1fr;
  }

  .footer-brand img{
    width:min(250px, 78vw);
    height:auto;
  }

  .footer-copy1,
  .footer-copy{
    font-size:.86rem;
  }
}

@media (max-width:520px){
  .container{
    width:calc(100% - 24px);
    width:min(var(--container), calc(100% - 24px));
  }

  .header-inner{
    padding-left:12px;
    padding-right:12px;
  }

  .brand img{
    width:170px;
    width:clamp(140px, 62vw, 200px);
  }

  .nav-list{
    left:12px;
    right:12px;
  }

  .hero{
    background-position:68% bottom;
  }

  .hero-grid{
    padding:22px 0;
  }

  .hero-content{
    min-height:calc(100vh - 86px);
    min-height:calc(100svh - var(--header-h) - 12px);
  }

  .hero-title{
    font-size:1.7rem;
    font-size:clamp(1.45rem, 7vw, 2.1rem);
  }

  .hero-subtitle{
    max-width:260px;
    max-width:min(260px, 82vw);
    text-align:right;
    white-space:normal;
  }

  .section-pill{
    padding:12px 18px;
    font-size:1.35rem;
  }

  .footer-panel{
    padding-left:16px;
    padding-right:16px;
  }
  .to-top{
    right:max(16px, env(safe-area-inset-right));
    bottom:max(16px, env(safe-area-inset-bottom));
  }
}

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

@media (min-width:981px){
  .link-desktop.copy-value{
    display:inline-block;
  }

  .link-mobile{
    display:none;
  }

  .hero-bullets{
    max-width:none;
    white-space:nowrap;
  }

  .hero-bullets li{
    white-space:nowrap;
    overflow-wrap:normal;
    word-break:normal;
  }

  .footer-registry-line{
    white-space:nowrap;
  }
}

@media (min-width:981px) and (max-width:1400px){
  :root{
    --brand-desktop-slot:clamp(380px, 23vw, 430px);
  }

  .header-inner{
    gap:clamp(18px, 2.1vw, 30px);
  }

  .nav-list{
    gap:clamp(20px, 2.25vw, 30px);
  }

  .footer{
    padding:36px 0 54px;
  }

  .footer-panel{
    padding:28px 22px 18px;
    font-size:clamp(.90rem, .86vw, .98rem);
  }

  .footer-brand{
    gap:10px;
    margin-bottom:18px;
  }

  .footer-brand img{
    height:54px;
  }

  .footer-cols{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:14px;
    margin-top:14px;
  }

  .footer-col,
  .footer-copy2{
    gap:10px;
    line-height:1.42;
  }

  .footer-ico{
    width:54px;
    height:54px;
  }

  .footer-ico .icon-img{
    width:35px;
    height:35px;
  }

  .footer-cols2{
    gap:14px;
    margin-top:14px;
  }

  .footer-copy2{
    padding-top:18px;
  }

  .footer-copy1,
  .footer-copy{
    padding-top:16px;
    margin-top:18px;
    line-height:1.42;
  }

  .footer-registry-line{
    font-size:clamp(.72rem, .70vw, .86rem);
    white-space:nowrap;
  }

  .bank-account{
    font-size:clamp(.88rem, .82vw, .98rem);
  }
}

@media (min-width:981px) and (max-width:1180px){
  .brand{
    margin-left:clamp(0px, 4vw, 48px);
  }
}

@media (min-width:981px) and (max-width:1120px){
  .footer-cols{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:10px;
  }

  .footer-panel{
    padding-top:22px;
    padding:26px 20px 18px;
    font-size:clamp(.82rem, .90vw, .94rem);
  }

  .footer-col,
  .footer-copy2{
    font-size:clamp(.82rem, .90vw, .94rem);
  }

  .bank-account{
    font-size:clamp(.82rem, .88vw, .94rem);
    letter-spacing:-.025em;
  }

  .footer-registry-line{
    font-size:clamp(.64rem, .68vw, .78rem);
    letter-spacing:-.02em;
  }
}
