/* ============================================================
   Ресторан «Скай» — лендинг
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face{
  font-family:"Faberge";
  src:url("../fonts/Faberge-Regular.woff2") format("woff2");
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Commissioner";
  src:url("../fonts/Commissioner.woff2") format("woff2");
  font-weight:300 600; font-style:normal; font-display:swap;
}

:root{
  --bg-dark:    #3a3a3a;
  --bg-dark-2:  #333333;
  --btn-dark:   #262626;
  --bg-light:   #e2d4c7;
  --bg-light-2: #d8c7b6;
  --text-dark:  #3a3a3a;
  --text-mut-d: rgba(58,58,58,.62);
  --text-light: #fff5e9;
  --text-mut-l: rgba(255,245,233,.62);
  --gold:       #af9172;
  --gold-soft:  #c2a888;
  --line-dark:  rgba(255,245,233,.16);
  --line-light: rgba(58,58,58,.18);

  --ff-display: "Faberge", "Cormorant Garamond", Georgia, serif;
  --ff-body:    "Commissioner", "Segoe UI", system-ui, sans-serif;

  --container: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --r: 2px;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  font-family:var(--ff-body);
  font-weight:300;
  color:var(--text-dark);
  background:var(--bg-light);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:var(--pad);
}

/* ---------- Typography ---------- */
.section__title{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:clamp(2.1rem, 4.6vw, 3.7rem);
  line-height:1.05;
  letter-spacing:.005em;
  margin-bottom:.5em;
}
.eyebrow{
  font-size:.74rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--gold);
  margin-bottom:1.3em;
}
.eyebrow--light{ color:var(--gold-soft); }

.section__lead{
  font-size:1.1rem;
  max-width:48ch;
  opacity:.88;
}

p + p{ margin-top:1em; }

/* ---------- Buttons ---------- */
.btn{
  --bc: var(--gold);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:1em 2.2em;
  font-family:var(--ff-display);
  font-size:1rem;
  font-weight:400;
  letter-spacing:.1em;
  text-transform:uppercase;
  border:1px solid var(--bc);
  border-radius:var(--r);
  cursor:pointer;
  transition:.35s ease;
  background:transparent;
  line-height:1;
}
.btn--solid{ background:var(--gold); border-color:var(--gold); color:#fff5e9; }
.btn--solid:hover{ background:var(--gold-soft); border-color:var(--gold-soft); color:#2b231a; }
.btn--outline{ color:var(--text-light); border-color:rgba(255,245,233,.45); }
.btn--outline:hover{ background:var(--gold); border-color:var(--gold); color:#fff5e9; }
.btn--ghost{ color:var(--text-light); border-color:rgba(255,245,233,.45); }
.btn--ghost:hover{ background:rgba(255,245,233,.12); }
.btn--dark{ color:var(--text-light); background:var(--btn-dark); border-color:var(--btn-dark); margin-top:2rem; }
.btn--dark:hover{ background:#000; border-color:#000; }
.btn--block{ width:100%; }

/* ---------- Header ---------- */
.header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  transition:.4s ease;
}
.header__inner{
  max-width:var(--container);
  margin-inline:auto;
  padding:1.4rem var(--pad);
  display:flex; align-items:center; gap:2rem;
  transition:.4s ease;
}
.header__logo{ flex-shrink:0; }
.logo{ height:36px; width:auto; }
.logo--dark{ display:none; }

.nav{ display:flex; gap:2rem; margin-left:auto; }
.nav__link{
  font-size:.86rem; letter-spacing:.06em; color:var(--text-light);
  position:relative; padding:.2em 0; transition:.3s; opacity:.88;
}
.nav__link::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px;
  background:var(--gold); transition:.3s;
}
.nav__link:hover{ opacity:1; }
.nav__link:hover::after{ width:100%; }
.header__cta{ flex-shrink:0; padding:.75em 1.7em; font-size:.9rem; }

/* scrolled state */
.header.is-scrolled{ background:var(--bg-light); box-shadow:0 1px 0 var(--line-light); }
.header.is-scrolled .header__inner{ padding-top:.85rem; padding-bottom:.85rem; }
.header.is-scrolled .logo--light{ display:none; }
.header.is-scrolled .logo--dark{ display:block; }
.header.is-scrolled .nav__link{ color:var(--text-dark); }
.header.is-scrolled .btn--outline{ color:var(--text-dark); border-color:var(--text-dark); }
.header.is-scrolled .btn--outline:hover{ background:var(--btn-dark); border-color:var(--btn-dark); color:var(--text-light); }
.header.is-scrolled .burger span{ background:var(--text-dark); }

/* ---------- Burger ---------- */
.burger{
  display:none; flex-direction:column; gap:5px; width:30px; height:24px;
  background:none; border:none; cursor:pointer; margin-left:auto;
}
.burger span{ height:2px; width:100%; background:var(--text-light); transition:.3s; }
.burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:100svh;
  display:flex; align-items:center;
  color:var(--text-light);
  padding-block:120px;
}
.hero__media{ position:absolute; inset:0; z-index:-1; }
.hero__media img{ width:100%; height:100%; object-fit:cover; }
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(28,26,23,.86) 0%, rgba(28,26,23,.55) 45%, rgba(28,26,23,.12) 100%),
    linear-gradient(0deg, rgba(28,26,23,.6) 0%, rgba(28,26,23,0) 40%);
}
.hero__content{
  max-width:var(--container); width:100%;
  margin-inline:auto; padding-inline:var(--pad);
}
.hero__title{
  font-family:var(--ff-display); font-weight:400;
  font-size:clamp(3rem, 7.4vw, 6rem); line-height:1;
  letter-spacing:.005em; margin-bottom:.35em;
}
.hero__text{ max-width:48ch; font-size:1.1rem; opacity:.92; margin-bottom:2.4em; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:1rem; }

.hero__scroll{
  position:absolute; bottom:2.2rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.7rem;
  font-size:.66rem; letter-spacing:.25em; text-transform:uppercase; opacity:.7;
}
.hero__scroll i{ width:1px; height:38px; background:var(--gold-soft); animation:scroll 2s ease-in-out infinite; transform-origin:top; }
@keyframes scroll{ 0%,100%{ transform:scaleY(.3); opacity:.4; } 50%{ transform:scaleY(1); opacity:1; } }

/* ---------- Sections base ---------- */
.section{ padding-block:clamp(72px, 10vw, 140px); position:relative; }
.section--dark{ background:var(--bg-dark); color:var(--text-light); }
.section--light{ background:var(--bg-light); color:var(--text-dark); }
.section--dark .section__lead,
.section--dark p{ color:var(--text-light); }
.section__head{ max-width:680px; margin-bottom:clamp(2.5rem,5vw,4rem); }

/* декоративный паттерн на бежевом фоне */
.section--pattern::before{
  content:""; position:absolute; inset:0; z-index:0;
  background:url("../img/pattern-lines.png") no-repeat right top;
  background-size:min(58%, 760px) auto;
  opacity:.5; pointer-events:none;
}
.section--pattern > .container{ position:relative; z-index:1; }

/* ---------- About ---------- */
.about__grid{
  display:grid; grid-template-columns:1fr 1.05fr; gap:clamp(2rem,6vw,6rem);
  align-items:center;
}
.about__media img{ width:100%; height:100%; object-fit:cover; border-radius:var(--r); aspect-ratio:4/5; }
.facts{ display:flex; gap:clamp(1.5rem,4vw,3rem); margin:2.4rem 0 .5rem; flex-wrap:wrap; }
.facts__item{ display:flex; flex-direction:column; gap:.4rem; }
.facts__num{ font-family:var(--ff-display); font-size:2.8rem; line-height:1; color:var(--gold); }
.facts__label{ font-size:.78rem; letter-spacing:.05em; color:var(--text-mut-d); text-transform:uppercase; }

/* ---------- Menu / dishes ---------- */
.menu .section__head{ margin-inline:auto; text-align:center; }
.tabs{
  display:flex; flex-wrap:wrap; justify-content:center; gap:.5rem 2rem;
  margin-bottom:clamp(2.5rem,5vw,3.5rem);
}
.tabs__btn{
  background:none; border:none; cursor:pointer;
  font-family:var(--ff-body); font-size:.82rem; font-weight:500;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--text-mut-l); padding:.4em 0; position:relative; transition:.3s;
}
.tabs__btn::after{
  content:""; position:absolute; left:0; bottom:-4px; width:0; height:1px;
  background:var(--gold); transition:.3s;
}
.tabs__btn:hover{ color:var(--text-light); }
.tabs__btn.is-active{ color:var(--gold); }
.tabs__btn.is-active::after{ width:100%; }

.dishes{
  display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.2rem,2.5vw,2rem);
}
.dishes[hidden]{ display:none; }
.dish{
  display:flex; flex-direction:column;
  background:var(--bg-dark-2); border:1px solid var(--line-dark);
  border-radius:var(--r); overflow:hidden; transition:.4s ease;
}
.dish:hover{ transform:translateY(-4px); border-color:rgba(175,145,114,.5); }
.dish__media{ overflow:hidden; aspect-ratio:4/3; }
.dish__media img{ width:100%; height:100%; object-fit:cover; transition:.6s ease; }
.dish:hover .dish__media img{ transform:scale(1.06); }
.dish__body{ padding:1.3rem 1.4rem 1.5rem; display:flex; flex-direction:column; flex:1; }
.dish__title{ font-family:var(--ff-display); font-weight:400; font-size:1.45rem; line-height:1.15; margin-bottom:.4rem; }
.dish__desc{ font-size:.88rem; color:var(--text-mut-l)!important; margin-bottom:.9rem; }
.dish__price{ margin-top:auto; padding-top:.7rem; font-family:var(--ff-display); font-size:1.2rem; color:var(--gold); }
.menu__cta{ text-align:center; margin-top:clamp(2.5rem,5vw,4rem); }

/* ---------- Breakfast ---------- */
.breakfast__grid{
  display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(2rem,6vw,6rem);
  align-items:center;
}
.hours{ margin-top:2.2rem; border-top:1px solid var(--line-light); }
.hours li{
  display:flex; justify-content:space-between; align-items:baseline; gap:1rem;
  padding:1.1rem 0; border-bottom:1px solid var(--line-light);
}
.hours span{ color:var(--text-mut-d); font-size:.95rem; }
.hours b{ font-family:var(--ff-display); font-size:1.6rem; font-weight:400; }
.breakfast__media{ position:relative; }
.breakfast__img{ border-radius:var(--r); object-fit:cover; }
.breakfast__img--big{ width:100%; aspect-ratio:3/2; }
.breakfast__img--small{
  position:absolute; right:-6%; bottom:-12%; width:46%; aspect-ratio:1;
  border:6px solid var(--bg-light); box-shadow:0 20px 50px rgba(0,0,0,.25);
}

/* ---------- Interior gallery ---------- */
.gallery{ margin-top:clamp(1rem,3vw,2rem); }
.gallery__track{
  display:flex; gap:1.5rem; overflow-x:auto; scroll-snap-type:x mandatory;
  padding-inline:var(--pad); padding-bottom:1.5rem;
  scrollbar-width:none;
}
.gallery__track::-webkit-scrollbar{ display:none; }
.gallery__item{ flex:0 0 min(78vw, 640px); scroll-snap-align:center; }
.gallery__item img{ width:100%; aspect-ratio:16/10; object-fit:cover; border-radius:var(--r); }
.gallery__nav{ display:flex; gap:1rem; margin-top:1.4rem; }
.gallery__btn{
  width:54px; height:54px; border-radius:50%;
  border:1px solid var(--line-dark); background:transparent; color:var(--text-light);
  font-size:1.2rem; cursor:pointer; transition:.3s;
}
.gallery__btn:hover{ background:var(--gold); border-color:var(--gold); color:#fff5e9; }

/* ---------- Location (иммерсивный блок) ---------- */
.location{ position:relative; color:var(--text-light); overflow:hidden;
  padding-block:clamp(72px,11vw,150px); }
.location__bg{ position:absolute; inset:0; z-index:0; }
.location__bg img{ width:100%; height:100%; object-fit:cover; }
.location__veil{ position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(28,26,23,.92) 0%, rgba(28,26,23,.7) 38%, rgba(28,26,23,.15) 75%, rgba(28,26,23,.35) 100%); }
.location__inner{ position:relative; z-index:1;
  display:grid; grid-template-columns:minmax(0,440px) 1fr; gap:clamp(2rem,5vw,5rem);
  align-items:center; }
.location__card{ max-width:460px; }
.location__card .section__title{ color:var(--text-light); }
.location__card p{ color:var(--text-light); opacity:.92; }
.location__points{ margin:1.6rem 0 .5rem; }
.location__points li{ position:relative; padding:.55rem 0 .55rem 1.6rem;
  border-bottom:1px solid var(--line-dark); font-size:.98rem; }
.location__points li::before{ content:""; position:absolute; left:0; top:1.15rem;
  width:7px; height:7px; background:var(--gold); border-radius:50%; }
.location__shot{ justify-self:end; max-width:560px; width:100%; }
.location__shot img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--r);
  box-shadow:0 30px 70px rgba(0,0,0,.45); }
.location__shot figcaption{ margin-top:.8rem; font-size:.82rem; letter-spacing:.04em;
  color:var(--text-mut-l); text-align:right; }

/* ---------- Booking ---------- */
.booking__grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2rem,6vw,6rem);
  align-items:center;
}
.form{ margin-top:2rem; }
.form__row{ margin-bottom:1.2rem; }
.form__row--2{ display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.form__row--3{ display:grid; grid-template-columns:1fr 1fr .8fr; gap:1.2rem; }
.field{ display:flex; flex-direction:column; gap:.5rem; }
.field span{ font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--text-mut-l); }
.field input{
  background:transparent; border:none; border-bottom:1px solid var(--line-dark);
  padding:.7rem 0; color:var(--text-light); font-family:var(--ff-body);
  font-size:1rem; transition:.3s;
}
.field input::placeholder{ color:rgba(255,245,233,.4); }
.field input:focus{ outline:none; border-color:var(--gold); }
.field input[type=date],.field input[type=time]{ color-scheme:dark; }
.check{ display:flex; align-items:center; gap:.7rem; margin:.4rem 0 1.6rem; font-size:.85rem; color:var(--text-mut-l); cursor:pointer; }
.check input{ width:16px; height:16px; accent-color:var(--gold); flex-shrink:0; }
.form__status{ margin-top:1rem; font-size:.9rem; min-height:1.2em; }
.form__status.is-ok{ color:var(--gold-soft); }
.form__status.is-err{ color:#e0908a; }

.booking__media{ position:relative; }
.booking__media img{ width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:var(--r); }
.booking__call{
  position:absolute; left:50%; bottom:-1.5rem; transform:translateX(-50%);
  background:var(--gold); color:#fff5e9; padding:1rem 2rem; border-radius:var(--r);
  text-align:center; white-space:nowrap; box-shadow:0 16px 40px rgba(0,0,0,.35);
}
.booking__call span{ display:block; font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; opacity:.8; }
.booking__call a{ font-family:var(--ff-display); font-size:1.6rem; }

/* ---------- Contacts (карта на всю ширину + карточка) ---------- */
.contacts{ position:relative; }
.contacts__map{ position:relative; width:100%; height:clamp(520px,68vh,680px); overflow:hidden; background:#e9e4dd; }
.contacts__map iframe{ width:100%; height:100%; border:0; filter:grayscale(.25) contrast(1.02);
  pointer-events:none; }

/* кастомный пин с логотипом-чайкой */
.map-pin{ position:absolute; left:50%; top:50%; transform:translate(-50%,-100%); z-index:3;
  pointer-events:none; }
.map-pin__drop{ position:relative; display:grid; place-items:center;
  width:62px; height:62px; background:var(--btn-dark); border-radius:50% 50% 50% 0;
  transform:rotate(-45deg); box-shadow:0 10px 22px rgba(0,0,0,.4); border:2px solid #fff5e9; }
.map-pin__drop img{ width:34px; height:auto; transform:rotate(45deg); }
.map-pin__pulse{ position:absolute; left:50%; bottom:-6px; transform:translateX(-50%);
  width:16px; height:6px; background:rgba(0,0,0,.28); border-radius:50%; filter:blur(2px); }

/* белая карточка поверх карты */
.contacts__overlay{ position:absolute; inset:0; z-index:4;
  display:flex; align-items:center; pointer-events:none; }
.contacts__card{ pointer-events:auto;
  background:#fff; color:var(--text-dark);
  max-width:430px; width:100%; padding:clamp(1.8rem,3.5vw,2.8rem);
  border-radius:var(--r); box-shadow:0 30px 80px rgba(0,0,0,.28); }
.contacts__card .section__title{ font-size:clamp(1.9rem,3.4vw,2.7rem); margin-bottom:.5em; }
.contacts__list{ margin:1.2rem 0 1.6rem; }
.contacts__item{ display:flex; flex-direction:column; gap:.25rem;
  padding:.9rem 0; border-bottom:1px solid var(--line-light); }
.contacts__item:first-child{ border-top:1px solid var(--line-light); }
.contacts__label{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--text-mut-d); }
.contacts__value{ font-family:var(--ff-display); font-size:1.3rem; line-height:1.25; }
a.contacts__value:hover{ color:var(--gold); }
.contacts__actions{ display:flex; flex-direction:column; align-items:flex-start; gap:1rem; }
.contacts__actions .btn--dark{ margin-top:0; }
.contacts__maplink{ font-size:.85rem; letter-spacing:.04em; color:var(--gold); transition:.3s; }
.contacts__maplink:hover{ color:var(--text-dark); }

/* ---------- Footer (колонки) ---------- */
.footer{ background:var(--btn-dark); color:var(--text-light); padding-top:clamp(3rem,6vw,5rem); }
.footer__top{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:clamp(2rem,4vw,3.5rem);
  padding-bottom:clamp(2.5rem,5vw,4rem);
}
.footer__brand{ max-width:320px; }
.footer__logo{ height:44px; width:auto; margin-bottom:1.2rem; }
.footer__tagline{ color:var(--text-mut-l); font-size:.9rem; line-height:1.6; }
.footer__title{ font-family:var(--ff-display); font-weight:400; font-size:1.25rem; margin-bottom:1.1rem; color:var(--gold-soft); }
.footer__list{ display:flex; flex-direction:column; gap:.7rem; }
.footer__list li{ color:var(--text-mut-l); font-size:.9rem; line-height:1.5; }
.footer__list a{ transition:.3s; }
.footer__list a:hover{ color:var(--gold); }
.footer__cta{ margin-top:1.5rem; font-size:.85rem; padding:.8em 1.8em; }
.footer__bottom{
  display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap;
  padding-block:1.6rem; border-top:1px solid var(--line-dark);
}
.footer__copy{ color:var(--text-mut-l); font-size:.78rem; }

/* ===== Po Plan credit ===== */
.po-plan-credit{
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; letter-spacing:.01em; color:#b9afa2;
  text-decoration:none; opacity:.9; transition:opacity .2s ease; margin-left:auto;
}
.po-plan-credit:hover{ opacity:1; }
.po-plan-credit__logo{ height:12px; width:auto; display:block; flex-shrink:0; }
.po-plan-credit__text{ display:inline-flex; align-items:baseline; gap:4px; }
.po-plan-credit__prefix{ color:inherit; }
.po-plan-credit__brand{
  color:var(--gold); text-decoration:underline dashed; text-decoration-color:var(--gold);
  text-decoration-thickness:1px; text-underline-offset:3px; font-weight:600;
}
.po-plan-credit:hover .po-plan-credit__brand{ filter:brightness(1.15); }

/* ---------- Reveal (прогрессивное улучшение) ---------- */
.js .reveal{ opacity:0; transform:translateY(28px); transition:.8s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .js .reveal{ opacity:1; transform:none; transition:none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px){
  .about__grid,.breakfast__grid,.location__grid,.booking__grid,.contacts__grid{
    grid-template-columns:1fr;
  }
  .about__media{ order:-1; }
  .about__media img{ aspect-ratio:16/10; }
  .dishes{ grid-template-columns:1fr 1fr; }
  .breakfast__img--small{ width:40%; right:0; }
  .booking__media{ max-width:480px; margin-inline:auto; }
  .section--pattern::before{ background-size:80% auto; opacity:.35; }

  .location__inner{ grid-template-columns:1fr; }
  .location__shot{ justify-self:stretch; max-width:none; }
  .location__veil{ background:linear-gradient(0deg, rgba(28,26,23,.92) 0%, rgba(28,26,23,.55) 55%, rgba(28,26,23,.35) 100%); }
  .footer__top{ grid-template-columns:1fr 1fr; }
  .footer__brand{ grid-column:1 / -1; max-width:none; }
}

@media (max-width: 760px){
  .nav, .header__cta{ display:none; }
  .burger{ display:flex; }

  .nav.is-open{
    display:flex; flex-direction:column; gap:0;
    position:fixed; inset:0; z-index:90;
    background:var(--bg-dark);
    padding:6rem var(--pad) 2rem; align-items:flex-start;
  }
  .nav.is-open .nav__link{ color:var(--text-light); font-size:1.6rem; font-family:var(--ff-display); padding:.6rem 0; }

  .facts{ gap:1.6rem 2.4rem; }
  .breakfast__img--small{ position:static; width:60%; margin:1rem auto 0; }
  .booking__call{ position:static; transform:none; display:inline-block; margin-top:1rem; }
  .hero__actions .btn{ flex:1 1 auto; }
  .tabs{ gap:.4rem 1.3rem; }

  /* контакты: карта сверху, карточка под ней с нахлёстом */
  .contacts__map{ height:360px; }
  .contacts__overlay{ position:static; display:block; }
  .contacts__card{ margin-top:-90px; max-width:none; }
}

@media (max-width: 560px){
  .dishes{ grid-template-columns:1fr; max-width:420px; margin-inline:auto; }
  .form__row--2{ grid-template-columns:1fr; }
  .form__row--3{ grid-template-columns:1fr 1fr; }
  .form__row--3 .field:first-child{ grid-column:1 / -1; }

  .footer__top{ grid-template-columns:1fr; gap:2rem; }
  .footer__bottom{ flex-direction:column; align-items:flex-start; gap:14px; }
  .po-plan-credit{ margin-left:0; }
}
