/* =====================================================================
   Westerland Consulting — Layout & Components
   Mobile-first. All color/type/space values come from theme.css tokens.
   ===================================================================== */

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .3s ease, color .3s ease;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; font-weight: 600; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
a { color: var(--accent); text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent); text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.5rem, 5vw, 3.5rem); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--cta-bg); color: var(--cta-text);
  padding: .6rem 1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:where(a, button, .theme-toggle, input):focus-visible {
  outline: 2px solid var(--accent-vivid);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Shared bits --- */
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.eyebrow--light { color: color-mix(in srgb, var(--silver) 80%, transparent); }

.section { padding-block: clamp(3.5rem, 8vw, var(--space-7)); }
.section--alt { background: var(--bg-2); }
.section__title { font-size: var(--fs-h2); max-width: 18ch; }
.section__head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section__head .lead { margin-top: var(--space-3); }
.lead { font-size: var(--fs-lead); color: var(--text); line-height: 1.5; }
p + p { margin-top: var(--space-3); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  padding: .8rem 1.4rem; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--cta { background: var(--cta-bg); color: var(--cta-text); box-shadow: var(--shadow); }
.btn--cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn--ghost { color: var(--text); border-color: var(--border-strong); background: transparent; }
.btn--ghost:hover { border-color: var(--accent-vivid); color: var(--accent); transform: translateY(-2px); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background-color .3s ease, border-color .3s ease;
}

/* Over the hero photo (JS adds .is-top at scroll position 0) the header goes
   transparent and its text switches to light-on-image. */
.site-header.is-top {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.site-header.is-top .brand__word { color: #fff; }
.site-header.is-top .brand__word-sub { color: rgba(255, 255, 255, 0.65); }
/* Light-on-image nav links apply on desktop only — the mobile menu panel keeps
   its themed background, so its links keep themed colors. */
@media (min-width: 861px) {
  .site-header.is-top .nav__links a { color: rgba(255, 255, 255, 0.8); }
  .site-header.is-top .nav__links a:hover,
  .site-header.is-top .nav__links a.is-active { color: #fff; }
}
.site-header.is-top .theme-toggle,
.site-header.is-top .nav__burger {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.site-header.is-top .nav__burger span { background: #fff; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }

.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--text); }
.brand__chip {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 11px;
  background: #fff; box-shadow: var(--shadow);
  overflow: hidden; flex: none;
}
.brand__chip img { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; }
.brand__word { font-family: var(--font-display); font-weight: 600; letter-spacing: .04em; line-height: 1; font-size: 1.02rem; display: flex; flex-direction: column; gap: 2px; }
.brand__word-sub { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }

.nav__links { display: flex; gap: clamp(1rem, 2.4vw, 2rem); }
.nav__links a {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  color: var(--text-muted); text-decoration: none; padding: .3rem 0;
  position: relative; transition: color .2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--aurora-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease; border-radius: 2px;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: var(--space-2); }

.theme-toggle {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--radius-pill); border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text); cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}
.theme-toggle:hover { border-color: var(--accent-vivid); transform: translateY(-1px); }
.theme-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; }
.icon-moon { display: none; }
:root[data-theme="dark"] .icon-sun { display: none; }
:root[data-theme="dark"] .icon-moon { display: block; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 40px; padding: 9px 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 11px; cursor: pointer; }
.nav__burger span { height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO — hotel exterior photo with content overlaid
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(540px, 88vh, 860px);
  min-height: clamp(540px, 88svh, 860px); /* small-viewport units: correct under the iOS URL bar */
  padding-block: calc(var(--header-h) + clamp(2.5rem, 8vw, 5rem)) clamp(2.5rem, 8vw, 4rem);
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  background: url("/assets/img/hero-hotel.jpg") center / cover no-repeat;
}
/* Legibility scrim: heavier on the left where the copy sits, light on the
   right so the hotel stays visible (per mockup). */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 14, 22, 0.82) 0%, rgba(12, 14, 22, 0.6) 40%, rgba(12, 14, 22, 0.12) 72%, rgba(12, 14, 22, 0.3) 100%),
    linear-gradient(180deg, rgba(12, 14, 22, 0.45), transparent 28%),
    linear-gradient(0deg, rgba(12, 14, 22, 0.5), transparent 24%);
}
/* Hero copy hugs the left edge so it stays off the hotel (full-bleed, not
   centered with the 1140px container) */
.hero__inner { position: relative; z-index: 2; max-width: 100%; }
.hero .eyebrow { color: #b9d2ea; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5); }
.hero__title { font-size: var(--fs-h1); font-weight: 700; letter-spacing: -0.025em; margin-block: var(--space-2) var(--space-4); color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45); }
.hero__lead { font-size: var(--fs-lead); color: color-mix(in srgb, var(--silver) 92%, #fff); max-width: 46ch; line-height: 1.5; text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.hero .btn--cta { background: var(--silver); color: var(--charcoal); }
.hero .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.hero .btn--ghost:hover { border-color: #fff; color: #fff; }

/* Signature: luminous horizon line (from the logo) */
.horizon { position: relative; height: 1px; margin-top: clamp(3rem, 8vw, 5rem); }
.horizon::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--green), var(--purple), transparent);
  opacity: .9;
}
.horizon::after {
  content: ""; position: absolute; left: 10%; right: 10%; top: -18px; height: 40px;
  background: radial-gradient(60% 100% at 50% 100%, color-mix(in srgb, var(--green) 45%, transparent), transparent 70%);
  filter: blur(14px); opacity: calc(var(--hero-glow) * .8);
}
.horizon--divider { margin: 0; }
.horizon--divider::after { opacity: calc(var(--hero-glow) * .5); }
/* Inside the photo hero the horizon pins to the section's bottom edge */
.hero .horizon { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; z-index: 2; }

/* Full-width aurora wave page break (13_wave_background) */
.wave-break {
  height: clamp(140px, 22vw, 260px);
  background: url("/assets/img/wave-dark.jpg") center / cover no-repeat;
}

/* =====================================================================
   ABOUT — photo collage left, copy right
   ===================================================================== */
.about { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 3.5rem); }
/* Mobile: copy reads first; photos follow as a compact side-by-side strip */
.about__media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); align-content: start; order: 2; }
.about__media img {
  width: 100%; height: auto; object-fit: cover; aspect-ratio: 1 / 1;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.about__body { color: var(--text-muted); }
.about__body .section__title { margin-bottom: var(--space-4); }
.about__body .lead { color: var(--text); margin-bottom: var(--space-3); }
.about__pull {
  font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 500;
  color: var(--text); margin-top: var(--space-4); padding-left: var(--space-4);
  border-left: 3px solid transparent; border-image: var(--aurora-grad) 1;
}
@media (min-width: 900px) {
  /* Fixed-width image column; the text takes the rest of the container */
  .about { grid-template-columns: minmax(280px, 340px) 1fr; align-items: center; }
  .about__media { grid-template-columns: 1fr; order: 0; }
}

/* =====================================================================
   APPROACH — what we do + values (always dark, per design)
   ===================================================================== */
.section--dark {
  background: #121316;
  color: #eceef1;
}
.section--dark .eyebrow { color: #9fc0e0; }
.section--dark .section__title { color: #fff; }
.section--dark .lead { color: #eceef1; }
.section--dark .approach__intro p:last-child { color: #9a9ea6; }
.section--dark .value-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.1);
}
.section--dark .value-card__title { color: #fff; }
.section--dark .value-card p { color: #a6aab2; }

/* Intro spans the same width as the value cards below it */
.approach__intro { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.approach__intro .section__title { max-width: none; }
.approach__intro .lead { margin-block: var(--space-3); }
.approach__intro p:last-child { color: var(--text-muted); }

.values { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
.value-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--aurora-grad);
}
.value-card__title { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
.value-card p { color: var(--text-muted); }
@media (min-width: 760px) { .values { grid-template-columns: repeat(3, 1fr); } }

/* =====================================================================
   PAIN POINTS — "your team shouldn't have to" icon strip
   ===================================================================== */
.shouldnt { background: var(--bg-2); text-align: center; }
.shouldnt__title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.shouldnt__list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-3);
  max-width: 960px; margin-inline: auto;
}
.shouldnt__list li {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  padding-inline: var(--space-3);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  color: var(--text); line-height: 1.4;
}
.shouldnt__icon { width: clamp(40px, 5vw, 56px); height: auto; margin-bottom: var(--space-1); }
.shouldnt__icon--purple { color: var(--purple-ink); }
.shouldnt__icon--green { color: var(--green-ink); }
.shouldnt__icon--blue { color: var(--accent); }
.shouldnt__list span { max-width: 16ch; }
.shouldnt__foot {
  margin-top: clamp(2rem, 5vw, 3rem);
  font-size: var(--fs-lead); color: var(--text);
}
.shouldnt__foot strong {
  background: linear-gradient(100deg, var(--accent) 0%, var(--purple-ink) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (min-width: 760px) {
  .shouldnt__list { grid-template-columns: repeat(4, 1fr); }
  .shouldnt__list li + li { border-left: 1px solid var(--border-strong); }
}

/* =====================================================================
   SERVICES — overlaid on the meeting room photo
   ===================================================================== */
.services-section { position: relative; overflow: hidden; }
.services__photo {
  position: absolute; inset: 0; z-index: 0;
  background: url("/assets/img/meeting-room.jpg") center / cover no-repeat;
}
.services__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 11, 16, 0.78), rgba(10, 11, 16, 0.6) 45%, rgba(10, 11, 16, 0.78));
}
.services__inner { position: relative; z-index: 2; }
.services-section .eyebrow { color: #b9d2ea; }
.services-section .section__title { color: #fff; }
.services { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }

/* Per-card accent (matches the icon color) */
.service[data-accent="purple"] { --svc: var(--purple-ink); }
.service[data-accent="green"]  { --svc: var(--green-ink); }
.service[data-accent="blue"]   { --svc: var(--accent); }

.service__inner { display: grid; height: 100%; }
.service__face {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(1.5rem, 3.5vw, 2.2rem);
  box-shadow: var(--shadow);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.service__icon { width: clamp(44px, 5vw, 58px); height: auto; color: var(--svc, var(--accent)); margin-bottom: var(--space-3); }
.service__title { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
.service__desc { color: var(--text-muted); }
.service__list { display: grid; gap: .6rem; }
.service__list li { position: relative; padding-left: 1.5rem; font-size: var(--fs-sm); color: var(--text); }
.service__list li::before {
  content: ""; position: absolute; left: 0; top: .58em; width: 8px; height: 8px; border-radius: 50%;
  background: var(--aurora-grad);
}
.service__back-title {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--svc, var(--accent)); margin-bottom: var(--space-3);
}
/* Without JS the cards stay as plain, fully-expanded cards */
.service__flip, .service__back-btn { display: none; }

/* ---- Flip behavior (JS only) ---- */
.js .service { perspective: 1600px; }
.js .service__inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2, .75, .25, 1);
}
.js .service:not(.is-flipped):hover .service__inner { transform: translateY(-4px); }
.js .service.is-flipped .service__inner { transform: rotateY(180deg); }
.js .service:hover .service__face { box-shadow: var(--shadow-lift); border-color: var(--border-strong); }
.js .service__face {
  grid-area: 1 / 1;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.js .service__face--front { align-items: center; text-align: center; justify-content: center; }
.js .service__face--front .service__desc { margin-bottom: var(--space-4); }
.js .service__face--back {
  transform: rotateY(180deg); cursor: pointer;
  padding: clamp(1.25rem, 2.6vw, 1.75rem);
}
.js .service__face--back .service__list { gap: .5rem; margin-bottom: var(--space-4); }
.js .service__face--back .service__list li { font-size: .875rem; line-height: 1.4; padding-left: 1.25rem; }
.js .service__face--back .service__list li::before { width: 7px; height: 7px; }

.js .service__flip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  color: var(--svc, var(--accent));
}
.service__flip-arrow { transition: transform .2s ease; }
.js .service__flip:hover .service__flip-arrow { transform: translateX(4px); }

.js .service__back-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: auto; align-self: flex-start;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  color: var(--text-muted);
}
.js .service__back-btn:hover { color: var(--svc, var(--accent)); }
.service__flip:focus-visible, .service__back-btn:focus-visible {
  outline: 2px solid var(--svc, var(--accent)); outline-offset: 4px; border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .js .service__inner { transition: none; }
  .js .service:not(.is-flipped):hover .service__inner { transform: none; }
}
/* minmax(0, 1fr) — a bare 1fr won't shrink below a column's min-content width,
   which let the longest bullet ("Standard operating procedure (SOP) development")
   make card 4 wider than the rest. */
@media (min-width: 720px) { .services { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-4); } }
@media (min-width: 1000px) {
  .services { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-3); }
  /* Four across is tight — trade card padding for text width. */
  .js .service__face { padding: 1.5rem 1.15rem; }
  .js .service__face--back { padding: 1.4rem 1.1rem; }
}

/* =====================================================================
   CONTACT / CTA — overlaid on the resort property photo
   ===================================================================== */
.contact {
  position: relative; overflow: hidden;
  background: var(--charcoal-900); color: var(--silver);
  padding-block: clamp(4.5rem, 12vw, 8rem);
}
.contact__photo {
  position: absolute; inset: 0; z-index: 0;
  background: url("/assets/img/resort-property.jpg") center / cover no-repeat;
}
.contact__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 11, 16, 0.78) 0%, rgba(10, 11, 16, 0.55) 48%, rgba(10, 11, 16, 0.25) 100%),
    linear-gradient(180deg, rgba(10, 11, 16, 0.55), transparent 30%, transparent 70%, rgba(10, 11, 16, 0.6));
}
.contact__inner { position: relative; z-index: 2; max-width: 720px; }
.contact__title { color: #fff; font-size: var(--fs-h2); margin-bottom: var(--space-3); max-width: 20ch; }
.contact__lead { color: color-mix(in srgb, var(--silver) 82%, transparent); font-size: var(--fs-lead); line-height: 1.5; }
.contact__actions { margin-top: var(--space-5); }
.contact .btn--cta { background: var(--silver); color: var(--charcoal); }
.contact__links { margin-top: var(--space-4); display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); font-family: var(--font-display); }
.contact__links a { color: var(--silver); text-decoration-color: color-mix(in srgb, var(--silver) 45%, transparent); }
.contact__links a:hover { color: #fff; }
.contact__links .dot { color: color-mix(in srgb, var(--silver) 50%, transparent); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding-block: var(--space-4); }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: space-between; align-items: center; color: var(--text-muted); font-size: var(--fs-sm); }
.site-footer__top { color: var(--text-muted); text-decoration: none; }
.site-footer__top:hover { color: var(--accent); }

/* =====================================================================
   SCROLL REVEAL (progressive; no-op without JS / reduced motion)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =====================================================================
   RESPONSIVE — mobile nav
   ===================================================================== */
@media (max-width: 860px) {
  .nav__burger { display: flex; }
  .brand__word { display: none; }
  .nav__links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: var(--space-2) clamp(1.1rem, 4vw, 2rem) var(--space-4);
    transform: translateY(-140%); transition: transform .3s ease;
    box-shadow: var(--shadow-lift);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--border); font-size: 1.05rem; width: 100%; }
  .nav__links a::after { display: none; }
}
@media (min-width: 861px) { .nav__burger { display: none; } }

@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}
