/* ============================================================
   Betoniarnia Paczków — concrete-grade B2B redesign
   System: concrete grays + one strong accent
   ============================================================ */

:root {
  /* Concrete neutrals (warm graphite) */
  --c-ink:        oklch(0.21 0.006 80);   /* near-black graphite */
  --c-ink-2:      oklch(0.30 0.006 80);
  --c-slate:      oklch(0.46 0.005 80);   /* mid concrete */
  --c-mute:       oklch(0.62 0.004 80);
  --c-line:       oklch(0.86 0.004 80);
  --c-haze:       oklch(0.94 0.003 80);   /* concrete wash */
  --c-paper:      oklch(0.975 0.002 80);  /* warm concrete white */
  --c-white:      oklch(0.995 0.001 80);
  --hero-bg:      oklch(0.275 0.008 70);  /* lighter warm graphite for the hero panel */

  /* Accent — brand red (Betoniarnia Paczków) is the default */
  --a:            oklch(0.55 0.205 27);
  --a-deep:       oklch(0.46 0.18 28);
  --a-ink:        oklch(0.32 0.10 28);
  --on-accent:    oklch(0.98 0.02 40);
  /* signature multicolour brand stripe (logo swirl) */
  --brand-grad:   linear-gradient(90deg, #5aa03e 0%, #e9c215 33%, #ec7a1c 66%, #d4213a 100%);

  --radius:       3px;
  --maxw:         1240px;
  --pad-section:  104px;

  --ff-head: "Archivo", system-ui, sans-serif;
  --ff-body: "Barlow", system-ui, sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, monospace;

  --shadow-1: 0 1px 0 var(--c-line);
  --shadow-2: 0 24px 48px -28px oklch(0.21 0.01 80 / 0.55);
}

/* Accent directions ------------------------------------------------ */
[data-dir="amber"] {
  --a:        oklch(0.70 0.155 58);
  --a-deep:   oklch(0.56 0.135 52);
  --a-ink:    oklch(0.30 0.05 60);
  --on-accent: oklch(0.20 0.02 60);
}
[data-dir="steel"] {
  --a:        oklch(0.55 0.115 242);
  --a-deep:   oklch(0.44 0.10 243);
  --a-ink:    oklch(0.30 0.05 243);
  --on-accent: oklch(0.98 0.01 240);
}

/* Density ---------------------------------------------------------- */
[data-density="compact"] { --pad-section: 76px; }
[data-density="comfy"]   { --pad-section: 132px; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--c-ink);
  background: var(--c-paper);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.018em;
  font-weight: 800;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.ph { position: relative; background-color: var(--c-haze);
  background-image: repeating-linear-gradient(45deg, transparent 0 13px, oklch(0.88 0.004 80 / .55) 13px 14px);
  display: grid; place-items: center; text-align: center; border-radius: var(--radius); }
.ph span { font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.02em; color: var(--c-mute); padding: 8px 14px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* Eyebrow / kicker -------------------------------------------------- */
.kicker {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--a-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--a);
}
.kicker.on-dark { color: var(--a); }

/* Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--a);
  color: var(--on-accent);
}
.btn-primary:hover { background: var(--a-deep); color: var(--c-white); }
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn-ghost:hover { background: var(--c-ink); color: var(--c-white); }
.btn-ghost.on-dark { color: var(--c-white); border-color: oklch(0.99 0 0 / 0.45); }
.btn-ghost.on-dark:hover { background: var(--c-white); color: var(--c-ink); border-color: var(--c-white); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* Header ------------------------------------------------------------ */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.975 0.002 80 / 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.topbar {
  background: var(--c-ink);
  color: oklch(0.86 0.004 80);
  font-size: 0.82rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 20px; }
.topbar a { color: inherit; }
.topbar .tb-contacts { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.topbar .tb-contacts span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .tb-dot { color: var(--a); }
.lang { display: flex; gap: 6px; align-items: center; font-weight: 600; letter-spacing: 0.05em; }
.lang a { padding: 2px 7px; border-radius: 2px; opacity: .55; }
.lang a.active { background: var(--a); color: var(--on-accent); opacity: 1; }

.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 14px; font-family: var(--ff-head); font-weight: 800; letter-spacing: -0.02em; }
.brand .mark {
  width: 46px; height: 46px; border-radius: 6px;
  background: var(--c-white); border: 1px solid var(--c-line);
  display: grid; place-items: center;
  position: relative; overflow: hidden; padding: 3px;
}
.brand .mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand .mark-link { display: inline-flex; }
.brand .bt { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.brand .bname b { display: block; font-size: 1.05rem; }
.brand .sil { font-family: var(--ff-body); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-mute); transition: color .15s ease; width: fit-content; }
.brand .sil:hover { color: var(--a-deep); }
.menu { display: flex; gap: 4px; align-items: center; }
.menu a {
  font-weight: 500; font-size: 0.92rem; padding: 7px 11px; border-radius: 2px;
  color: var(--c-ink-2); position: relative; white-space: nowrap;
}
.menu a::after {
  content:""; position:absolute; left:11px; right:11px; bottom: 4px; height:2px;
  background: var(--a); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.menu a:hover { color: var(--c-ink); }
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--ff-head); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }

/* Hero -------------------------------------------------------------- */
.hero { position: relative; background: var(--hero-bg); color: var(--c-white); overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; }
.hero-photo { position: absolute; top: 0; right: 0; bottom: 6px; width: 45%; z-index: 1; }
.hero-photo .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; }
.hero-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--hero-bg) 0%, oklch(0.275 0.008 70 / 0.82) 20%, oklch(0.275 0.008 70 / 0.4) 42%, oklch(0.275 0.008 70 / 0) 70%); }
.hero-copy { position: relative; max-width: 650px; padding: 86px 0 96px; }
.hero-logo { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.hero-logo .tile { width: 72px; height: 72px; border-radius: 12px; background: var(--c-white); display: grid; place-items: center; padding: 8px; box-shadow: var(--shadow-2); }
.hero-logo .tile img { width: 100%; height: 100%; object-fit: contain; }
.hero-logo .wm { font-family: var(--ff-head); font-weight: 800; letter-spacing: -0.01em; line-height: 0.98; text-transform: uppercase; font-size: 1.4rem; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.6rem); font-weight: 800; letter-spacing: -0.025em; margin: 16px 0 0; }
.hero h1 .hl { color: var(--a); }
.hero .lead { margin-top: 22px; font-size: 1.2rem; color: oklch(0.9 0.004 80); max-width: 540px; }
.hero .cta-row { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-phones { margin-top: 50px; display: flex; gap: 16px 36px; flex-wrap: wrap; border-top: 1px solid oklch(0.99 0 0 / 0.16); padding-top: 26px; }
.hero-phones a { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-head); font-weight: 700; font-size: 1.16rem; letter-spacing: -0.01em; transition: color .15s ease; }
.hero-phones a:hover { color: var(--a); }
.brand-stripe { height: 6px; background: var(--brand-grad); }
.hero .brand-stripe { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; }

/* Country flags */
.flag { width: 22px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.18); flex: none; overflow: hidden; }
.flag-pl { background: linear-gradient(#fff 50%, #d4213a 50%); }
.flag-cz { position: relative; background: linear-gradient(#fff 50%, #d4213a 50%); }
.flag-cz::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 60%; background: #11457e; clip-path: polygon(0 0, 100% 50%, 0 100%); }

/* Section scaffolding ---------------------------------------------- */
.section { padding: var(--pad-section) 0; }
.section.alt { background: var(--c-white); }
.section.ink { background: oklch(0.26 0.008 70); color: var(--c-white); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 52px; }
.sec-head .st-l { max-width: 640px; }
.sec-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-top: 16px; }
.sec-head p { margin-top: 16px; color: var(--c-slate); font-size: 1.08rem; }
.section.ink .sec-head p { color: oklch(0.82 0.004 80); }

/* Section feature banner */
.sec-banner { border-radius: var(--radius); overflow: hidden; margin-bottom: 46px; aspect-ratio: 2.7 / 1; }
.sec-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Inline link */
.ilink { color: var(--a-deep); font-weight: 600; text-decoration: underline; text-decoration-color: oklch(0.55 0.205 27 / 0.4); text-underline-offset: 3px; transition: text-decoration-color .15s ease; }
.ilink:hover { text-decoration-color: var(--a); }

/* Offer cards ------------------------------------------------------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.offer-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--c-mute); }
.offer-card .pic { aspect-ratio: 4/3; background: var(--c-haze); position: relative; }
.offer-card .pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-card .pic .num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  background: var(--c-ink); color: var(--c-white); padding: 5px 9px; border-radius: 2px;
}
.offer-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.offer-card h3 { font-size: 1.42rem; }
.offer-card .body p { margin-top: 12px; color: var(--c-slate); font-size: 1rem; }
.offer-card .more { margin-top: 20px; font-weight: 600; color: var(--a-deep); display: inline-flex; gap: 8px; align-items: center; }
.offer-card .more .arr { transition: transform .2s ease; }
.offer-card:hover .more .arr { transform: translateX(4px); }
.offer-card .spec { margin-top: auto; padding-top: 20px; display: flex; gap: 18px; border-top: 1px solid var(--c-line); }
.offer-card .spec div { font-size: 0.8rem; color: var(--c-mute); }
.offer-card .spec div b { display: block; font-family: var(--ff-head); font-weight: 800; color: var(--c-ink); font-size: 1.02rem; }

.offer-card .pr-d { margin-top: 12px; color: var(--c-slate); font-size: 1rem; }
.offer-card .pr-dims { margin-top: 14px; }
.offer-card .pr-dl { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-mute); }
.offer-card .pr-dims ul { margin: 8px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.offer-card .pr-dims li { font-family: var(--ff-head); font-weight: 600; font-size: 1.02rem; color: var(--c-ink); letter-spacing: -0.01em; }

/* Strengths --------------------------------------------------------- */
.str-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid oklch(0.99 0 0 / 0.14); border-radius: var(--radius); overflow: hidden; }
.str-cell { padding: 40px 30px 44px; border-right: 1px solid oklch(0.99 0 0 / 0.12); position: relative; }
.str-cell:last-child { border-right: none; }
.str-cell .ix { position: absolute; top: 24px; right: 26px; font-family: var(--ff-mono); font-size: 0.78rem; color: var(--a); letter-spacing: 0.1em; opacity: .85; }
.str-cell h3 { margin: 0; font-size: 1.32rem; }
.str-cell p { margin-top: 12px; color: oklch(0.85 0.004 80); font-size: 0.98rem; }
.str-cell .ico { width: 44px; height: 44px; margin: 0 0 24px; color: var(--a); }

/* Split / About ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split .copy h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-top: 16px; }
.split .copy p { margin-top: 18px; color: var(--c-slate); font-size: 1.08rem; }
.split .copy .chips { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.split .copy .chips span {
  font-size: 0.85rem; font-weight: 600; padding: 8px 14px; border-radius: 2px;
  background: var(--c-haze); border: 1px solid var(--c-line); color: var(--c-ink-2);
}
.split .visual { position: relative; }
.split .visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); display: block; }
.split .visual .badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--a); color: var(--on-accent); padding: 20px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-2); max-width: 220px;
}
.split .visual .badge b { font-family: var(--ff-head); font-weight: 800; font-size: 1.05rem; display:block; }
.split .visual .badge a { color: inherit; display: inline-flex; align-items: center; gap: 6px; }
.split .visual .badge a::after { content: "↗"; font-size: 0.9em; opacity: .8; }
.split .visual .badge a:hover { text-decoration: underline; text-underline-offset: 3px; }
.split .visual .badge span { font-size: 0.84rem; }

/* Zbrojenia / Reinforcement --------------------------------------- */
.zb-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 56px; }
.zb-cat { display: flex; gap: 24px; align-items: flex-start; }
.zb-ic { width: 130px; height: 130px; border-radius: 50%; flex: none; overflow: hidden; }
.zb-ic.ph { border-radius: 50%; }
.zb-ic img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.zb-ic span { line-height: 1.25; }
.zb-cb { padding-top: 4px; }
.zb-cb h3 { font-size: 1.26rem; text-transform: uppercase; letter-spacing: 0.005em; }
.zb-cb ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.zb-cb li { position: relative; padding-left: 20px; color: var(--c-slate); font-size: 1rem; }
.zb-cb li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--a); }
.zb-bar { margin-top: 56px; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--c-line); }
.zb-bar > div { display: flex; align-items: center; gap: 10px; }
.zb-bar .d { width: 9px; height: 9px; border-radius: 50%; background: var(--a); flex: none; }
.zb-bar b { font-family: var(--ff-head); font-weight: 700; font-size: 1.02rem; }
.zb-bar .btn { margin-left: auto; }

/* Gallery ----------------------------------------------------------- */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gal-item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 18px 16px; color: #fff;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.04rem; letter-spacing: -0.01em; display: flex; align-items: center; gap: 9px;
  background: linear-gradient(0deg, oklch(0.20 0.01 60 / 0.88), oklch(0.20 0.01 60 / 0) 100%); }
.gal-item figcaption::before { content: ""; width: 18px; height: 2px; background: var(--a); flex: none; }

/* Contact ----------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.contact-info .ci-block { padding: 22px 0; border-bottom: 1px solid var(--c-line); }
.contact-info .ci-block:first-of-type { padding-top: 0; }
.contact-info .ci-block .lab { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-mute); }
.contact-info .ci-block .val { margin-top: 6px; font-family: var(--ff-head); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; }
.contact-info .ci-block .val.sm { font-size: 1.05rem; }
.form { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 38px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--c-ink-2); }
.field input, .field textarea, .field select {
  font-family: var(--ff-body); font-size: 1rem; padding: 13px 14px;
  border: 1.5px solid var(--c-line); border-radius: var(--radius); background: var(--c-paper);
  color: var(--c-ink); transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--a); background: var(--c-white); }
.field textarea { resize: vertical; min-height: 120px; }

/* Map placeholder */
.map-strip { margin-top: 56px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); }
.map-strip .ph { width: 100%; height: 280px; }
.map-strip iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Footer ------------------------------------------------------------ */
.site-foot { background: var(--c-ink); color: oklch(0.78 0.004 80); padding: 72px 0 30px; position: relative; }
.site-foot > .brand-stripe { position: absolute; top: 0; left: 0; right: 0; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-top h4 { color: var(--c-white); font-size: 0.84rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--ff-body); font-weight: 700; margin-bottom: 18px; }
.foot-top .f-brand { font-family: var(--ff-head); font-weight: 800; font-size: 1.4rem; color: var(--c-white); letter-spacing: -0.02em; }
.foot-top .f-brand + p { margin-top: 14px; max-width: 280px; font-size: 0.96rem; }
.foot-links { display: flex; flex-direction: column; gap: 11px; }
.foot-links a { font-size: 0.98rem; opacity: .82; }
.foot-links a:hover { opacity: 1; color: var(--a); }
.foot-addr { font-size: 0.96rem; line-height: 1.7; }
.foot-bar { margin-top: 56px; padding-top: 26px; border-top: 1px solid oklch(0.99 0 0 / 0.12); display: flex; justify-content: space-between; gap: 20px; font-size: 0.84rem; color: var(--c-mute); flex-wrap: wrap; }
.foot-bar .accent { color: var(--a); }
.foot-bar a.accent:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Reveal animation -------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* Responsive -------------------------------------------------------- */
@media (max-width: 1080px) {
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .str-grid { grid-template-columns: 1fr 1fr; }
  .str-cell { border-bottom: 1px solid oklch(0.99 0 0 / 0.14); }
  .str-cell:nth-child(2) { border-right: none; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  :root { --pad-section: 68px; }
  .menu, .topbar .tb-contacts span.hide-sm { display: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .zb-cats { grid-template-columns: 1fr; gap: 34px; }
  .zb-bar .btn { margin-left: 0; width: 100%; justify-content: center; }
  .split .visual .badge { left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { position: static; width: 100%; height: 260px; bottom: auto; }
  .hero-photo::after { background: linear-gradient(0deg, var(--hero-bg) 0%, oklch(0.275 0.008 70 / 0.5) 35%, oklch(0.275 0.008 70 / 0) 75%); }
  .hero-copy { padding: 60px 0 44px; }
  .hero .brand-stripe { position: static; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .offer-grid, .str-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}
