/* ============================================================
   AVALEX GRAIN - design system
   "Open dossier" - editorial / industrial-utilitarian B2B.
   Built fresh for avalex.com.ua. Independent of any other site.
   ============================================================ */

:root {
  /* Black Sea blue family */
  --bs-deepest: #081E2C;
  --bs-deep:    #0C2A3E;
  --port-azure: #15598C;
  --coastal:    #4F92BE;
  /* Sunflower accent - used sparingly */
  --sun:        #F5C518;
  --sun-soft:   #FFE08A;
  /* Ukrainian flag colours */
  --ua-blue:    #0057B7;
  --ua-yellow:  #FFD700;
  /* Neutrals / backgrounds */
  --cool-white: #F4F6F8;
  --pale-tide:  #E4ECF2;
  --slate-ink:  #13212B;
  --harbor:     #52626E;
  /* Hairlines */
  --coastal-text: #62A3CC;   /* coastal for text on navy (AA) */
  --harbor-on-dark: #8B9BA7; /* muted text on navy (AA) */
  --line:        rgba(19, 33, 43, 0.14);
  --line-strong: rgba(19, 33, 43, 0.28);
  --line-light:  rgba(244, 246, 248, 0.16);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-head: "Manrope", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --ease: cubic-bezier(0.4, 0.1, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate-ink);
  background: var(--cool-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--bs-deep);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.01em;
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--dark { background: var(--bs-deep); color: var(--pale-tide); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--tide { background: var(--pale-tide); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--port-azure);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 16px; height: 11px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--ua-blue) 50%, var(--ua-yellow) 50%);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--coastal-text); }

.section__head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head h2 { font-size: clamp(28px, 4.4vw, 44px); }
.section__head p { margin-top: 18px; font-size: 18px; color: var(--harbor); }
.section--dark .section__head p { color: var(--coastal-text); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--sun);
  color: var(--bs-deepest);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.btn--primary:hover { background: var(--sun-soft); box-shadow: 0 8px 22px -10px rgba(245,197,24,0.8); }
.btn--ghost {
  background: transparent;
  color: var(--bs-deep);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--port-azure); color: var(--port-azure); }
.section--dark .btn--ghost,
.hero .btn--ghost { color: #fff; border-color: var(--line-light); }
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover { border-color: var(--coastal-text); color: var(--coastal-text); }

.btn .arr { transition: transform 0.18s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 248, 0.95);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 18px;
  color: var(--bs-deep);
  line-height: 1;
}
.brand__name b { color: var(--port-azure); font-weight: 800; }
.brand__name span {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.34em;
  color: #44535E;
  margin-top: 3px;
}

.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-ink);
  position: relative;
  padding-block: 6px;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--sun);
  transition: width 0.2s var(--ease);
}
.nav__links a:hover { color: var(--port-azure); }
.nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 18px; }
.lang {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.lang a { padding: 5px 9px; color: #44535E; }
.lang a:focus-visible { outline: 2px solid var(--port-azure); outline-offset: -2px; }
.lang a[aria-current="true"] { background: var(--bs-deep); color: #fff; }

.nav__toggle { order: 3;

  display: none;
  background: none; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); width: 42px; height: 38px;
  cursor: pointer; flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
}
.nav__toggle span { width: 18px; height: 2px; background: var(--bs-deep); transition: 0.2s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(21,89,140,0.55) 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 110%, rgba(79,146,190,0.22) 0%, transparent 60%),
    var(--bs-deep);
  color: #fff;
  overflow: hidden;
}
.hero::after { /* grain */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05; pointer-events: none; mix-blend-mode: overlay;
}
.hero__sun {
  position: absolute;
  top: -120px; right: -80px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.30) 0%, rgba(245,197,24,0.06) 45%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(70px, 12vw, 132px);
  max-width: 46rem;
}
.hero h1 { max-width: 12.5ch; }
.hero__sub { max-width: 40ch; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em;
  color: var(--sun-soft);
  border: 1px solid var(--line-light);
  border-radius: 100px; padding: 7px 15px;
  margin-bottom: 28px;
}
.hero__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(245,197,24,0.18); }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: -0.03em;
  line-height: 0.99;
}
.hero h1 em { font-style: normal; color: var(--sun); }
.hero__sub {
  margin-top: 26px;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--pale-tide);
  max-width: 44ch;
}
.hero__cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Ukrainian: longer words, keep the hero compact */
:lang(uk) .brand__name span { letter-spacing: 0.16em; white-space: nowrap; }
:lang(uk) .hero--photo h1 { max-width: 13ch; }
:lang(uk) .hero--photo .hero__sub { max-width: 40ch; }

/* hero with photo: modern elevator on the right, navy fade under the text */
.hero.hero--photo {
  background:
    linear-gradient(90deg, #0C2A3E 0%, #0C2A3E 46%, rgba(12,42,62,.6) 56%, rgba(12,42,62,0) 68%),
    linear-gradient(0deg, rgba(8,30,44,.9) 0%, rgba(8,30,44,0) 20%),
    url(img/elevator-photo.jpg) right bottom / auto 100% no-repeat,
    #0C2A3E;
}
.hero--photo .hero__inner { margin-left: max(0px, calc((100% - var(--maxw)) / 2)); max-width: min(46rem, 100%); }
.hero--photo h1 { max-width: 11.5ch; }
.hero--photo .hero__sub { max-width: 36ch; }
@media (max-width: 960px) {
  .hero.hero--photo {
    background:
      linear-gradient(0deg, #0C2A3E 30%, rgba(12,42,62,.55) 70%, rgba(12,42,62,.35)),
      url(img/elevator-photo.jpg) right top / cover no-repeat,
      #0C2A3E;
  }
}
.hero__horizon {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  width: 100%; height: 60px; display: block;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.card:hover { border-color: var(--port-azure); }
.card__no { font-family: var(--font-mono); font-size: 12px; color: var(--harbor); letter-spacing: 0.1em; }
.card__icon { margin: 4px 0 16px; color: var(--port-azure); }
.card h3 { font-size: 22px; }
.card__desc { margin-top: 10px; color: var(--harbor); font-size: 15.5px; }
.spec {
  margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px;
  display: grid; gap: 8px;
}
.spec__row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.spec__row dt { color: var(--harbor); min-width: 0; }
.spec__row dd { margin: 0; font-family: var(--font-mono); color: var(--slate-ink); font-weight: 500; flex: none; white-space: nowrap; text-align: right; }
.card__foot { margin-top: auto; padding-top: 20px; }
.card__link { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--port-azure); display: inline-flex; gap: 7px; }
.card__link .arr { transition: transform 0.18s var(--ease); }
.card:hover .card__link .arr { transform: translateX(4px); }

/* ============================================================
   LOGISTICS
   ============================================================ */
.logi__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.logi__panel {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; background: #fff;
}
.logi__panel h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; }
.logi__panel h3 .ic { color: var(--port-azure); }
.logi__panel p { margin-top: 12px; color: var(--harbor); font-size: 15.5px; }
.ports { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.port {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.02em;
  background: var(--pale-tide); color: var(--bs-deep);
  border-radius: 100px; padding: 6px 13px;
}
.incoterms { margin-top: 16px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.incoterms .step { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--bs-deep); }
.incoterms .sep { color: var(--coastal-text); }

/* ============================================================
   ROADMAP (certifications, honest)
   ============================================================ */
.roadmap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 60px); align-items: center; }

.roadmap__note { font-size: 15px; color: var(--harbor); margin-top: 18px; }

/* ============================================================
   CONTACT / RFQ
   ============================================================ */
.rfq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 70px); }
.rfq__intro p { color: var(--coastal-text); margin-top: 16px; font-size: 16px; }
.rfq__contacts { margin-top: 28px; display: grid; gap: 14px; }
.rfq__contact { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; }
.rfq__contact .ic { color: var(--sun); margin-top: 2px; }
.rfq__contact .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--harbor-on-dark); }
.rfq__contact .v { color: #fff; font-size: 16px; }
.rfq__contact .v a:hover { color: var(--sun); }

.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field input, .field select, .field textarea { width: 100%; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coastal-text); }
.field label .req { color: var(--sun); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: #fff;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-light); border-radius: var(--r-sm);
  padding: 12px 14px; transition: border-color 0.16s var(--ease), background 0.16s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--harbor-on-dark); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sun); background-color: rgba(255,255,255,0.07);
}
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234F92BE' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field select option { color: #13212B; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fs { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; border: 0; min-width: 0; }
.fs + .fs { padding-top: 18px; border-top: 1px solid var(--line-light); }
.fs legend { grid-column: 1 / -1; padding: 0; margin-bottom: 12px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; }
.form__submit { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }

.form__status { grid-column: 1 / -1; font-size: 14px; color: var(--sun-soft); min-height: 1.4em; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--bs-deepest); color: var(--coastal-text); padding-block: 56px 30px; }
.foot__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--line-light); }
.foot__brand { max-width: 32ch; }
.foot__brand .brand__name { color: #fff; }
.foot__brand p { color: var(--coastal-text); font-size: 14.5px; margin-top: 16px; line-height: 1.6; }
.foot__cols { display: flex; gap: clamp(30px, 6vw, 72px); flex-wrap: wrap; }
.foot__col h3 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--harbor-on-dark); font-weight: 600; line-height: 1.4; margin: 0 0 14px; font-weight: 500; }
.foot__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot__col a, .foot__col li { color: var(--pale-tide); font-size: 14.5px; }
.foot__col a:hover { color: var(--sun); }
.foot__legal {
  margin-top: 24px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: var(--harbor-on-dark); letter-spacing: 0.01em;
}
.foot__legal .reg b { color: var(--coastal-text); }

/* ============================================================
   UKRAINIAN SYMBOLS - flag stripe, embroidery band, flag section
   ============================================================ */
.flagbar { height: 6px; background: linear-gradient(to bottom, var(--ua-blue) 50%, var(--ua-yellow) 50%); }
.uaflag {
  display: inline-block; width: 20px; height: 14px; border-radius: 2px; flex: none;
  background: linear-gradient(to bottom, var(--ua-blue) 50%, var(--ua-yellow) 50%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}
/* vyshyvanka-style cross-stitch rhombus band */
.orn {
  height: 28px;
  background-color: var(--bs-deepest);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28' shape-rendering='crispEdges'%3E%3Cg fill='%23FFD700'%3E%3Crect x='26' y='4' width='4' height='4'/%3E%3Crect x='22' y='8' width='4' height='4'/%3E%3Crect x='30' y='8' width='4' height='4'/%3E%3Crect x='18' y='12' width='4' height='4'/%3E%3Crect x='34' y='12' width='4' height='4'/%3E%3Crect x='22' y='16' width='4' height='4'/%3E%3Crect x='30' y='16' width='4' height='4'/%3E%3Crect x='26' y='20' width='4' height='4'/%3E%3C/g%3E%3Cg fill='%230057B7'%3E%3Crect x='26' y='12' width='4' height='4'/%3E%3Crect x='0' y='12' width='4' height='4'/%3E%3Crect x='52' y='12' width='4' height='4'/%3E%3Crect x='4' y='8' width='4' height='4'/%3E%3Crect x='4' y='16' width='4' height='4'/%3E%3Crect x='48' y='8' width='4' height='4'/%3E%3Crect x='48' y='16' width='4' height='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  border-block: 2px solid var(--ua-blue);
}

.hero__tag .uaflag { margin-right: 2px; }
.hero__flower {
  position: absolute; z-index: 0; pointer-events: none;
  right: clamp(-260px, -12vw, -80px); top: 50%;
  width: clamp(320px, 40vw, 540px); height: auto;
  transform: translateY(-50%) rotate(-8deg);
  opacity: 0.9;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}

/* crushing plant steps */
.plant { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--r-lg); overflow: hidden; }
.plant__step { background: var(--bs-deep); padding: clamp(24px, 3vw, 34px); position: relative; }
.plant__no { font-family: var(--font-mono); font-size: 12px; color: var(--ua-yellow); letter-spacing: 0.1em; }
.plant__ic { display: block; width: 30px; height: 30px; margin: 14px 0 14px; fill: none; stroke: var(--coastal); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.plant__step h3 { font-size: 19px; color: #fff; }
.plant__step p { margin-top: 8px; color: var(--coastal-text); font-size: 15px; line-height: 1.5; }

/* flag section: blue sky over yellow field */
.ua__sky { background: var(--ua-blue); color: #fff; padding-block: clamp(56px, 8vw, 100px) clamp(40px, 6vw, 72px); }
.ua__inner { max-width: calc(var(--maxw)); }
.ua .eyebrow { color: var(--ua-yellow); }
.ua h2 { color: #fff; font-size: clamp(30px, 5vw, 54px); max-width: 18ch; }
.ua__sky p:not(.eyebrow) { margin-top: 20px; max-width: 62ch; font-size: 18px; color: rgba(255,255,255,0.9); }
.ua__field { background: var(--ua-yellow); color: var(--slate-ink); padding-block: clamp(32px, 5vw, 56px); }
.ua__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.ua__fact b { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 3.6vw, 40px); color: var(--bs-deep); line-height: 1; }
.ua__fact span { display: block; margin-top: 8px; font-size: 15px; color: #2A2A10; }

.foot__made { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em; }

@media (max-width: 1100px) {
  .nav__links, .nav__right .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav[data-open="true"] .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--cool-white); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
  }
  .nav[data-open="true"] .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  
  
  
  
  
  .cards { grid-template-columns: 1fr; }
  .roadmap, .rfq__grid { grid-template-columns: 1fr; }
  .logi__grid { grid-template-columns: 1fr; }
  
  .plant { grid-template-columns: 1fr 1fr; }
  .ua__facts { grid-template-columns: 1fr; }
  .hero__flower { opacity: 0.35; }
}
@media (max-width: 760px) {
  .fs { grid-template-columns: minmax(0, 1fr); }
  .hero__flower { opacity: 0.18; }
  .form { grid-template-columns: minmax(0, 1fr); }
  .foot__legal { flex-direction: column; gap: 8px; }
}
@media (max-width: 460px) {
  .plant { grid-template-columns: 1fr; }
  
  
}
