/* ==========================================================================
   Despina — site styles

   1.  Design tokens
   2.  Base & reset
   3.  Layout helpers
   4.  Components (buttons, eyebrow, section heads, cards, tags)
   5.  Header & navigation
   6.  Hero
   7.  Marquee
   8.  Studio (services)
   9.  Process (steps)
   10. Status banner
   11. About
   12. FAQ
   13. Contact
   14. Footer & back-to-top
   15. Motion (reveal, keyframes, reduced motion)
   16. Legal pages
   17. Responsive
   ========================================================================== */


/* --------------------------------------------------------------------------
   0. Fonts (self-hosted, latin subsets — no third-party requests)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/fraunces-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/fraunces-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/inter-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour — warm light neutrals, ink text, evergreen accent, a touch of gold */
  --color-bg: #fbfaf7;
  --color-bg-elevated: #f4f1ea;
  --color-surface: #ffffff;
  --color-ink: #171412;
  --color-ink-soft: #2b2724;
  --color-border: rgba(23, 20, 18, 0.09);
  --color-border-strong: rgba(23, 20, 18, 0.16);
  --color-border-input: rgba(23, 20, 18, 0.48);

  --color-text: var(--color-ink);
  --color-text-muted: #5f5952;
  --color-text-subtle: #6f685f;

  --color-accent: #1f5f4b;
  --color-accent-strong: #174b3b;
  --color-accent-soft: rgba(31, 95, 75, 0.1);
  --color-gold: #c39b3f;
  --color-gold-soft: rgba(195, 155, 63, 0.16);
  --color-footer: #15302a;
  --color-danger: #c0392b;

  --gradient-accent: linear-gradient(120deg, #1f5f4b 0%, #3f8c6d 100%);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-lead: 1.5rem;
  --fs-h3: 1.375rem;
  --fs-h4: 1.125rem;
  --label-size: 0.75rem;
  --label-track: 0.14em;

  /* Shape & spacing */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --tile: 44px;
  --tile-radius: 12px;

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-space: clamp(5rem, 10vw, 8.5rem);
  --header-h: 76px;

  --shadow-sm: 0 1px 2px rgba(23, 20, 18, 0.04), 0 4px 12px -4px rgba(23, 20, 18, 0.08);
  --shadow-lg: 0 24px 60px -24px rgba(23, 20, 18, 0.22);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}


/* --------------------------------------------------------------------------
   2. Base & reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

strong {
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Programmatic focus target for the skip link — no page-tall outline */
main:focus-visible {
  outline: none;
}

::selection {
  background: rgba(31, 95, 75, 0.18);
}


/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--alt {
  background: var(--color-bg-elevated);
  border-block: 1px solid var(--color-border);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* --------------------------------------------------------------------------
   4. Components
   -------------------------------------------------------------------------- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.2s var(--ease-out),
    background-color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    color 0.2s;
}

.btn__icon {
  transition: transform 0.2s var(--ease-out);
}

@media (hover: hover) {
  .btn:hover .btn__icon {
    transform: translateX(3px);
  }

  .btn--ghost:hover .btn__icon {
    transform: translateY(3px);
  }
}

.btn--primary {
  background: var(--color-accent-strong);
  color: #fff;
  box-shadow: 0 12px 28px -14px rgba(23, 75, 59, 0.55);
}

@media (hover: hover) {
  .btn--primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -14px rgba(23, 75, 59, 0.55);
  }
}

.btn--ghost {
  border: 1px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-text);
}

.btn--ghost:hover {
  border-color: rgba(23, 20, 18, 0.35);
  background: rgba(23, 20, 18, 0.04);
}

.btn--lg {
  padding: 1rem 1.7rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

/* Eyebrow — the one small-caps label used for section indices and the hero */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--label-size);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px var(--color-gold-soft);
}

/* Section heads */
.section-head {
  display: grid;
  gap: 1.1rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-head--sticky {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  margin-bottom: 0;
}

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-lead {
  max-width: 58ch;
  font-size: 1.08rem;
  color: var(--color-text-muted);
}

/* Cards */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.3s,
    transform 0.35s var(--ease-out),
    box-shadow 0.35s;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at 0% 0%, rgba(31, 95, 75, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

@media (hover: hover) {
  .card:hover {
    border-color: var(--color-border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .card:hover::after {
    opacity: 1;
  }
}

/* Icon tile — shared by cards, principles and info cards */
.tile {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: var(--tile);
  height: var(--tile);
  border-radius: var(--tile-radius);
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.tile svg {
  width: 20px;
  height: 20px;
}

.card__icon {
  margin-bottom: 1.5rem;
}

.card__title {
  margin-bottom: 0.6rem;
  font-size: var(--fs-h3);
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.3rem;
}

.tag {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: var(--header-h);
  background: rgba(251, 250, 247, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.92);
  border-bottom-color: var(--color-border);
}

/* Three tracks keep the nav optically centred regardless of brand/CTA widths */
.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.nav-wrap > .brand {
  justify-self: start;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand__mark {
  flex-shrink: 0;
}

.nav__list {
  display: flex;
  gap: 0.25rem;
}

.nav__list a {
  position: relative;
  display: block;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s, background-color 0.2s;
}

.nav__list a:hover {
  color: var(--color-text);
  background: rgba(23, 20, 18, 0.05);
}

.nav__list a.is-active {
  color: var(--color-text);
}

.nav__list a.is-active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  translate: -50%;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7.5rem) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb--1 {
  top: -200px;
  right: -80px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(31, 95, 75, 0.16), transparent 65%);
}

.orb--2 {
  bottom: -240px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(195, 155, 63, 0.16), transparent 65%);
}

.grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(23, 20, 18, 0.11) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at 74% 45%, #000 10%, transparent 52%);
  mask-image: radial-gradient(ellipse at 74% 45%, #000 10%, transparent 52%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
}

.hero__title {
  margin: 1.4rem 0 1.5rem;
  font-size: clamp(2.7rem, 5.6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
  white-space: nowrap;
}

.hero__lead {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--color-text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem 2.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.hero__facts li {
  display: grid;
  gap: 0.2rem;
}

.hero__facts strong {
  font-size: 0.95rem;
}

.hero__facts span {
  font-size: 0.82rem;
  color: var(--color-text-subtle);
  text-wrap: balance;
}

/* Visual: orbit rings + phone + floating chips */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(195, 155, 63, 0.4);
  border-radius: 50%;
  aspect-ratio: 1;
  translate: -50% -50%;
  animation: spin 42s linear infinite;
}

.orbit--outer {
  width: min(580px, 100%);
}

.orbit--inner {
  width: min(430px, 76%);
  animation-duration: 28s;
  animation-direction: reverse;
}

/* De-phase the inner moon so one moon is always in view */
.orbit--inner .orbit__moon {
  top: 50%;
  left: -8px;
  margin: -8px 0 0;
}

.orbit__moon {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 1px var(--color-gold), 0 0 0 6px var(--color-gold-soft);
}

.phone {
  position: relative;
  width: min(262px, 70vw);
  aspect-ratio: 9 / 19;
  padding: 11px;
  border: 1px solid rgba(23, 20, 18, 0.5);
  border-radius: 48px;
  background: linear-gradient(160deg, #3a3531, #171412);
  box-shadow:
    0 50px 100px -30px rgba(23, 20, 18, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(1400px) rotateY(-14deg) rotateX(5deg);
  animation: float 7s ease-in-out infinite;
}

.phone__screen {
  position: relative;
  height: 100%;
  padding: 54px 18px 16px;
  border-radius: 38px;
  background: var(--color-bg);
  overflow: hidden;
}

.phone__island {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 86px;
  height: 26px;
  border-radius: 20px;
  background: #0d0b0a;
  translate: -50%;
}

.app {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.app__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.app__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 0 0 2px var(--color-surface), 0 0 0 3px var(--color-border);
}

.app__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

/* Gold progress ring (72 %) */
.app__ring {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: conic-gradient(var(--color-gold) 72%, var(--color-gold-soft) 0);
}

.app__ring::before {
  content: "";
  grid-area: 1 / 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
}

.app__ring span {
  grid-area: 1 / 1;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.app__ring small {
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--color-text-subtle);
}

.app__summary-label {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--color-text-subtle);
}

.app__summary-value {
  font-size: 0.9rem;
  font-weight: 600;
}

.app__list {
  display: grid;
  gap: 6px;
}

.app__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  font-size: 0.72rem;
  font-weight: 500;
}

.app__item.is-done {
  color: var(--color-text-subtle);
  text-decoration: line-through;
  text-decoration-color: rgba(23, 20, 18, 0.25);
}

.app__check {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 50%;
}

.is-done .app__check {
  border-color: var(--color-accent);
  background:
    linear-gradient(var(--color-accent), var(--color-accent)) center / 6px 6px no-repeat;
}

.app__time {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--color-text-subtle);
  text-decoration: none;
}

.app__week {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
}

.app__week span {
  flex: 1;
  height: calc(var(--h) * 100%);
  border-radius: 3px;
  background: var(--color-accent-soft);
}

.app__week span:nth-child(1) { --h: 0.55; }
.app__week span:nth-child(2) { --h: 0.7; }
.app__week span:nth-child(3) { --h: 0.45; }
.app__week span:nth-child(4) { --h: 0.85; }
.app__week span:nth-child(5) { --h: 0.72; }
.app__week span:nth-child(6) { --h: 0.3; }
.app__week span:nth-child(7) { --h: 0.3; }

.app__week .is-today {
  background: var(--color-gold);
}

.app__tabbar {
  display: flex;
  justify-content: space-around;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.app__tab {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: rgba(23, 20, 18, 0.35);
}

.app__tab.is-active {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}

.float-chip svg {
  color: var(--color-accent);
}

.float-chip--right {
  top: 70%;
  right: -6%;
}

.float-chip--left {
  bottom: 12%;
  left: 2%;
  animation-delay: -3s;
}


/* --------------------------------------------------------------------------
   7. Marquee
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  padding-block: 1.1rem;
  background: var(--color-bg-elevated);
  overflow: hidden;
}

/* Soft edges without masking the strip's own background */
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  z-index: 1;
  width: 12%;
  background: linear-gradient(90deg, var(--color-bg-elevated), transparent);
  pointer-events: none;
}

.marquee::after {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee.is-paused .marquee__track {
  animation-play-state: paused;
}

@media (hover: hover) {
  .marquee:hover .marquee__track {
    animation-play-state: paused;
  }
}

/* Pause control (WCAG 2.2.2) — sits over the right-hand fade */
.marquee__toggle {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text-muted);
  translate: 0 -50%;
  transition: color 0.2s, border-color 0.2s;
}

.marquee__toggle:hover {
  color: var(--color-text);
  border-color: rgba(23, 20, 18, 0.35);
}

.marquee__toggle .icon-play {
  display: none;
}

.marquee.is-paused .marquee__toggle .icon-play {
  display: block;
}

.marquee.is-paused .marquee__toggle .icon-pause {
  display: none;
}

.marquee__list {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
}

.marquee__list li {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-subtle);
}

.marquee__list li::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
}


/* --------------------------------------------------------------------------
   8. Studio (services)
   -------------------------------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}


/* --------------------------------------------------------------------------
   9. Process (steps)
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.step {
  position: relative;
  padding-top: 2.25rem;
}

/* Connecting line + node */
.step::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: -1.5rem;
  height: 1px;
  background: var(--color-border-strong);
}

.step:last-child::before {
  display: none;
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  background: var(--color-bg-elevated);
  box-shadow: 0 0 0 4px var(--color-bg-elevated);
}

.step__num {
  display: block;
  margin-bottom: 0.6rem;
  font-size: var(--label-size);
  font-weight: 600;
  letter-spacing: var(--label-track);
  color: var(--color-accent);
}

.step__title {
  margin-bottom: 0.5rem;
  font-size: var(--fs-h3);
}

.step__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   10. Status banner
   -------------------------------------------------------------------------- */
.banner {
  padding-block: 1.2rem;
  background: var(--color-bg);
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.banner strong {
  color: var(--color-text);
}

.banner__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--color-gold);
  vertical-align: middle;
  animation: pulse 2.2s ease-out infinite;
}


/* --------------------------------------------------------------------------
   11. About
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 4rem;
}

.about__text p + p {
  margin-top: 1.15rem;
}

.about__text p {
  max-width: 62ch;
  color: var(--color-text-muted);
}

.about__text .about__lead {
  font-family: var(--font-display);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.about__lead strong {
  font-weight: 600;
}

/* At-a-glance facts under the about copy */
.glance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.glance__item {
  display: grid;
  gap: 0.3rem;
}

.glance dt {
  font-size: var(--label-size);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.glance dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
}

.principles {
  display: grid;
  gap: 0.9rem;
}

.principle {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

@media (hover: hover) {
  .principle:hover {
    border-color: var(--color-border-strong);
    transform: translateX(4px);
  }
}

.principle h3 {
  margin-bottom: 0.25rem;
  font-size: var(--fs-h4);
}

.principle p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  gap: 4rem;
}

.faq {
  border-top: 1px solid var(--color-border-strong);
}

.faq details {
  border-bottom: 1px solid var(--color-border-strong);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  transition: color 0.2s;
}

.faq summary::-webkit-details-marker {
  display: none;
}

@media (hover: hover) {
  .faq summary:hover {
    color: var(--color-accent);
  }
}

/* Chevron */
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin: 0 6px 6px 0;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
}

.faq details[open] summary::after {
  transform: translateY(4px) rotate(-135deg);
}

.faq__answer {
  max-width: 64ch;
  padding: 0 0 1.5rem;
  color: var(--color-text-muted);
  animation: fade-in 0.4s var(--ease-out);
}

.faq__answer a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 3.5rem;
}

.contact__label {
  margin-bottom: 0.5rem;
  font-size: var(--label-size);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.contact__email {
  display: inline-block;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(31, 95, 75, 0.3);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition: text-decoration-color 0.2s;
}

.contact__email:hover {
  text-decoration-color: var(--color-accent);
}

.info-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.info-card {
  display: flex;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.info-card strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* Form */
.form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--label-size);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.field__optional {
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--color-text-subtle);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border-input);
  border-radius: var(--tile-radius);
  background: var(--color-surface);
  color: var(--color-text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-subtle);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  /* Transparent outline is invisible here but paints in forced-colors mode */
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(31, 95, 75, 0.16);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 2.6rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.05rem;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.field__error {
  display: none;
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: var(--color-danger);
}

.field.is-invalid .field__error {
  display: block;
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--color-danger);
}

.form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.form__note {
  max-width: 44ch;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-subtle);
}

.form__note a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form__status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-accent);
}

/* Stays in the accessibility tree while empty so the live region is announced */
.form__status:empty {
  margin-top: 0;
}


/* --------------------------------------------------------------------------
   14. Footer & back-to-top
   -------------------------------------------------------------------------- */
.site-footer {
  padding-block: 3.5rem 2rem;
  background: var(--color-footer);
  color: #e8e2d6;
}

.site-footer .brand {
  color: #fff;
}

.site-footer :focus-visible {
  outline-color: var(--color-gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__tagline {
  max-width: 32ch;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(232, 226, 214, 0.75);
}

.footer__heading {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: var(--label-size);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer__col ul {
  display: grid;
  gap: 0.15rem;
}

.footer__col a,
.footer__bottom a {
  display: inline-block;
  padding-block: 0.3rem;
}

.footer__col a {
  font-size: 0.95rem;
  color: #cfc7b8;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(232, 226, 214, 0.65);
}

.footer__bottom a {
  color: #cfc7b8;
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: #fff;
}

/* Legal pages have no link columns, so the bottom row stands alone */
.footer__bottom--solo {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.back-to-top {
  position: fixed;
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), visibility 0.3s, border-color 0.2s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  border-color: var(--color-accent);
}


/* --------------------------------------------------------------------------
   15. Motion
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
}

/* `backwards` holds the start frame through the stagger delay, then releases
   every property so component hover transitions keep working afterwards */
.js .reveal.is-visible {
  opacity: 1;
  animation: reveal 0.75s var(--ease-out) backwards;
}

.js .reveal[data-delay="1"].is-visible { animation-delay: 0.1s; }
.js .reveal[data-delay="2"].is-visible { animation-delay: 0.2s; }
.js .reveal[data-delay="3"].is-visible { animation-delay: 0.3s; }
.js .reveal[data-delay="4"].is-visible { animation-delay: 0.4s; }

@keyframes reveal {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(195, 155, 63, 0.5); }
  100% { box-shadow: 0 0 0 10px rgba(195, 155, 63, 0); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    animation: none;
  }

  .marquee__track {
    animation: none;
  }

  /* Nothing moves, so there is nothing to pause */
  .marquee__toggle {
    display: none;
  }
}

/* Windows High Contrast / forced colours: keep custom-drawn controls visible */
@media (forced-colors: active) {
  .nav-toggle__bar {
    background: ButtonText;
  }

  .nav__list a.is-active {
    text-decoration: underline;
  }
}

@media print {
  .js .reveal {
    opacity: 1;
    animation: none;
  }

  .site-header,
  .back-to-top,
  .nav-toggle,
  .marquee,
  .hero__visual {
    display: none;
  }
}


/* --------------------------------------------------------------------------
   16. Legal pages (privacy.html, terms.html)
   -------------------------------------------------------------------------- */
.legal {
  padding-block: clamp(3rem, 7vw, 5.5rem) var(--section-space);
}

.legal__inner {
  max-width: 760px;
}

.legal .eyebrow {
  margin-bottom: 1rem;
}

.legal__meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-subtle);
}

.legal__body {
  margin-top: 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-ink-soft);
}

.legal__body h2 {
  margin: 2.75rem 0 0.9rem;
  font-size: 1.5rem;
  color: var(--color-text);
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body p + p,
.legal__body ul + p,
.legal__body p + ul {
  margin-top: 0.9rem;
}

.legal__body ul {
  padding-left: 1.25rem;
  list-style: disc;
}

.legal__body li + li {
  margin-top: 0.45rem;
}

.legal__body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__body strong {
  color: var(--color-text);
}

.legal__back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.legal__back:hover {
  color: var(--color-text);
}

.legal__back svg {
  transform: rotate(180deg);
}


/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */

/* Keep the footer's last line clear of the back-to-top button */
@media (max-width: 1320px) {
  .footer__bottom {
    padding-right: 4.25rem;
  }
}

/* Wide screens: rings larger than the visual column (the hero clips the bleed) */
@media (min-width: 1101px) {
  .orbit--outer {
    width: 600px;
  }

  .orbit--inner {
    width: 460px;
  }
}

/* Short laptop viewports: keep the hero CTAs above the fold */
@media (min-width: 761px) and (max-height: 760px) {
  .hero {
    padding-block: 3rem;
  }

  .hero__visual {
    min-height: 0;
  }

  .phone {
    box-shadow:
      0 28px 56px -28px rgba(23, 20, 18, 0.4),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }
}

/* Narrow two-column hero (tablet landscape, small laptops) */
@media (min-width: 761px) and (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

  .phone {
    width: min(240px, 78%);
  }

  .hero__visual {
    min-height: 520px;
  }

  .orbit--inner {
    width: min(430px, 84%);
  }

  .float-chip--right {
    top: 75%;
    right: 0;
  }

  .float-chip--left {
    bottom: -7%;
    left: -4%;
  }
}

@media (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }

  /* Line only spans within each row */
  .step:nth-child(3n)::before {
    display: none;
  }

  .hero__grid {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-wrap {
    display: flex;
    justify-content: space-between;
  }

  .nav-actions .btn {
    min-height: 44px;
  }

  /* Collapsible panel under the header */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.75rem var(--gutter) 1.25rem;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 24px 40px -24px rgba(23, 20, 18, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.3s var(--ease-out), visibility 0s linear 0.3s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.25s, transform 0.3s var(--ease-out), visibility 0s;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.15rem;
  }

  .nav__list a {
    padding: 0.85rem 0.9rem;
    font-size: 1.05rem;
  }

  /* Full-width rows: a tinted row reads better than the centred dot */
  .nav__list a.is-active {
    color: var(--color-accent);
    background: var(--color-accent-soft);
  }

  .nav__list a.is-active::after {
    display: none;
  }

  .brand {
    padding-block: 6px;
    margin-block: -6px;
  }

  .footer__col a {
    padding-block: 0.6rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .about,
  .contact,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-head--sticky {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(2.4rem, 11vw, 3.1rem);
  }

  .hero__visual {
    min-height: 0;
    margin-top: 1rem;
    padding-block: 0.5rem 1.5rem;
  }

  .orbit--outer {
    width: min(480px, 96%);
  }

  /* One chip, pinned to the phone's bezel now that the phone is centred */
  .float-chip--left {
    display: none;
  }

  .float-chip--right {
    top: 76%;
    right: max(calc(50% - 205px), -0.5rem);
  }
}

@media (max-width: 640px) {
  .hero__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero__facts {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .hero__facts li:last-child {
    grid-column: 1 / -1;
  }

  .hero__visual {
    padding-block: 1.5rem;
  }

  .phone {
    width: min(230px, 64vw);
    transform: perspective(1200px) rotateY(-10deg) rotateX(4deg);
  }

  .phone__screen {
    padding: 50px 14px 14px;
  }

  .app__item {
    padding-inline: 8px;
    white-space: nowrap;
  }

  /* Keep the week card (and its gold bar): trade the fourth row for it */
  .app {
    gap: 12px;
  }

  .app__item:nth-child(4) {
    display: none;
  }

  .float-chip {
    font-size: 0.72rem;
    padding: 0.5rem 0.75rem;
  }

  .float-chip--right {
    right: max(calc(50% - 190px), -0.5rem);
  }

  .services {
    grid-template-columns: 1fr;
  }

  /* Vertical timeline */
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step {
    padding: 0 0 2.25rem 2rem;
  }

  .step:last-child {
    padding-bottom: 0;
  }

  .step::before {
    top: 12px;
    bottom: -9px;
    left: 6px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .step::after {
    top: 3px;
  }

  .step:last-child::before {
    display: none;
  }

  .form__grid {
    grid-template-columns: 1fr;
  }

  .form__footer .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .back-to-top {
    right: calc(1rem + env(safe-area-inset-right, 0px));
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 400px) {
  .nav-wrap {
    gap: 1rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .brand {
    font-size: 1.2rem;
  }

  .eyebrow {
    letter-spacing: 0.1em;
  }

  /* The phone drops to ~200px here, so tighten the mock UI to match */
  .app__summary {
    gap: 10px;
    padding: 10px;
  }

  .app__ring {
    width: 44px;
    height: 44px;
  }

  .app__ring::before {
    width: 34px;
    height: 34px;
  }

  .app__summary-label {
    font-size: 0.58rem;
  }

  .app__summary-value {
    font-size: 0.8rem;
  }

  .app__item {
    padding: 8px 9px;
    font-size: 0.66rem;
  }

  .float-chip--right {
    right: 0;
  }
}

/* The hero CTA sits directly beneath, so the header one can go */
@media (max-width: 340px) {
  .nav-actions .btn {
    display: none;
  }

  /* Too little screen for the week card here — back to four rows */
  .app__week {
    display: none;
  }

  .app__item:nth-child(4) {
    display: flex;
  }
}
