/* ============================================================
   Liza Couture — Landing page
   Implementation of design option 1A · The Editorial Atelier
   Layout values transcribed from `Liza Couture Landing.dc.html`;
   the fixed 1280px canvas is replaced with a fluid responsive grid.
   ============================================================ */

/* ------------------------------------------------------------------
   Accessible companions to two design-system accents.

   At the small sizes this page uses them, --gold-deep (#8C7043) and
   --taupe (#9A8B7C) fall below WCAG AA 4.5:1 — they measure 2.7–4.4:1
   against the ivory / champagne / blush surfaces. These darkened
   variants clear 4.5:1 on every light surface in the palette while
   staying in the same hue family.

   The design-system token files are deliberately left byte-identical
   to source so they can be re-synced; only the small-text roles below
   opt into these values. Delete this block to restore exact tokens.
   ------------------------------------------------------------------ */
:root {
  --gold-deep-aa: #7D5F33;  /* >= 4.81:1 on every light surface */
  --taupe-aa:     #726457;  /* >= 4.65:1 on every light surface */
}

/* ---------- page shell ---------- */

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

body {
  background: var(--ivory);
  overflow-x: hidden;
}

/* Arabic swaps both families at the root */
html[lang='ar'] {
  --font-display: 'El Messiri', 'Cormorant Garamond', serif;
  --font-body: 'Tajawal', 'Jost', sans-serif;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 44px;
}

.section { padding-block: 96px; }
.section--tight { padding-block: 80px; }

/* anchor targets must clear the sticky header */
[id] { scroll-margin-top: 128px; }
@media (max-width: 640px) { [id] { scroll-margin-top: 104px; } }

.band-champagne { background: var(--champagne-2); }
.band-blush     { background: var(--blush-2); }
.band-gold      { background: var(--gold-wash); }
.band-dark      { background: var(--espresso); color: var(--ivory); }

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  z-index: 200;
  background: var(--espresso);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 14px 22px;
}
.skip-link:focus { inset-inline-start: 0; }

/* margin-inline: 0 overrides the UA's `auto`, which collapses an <hr> to zero
   width when it is a stretched flex item. */
.rule { height: 1px; border: 0; background: var(--rule-gold); margin-inline: 0; }
.service-card .rule { margin-block: 6px; }

/* Ghost buttons are 13px text on a light band — same AA opt-in as above. */
.btn--ghost { color: var(--gold-deep-aa); }

/* Gold badge label is 11px on --gold-wash: 3.79:1 as specced, 4.81:1 here. */
.badge--gold { color: var(--gold-deep-aa); }

/* Shared type roles ------------------------------------------------ */

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep-aa);
  margin: 0 0 14px;
}
.eyebrow--on-dark { color: var(--gold-soft); }
html[lang='ar'] .eyebrow { letter-spacing: 0.06em; }

.label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 8px;
}
html[lang='ar'] .label { letter-spacing: 0.06em; }

.h-display {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.02;
  letter-spacing: var(--ls-tight);
  color: var(--espresso);
  margin: 0;
}
html[lang='ar'] .h-display { line-height: 1.18; letter-spacing: 0; }

.h-section {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
  color: var(--espresso);
  margin: 0;
}
html[lang='ar'] .h-section { line-height: 1.3; }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--mocha);
  margin: 16px 0 0;
}

/* A heading on the left, a CTA parked on the right */
.head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.head-split p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--mocha);
  margin: 8px 0 0;
  max-width: 440px;
}

/* ---------- header ---------- */

.announce {
  background: var(--espresso);
  color: var(--ivory);
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 12px;
}
html[lang='ar'] .announce { letter-spacing: 0.04em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur-base) var(--ease-standard);
}
.site-header[data-scrolled='true'] { box-shadow: var(--shadow-card); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.02em;
  color: var(--espresso);
  line-height: 1;
}
.brand__sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep-aa);
  margin-top: 4px;
}
html[lang='ar'] .brand__sub { letter-spacing: 0.08em; font-size: 10px; }

.nav { display: flex; gap: 30px; }
.nav a {
  position: relative;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mocha);
  transition: color var(--dur-base) var(--ease-standard);
}
.nav a::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform var(--dur-base) var(--ease-standard);
}
.nav a:hover { color: var(--espresso); }
.nav a:hover::after { transform: scaleX(1); }
html[lang='ar'] .nav a { letter-spacing: 0; font-size: 14px; }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* The language switch is an <a> to the same page in the other language,
   not a button that rewrites the DOM — so it needs the flex centring a
   <button> gave for free. */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: none;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  min-height: 34px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep-aa);
  transition:
    background var(--dur-base) var(--ease-standard),
    border-color var(--dur-base) var(--ease-standard);
}
.lang-toggle:hover { background: var(--gold-wash); border-color: var(--gold); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--espresso);
}
.nav-toggle:hover { border-color: var(--gold-soft); }

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--mocha);
  max-width: 420px;
  margin: 24px 0 0;
}
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe-aa);
}
html[lang='ar'] .hero__trust { letter-spacing: 0; font-size: 13px; }
.hero__media { position: relative; background: var(--champagne); min-height: 600px; }
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* the hero subject sits right of centre — hold her in frame when cropped */
  object-position: 72% center;
}

/* The house ornament — a nested lozenge, used wherever a decorative
   mark is wanted. Sized in px so it holds its weight beside 11px caps. */
.mark-atelier { display: inline-flex; flex: none; color: var(--gold); }
.mark-atelier svg { display: block; width: 15px; height: 15px; }

/* ---------- services ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.service-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-card__mark { display: inline-flex; flex: none; color: var(--gold); }
.service-card__mark svg { display: block; width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 27px;
  line-height: 1.2;
  color: var(--espresso);
  margin: 6px 0 0;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mocha);
  margin: 0;
  flex: 1;
}
.service-card__price {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: var(--ls-wide);
  color: var(--gold-deep-aa);
}
html[lang='ar'] .service-card__price { letter-spacing: 0; }

/* ---------- gallery ---------- */

.piece__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--champagne);
}
.piece__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.piece:hover .piece__frame img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .piece__frame img { transition: none; }
  .piece:hover .piece__frame img { transform: none; }
}
.piece__badge { position: absolute; top: 14px; inset-inline-start: 14px; }
.piece__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.piece__row h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 24px;
  color: var(--espresso);
  margin: 0;
}
.piece__price {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gold-deep-aa);
  white-space: nowrap;
}
.piece p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--mocha);
  margin: 6px 0 0;
}

/* ---------- process ---------- */

.step__n {
  font-family: var(--font-display);
  font-size: 40px;
  /* --gold-soft reads 2.01:1 here; --gold keeps the faint feel at 3.07:1,
     clearing the 3:1 large-text threshold. */
  color: var(--gold);
  line-height: 1;
}
.step .rule { margin: 18px 0 16px; }
.step h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 24px;
  color: var(--espresso);
  margin: 0 0 10px;
}
.step p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--mocha);
  margin: 0;
}

/* ---------- about ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.about__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--mocha);
  margin: 22px 0 34px;
  max-width: 460px;
}
.stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat__k {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-aa);
  margin-bottom: 6px;
}
html[lang='ar'] .stat__k { letter-spacing: 0.04em; font-size: 12px; }
.stat__v { font-family: var(--font-display); font-size: 24px; color: var(--espresso); }

/* ---------- reviews ---------- */

.review {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 34px 32px;
}
.review__stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--espresso);
  margin: 0 0 22px;
}
html[lang='ar'] .review blockquote { font-style: normal; line-height: 1.85; }
.review__by { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: var(--radius-pill);
  background: var(--gold-wash);
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--gold-deep);
}
.review__name {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mocha);
}
html[lang='ar'] .review__name { letter-spacing: 0; font-size: 13px; }

/* ---------- journal ---------- */

.post__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--blush);
}
.post__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.post:hover .post__frame img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .post__frame img { transition: none; }
  .post:hover .post__frame img { transform: none; }
}
.post__date {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-aa);
  margin: 16px 0 8px;
}
html[lang='ar'] .post__date { letter-spacing: 0; font-size: 13px; }
.post h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 23px;
  line-height: 1.25;
  color: var(--espresso);
  margin: 0;
  transition: color var(--dur-base) var(--ease-standard);
}
.post:hover h3 { color: var(--gold-deep); }

/* ---------- visit ---------- */

.visit .h-section { color: var(--ivory); margin-bottom: 34px; }
.visit__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
.visit__list { display: flex; flex-direction: column; gap: 26px; }
.visit__value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory);
}
.visit__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(251, 248, 242, 0.85);
  white-space: pre-line;
}
.visit__text a { color: rgba(251, 248, 242, 0.85); border-bottom: 1px solid rgba(201, 174, 128, 0.5); }
.visit__text a:hover { color: var(--gold-soft); }
/* phone + Instagram sit side by side and stack cleanly, with no orphaned separator */
.visit__contact { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 22px; }
.visit__map {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(201, 174, 128, 0.4);
}
.visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) sepia(0.12);
}

/* ---------- closing CTA ---------- */

.cta { text-align: center; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.1;
  color: var(--espresso);
  margin: 0 0 16px;
}
.cta p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--mocha);
  margin: 0 auto 32px;
  max-width: 520px;
}
.cta__actions { display: flex; justify-content: center; }

/* ---------- footer ---------- */

.site-footer { background: var(--charcoal); color: var(--ivory); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 40px;
}
.site-footer__name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--fw-semi);
  color: var(--ivory);
}
.site-footer__sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 6px;
}
html[lang='ar'] .site-footer__sub { letter-spacing: 0.08em; font-size: 11px; }
.site-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(251, 248, 242, 0.7);
  margin: 22px 0 0;
  max-width: 280px;
}
html[lang='ar'] .site-footer__tagline { font-style: normal; line-height: 1.8; }
.footer-col__h {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
html[lang='ar'] .footer-col__h { letter-spacing: 0.04em; font-size: 13px; }
.footer-col__links { display: flex; flex-direction: column; gap: 12px; }
.footer-col__links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(251, 248, 242, 0.82);
  transition: color var(--dur-base) var(--ease-standard);
}
.footer-col__links a:hover { color: var(--gold-soft); }
.site-footer__base { border-top: 1px solid rgba(251, 248, 242, 0.14); }
.site-footer__base p {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(251, 248, 242, 0.55);
  padding: 22px 0;
  margin: 0;
}

/* ---------- floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 24px;
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity var(--dur-base) var(--ease-standard),
    transform var(--dur-base) var(--ease-standard),
    visibility var(--dur-base) var(--ease-standard);
}
.wa-float[data-visible='true'] { opacity: 1; visibility: visible; transform: none; }

/* ---------- scroll reveal ---------- */

/* Scoped to .js so the page is fully visible when scripting is unavailable. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-out);
}
.js .reveal[data-shown='true'] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .container { padding-inline: 32px; }
  .hero__copy { padding: 64px 40px; }
  .split { gap: 44px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 8px 32px 20px;
    display: none;
  }
  .nav[data-open='true'] { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 13px; }
  .nav a::after { display: none; }
  .nav a:last-child { border-bottom: 0; }

  .nav-toggle { display: inline-flex; }
  .header-inner { position: relative; }
  .header-actions .wa { display: none; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
}

@media (max-width: 900px) {
  .section { padding-block: 72px; }
  .section--tight { padding-block: 64px; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { padding: 56px 0; }
  .hero__copy .hero__sub { max-width: none; }
  .hero__media { min-height: 0; aspect-ratio: 4 / 3; order: -1; }
  .hero__media img { object-position: 64% center; }

  /* hero copy sits inside the page gutter once stacked */
  .hero__copy-inner { max-width: var(--container); margin-inline: auto; padding-inline: 32px; }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .visit__grid { grid-template-columns: 1fr; gap: 40px; }
  /* the atelier still-life is portrait and text-bearing — a landscape
     crop here would slice the card, so keep the upright frame stacked */
  .about__media { aspect-ratio: 4 / 5; }
  .visit__map { aspect-ratio: 4 / 3; }
  .grid-2 { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 40px; }
  .head-split { margin-bottom: 36px; }
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; }
  .hero__copy-inner { padding-inline: 20px; }
  .section { padding-block: 60px; }
  .section--tight { padding-block: 52px; }

  .grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: 1fr; gap: 32px; }

  .announce { font-size: 10px; letter-spacing: 0.14em; padding: 8px 16px; }
  .brand__name { font-size: 23px; }
  /* keep the sub-line on one line beside the toggles */
  .brand__sub { font-size: 8px; letter-spacing: 0.18em; }
  html[lang='ar'] .brand__sub { font-size: 9px; letter-spacing: 0.04em; }
  .header-inner { padding-block: 16px; }
  .nav { padding-inline: 20px; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { align-items: flex-start; letter-spacing: 0.12em; }

  .service-card { padding: 30px 24px; }
  .review { padding: 28px 24px; }
  .stats { gap: 28px; }

  .head-split .btn { width: 100%; }
  .cta__actions .btn { width: 100%; }

  .wa-float { inset-inline-end: 16px; bottom: 16px; }
}
