/* ============================================================
   ambty × EasyStore brand layer
   Loaded after all theme CSS. Implements the approved Figma
   design (file rHuMdknDxy6nicR2m7o3bm): navy ink + EasyStore
   orange + warm cream, Harper headings, Poppins body.
   ============================================================ */

/* ---- Harper (real brand heading font, bundled) ---- */
@font-face {
  font-family: 'Harper';
  font-style: normal;
  font-weight: 300;
  src: url('harper-light.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Harper';
  font-style: normal;
  font-weight: 400;
  src: url('harper-regular.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Harper';
  font-style: normal;
  font-weight: 700;
  src: url('harper-bold.otf') format('opentype');
  font-display: swap;
}

:root {
  --ambty-ink: #1A1A2E;
  --ambty-orange: #F0731D;
  --ambty-orange-deep: #C25510;
  --ambty-cream: #F7F1E5;
  --ambty-surface: #FFFFFF;
  --ambty-body: #3D3D4E;
  --ambty-muted: #8A8578;
  --ambty-radius: 12px;
  --font-heading-family: 'Harper', 'Libre Caslon Text', Georgia, serif;
}

/* ---- Headings in Harper everywhere ---- */
h1, h2, h3, .h0, .h1, .h2, .h3,
.title, .banner__heading, .rich-text__heading,
.image-with-text__heading, .product__title, .collection-hero__title {
  font-family: var(--font-heading-family) !important;
  font-weight: 700;
  color: var(--ambty-ink);
  letter-spacing: 0;
}

/* ---- Buttons ---- */
.button, .btn, button[type="submit"].button {
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.button--primary, .button:not(.button--secondary) {
  background-color: var(--ambty-orange);
  color: #fff;
}
.button--primary:hover, .button:not(.button--secondary):hover {
  background-color: var(--ambty-orange-deep);
}
.button--secondary {
  border: 1.5px solid var(--ambty-ink);
  color: var(--ambty-ink);
  background: transparent;
}

/* ---- Cards (products, multicolumn, blog) ---- */
.card, .multicolumn-card, .article-card {
  background: var(--ambty-surface);
  border-radius: var(--ambty-radius);
  overflow: hidden;
  border: 1px solid #EBE3D6;
}
.card .price, .price {
  color: var(--ambty-orange);
  font-weight: 600;
}

/* ---- Section rhythm ---- */
.section-padding, .rich-text, .multicolumn, .image-with-text {
  scroll-margin-top: 88px;
}

/* ---- Header ---- */
.header-wrapper, .section-header {
  background: var(--ambty-surface);
}
.header__heading-logo { max-height: 40px; }
.header__menu-item { font-weight: 500; color: var(--ambty-ink); }
.header__menu-item:hover { color: var(--ambty-orange); }

/* ---- Footer ---- */
.footer, .section-footer {
  background: var(--ambty-ink);
  color: #CCCCDA;
}
.footer h2, .footer h3, .footer .footer-block__heading {
  color: #FFFFFF;
  font-family: var(--font-heading-family) !important;
}
.footer a { color: #CCCCDA; }
.footer a:hover { color: var(--ambty-orange); }

/* ---- ambty stats band (custom section) ---- */
.ambty-stats {
  background: var(--ambty-ink);
  padding: 80px 5%;
}
.ambty-stats__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ambty-stats__item { text-align: center; flex: 1 1 150px; }
.ambty-stats__number {
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: var(--ambty-orange);
  display: block;
}
.ambty-stats__label {
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 6px;
  display: block;
}
@media (max-width: 749px) {
  .ambty-stats { padding: 48px 20px; }
  .ambty-stats__grid { gap: 24px; }
  .ambty-stats__item { flex: 1 1 40%; }
  .ambty-stats__number { font-size: 30px; }
  .ambty-stats__label { font-size: 13.5px; }
}

/* ---- Dark section variant for image-with-text (About Andrew) ---- */
.image-with-text--ambty-dark h1,
.image-with-text--ambty-dark h2,
.image-with-text--ambty-dark .image-with-text__heading {
  color: #FFFFFF !important;
}
.image-with-text--ambty-dark p,
.image-with-text--ambty-dark .rte {
  color: #D9D9E6;
}

/* ---- Rush image-with-text sections (hero + About Andrew) ----
   Rush renders the heading as a DIV .img-with-text-title with
   text-transform: uppercase, and inverts section colours on .btn.
   Override both to match the approved design. */
.img-with-text-section .text-section .img-with-text-title {
  text-transform: none !important;
  font-family: var(--font-heading-family) !important;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: inherit; /* follows the section's text_color: ink on cream, white on navy */
}
.img-with-text-section .text-section .img-with-text-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ambty-orange);
  margin-bottom: 12px;
}
.img-with-text-section .text-section .btn {
  background-color: var(--ambty-orange) !important;
  color: #FFFFFF !important;
  border-radius: 6px;
  font-weight: 600;
  padding: 14px 28px;
}
.img-with-text-section .text-section .btn:hover {
  background-color: var(--ambty-orange-deep) !important;
}
.img-with-text-section .img-wrapper img { border-radius: var(--ambty-radius); }
@media (max-width: 749px) {
  .img-with-text-section .text-section .img-with-text-title { font-size: 30px; }
}

/* ---- Multicolumn card headings: keep ink, never link/legacy colours ---- */
.multicolumn-card h3, .multicolumn .multicolumn-card h3 {
  color: var(--ambty-ink);
  font-family: var(--font-heading-family) !important;
  font-weight: 700;
  font-size: 19px;
  text-transform: none;
}

/* ---- Footer: win the specificity battle with Rush's colour classes ---- */
.footer.color-background-1, .footer {
  background: var(--ambty-ink) !important;
  color: #CCCCDA !important;
}
.footer .footer-block__heading { color: #FFFFFF !important; }
.footer a, .footer p, .footer span { color: #CCCCDA; }
.footer a:hover { color: var(--ambty-orange); }

/* ---- Reveal-on-scroll (fail-safe: hidden ONLY after JS arms it) ----
   Items are fully visible by default. The script adds .ambty-armed
   before observing, so if JS is blocked or IntersectionObserver is
   missing, nothing is ever hidden. */
@media (prefers-reduced-motion: no-preference) {
  .ambty-reveal.ambty-armed {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .ambty-reveal.ambty-armed.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   v5 — structural fixes to match the Figma design
   ============================================================ */

/* ---- Header: declutter to match Figma (hide search bar) ---- */
.header__search-input,
.header__search,
.predictive-search { display: none !important; }
.header-wrapper { border-bottom: 1px solid #EBE3D6; }

/* ---- Multicolumn cards (pillars, services, CX) styled like Figma ---- */
.multicolumn .multicolumn-list__item {
  background: transparent;
  border: 0;
  padding: 0;
}
.multicolumn .multicolumn-card {
  background: #FFFFFF;
  border: 1px solid #EBE3D6;
  border-radius: var(--ambty-radius);
  padding: 32px 28px;
  height: 100%;
}
/* Figma icon treatment: orange rounded-square accent atop each card */
.multicolumn .multicolumn-card::before,
.multicolumn .multicolumn-list__item .multicolumn-card::before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(240, 115, 29, 0.14);
  margin-bottom: 18px;
}
.multicolumn .multicolumn-card h3 {
  font-family: var(--font-heading-family) !important;
  color: var(--ambty-ink);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 10px;
}
.multicolumn .multicolumn-card__text,
.multicolumn .multicolumn-card .rte {
  color: var(--ambty-body);
  font-size: 15px;
  line-height: 1.6;
}
/* The per-card link (used as the service price / CTA) in orange */
.multicolumn .multicolumn-card a:not(.button) {
  color: var(--ambty-orange);
  font-weight: 600;
  text-decoration: none;
}

/* ---- Section rhythm: clean cream page, generous padding ---- */
.multicolumn { background: transparent; }
.multicolumn .page-width { padding-top: 8px; }

/* ---- Section headings (h2 .title) in Harper ink, centred ---- */
.multicolumn .title,
.rich-text__heading,
.collection__title .title {
  font-family: var(--font-heading-family) !important;
  color: var(--ambty-ink);
  font-weight: 700;
}

/* ---- Rounded hero / about images (belt-and-suspenders) ---- */
.img-with-text-section .img-wrapper img,
.img-with-text-section img { border-radius: var(--ambty-radius); }

/* ---- v6: nav declutter to match Figma (hide Wishlist + Catalog submenu) ---- */
.header-wrapper .header__inline-menu .header__submenu { display: none !important; }
.header a[href*="wishlist"],
.header__menu-item[href*="wishlist"] { display: none !important; }

/* ============================================================
   v7 — header layout + logo + navy-not-black
   ============================================================ */

/* Single clean header row (search removed earlier collapsed the block
   layout, so lay it out explicitly): logo left, menu centre, icons right. */
.header {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 32px;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}
.header__heading-link { display: inline-flex !important; align-items: center; }
.header__heading-logo,
.header__heading-logo img { max-height: 46px !important; width: auto !important; }
.header__inline-menu { margin: 0 auto !important; }
.header__inline-menu .list-menu,
.header__inline-menu ul { display: flex !important; gap: 34px !important; align-items: center; margin: 0; }
/* Navy nav links (were orange), orange on hover */
.header__menu-item { color: var(--ambty-ink) !important; font-weight: 500; }
.header__menu-item:hover { color: var(--ambty-orange) !important; }
.header__icons { margin-left: 0 !important; display: flex; gap: 20px; align-items: center; }

/* Navy, never pure black, on body copy (CTA rich-text was #000) */
.rich-text__text,
.rich-text__text p,
.rich-text .rte { color: var(--ambty-body) !important; }
.rich-text__heading { color: var(--ambty-ink) !important; }

/* ============================================================
   v8 — Figma QA cleanup: uniform white cards, 12px radius,
   stronger heading hierarchy. Selectors carry enough
   specificity (0,3,0) + !important to beat Rush's colour-scheme
   and default title rules that were winning on the live theme.
   ============================================================ */

/* Uniform white cards at the 12px brand radius across every
   multicolumn section (pillars, services, CX). Live theme was
   rendering a faint navy tint / cream at 20px inconsistently. */
.multicolumn .multicolumn-list__item .multicolumn-card,
.multicolumn .multicolumn-card {
  background: var(--ambty-surface) !important;
  border: 1px solid #EBE3D6 !important;
  border-radius: var(--ambty-radius) !important;
}

/* Section headings: lift from 24px to a clearer Figma hierarchy. */
.multicolumn .title,
.rich-text__heading,
.collection__title .title {
  font-size: 32px !important;
  line-height: 1.2;
}
@media (max-width: 749px) {
  .multicolumn .title,
  .rich-text__heading { font-size: 26px !important; }
}

/* Hero heading: enforce the intended display size (live element
   was falling back to 36px because the earlier rule required a
   .text-section ancestor that isn't present on this section). */
.img-with-text-section .img-with-text-title,
.img-with-text-title {
  font-size: 46px !important;
  line-height: 1.15;
}
@media (max-width: 749px) {
  .img-with-text-section .img-with-text-title,
  .img-with-text-title { font-size: 32px !important; }
}
/* ============================================================
   v9 — logo proportion + black-to-navy
   ============================================================ */

/* ---- Logo: the uploaded PNG is a wide "ambty" wordmark centred in
   a 4501x4501 square with heavy transparent padding, so constrained
   to 46px it rendered a ~9px sliver dwarfed by the nav. Crop to the
   wordmark region via background-position so it reads at a proper
   size, proportionate to the menu. (Content bbox in the source:
   x 844-3461, y 1833-2728; here shown with a small margin.) ---- */
.header__heading-logo {
  display: inline-block !important;
  width: 88px !important;
  height: 34px !important;
  max-height: none !important;
  background-image: url("https://cdn.store-assets.com/s/1406594/f/16669908.png");
  background-repeat: no-repeat;
  background-size: 142px 142px;
  background-position: -24px -55px;
}
.header__heading-logo img { display: none !important; }
@media (max-width: 749px) {
  .header__heading-logo {
    width: 74px !important;
    height: 28px !important;
    background-size: 118px 118px;
    background-position: -20px -46px;
  }
}

/* ---- Black text -> brand navy (product price renders pure #000 via
   .money; modal / lightbox close controls) ---- */
.money,
span.money,
.product__price .money,
.price-item .money,
.modal__close-button,
.product-media-modal__toggle,
.js-image-modal-close { color: var(--ambty-ink) !important; }
/* Keep the desktop inline nav on one line (the larger logo tightened
   the header row; without this it can wrap around ~1040px). */
.header__inline-menu .list-menu,
.header__inline-menu ul { flex-wrap: nowrap !important; }
/* ============================================================
   v10 — page-by-page Figma QA: prices, collection, blog, cart
   ============================================================ */

/* Prices in EasyStore orange, semibold, per the Figma spec (product
   page "RM38.00 · Early bird" and all product cards). Supersedes the
   v9 navy on .money; modal close controls keep their navy rule. */
.money,
span.money,
.card .price,
.price,
.product__price .money,
.price-item .money { color: var(--ambty-orange) !important; font-weight: 600; }

/* Collection: centred header per Figma (title above the grid) */
.collection-hero { text-align: center !important; }
.collection-hero__inner { justify-content: center !important; }
.collection-hero__title { text-align: center !important; width: 100%; }

/* No sort control in the design; hide Rush's sort bar */
.collection-filters { display: none !important; }

/* Product cards: full-width landscape image flush to the card top
   (Figma card spec 405x220). Rush renders a small centred square via
   the padding-bottom hack; override both axes. */
.card--product .card__inner .media,
.card--product .card__inner .media--square {
  width: 100% !important;
  margin: 0 !important;
  padding-bottom: 54.3% !important;
}
.card--product .card__inner .media img {
  width: 100% !important;
  height: 100% !important;
  inset: 0 !important;
  margin: 0 !important;
  object-fit: cover !important;
}

/* Blog: centred header per Figma */
.template-blog .collection-hero__title,
.template-blog h1.title,
.blog-hero__title,
.main-blog .title--primary { text-align: center !important; }

/* Cart: the design has no cross-sell section; it also surfaced the raw
   internal collection name ("Feature on homepage") as a heading */
#section-main-cart-featured-collection { display: none !important; }
/* Blog post cards: white per Figma (Rush tints .article-card with a
   navy 4% wash, same battle as the multicolumn cards) */
.blog-articles .article-card,
article.article-card {
  background: var(--ambty-surface) !important;
  border: 1px solid #EBE3D6 !important;
  border-radius: var(--ambty-radius) !important;
}

/* ============================================================
   v11 — Home redesign port (2026-07-07)
   Sections: am-hero, am-manifesto, am-services, am-ucx,
   am-marquee, ambty-stats v3 restyle. Contrast per WCAG QA:
   orange-deep (#C25510) for orange text on light backgrounds,
   pure orange only on navy. Motion is reduced-motion gated.
   ============================================================ */

.am-eyebrow {
  display: block;
  font-family: var(--font-body-family, 'Poppins', sans-serif);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ambty-orange-deep);
  margin-bottom: 18px;
}
.am-eyebrow--dark { color: var(--ambty-orange); }

.am-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.am-btn--primary { background: var(--ambty-ink); color: #fff !important; }
.am-btn--primary:hover { background: var(--ambty-orange-deep); color: #fff !important; transform: translateY(-2px); }

.am-textlink {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ambty-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ambty-orange);
  padding-bottom: 2px;
  transition: color .2s ease;
}
.am-textlink:hover { color: var(--ambty-orange-deep); }

/* CTA button contrast: ink text on the orange rich-text button */
.rich-text .btn, .rich-text .button { color: var(--ambty-ink) !important; }

/* ---- Hero ---- */
.am-hero { background: var(--ambty-cream); padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 7vw, 104px); }
.am-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.am-hero__heading {
  font-family: var(--font-heading-family) !important;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.03;
  letter-spacing: -.01em;
  color: var(--ambty-ink);
  max-width: 14ch;
  margin: 0;
  text-transform: none;
}
.am-hero__heading em { font-style: normal; color: var(--ambty-orange-deep); }
.am-hero__sub { margin: 26px 0 34px; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65; color: var(--ambty-body); max-width: 46ch; }
.am-hero__cta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.am-hero__media { position: relative; }
.am-hero__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: -6%;
  top: -8%;
  width: 52%;
  height: 52%;
  background: var(--ambty-orange);
  border-radius: 24px;
  opacity: .9;
}
.am-hero__frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background-color: #20203c;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 70px -30px rgba(26, 26, 46, .5);
  animation: am-float 7s ease-in-out infinite;
}
.am-hero__badge {
  position: absolute;
  z-index: 3;
  left: -18px;
  bottom: 26px;
  background: #fff;
  border-radius: var(--ambty-radius);
  padding: 14px 18px;
  box-shadow: 0 16px 40px -18px rgba(26, 26, 46, .5);
  display: flex;
  gap: 12px;
  align-items: center;
  animation: am-float 7s ease-in-out infinite reverse;
}
.am-hero__badge b { font-family: var(--font-heading-family); font-size: 26px; color: var(--ambty-ink); line-height: 1; }
.am-hero__badge span { font-size: 12px; color: #6B6258; max-width: 12ch; line-height: 1.25; }
@keyframes am-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (max-width: 860px) {
  .am-hero__grid { grid-template-columns: 1fr; }
  .am-hero__media { max-width: 420px; margin-inline: auto; width: 100%; }
  .am-hero__media::before { width: 44%; height: 44%; }
}

/* ---- Manifesto ---- */
.am-manifesto { background: var(--ambty-cream); border-top: 1px solid rgba(26, 26, 46, .12); padding: clamp(56px, 9vw, 140px) 0; }
.am-manifesto__text {
  font-family: var(--font-heading-family);
  font-weight: 700;
  color: var(--ambty-ink);
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -.01em;
  max-width: 20ch;
  margin: 0;
}
.am-manifesto__text em { font-style: normal; color: var(--ambty-orange-deep); }
.am-manifesto__tag { margin-top: 30px; font-size: 15px; color: #6B6258; font-weight: 500; }

/* ---- Services ---- */
.am-services { background: var(--ambty-surface); padding: clamp(56px, 9vw, 140px) 0; }
.am-services__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.am-services__heading {
  font-family: var(--font-heading-family) !important;
  font-size: clamp(30px, 4.2vw, 52px);
  color: var(--ambty-ink);
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}
.am-services__sub { margin-top: 18px; font-size: 17.5px; color: var(--ambty-body); }
.am-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 30px); }
.am-svc-card {
  background: var(--ambty-cream);
  border: 1px solid rgba(26, 26, 46, .12);
  border-radius: var(--ambty-radius);
  padding: clamp(28px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.am-svc-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(26, 26, 46, .45); }
.am-svc-card__num { font-family: var(--font-heading-family); font-weight: 700; font-size: clamp(44px, 4vw, 60px); color: var(--ambty-orange-deep); line-height: .85; margin-bottom: 20px; }
.am-svc-card__title { font-family: var(--font-heading-family) !important; font-size: clamp(22px, 1.9vw, 26px); color: var(--ambty-ink); margin: 0 0 10px; text-transform: none; }
.am-svc-card__price { font-weight: 600; color: var(--ambty-orange-deep); font-size: 15.5px; margin-bottom: 14px; }
.am-svc-card__text { font-size: 16px; color: var(--ambty-body); margin: 0 0 24px; flex: 1; }
@media (max-width: 820px) { .am-services__grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---- Unified CX ---- */
.am-ucx { background: var(--ambty-cream); border-top: 1px solid rgba(26, 26, 46, .12); padding: clamp(56px, 9vw, 140px) 0; }
.am-ucx__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.am-ucx__heading {
  font-family: var(--font-heading-family) !important;
  font-size: clamp(30px, 4.4vw, 56px);
  color: var(--ambty-ink);
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}
.am-ucx__heading em { font-style: normal; color: var(--ambty-orange-deep); }
.am-ucx__sub { margin-top: 20px; font-size: 17.5px; color: var(--ambty-body); max-width: 60ch; }
.am-ucx__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 26px); }
.am-ucx-card { position: relative; aspect-ratio: 16 / 11; border-radius: var(--ambty-radius); overflow: hidden; background: #20203c; display: flex; align-items: flex-end; }
.am-ucx-card__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s ease; z-index: 0; }
.am-ucx-card:hover .am-ucx-card__img { transform: scale(1.06); }
.am-ucx-card__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20, 20, 40, .86) 0%, rgba(20, 20, 40, .25) 45%, rgba(20, 20, 40, 0) 70%); z-index: 1; }
.am-ucx-card__body { position: relative; z-index: 2; padding: clamp(22px, 2.4vw, 34px); color: #fff; }
.am-ucx-card__kicker { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ambty-orange); font-weight: 600; margin-bottom: 8px; }
.am-ucx-card__title { font-family: var(--font-heading-family) !important; font-size: clamp(24px, 2.4vw, 32px); color: #fff !important; margin: 0 0 8px; text-transform: none; }
.am-ucx-card__text { color: rgba(255, 255, 255, .82); font-size: 15.5px; max-width: 34ch; margin: 0; }
@media (max-width: 820px) { .am-ucx__grid { grid-template-columns: 1fr; } }

/* ---- Stats v3 restyle (navy band, white numerals, headed) ---- */
.ambty-stats__head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.ambty-stats__head .am-eyebrow { margin-bottom: 14px; }
.ambty-stats__heading {
  font-family: var(--font-heading-family) !important;
  color: #fff !important;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.1;
  max-width: 20ch;
  margin: 0 auto;
  text-transform: none;
}
.ambty-stats .ambty-stats__number { color: #fff; font-size: clamp(48px, 6vw, 84px); }
.ambty-stats .ambty-stats__label { color: #c7c7d4; font-size: 14.5px; max-width: 18ch; margin-inline: auto; }
@media (max-width: 820px) { .ambty-stats__grid { grid-template-columns: 1fr 1fr; gap: 44px 20px; } }

/* ---- Brand marquee ---- */
.am-brands { background: var(--ambty-surface); padding: clamp(56px, 7vw, 90px) 0; overflow: hidden; }
.am-brands__eyebrow { text-align: center; margin-bottom: 8px; }
.am-brands__heading {
  font-family: var(--font-heading-family) !important;
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ambty-ink);
  margin: 0 0 clamp(30px, 4vw, 48px);
  text-transform: none;
}
.am-marquee { display: flex; gap: 56px; width: max-content; align-items: center; animation: am-scroll 42s linear infinite; }
.am-marquee--rev { animation-direction: reverse; animation-duration: 52s; margin-top: 34px; }
.am-marquee img { height: 38px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: filter .3s ease, opacity .3s ease; }
.am-marquee img:hover { filter: grayscale(0); opacity: 1; }
.am-marquee-wrap:hover .am-marquee { animation-play-state: paused; }
@keyframes am-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Motion safety ---- */
@media (prefers-reduced-motion: reduce) {
  .am-hero__frame, .am-hero__badge { animation: none; }
  .am-marquee { animation: none; }
  .am-svc-card:hover { transform: none; }
  .am-ucx-card:hover .am-ucx-card__img { transform: none; }
  .am-btn:hover { transform: none; }
}


/* v11.1 (2026-07-07): Rush base.css sets div:empty { display:none }, which
   hid our empty background-image layer divs. Force them visible. */
.am-hero__frame, .am-ucx-card__img, .am-ucx-card__scrim { display: block !important; }

/* v11.1: the hero accent block (::before, right:-6%) pokes past the viewport
   on mobile and creates a 7px horizontal scroll. Clip it at the section. */
.am-hero { overflow: hidden; }

/* v11.2 (2026-07-07): primary buy/checkout buttons were white on orange
   (#F0731D, 2.93:1 — fails WCAG AA). Orange stays; text -> ink so it reads
   navy on orange (5.83:1), matching the homepage "Book a discovery call"
   CTA. Applies to Add to Cart, Checkout and any .button--primary. */
.button--primary,
.button--primary:hover,
.button--primary:focus,
.product-form__submit {
  color: var(--ambty-ink) !important;
}

/* v11.3 (2026-07-07): header logo tidy-up. The old logo was a 4501px PNG
   scaled to 142px and cropped with background-position — soft and fragile.
   Now rendered as live Harper text (the wordmark IS Harper Bold outlines),
   crisp at any size, accessible, no image. Keeps the current orange identity. */
.am-logo-link { display: inline-flex; align-items: center; text-decoration: none; line-height: 1; }
.am-logo-wordmark {
  font-family: 'Harper', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: var(--ambty-orange);
  letter-spacing: .005em;
  white-space: nowrap;
}


/* ============================================================
   v12 (2026-07-07): service product-page (PDP) editorial redesign.
   Hero polish on the Rush product classes + the am-pdp story
   sections rendered below. Orange text on light = orange-deep
   per the WCAG pass; reduced-motion handled by the theme reveal.
   ============================================================ */

/* --- eyebrow light variant (for navy bands) --- */
.am-eyebrow--light { color: var(--ambty-orange); }

/* --- hero polish (Rush product classes) --- */
.product__title { font-family: var(--font-heading-family) !important; color: var(--ambty-ink); font-size: clamp(30px,3.6vw,46px); line-height: 1.05; letter-spacing: -.01em; text-transform: none; }
.product-section .price, .product-section .price--large, .product-section .money { color: var(--ambty-orange-deep) !important; }
.product-section .price--large { font-family: var(--font-heading-family); font-weight: 700; }
.product__description { color: var(--ambty-body); font-size: 17px; max-width: 46ch; }
/* trust chips (the upsell blocks) */
.product_upsell-info { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 24px; }
.product_upsell-box { display: flex; align-items: center; gap: 10px; }
.product_upsell-box .product_upsell-icon { display: none; }
.product_upsell-text { font-size: 14px; font-weight: 500; color: var(--ambty-ink); position: relative; padding-left: 16px; }
.product_upsell-text::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--ambty-orange); }
/* add-to-cart: navy solid to match the approved hero button */
.product-form__submit { background: var(--ambty-ink) !important; color: #fff !important; border-radius: 999px !important; padding: 15px 30px !important; }
.product-form__submit:hover { background: var(--ambty-orange-deep) !important; color: #fff !important; }
.product__media-item img, .product__media-wrapper img { border-radius: var(--ambty-radius); }

/* --- story wrapper --- */
.am-pdp { background: var(--ambty-cream); }
.am-pdp-band { padding: clamp(44px,6vw,84px) 0; }
.am-pdp-band .page-width { max-width: 1180px; }
.am-pdp-head { max-width: 640px; margin-bottom: clamp(26px,4vw,42px); }
.am-pdp-head h2 { font-family: var(--font-heading-family) !important; font-size: clamp(28px,3.8vw,46px); color: var(--ambty-ink); text-transform: none; line-height: 1.05; margin: 0; }
.am-pdp h3 { font-family: var(--font-heading-family) !important; text-transform: none; color: var(--ambty-ink); }

/* reassurance */
.am-pdp-reassure .am-pdp-card { background: var(--ambty-surface); border: 1px solid var(--line, rgba(26,26,46,.12)); border-radius: var(--ambty-radius); padding: clamp(28px,4vw,48px); text-align: center; max-width: 820px; margin: 0 auto; }
.am-pdp-reassure h2 { font-family: var(--font-heading-family) !important; text-transform: none; font-size: clamp(24px,3vw,38px); color: var(--ambty-ink); margin-bottom: 14px; }
.am-pdp-reassure p { font-size: 17px; max-width: 52ch; margin: 0 auto; color: var(--ambty-body); }

/* benefits */
.am-pdp-benefits { background: var(--ambty-surface); border-top: 1px solid rgba(26,26,46,.12); border-bottom: 1px solid rgba(26,26,46,.12); }
.am-pdp-bgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px,1.6vw,20px); }
.am-pdp-bcard { background: var(--ambty-cream); border: 1px solid rgba(26,26,46,.12); border-radius: var(--ambty-radius); padding: clamp(22px,2.4vw,30px); transition: transform .3s, box-shadow .3s; }
.am-pdp-bcard:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -28px rgba(26,26,46,.4); }
.am-pdp-badge { width: 46px; height: 46px; border-radius: 12px; background: var(--ambty-orange); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.am-pdp-badge svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.am-pdp-bcard h3 { font-size: clamp(18px,1.7vw,22px); margin-bottom: 7px; }
.am-pdp-bcard p { font-size: 15.5px; color: var(--ambty-body); margin: 0; }

/* steps */
.am-pdp-step { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-top: 1px solid rgba(26,26,46,.12); }
.am-pdp-step:first-child { border-top: none; }
.am-pdp-n { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--ambty-ink); color: #fff; font-family: var(--font-heading-family); font-weight: 700; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.am-pdp-rc h3 { font-size: clamp(18px,1.8vw,23px); margin-bottom: 5px; }
.am-pdp-rc p { font-size: 16px; max-width: 60ch; color: var(--ambty-body); margin: 0; }

/* included */
.am-pdp-included { background: var(--ambty-surface); border-top: 1px solid rgba(26,26,46,.12); border-bottom: 1px solid rgba(26,26,46,.12); }
.am-pdp-icols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2vw,26px); }
.am-pdp-icol { background: var(--ambty-cream); border: 1px solid rgba(26,26,46,.12); border-radius: var(--ambty-radius); padding: clamp(26px,3vw,38px); }
.am-pdp-k { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--ambty-orange-deep); margin-bottom: 10px; }
.am-pdp-icol h3 { font-size: clamp(20px,2vw,26px); margin-bottom: 12px; }
.am-pdp-icol p { font-size: 16px; color: var(--ambty-body); margin: 0; }

/* testimonial */
.am-pdp-quote { background: var(--ambty-cream); border-left: 4px solid var(--ambty-orange); border-radius: 0 var(--ambty-radius) var(--ambty-radius) 0; padding: clamp(26px,3.5vw,44px); max-width: 900px; }
.am-pdp-quote blockquote { font-family: var(--font-heading-family); font-weight: 700; font-size: clamp(22px,2.8vw,34px); line-height: 1.2; color: var(--ambty-ink); margin: 0; }
.am-pdp-attr { margin-top: 18px; font-size: 14.5px; color: var(--ambty-muted, #6B6258); font-weight: 500; }

/* credibility */
.am-pdp-cred { background: var(--ambty-ink); color: #fff; padding: clamp(56px,7vw,96px) 0; }
.am-pdp-cgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; text-align: center; }
.am-pdp-num { font-family: var(--font-heading-family); font-weight: 700; font-size: clamp(34px,4vw,56px); color: #fff; line-height: 1; }
.am-pdp-num span { color: var(--ambty-orange); }
.am-pdp-brands { font-family: var(--font-heading-family); font-weight: 700; font-size: clamp(19px,2.2vw,28px); color: #fff; line-height: 1.15; }
.am-pdp-lbl { margin-top: 10px; font-size: 14.5px; color: #c7c7d4; max-width: 22ch; margin-inline: auto; }

/* faq */
.am-pdp-faq-wrap { max-width: 840px; }
.am-pdp-faq details { border-bottom: 1px solid rgba(26,26,46,.12); }
.am-pdp-faq summary { list-style: none; cursor: pointer; padding: 22px 0; font-family: var(--font-heading-family); font-weight: 700; font-size: clamp(18px,1.9vw,23px); color: var(--ambty-ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.am-pdp-faq summary::-webkit-details-marker { display: none; }
.am-pdp-ic { flex: none; width: 26px; height: 26px; position: relative; }
.am-pdp-ic::before, .am-pdp-ic::after { content: ""; position: absolute; background: var(--ambty-orange); border-radius: 2px; transition: transform .25s; }
.am-pdp-ic::before { top: 12px; left: 4px; width: 18px; height: 2px; }
.am-pdp-ic::after { top: 4px; left: 12px; width: 2px; height: 18px; }
.am-pdp-faq details[open] .am-pdp-ic::after { transform: scaleY(0); }
.am-pdp-ans { padding: 0 0 22px; font-size: 16px; max-width: 70ch; color: var(--ambty-body); }

/* closing cta */
.am-pdp-ccta { background: var(--ambty-ink); color: #fff; text-align: center; padding: clamp(56px,8vw,110px) 0; }
.am-pdp-ccta h2 { font-family: var(--font-heading-family) !important; text-transform: none; font-size: clamp(30px,4.6vw,60px); color: #fff; max-width: 18ch; margin: 0 auto 14px; }
.am-pdp-ccta h2 em { font-style: normal; color: var(--ambty-orange); }
.am-pdp-ccta p { color: #c7c7d4; font-size: 18px; margin-bottom: 30px; max-width: 40ch; margin-inline: auto; }

@media (max-width: 760px) {
  .am-pdp-bgrid, .am-pdp-icols, .am-pdp-cgrid { grid-template-columns: 1fr; }
  .am-pdp-cgrid { gap: 36px; }
}


/* v13: WhatsApp floating action button */
.am-wa-fab { position: fixed; right: 20px; bottom: 20px; z-index: 990; width: 56px; height: 56px; border-radius: 50%; background: var(--ambty-orange, #F0731D); color: #1A1A2E; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(26,26,46,.35); border: 2px solid rgba(247,241,229,.9); transition: transform .2s ease, box-shadow .2s ease; }
.am-wa-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(26,26,46,.45); color: #1A1A2E; }
@media (prefers-reduced-motion: reduce) { .am-wa-fab { transition: none; } .am-wa-fab:hover { transform: none; } }
@media (max-width: 760px) { .am-wa-fab { width: 52px; height: 52px; right: 14px; bottom: 14px; } }


/* ============================================================
   v14 (2026-09-03): closing band + UX fixes. Owner asked for the
   closing section full-width ("odd hanging" cream card on navy) and
   authorised custom code. Rules applied (vault: Web-UX-and-Conversion-
   Design-2026, Design-Engineering-Craft-2026): one dominant element per
   viewport, 4.5:1 text contrast, 48px tap targets, full-width mobile
   buttons, reduced-motion safe. Revert = delete this block.
   ============================================================ */
:root { --ambty-orange-deep: #B04D0E; } /* small orange text on cream 4.9:1 (was #C25510, 4.1:1) */

/* the image banner becomes a flat full-bleed ink band; its images and the
   theme's inline 50% aspect-ratio spacer (#Banner…::before) are removed */
.banner { background: var(--ambty-ink) !important; min-height: 0 !important; display: block !important; }
.banner::before, .banner::after, .banner .banner__media::before, .banner .banner__content::before { display: none !important; content: none !important; padding: 0 !important; }
.banner .banner__media, .banner .banner__media-half { display: none !important; }
.banner .banner__content { position: static !important; min-height: 0 !important; width: 100%; padding: clamp(64px, 8vw, 112px) 20px !important; box-sizing: border-box; display: block; }
.banner .banner__box { background: transparent !important; box-shadow: none; border: 0; max-width: 760px; margin: 0 auto; padding: 0 !important; text-align: center; }
.banner .banner__box .banner__heading, .banner .banner__box h2 { color: #FFFFFF !important; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.12; max-width: 20ch; margin: 0 auto 16px; }
.banner .banner__box .banner__text, .banner .banner__box p, .banner .banner__box .rte { color: #C7C7D4 !important; font-size: 18px; line-height: 1.55; max-width: 46ch; margin: 0 auto; }
/* the theme wraps each button in its own .banner__buttons; lay them inline */
.banner .banner__box .banner__buttons { display: inline-flex; width: auto; max-width: none; margin: 30px 6px 0; vertical-align: top; }
.banner .banner__box .button { min-height: 48px; padding: 0 28px; font-size: 16px; font-weight: 600; border-radius: 6px; letter-spacing: 0; line-height: 1.2; }
.banner .banner__box .button:not(.button--secondary) { background: var(--ambty-orange) !important; color: var(--ambty-ink) !important; border: 1.5px solid var(--ambty-orange); }
.banner .banner__box .button:not(.button--secondary):hover { background: #FFB27A !important; border-color: #FFB27A; }
.banner .banner__box .button--secondary { background: transparent !important; color: #FFFFFF !important; border: 1.5px solid rgba(255,255,255,.85); }
.banner .banner__box .button--secondary:hover { background: #FFFFFF !important; color: var(--ambty-ink) !important; }
.banner .banner__box .button:focus-visible { outline: 3px solid #FFFFFF; outline-offset: 3px; }
@media screen and (max-width: 749px) {
  .banner .banner__content { padding: 56px 20px !important; }
  .banner .banner__box .banner__text, .banner .banner__box p { font-size: 16px; }
  .banner .banner__box .banner__buttons { display: flex; width: 100%; margin: 30px 0 0; }
  .banner .banner__box .banner__buttons + .banner__buttons { margin-top: 12px; }
  .banner .banner__box .banner__buttons .button { width: 100%; }
}
/* navy band meets navy footer with no cream strip between */
.footer, .section-footer { margin-top: 0 !important; }
/* 48px minimum tap target for every button on the store */
.button, .btn { min-height: 48px; }

/* ---- v14.1 (2026-09-03): design-review fixes after the band shipped (SHIP verdict, 13 rows) ---- */
/* band buttons: equal widths, 12px gap, 32px above, pill radius like the hero's Sign up now, eased hover + press */
@media screen and (min-width: 750px) {
  .banner .banner__box { display: flex; flex-wrap: wrap; justify-content: center; column-gap: 12px; }
  .banner .banner__box .banner__heading, .banner .banner__box .banner__text { flex: 0 0 100%; }
  .banner .banner__box .banner__buttons { margin: 32px 0 0; }
  .banner .banner__box .button { min-width: 272px; }
}
.banner .banner__box .button { border-radius: 999px; transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .16s ease; }
.banner .banner__box .button:active { transform: scale(.97); }
/* the fixed WhatsApp button covered the end of the legal line on mobile */
@media screen and (max-width: 760px) { .footer__content-bottom { padding-bottom: 96px; } }
/* 48px hit area on the text-link CTAs (hero secondary + three service cards), look unchanged */
.am-textlink { position: relative; }
.am-textlink::before { content: ""; position: absolute; left: 0; right: 0; top: -8px; bottom: -8px; }
/* mobile body floor 16px; the 10px legal line to 12px */
@media screen and (max-width: 749px) {
  .footer__copyright { font-size: 12px; }
  .img-with-text-rich-text, .am-ucx-card__text, .am-svc-card__text, .ambty-stats__label { font-size: 16px; }
}
/* Meet Andrew: centre the text in the box that matches the photo height (was 250px of empty navy underneath) */
@media screen and (min-width: 750px) { #section-ambty_about .text-section { display: flex; flex-direction: column; justify-content: center; } }
/* brands strip: warm cream instead of a third near-white neutral */
.am-brands { background: var(--ambty-cream); }
/* reduced motion: the frozen marquee showed each logo twice; show one full set per row, wrapped */
@media (prefers-reduced-motion: reduce) {
  .am-marquee { width: auto; flex-wrap: wrap; justify-content: center; gap: 28px 40px; }
  .am-marquee img:nth-child(n+10) { display: none; }
  .banner .banner__box .button { transition: none; }
  .banner .banner__box .button:active { transform: none; }
}
