/* ==========================================================================
   Option A — Proof-Led Clinic Editorial
   Clinical-journal feel: hairline rules, numbered sections, serif pull-figures,
   restrained colour (paper base, cream frames, one deep-cypress stats band).
   ========================================================================== */

/* --- Announcement ---------------------------------------------------------- */
.a-announce {
  background: var(--jet); color: var(--paper);
  font-size: 0.8rem; letter-spacing: 0.02em; text-align: center;
  padding: 9px 16px;
}

/* --- Header ----------------------------------------------------------------- */
.a-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid rgba(121, 104, 86, 0.28);
}
.a-header__row { display: flex; align-items: center; gap: 20px; min-height: 74px; }
.a-logo { color: var(--jet); display: inline-flex; align-items: center; min-height: 44px; }
.a-logo .logo-mark { width: 158px; }

.a-nav { display: none; margin-inline: auto; }
.a-nav__list { display: flex; align-items: center; gap: 2px; }
.a-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 13px; min-height: 44px;
  font-size: 0.92rem; font-weight: 500; color: var(--jet);
  text-decoration: none; border-radius: 6px;
  transition: color var(--t-hover), background-color var(--t-hover);
}
.a-nav__link:hover { color: var(--cypress); background: rgba(138, 144, 101, 0.12); }
.a-caret { transition: transform var(--t-menu); }
.a-nav__item--menu { position: static; }
.a-nav__item--menu:hover .a-caret,
.a-nav__item--menu:focus-within .a-caret { transform: rotate(180deg); }

/* Mega menu — full-width panel under the sticky header */
.a-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cream);
  border-top: 1px solid rgba(121, 104, 86, 0.2);
  border-bottom: 1px solid rgba(121, 104, 86, 0.28);
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--t-menu), transform var(--t-menu), visibility var(--t-menu);
}
.a-nav__item--menu:hover .a-menu,
.a-nav__item--menu:focus-within .a-menu {
  opacity: 1; visibility: visible; transform: none;
}
.a-menu__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 32px; padding-block: 34px;
}
.a-menu__label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--shiitake);
  padding-bottom: 10px; margin-bottom: 6px;
  border-bottom: 1px solid var(--stucco-tint);
}
.a-menu__group ul { display: grid; gap: 2px; }
.a-menu__group a {
  display: block; padding: 7px 0;
  font-size: 0.9rem; text-decoration: none; color: var(--jet);
  transition: color var(--t-hover);
}
.a-menu__group a:hover { color: var(--cypress); text-decoration: underline; text-underline-offset: 4px; }

.a-header__cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.a-wa-btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sage); color: #fff;
  transition: background-color var(--t-hover);
}
.a-wa-btn:hover { background: #798055; }
.a-header__book { display: none; }

.a-burger {
  width: 46px; height: 46px; border-radius: 8px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.a-burger span { display: block; width: 22px; height: 2px; background: var(--jet); border-radius: 2px; }

/* --- Drawer ------------------------------------------------------------------ */
.a-drawer {
  position: fixed; inset: 0; z-index: 140;
  background: var(--paper);
  display: flex; flex-direction: column;
  transform: translateX(102%);
  transition: transform var(--t-menu);
  visibility: hidden;
}
.a-drawer.is-open { transform: none; visibility: visible; }
.a-drawer__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(121, 104, 86, 0.25);
}
.a-drawer__bar .logo-mark { width: 138px; }
.a-drawer__close {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--jet);
}
.a-drawer__nav { flex: 1; overflow-y: auto; padding: 12px var(--gutter) 24px; }
.a-drawer__link {
  display: block; padding: 15px 0; min-height: 44px;
  font-family: var(--serif); font-size: 1.35rem; color: var(--jet);
  text-decoration: none; border-bottom: 1px solid var(--stucco-tint);
  cursor: pointer;
}
.a-drawer__acc { border-bottom: 1px solid var(--stucco-tint); }
.a-drawer__acc .a-drawer__link { border-bottom: 0; position: relative; list-style: none; }
.a-drawer__acc summary::-webkit-details-marker { display: none; }
.a-drawer__acc summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.3rem; color: var(--shiitake);
}
.a-drawer__acc[open] summary::after { content: "–"; }
.a-drawer__groups { padding: 0 0 18px; }
.a-drawer__groups .a-menu__label { border-bottom: 0; margin: 14px 0 2px; padding-bottom: 0; }
.a-drawer__groups a {
  display: block; padding: 9px 0; min-height: 44px;
  font-size: 0.95rem; color: var(--jet); text-decoration: none;
}
.a-drawer__cta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 14px var(--gutter) calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(121, 104, 86, 0.25);
  background: var(--cream);
}

/* --- Hero ---------------------------------------------------------------------- */
.a-hero { padding-block: clamp(44px, 7vw, 96px); }
.a-hero__grid { display: grid; gap: 44px; align-items: center; }
.a-hero__title {
  font-size: clamp(2.7rem, 6.2vw, 4.3rem);
  margin-top: 20px;
}
.a-hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: rgba(33, 35, 34, 0.78);
  max-width: 36ch; margin-top: 18px;
}
.a-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.a-hero__proof {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid var(--stucco-tint);
  font-size: 0.9rem; color: var(--shiitake);
}
.a-hero__proof strong { color: var(--jet); font-size: 1rem; }
.a-hero__proof-sep { color: var(--stucco); }

.a-hero__tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--stucco);
  margin-bottom: 10px;
}
.a-frame {
  background: var(--cream);
  border: 1px solid rgba(164, 147, 130, 0.35);
  border-radius: var(--radius-l);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.a-frame img { width: 100%; height: auto; border-radius: var(--radius-m); }
.a-frame figcaption {
  padding: 12px 6px 2px;
  font-size: 0.85rem; line-height: 1.5; color: var(--shiitake);
}

/* --- Press strip ------------------------------------------------------------------ */
.a-press { background: var(--paper-deep); padding-block: 34px; }
.a-press__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 22px;
}
.a-rail-arrows { display: flex; gap: 8px; }
.a-press__rail { align-items: center; gap: clamp(28px, 4vw, 56px); }
.a-press__rail li { display: flex; align-items: center; height: 44px; }
.a-press__rail img {
  height: 27px; width: auto;
  filter: grayscale(1); mix-blend-mode: multiply; opacity: 0.75;
  transition: opacity var(--t-hover);
}
.a-press__rail li:hover img { opacity: 1; }

/* --- Editorial section scaffolding -------------------------------------------------- */
.a-section { padding-block: var(--section-y); }
.a-sec-head {
  display: flex; align-items: flex-start; gap: 20px;
  padding-top: 26px; margin-bottom: clamp(30px, 4.5vw, 52px);
  border-top: 1.5px solid rgba(121, 104, 86, 0.35);
}
.a-sec-num {
  font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.9; color: var(--stucco);
}
.a-sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.a-sec-sub { margin-top: 10px; color: var(--shiitake); font-size: 0.98rem; }
.a-sec-head--row { flex-wrap: wrap; }
.a-sec-head--row .a-rail-arrows { margin-left: auto; align-self: center; }

/* --- 01 · Results ---------------------------------------------------------------------- */
.a-tabs {
  display: flex; flex-wrap: wrap; gap: 4px;
  border-bottom: 1px solid var(--stucco-tint);
}
.a-tab {
  padding: 12px 18px; min-height: 48px;
  font-size: 0.92rem; font-weight: 600; color: var(--shiitake);
  border-bottom: 2.5px solid transparent; margin-bottom: -1px;
  transition: color var(--t-hover), border-color var(--t-hover);
}
.a-tab:hover { color: var(--jet); }
.a-tab.is-active { color: var(--jet); border-color: var(--cypress); }
.a-pane { margin-top: 30px; }
.a-pane[hidden] { display: none; }
.a-frame--pane { max-width: 980px; margin-inline: auto; }
.a-frame--pane figcaption {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
}
.a-pane__note { font-size: 0.78rem; color: var(--stucco); }
.a-results__more { margin-top: 34px; text-align: center; }

/* --- Stats band ----------------------------------------------------------------------- */
.a-stats {
  background: var(--cypress-deep); color: var(--paper);
  padding-block: clamp(56px, 8vw, 104px);
}
.a-stats__grid { display: grid; gap: 0; }
.a-stat { padding: 26px 8px; border-top: 1px solid rgba(243, 234, 218, 0.22); }
.a-stats__grid .a-stat:first-child { border-top: 0; padding-top: 0; }
.a-stat__num {
  font-family: var(--serif); font-size: clamp(3.4rem, 7vw, 5.4rem);
  line-height: 1;
}
.a-stat__num span { font-size: 0.55em; color: #cdd3a8; }
.a-stat__label {
  margin-top: 12px; max-width: 24ch;
  font-size: 0.98rem; color: rgba(243, 234, 218, 0.82);
}
.a-stats__note {
  margin-top: 34px;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(243, 234, 218, 0.55);
}

/* --- 02 · Difference --------------------------------------------------------------------- */
.a-diff__cols { display: grid; gap: 34px; }
.a-diff__col { border-top: 1px solid var(--stucco-tint); padding-top: 24px; }
.a-diff__num {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--stucco);
}
.a-diff__col h3 { font-size: clamp(1.45rem, 2.2vw, 1.75rem); margin-top: 10px; }
.a-diff__col p:last-child {
  margin-top: 12px; font-size: 0.98rem; line-height: 1.7;
  color: rgba(33, 35, 34, 0.78); max-width: 38ch;
}

/* --- 03 · Treatments ------------------------------------------------------------------------ */
.a-treatments { background: var(--cream); }
.a-treat {
  display: grid; gap: 24px;
  padding-block: clamp(30px, 4vw, 44px);
  border-top: 1px solid var(--stucco-tint);
}
.a-treat:first-of-type { border-top: 0; padding-top: 0; }
.a-treat img { width: 100%; height: auto; border-radius: var(--radius-m); aspect-ratio: 3 / 2; object-fit: cover; }
.a-treat__body h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.a-treat__body > p {
  margin-top: 12px; max-width: 58ch;
  font-size: 0.98rem; line-height: 1.7; color: rgba(33, 35, 34, 0.78);
}
.a-treat__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 20px; }
.btn--sm { min-height: 44px; padding: 9px 20px; font-size: 0.88rem; }
.a-treatments__more { margin-top: 26px; }

/* --- 04 · Awards ------------------------------------------------------------------------------ */
.a-awards { background: var(--sage-tint); }
.a-awards .a-sec-head { border-top-color: rgba(84, 90, 61, 0.3); }
.a-awards__rail { padding-block: 4px; }
.a-award {
  width: 272px; padding: 26px 24px 28px;
  background: var(--cream); border-radius: var(--radius-m);
  border: 1px solid rgba(164, 147, 130, 0.28);
}
.a-award img {
  height: 26px; width: auto; max-width: 150px; object-fit: contain;
  filter: grayscale(1); opacity: 0.8;
}
.a-award h3 {
  margin-top: 18px; font-size: 1.22rem; line-height: 1.25;
  min-height: 3.05em;
}
.a-award p { margin-top: 10px; font-size: 0.84rem; color: var(--shiitake); }

/* --- Reviews -------------------------------------------------------------------------------------- */
.a-reviews__grid { display: grid; gap: 40px; }
.a-reviews__grid > * { min-width: 0; }
.a-reviews__panel .kicker { margin-bottom: 8px; }
.a-reviews__score { font-family: var(--serif); font-size: clamp(4rem, 7vw, 5.6rem); line-height: 1; }
.a-reviews__stars { font-size: 1.3rem; margin-top: 6px; }
.a-reviews__count { margin-top: 12px; font-size: 0.92rem; color: var(--shiitake); max-width: 24ch; }
.a-reviews__chips { display: flex; gap: 8px; margin-top: 18px; }
.a-chip {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--stucco); color: var(--jet);
  font-size: 0.8rem; font-weight: 600;
}
.a-reviews__arrows { justify-content: flex-end; margin-bottom: 16px; }
.a-review {
  width: min(320px, 78vw); padding: 26px 24px;
  background: var(--cream); border-radius: var(--radius-m);
  border: 1px solid rgba(164, 147, 130, 0.28);
  display: flex; flex-direction: column;
}
.a-review .stars { font-size: 0.85rem; }
.a-review__text { margin-top: 14px; font-size: 0.92rem; line-height: 1.65; flex: 1; }
.a-review__name { margin-top: 18px; font-weight: 600; font-size: 0.92rem; }
.a-review__meta { margin-top: 3px; font-size: 0.78rem; color: var(--shiitake); }

/* --- Boutiques ---------------------------------------------------------------------------------------- */
.a-boutiques { background: var(--paper-deep); }
.a-boutiques__grid { display: grid; gap: 40px; align-items: center; }
.a-boutiques__media img { width: 100%; height: auto; border-radius: var(--radius-l); }
.a-boutiques__body h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-top: 14px; }
.a-outlet {
  margin-top: 22px; padding: 20px 22px;
  background: var(--cream); border-radius: var(--radius-m);
  border: 1px solid rgba(164, 147, 130, 0.28);
}
.a-outlet h3 { font-size: 1.28rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.a-outlet__tag {
  font-family: var(--sans); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--cypress); color: var(--paper);
  padding: 4px 10px; border-radius: 999px;
}
.a-outlet p { margin-top: 8px; font-size: 0.93rem; color: rgba(33, 35, 34, 0.78); }
.a-hours { margin-top: 22px; font-size: 0.93rem; }
.a-hours__label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--shiitake); margin-bottom: 4px;
}
.a-boutiques__body .btn { margin-top: 26px; }

/* --- Instagram --------------------------------------------------------------------------------------------- */
.a-ig__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 18px; margin-bottom: 28px;
}
.a-ig__handle { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.a-ig__handle a { text-decoration: none; transition: color var(--t-hover); }
.a-ig__handle a:hover { color: var(--cypress); }
.a-ig__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.a-ig__tile {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius-s);
}
.a-ig__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slide);
}
.a-ig__tile:hover img { transform: scale(1.04); }
.a-ig__cap {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 14px; text-align: left;
  font-size: 0.8rem; line-height: 1.45; color: var(--paper);
  background: linear-gradient(to top, rgba(33, 35, 34, 0.82) 0%, rgba(33, 35, 34, 0.45) 55%, rgba(33, 35, 34, 0.2) 100%);
  opacity: 0; transition: opacity var(--t-hover);
}
.a-ig__tile:hover .a-ig__cap,
.a-ig__tile:focus-visible .a-ig__cap,
.a-ig__tile.is-open .a-ig__cap { opacity: 1; }

/* --- Booking form ---------------------------------------------------------------------------------------------- */
.a-book { padding-top: 0; }
.a-book__panel {
  background: var(--cream);
  border: 1px solid rgba(164, 147, 130, 0.3);
  border-radius: var(--radius-l);
  padding: clamp(28px, 5vw, 60px);
  display: grid; gap: 40px;
  box-shadow: var(--shadow-soft);
}
.a-book__copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-top: 14px; }
.a-book__sub { margin-top: 16px; font-size: 0.98rem; line-height: 1.7; color: rgba(33, 35, 34, 0.78); max-width: 44ch; }
.a-book__alt { margin-top: 20px; font-size: 0.92rem; }
.a-book__alt a { color: var(--cypress); font-weight: 600; text-underline-offset: 4px; }

.a-form { display: grid; gap: 18px; align-content: start; }
.a-form__row { display: grid; gap: 18px; }
.a-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; }
.a-field label span { color: var(--shiitake); }
.a-field input, .a-field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  background: var(--paper); border: 1.5px solid var(--stucco);
  border-radius: var(--radius-s);
  transition: border-color var(--t-hover), box-shadow var(--t-hover);
}
.a-field textarea { resize: vertical; min-height: 110px; }
.a-field input:focus, .a-field textarea:focus {
  outline: none; border-color: var(--cypress);
  box-shadow: 0 0 0 3px rgba(138, 144, 101, 0.25);
}
.a-form__submit { justify-self: start; padding-inline: 40px; }
.a-form__micro { font-size: 0.8rem; color: var(--shiitake); }
.a-form__ok {
  background: var(--sage-tint); color: var(--cypress-deep);
  border-radius: var(--radius-s); padding: 13px 16px;
  font-size: 0.9rem; font-weight: 600;
}

/* --- Footer ------------------------------------------------------------------------------------------------------- */
.a-footer { background: var(--cypress-deep); color: var(--paper); }
.a-footer__grid {
  display: grid; gap: 36px;
  padding-block: clamp(48px, 6vw, 76px) 40px;
}
.a-logo--footer { color: var(--paper); }
.a-logo--footer .logo-mark { width: 176px; }
.a-footer__tagline {
  margin-top: 14px; font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: rgba(243, 234, 218, 0.85);
}
.a-footer__hours { margin-top: 24px; font-size: 0.92rem; line-height: 1.7; color: rgba(243, 234, 218, 0.8); }
.a-footer__label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(243, 234, 218, 0.6);
  margin-bottom: 12px;
}
.a-footer__label--wa { margin-top: 26px; }
.a-footer__col ul { display: grid; gap: 2px; }
.a-footer__col a {
  display: inline-block; padding: 6px 0; min-height: 32px;
  font-size: 0.94rem; color: var(--paper); text-decoration: none;
  transition: color var(--t-hover);
}
.a-footer__col a:hover { color: #cdd3a8; text-decoration: underline; text-underline-offset: 4px; }
.a-footer__social { display: flex; gap: 10px; }
.a-footer__social a {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(243, 234, 218, 0.4); color: var(--paper);
  transition: background-color var(--t-hover), color var(--t-hover);
}
.a-footer__social a:hover { background: var(--paper); color: var(--cypress-deep); }
.a-footer__wa { color: var(--paper); font-weight: 600; text-underline-offset: 4px; }
.a-footer__news-sub { font-size: 0.88rem; color: rgba(243, 234, 218, 0.75); margin-bottom: 16px; max-width: 30ch; }
.a-footer__form { display: flex; flex-wrap: wrap; gap: 10px; }
.a-footer__form input {
  flex: 1 1 170px; min-height: 48px; padding: 12px 18px;
  background: transparent; color: var(--paper);
  border: 1.5px solid rgba(243, 234, 218, 0.45); border-radius: 999px;
  transition: border-color var(--t-hover);
}
.a-footer__form input::placeholder { color: rgba(243, 234, 218, 0.55); }
.a-footer__form input:focus { outline: none; border-color: var(--paper); }
.a-footer__signup { background: var(--paper); color: var(--cypress-deep); }
.a-footer__signup:hover { background: var(--sage-tint); }
.a-footer__ok { flex-basis: 100%; font-size: 0.88rem; color: #cdd3a8; font-weight: 600; }
.a-footer__legal {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  padding-block: 22px 26px;
  border-top: 1px solid rgba(243, 234, 218, 0.18);
  font-size: 0.8rem; color: rgba(243, 234, 218, 0.65);
}
.a-footer__legal a { color: rgba(243, 234, 218, 0.85); text-underline-offset: 4px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 899.98px) {
  body { padding-bottom: 0; }
  .a-footer { padding-bottom: 74px; } /* room for the sticky booking bar */
}

@media (min-width: 700px) {
  .a-form__row { grid-template-columns: 1fr 1fr; }
  .a-footer__grid { grid-template-columns: 1fr 1fr; }
  .a-ig__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 760px) {
  .a-header__book { display: inline-flex; }
  .a-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .a-stat { border-top: 0; border-left: 1px solid rgba(243, 234, 218, 0.22); padding: 8px 34px; }
  .a-stats__grid .a-stat:first-child { border-left: 0; padding-left: 8px; }
}

@media (min-width: 860px) {
  .a-diff__cols { grid-template-columns: repeat(3, 1fr); }
  .a-treat { grid-template-columns: minmax(280px, 400px) 1fr; gap: 48px; align-items: center; }
}

@media (min-width: 980px) {
  .a-boutiques__grid { grid-template-columns: 1.08fr 0.92fr; gap: 56px; }
  .a-book__panel { grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
}

@media (min-width: 1020px) {
  .a-hero__grid { grid-template-columns: 1.02fr 0.98fr; gap: 56px; }
  .a-reviews__grid { grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
  .a-reviews__panel { position: sticky; top: 130px; }
}

@media (min-width: 1080px) {
  .a-footer__grid { grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr 1.3fr; gap: 28px; }
}

@media (min-width: 1120px) {
  .a-nav { display: block; }
  .a-burger { display: none; }
}

@media (min-width: 1180px) {
  .a-ig__grid { grid-template-columns: repeat(6, 1fr); }
}
