/* As Within Holistic Fitness — accessible, mobile-first stylesheet
   WCAG 2.2 AA targets: large type, high contrast, >=44px tap targets,
   visible focus, reduced-motion support. */

/* ---- Brand fonts (licensed — files live in /assets/fonts/, not redistributable) ---- */
@font-face {
  font-family: "ES Klarheit Plakat";
  src: url("/assets/fonts/ESKlarheitPlakat-Xbd.woff") format("woff");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TCO Brau Mono";
  src: url("/assets/fonts/TCOBrauMono-Regular.ttf") format("truetype");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:        #242220;   /* warm near-black canvas */
  --ink-2:      #2f2b28;   /* raised surface on dark */
  --ink-3:      #3a3531;   /* border on dark */
  --cream:      #F1ECE2;   /* primary text on dark (~12:1) */
  --cream-soft: #D2CBBD;   /* secondary text on dark (~8:1) */
  --mint:       #9EFCC8;   /* brand accent */
  --mint-deep:  #79E9AC;   /* accent hover */
  --light:      #F4F1EA;   /* light section bg */
  --light-2:    #FBF9F4;   /* light card bg */
  --ink-line:   #E2DCD0;   /* border on light */
  --focus:      #9EFCC8;
  --maxw:       1120px;
}

* { box-sizing: border-box; }

html {
  font-size: 118%;                 /* generous base for legibility (~18.9px) */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;              /* guard: no element may widen the page */
  background: var(--ink);
  color: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.7;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "ES Klarheit Plakat", "Space Grotesk", "DM Sans", system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.1em; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--mint); }
a:hover { color: var(--mint-deep); }

/* ---- Focus + skip link (WCAG 2.4.7 / 2.4.11) ---- */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--mint);
  color: #16281E;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 200;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { scroll-margin-top: 92px; }           /* keep target visible below sticky header */
.section-pad { padding-top: clamp(56px, 9vw, 104px); padding-bottom: clamp(56px, 9vw, 104px); }

.eyebrow {
  color: var(--mint);
  font-family: "TCO Brau Mono", "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* ---- Buttons (min target 44px+) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.2;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.btn-primary { background: var(--mint); color: #16281E; }
.btn-primary:hover { background: var(--mint-deep); color: #14261C; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--ink-3); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }
.btn-on-light { background: var(--ink); color: var(--cream); }
.btn-on-light:hover { background: #14100e; color: #fff; transform: translateY(-1px); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28,26,24,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--ink-3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  flex-wrap: nowrap;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--cream); }
.brand-name { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.18rem; letter-spacing: 0.02em; }
.brand-name small { display: block; font-size: 0.62rem; letter-spacing: 0.28em; color: var(--cream-soft); text-transform: uppercase; font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 10px; }
.main-nav a { color: var(--cream); text-decoration: none; font-weight: 500; }
/* keep dark text on the mint header button (fixes white-on-mint) */
.main-nav a.book-btn, .main-nav a.book-btn:hover { color: #16281E; min-height: 48px; padding: 10px 22px; }

/* Desktop: plain inline nav (always visible) */
.nav-desktop { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.nav-desktop a { padding: 10px 9px; border-radius: 8px; min-height: 44px; font-size: 0.98rem; display: inline-flex; align-items: center; }
.nav-desktop a:hover { color: var(--mint); background: var(--ink-2); }

/* Mobile: hamburger disclosure (hidden on desktop) */
.nav-mobile { display: none; }
.nav-mobile > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; min-width: 44px; padding: 8px 10px; border-radius: 10px;
  color: var(--cream); border: 1px solid var(--ink-3); font-size: 0;
}
.nav-mobile > summary::-webkit-details-marker { display: none; }
.nav-mobile > summary::before { content: "\2630"; font-size: 1.5rem; line-height: 1; }
.nav-mobile > summary:hover { color: var(--mint); border-color: var(--mint); }
.nav-panel {
  display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background: #1c1a18; border-top: 1px solid var(--ink-3); padding: 8px 22px 18px;
  box-shadow: 0 24px 40px -20px rgba(0,0,0,.75);
}
.nav-panel a { padding: 16px 6px; font-size: 1.1rem; border-bottom: 1px solid var(--ink-3); }
.nav-panel a:last-child { border-bottom: none; }
.nav-panel a:hover { color: var(--mint); }

.bk-sm { display: none; }
@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-mobile { display: block; }
}

/* ---- Hero ---- */
.hero { position: relative; min-height: calc(100vh - 74px); min-height: calc(100svh - 74px); display: flex; align-items: center; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 8vw, 96px) clamp(40px, 6vw, 72px);   /* keep the wrap's 22px side padding */
}
.hero-display { font-family: "ES Klarheit Plakat", "Space Grotesk", sans-serif; font-size: clamp(2.5rem, 6.5vw, 4.2rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; color: var(--cream); margin: 0 0 0.35em; }
.hero-lede, .hero .lede { font-family: "DM Sans", sans-serif; font-weight: 400; font-size: clamp(1.15rem, 2.3vw, 1.4rem); line-height: 1.5; letter-spacing: 0; color: var(--cream-soft); max-width: 40ch; margin: 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--ink-3);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.hero-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%; }

/* ---- Belief band ---- */
.belief { background: var(--mint); color: #17281F; }
.belief .wrap { text-align: center; }
.belief p {
  font-family: "ES Klarheit Plakat", "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 3.3vw, 2.1rem);
  line-height: 1.32;
  font-weight: 500;
  max-width: 22ch;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.belief span { max-width: 60ch; display: block; margin: 18px auto 0; font-family: "DM Sans", sans-serif; font-size: 1.02rem; line-height: 1.7; color: #274535; }

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
.about-photo { border-radius: 20px; overflow: hidden; border: 1px solid var(--ink-3); }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); }
.creds { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.creds li { display: flex; gap: 12px; align-items: flex-start; color: var(--cream); }
.creds li::before { content: ""; flex: 0 0 auto; width: 12px; height: 12px; margin-top: 8px; border-radius: 3px; background: var(--mint); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; padding: 0; list-style: none; }
.chips li { background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 999px; padding: 8px 16px; font-size: 0.95rem; color: var(--cream); }

/* ---- Services ---- */
.services { background: var(--light); color: var(--ink); }
.services a { color: #1f6f47; }
.services .eyebrow { color: #1f6f47; }   /* dark green, not mint, on the light section */
.services .head { max-width: 60ch; }
.services h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 40px; max-width: 880px; }
.card {
  background: var(--light-2);
  border: 1px solid var(--ink-line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img { width: 100%; height: 190px; object-fit: cover; }
.card .card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 1.4rem; color: var(--ink); }
.card p { color: #4b463f; }
.card .price { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.12rem; color: var(--ink); margin: 4px 0 18px; }
.card .price small { display:block; font-weight:500; font-size:0.85rem; color:#6b655c; letter-spacing:0; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* ---- Testimonials ---- */
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 40px; }
.quote { margin: 0; background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 18px; padding: 26px 24px; }
@media (max-width: 860px) { .quote { padding: 20px 18px; } .quotes { gap: 16px; } }
.quote blockquote { margin: 0 0 14px; font-size: 1.08rem; line-height: 1.62; color: var(--cream); }
.quote .who { font-family: "Space Grotesk", sans-serif; font-weight: 600; color: var(--mint); letter-spacing: 0.02em; }
.stars { color: var(--mint); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.stars span { position: absolute; left: -9999px; }   /* visually-hidden label */

/* ---- CTA ---- */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2rem, 5vw, 3rem); }
.cta p { color: var(--cream-soft); max-width: 46ch; margin-left: auto; margin-right: auto; }
.cta .hero-cta { justify-content: center; }

/* ---- Footer ---- */
.site-footer { background: #1b1917; border-top: 1px solid var(--ink-3); padding: 46px 0 40px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px 40px; justify-content: space-between; align-items: flex-start; }
.footer-inner .brand img { width: min(180px, 100%); height: auto; }
.foot-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px 8px; }
.foot-links a { color: var(--cream-soft); text-decoration: none; padding: 10px 12px; min-height: 44px; display: inline-flex; align-items: center; border-radius: 8px; }
.foot-links a:hover { color: var(--mint); background: var(--ink-2); }
.foot-note { color: var(--cream-soft); font-size: 0.9rem; margin-top: 22px; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-photo { order: -1; max-width: 460px; }
  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .about-photo { max-width: 460px; }
  .cards { grid-template-columns: minmax(0, 1fr); }
  .quotes { grid-template-columns: minmax(0, 1fr); }
  /* Slim single-row header on mobile; nav collapses to a hamburger */
  .site-header { background: rgba(28,26,24,0.96); }
  .header-inner { min-height: 64px; flex-wrap: nowrap; gap: 8px; }
  .brand { flex: 0 0 auto; }
  .brand img { width: 36px; }
  .brand-name { font-size: 1rem; white-space: nowrap; }
  .brand-name small { white-space: nowrap; }
  .main-nav { flex: 0 0 auto; }
  .main-nav a.book-btn { min-height: 42px; padding: 8px 15px; font-size: 0.9rem; white-space: nowrap; }
  .bk-lg { display: none; }
  .bk-sm { display: inline; }
}
@media (max-width: 480px) {
  html { font-size: 116%; }
  /* Full-width CTAs in body sections only, never in the sticky header */
  .hero-cta .btn, .cta .btn, .article-cta .btn, .card .btn { width: 100%; }
  .main-nav .btn { width: auto; }
  .brand-name small { letter-spacing: 0.2em; }
}

/* ---- Motion preference (WCAG 2.3.3) ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   Landing pages, blog, long-form reading  (accessible: high
   contrast, ~66ch measure, large type, generous spacing)
   ============================================================ */

.breadcrumb { font-size: 0.9rem; color: var(--cream-soft); padding: 22px 0 0; }
.breadcrumb a { color: var(--cream-soft); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb span[aria-current] { color: var(--cream); }

.page-hero { padding: 26px 0 8px; }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); max-width: 20ch; }
.page-hero .lede { font-size: clamp(1.12rem, 2.2vw, 1.35rem); color: var(--cream-soft); max-width: 60ch; margin-top: 6px; }
.page-hero-img { margin: 30px 0 8px; border-radius: 18px; overflow: hidden; border: 1px solid var(--ink-3); }
.page-hero-img img { width: 100%; max-height: 420px; object-fit: cover; object-position: center 28%; }

/* Long-form readable column */
.prose { max-width: 68ch; margin: 8px 0 0; font-size: 1.14rem; line-height: 1.8; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); margin-top: 1.9em; color: var(--cream); }
.prose h3 { font-size: 1.25rem; margin-top: 1.5em; color: var(--mint); }
.prose p { color: var(--cream); }
.prose strong { color: #fff; }
.prose a { color: var(--mint); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--mint-deep); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: 0.5em 0; padding-left: 0.2em; }
.prose li::marker { color: var(--mint); }
.prose blockquote { border-left: 3px solid var(--mint); margin: 1.4em 0; padding: 4px 0 4px 20px; color: var(--cream-soft); font-style: italic; }
.prose img { border-radius: 14px; margin: 1.5em 0; }

/* medical / scope note */
.scope-note { max-width: 68ch; margin-top: 34px; background: var(--ink-2); border: 1px solid var(--ink-3); border-left: 4px solid var(--mint); border-radius: 12px; padding: 18px 22px; font-size: 1rem; color: var(--cream-soft); }
.scope-note strong { color: var(--cream); }

/* In-article CTA */
.article-cta { max-width: 68ch; margin: 44px 0 0; background: var(--mint); color: #17281F; border-radius: 18px; padding: 32px 30px; }
.article-cta h2 { font-family: "ES Klarheit Plakat", "Space Grotesk", sans-serif; font-size: 1.6rem; margin: 0 0 8px; color: #16281E; }
.article-cta p { margin: 0 0 20px; color: #274535; font-size: 1.05rem; }
.article-cta .btn { min-height: 54px; }

/* Areas of focus (home internal-link hub) */
.focus { background: var(--ink-2); }
.focus-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.focus-card { display: flex; flex-direction: column; gap: 8px; background: var(--ink); border: 1px solid var(--ink-3); border-radius: 16px; padding: 24px 22px; text-decoration: none; color: var(--cream); min-height: 132px; transition: border-color .18s ease, transform .18s ease; }
.focus-card:hover { border-color: var(--mint); transform: translateY(-2px); }
.focus-card h3 { font-size: 1.18rem; margin: 0; color: var(--cream); }
.focus-card p { margin: 0; color: var(--cream-soft); font-size: 0.98rem; }
.focus-card .go { margin-top: auto; color: var(--mint); font-weight: 600; font-family: "Space Grotesk", sans-serif; }

/* Blog listing */
.blog-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 40px; }
.post-card { display: flex; flex-direction: column; min-width: 0; background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 18px; overflow: hidden; text-decoration: none; color: var(--cream); transition: border-color .18s ease, transform .18s ease; }
.post-card:hover { border-color: var(--mint); transform: translateY(-2px); }
.post-card img { width: 100%; height: 180px; object-fit: cover; }
.post-card .pc-body { padding: 22px 22px 26px; }
.post-card .pc-date { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mint); font-family: "TCO Brau Mono", "DM Mono", ui-monospace, monospace; }
.post-card h3 { font-size: 1.28rem; margin: 8px 0 8px; color: var(--cream); line-height: 1.25; }
.post-card p { margin: 0; color: var(--cream-soft); font-size: 0.98rem; }
.post-meta { color: var(--cream-soft); font-size: 0.95rem; margin-top: 6px; }

@media (max-width: 860px) {
  .focus-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .blog-list { grid-template-columns: minmax(0, 1fr); }
  .prose { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .focus-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   Landing / post parallax hero + alternating content panes
   ============================================================ */
.lp-hero {
  position: relative;
  background-size: cover;
  background-position: var(--hero-pos, center 22%);   /* per-page focal point via --hero-pos */
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--ink-3);
}
/* Subtle scrim: darken the lower-left where the text sits so the headline
   stays legible, while the rest of the photo reads as the hero. */
.lp-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,16,14,0.66) 0%, rgba(18,16,14,0.34) 38%, rgba(18,16,14,0) 66%),
    linear-gradient(0deg, rgba(18,16,14,0.6) 0%, rgba(18,16,14,0) 44%);
}
.lp-hero h1, .lp-hero .lede { text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
.lp-hero--post { min-height: 84vh; }
.lp-hero-inner { position: relative; width: 100%; padding: 72px 22px 56px; }
.lp-hero .breadcrumb { padding: 0; margin: 0 0 16px; color: var(--cream); text-shadow: 0 1px 12px rgba(0,0,0,0.6); }
.lp-hero .breadcrumb a { color: var(--cream); }
.lp-hero .eyebrow { text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.lp-hero .eyebrow { margin-bottom: 12px; }
.lp-hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); max-width: 20ch; color: var(--cream); }
.lp-hero .lede { color: var(--cream); max-width: 56ch; font-size: clamp(1.14rem, 2.2vw, 1.4rem); margin-top: 12px; }
.lp-hero .btn { margin-top: 28px; }

.lp-pane { padding: clamp(48px, 7vw, 88px) 0; border-top: 1px solid var(--ink-3); }
.lp-pane:first-of-type { border-top: none; }
.lp-pane--alt { background: #2e2a26; border-top-color: #423c36; }
.lp-pane .prose { margin: 0 auto; }
.lp-pane .prose > h2:first-child { margin-top: 0; }

.lp-strip {
  height: 46vh; min-height: 300px;
  background-size: cover; background-position: center;
  background-attachment: fixed;                 /* parallax on desktop */
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}

@media (max-width: 700px) {
  .lp-hero { min-height: 88vh; min-height: 88svh; background-position: var(--hero-pos-m, var(--hero-pos, center 22%)); }
  /* Bright photos on small screens: heavier scrim + shadow so hero text stays legible */
  .lp-hero::before {
    background:
      linear-gradient(90deg, rgba(18,16,14,0.72) 0%, rgba(18,16,14,0.45) 52%, rgba(18,16,14,0.2) 100%),
      linear-gradient(0deg, rgba(18,16,14,0.66) 0%, rgba(18,16,14,0.12) 60%);
  }
  .lp-hero h1, .lp-hero .lede { text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.7); }
  .lp-hero .eyebrow, .lp-hero .breadcrumb, .lp-hero .breadcrumb a { text-shadow: 0 1px 10px rgba(0,0,0,0.8); }
  .lp-hero--post { min-height: 82vh; min-height: 82svh; }
  .lp-hero-inner { padding: 70px 24px 54px; }
  .lp-strip { background-attachment: scroll; height: 36vh; min-height: 220px; }
}

/* Official brand logo in header/footer */
.brand-logo, .brand-logo-full { height: 32px; width: auto; display: block; }
.brand-logo-m { display: none; }
.site-footer .brand-logo { height: auto; width: min(180px, 100%); }
@media (max-width: 860px) {
  .site-header .brand-logo-full { display: none; }   /* compact stacked logo on mobile */
  .brand-logo-m { display: block; height: 54px; width: auto; }
  .site-footer .brand-logo { height: auto; width: min(150px, 80vw); }
}
