:root {
  --purple: #6a6fbe;
  --purple-dark: #252a5c;
  --purple-soft: #ececfa;
  --yellow: #f4f013;
  --ink: #272b50;
  --muted: #667085;
  --white: #ffffff;
  --off-white: #f8fafc;
  --line: #e3e5f0;
  --shadow: 0 24px 60px rgba(37, 42, 92, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section { padding: 96px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 6vw, 5.7rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.15rem, 4vw, 3.8rem); letter-spacing: -0.035em; }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--purple-dark);
  font-weight: 900;
  border: 2px solid var(--yellow);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 10px 30px rgba(106, 111, 190, .18);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,42,92,.20); }
.button-secondary { background: var(--white); border-color: var(--purple); color: var(--purple-dark); box-shadow: none; }
.button-secondary:hover { background: var(--purple-soft); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-light { background: var(--white); border-color: var(--white); color: var(--purple-dark); box-shadow: none; }
.button-outline-light { background: transparent; border-color: rgba(255,255,255,.68); color: var(--white); box-shadow: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(106,111,190,.16);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: block; width: 220px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.site-nav a { font-size: .94rem; font-weight: 760; color: #41456d; }
.site-nav a:hover { color: var(--purple); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--purple-dark); margin: 5px 0; }

.hero {
  position: relative;
  padding-top: 76px;
  min-height: 920px;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-media {
  min-height: 720px;
  margin: 0 22px;
  border-radius: 0 0 44px 44px;
  background-image: url("assets/water-background.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -70px 100px rgba(37,42,92,.12);
}
.hero-water-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(37,42,92,.18)),
    radial-gradient(circle at 78% 15%, rgba(244,240,19,.16), transparent 28%);
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding-bottom: 80px;
}
.photo-frame {
  width: min(720px, calc(100vw - 90px));
  min-height: 330px;
  display: grid;
  place-content: center;
  padding: 44px;
  border: 3px dashed rgba(255,255,255,.76);
  border-radius: 28px;
  background: rgba(53,58,121,.20);
  backdrop-filter: blur(3px);
  box-shadow: 0 24px 70px rgba(37,42,92,.20);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(37,42,92,.28);
}
.hero-placeholder span { font-size: clamp(2rem, 4vw, 4rem); font-weight: 900; letter-spacing: -.04em; }
.camera-mark {
  width: 86px; height: 64px; border-radius: 18px; border: 3px solid rgba(255,255,255,.82); margin: 0 auto 20px; position: relative;
}
.camera-mark::before { content: ""; position: absolute; width: 24px; height: 24px; border: 3px solid rgba(255,255,255,.82); border-radius: 50%; left: 28px; top: 17px; }
.camera-mark::after { content: ""; position: absolute; width: 28px; height: 9px; border: 3px solid rgba(255,255,255,.82); border-bottom: 0; border-radius: 8px 8px 0 0; top: -12px; left: 27px; }
.hero-content { position: relative; }
.hero-card {
  position: absolute;
  left: 0;
  bottom: -122px;
  max-width: 785px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(106,111,190,.14);
  padding: 38px 44px 42px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-logo { width: 170px; margin-bottom: 18px; }
.hero-card h1 { font-size: clamp(2.45rem, 5vw, 4.5rem); margin-bottom: 20px; color: var(--purple-dark); }
.hero-copy { max-width: 650px; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-phone { margin: 18px 0 0; font-weight: 850; color: var(--purple-dark); }
.hero-phone span { font-weight: 650; color: var(--muted); margin-right: 8px; }

.intro-strip { padding-top: 172px; padding-bottom: 58px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 12px 36px rgba(37,42,92,.06); }
.stats-grid > div { background: var(--white); padding: 28px; border-top: 4px solid var(--yellow); }
.stat-label { display: block; color: var(--purple); font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 6px; }
.stats-grid strong { display: block; font-size: 1.2rem; color: var(--purple-dark); }
.stat-note { display: block; font-size: .88rem; color: var(--muted); margin-top: 4px; }

.two-column { display: grid; grid-template-columns: 1.15fr .85fr; gap: 76px; align-items: center; }
.section-copy p { font-size: 1.05rem; max-width: 690px; }
.quote-card {
  background-color: var(--purple-dark);
  background-image: linear-gradient(rgba(37,42,92,.88), rgba(37,42,92,.88)), url("assets/water-background.webp");
  background-size: cover;
  background-position: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(244,240,19,.55);
}
.quote-mark { color: var(--yellow); font-size: 5rem; line-height: .7; font-family: Georgia, serif; }
.quote-card blockquote { margin: 14px 0 24px; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.18; font-weight: 850; letter-spacing: -.03em; }
.quote-card p { color: rgba(255,255,255,.72); margin: 0; }

.service-section { background: var(--off-white); }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading > p:last-child { font-size: 1.04rem; }
.service-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; align-items: start; }
.service-feature {
  position: sticky;
  top: 110px;
  border-radius: var(--radius-lg);
  min-height: 360px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background-image: linear-gradient(150deg, rgba(37,42,92,.87), rgba(106,111,190,.72)), url("assets/water-background.webp");
  background-size: cover;
  background-position: center;
  border: 2px solid var(--yellow);
}
.service-feature-inner { color: var(--white); padding: 40px; }
.service-feature h3 { font-size: 2rem; margin-top: 62px; }
.service-feature p { color: rgba(255,255,255,.82); }
.feature-number { color: var(--yellow); font-weight: 950; font-size: .9rem; letter-spacing: .14em; }
.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.service-list li > span { color: var(--purple); font-weight: 950; font-size: .8rem; padding-top: 4px; }
.service-list strong { display: block; font-size: 1.05rem; color: var(--purple-dark); }
.service-list p { margin: 4px 0 0; }

.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 34px; min-height: 220px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: var(--yellow); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(106,111,190,.32); }
.card-kicker { display: inline-flex; padding: 6px 11px; border-radius: 999px; background: var(--purple-soft); color: var(--purple-dark); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 24px; }
.service-card h3 { font-size: 1.5rem; color: var(--purple-dark); }
.card-wide { grid-column: 1 / -1; background: linear-gradient(135deg, #f3f3ff, #ffffdf); }

.brand-water-banner {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: center;
  background-image: url("assets/water-background.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.brand-water-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(37,42,92,.26), rgba(255,255,255,.04), rgba(37,42,92,.22)); }
.brand-water-content { position: relative; display: grid; grid-template-columns: 330px 1fr; gap: 70px; align-items: center; }
.brand-water-content > img { width: 100%; filter: drop-shadow(0 16px 30px rgba(37,42,92,.25)); }
.brand-water-copy { background: rgba(255,255,255,.92); padding: 28px 34px; border-radius: 20px; border: 3px solid var(--yellow); box-shadow: var(--shadow); }
.brand-water-copy span { display: block; color: var(--purple-dark); font-weight: 950; font-size: 1.35rem; margin-bottom: 12px; }
.brand-water-copy strong { display: block; color: var(--purple); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2.4vw, 2.05rem); line-height: 1.3; }
.brand-water-copy b { color: var(--yellow); -webkit-text-stroke: 1px var(--purple); margin: 0 .22em; }

.team-section { background: var(--purple-dark); color: var(--white); position: relative; overflow: hidden; }
.team-water-texture { position: absolute; inset: 0; background-image: linear-gradient(rgba(37,42,92,.90), rgba(37,42,92,.94)), url("assets/water-background.webp"); background-size: cover; background-position: center; opacity: .72; }
.team-content { position: relative; }
.team-section .section-heading p { color: rgba(255,255,255,.68); }
.team-section .eyebrow { color: var(--yellow); }
.owners-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 760px; margin: 0 auto 22px; }
.team-grid { display: grid; gap: 22px; }
.leadership-grid { grid-template-columns: repeat(3, 1fr); }
.tech-grid { grid-template-columns: repeat(4, 1fr); }
.team-card { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); overflow: hidden; backdrop-filter: blur(4px); }
.team-card-featured { background: rgba(255,255,255,.13); }
.portrait-placeholder { aspect-ratio: 4 / 5; display: grid; place-items: center; background: linear-gradient(145deg, rgba(106,111,190,.90), rgba(16,159,210,.88)); position: relative; overflow: hidden; border-bottom: 3px solid var(--yellow); }
.portrait-placeholder::before { content: ""; position: absolute; inset: 0; background-image: url("assets/water-background.webp"); background-size: cover; opacity: .14; mix-blend-mode: screen; }
.portrait-placeholder::after { content: "Photo coming soon"; position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-size: .7rem; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .12em; }
.portrait-placeholder span { position: relative; width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; border: 2px solid rgba(244,240,19,.72); background: rgba(37,42,92,.25); font-size: 1.45rem; font-weight: 900; }
.team-card-body { padding: 20px; }
.team-card-body h3 { margin-bottom: 6px; }
.team-card-body p { color: rgba(255,255,255,.68); margin: 0; font-size: .9rem; }
.team-subheading { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; margin: 42px 0 24px; }
.team-subheading span { height: 1px; background: rgba(255,255,255,.16); }
.team-subheading h3 { margin: 0; font-size: .88rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.78); }

.contact-section { background: var(--purple-dark); color: var(--white); padding: 96px 0 70px; position: relative; overflow: hidden; }
.contact-water { position: absolute; inset: 0; background-image: linear-gradient(120deg, rgba(37,42,92,.92), rgba(106,111,190,.82)), url("assets/water-background.webp"); background-size: cover; background-position: center; }
.contact-card { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: center; }
.contact-logo { width: 160px; margin-bottom: 22px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.15)); }
.contact-card h2 { max-width: 620px; }
.contact-card > div > p { color: rgba(255,255,255,.78); max-width: 650px; }
.contact-section .eyebrow { color: var(--yellow); }
.contact-meta { display: flex; gap: 50px; margin-top: 32px; }
.contact-meta p { color: rgba(255,255,255,.72); }
.contact-meta strong { color: var(--white); }
.contact-meta a { color: var(--white); }
.contact-actions { display: grid; gap: 12px; }
.closing-quote { position: relative; text-align: center; border-top: 1px solid rgba(255,255,255,.16); margin-top: 65px; padding-top: 40px; }
.closing-quote p { color: var(--yellow); font-size: 1.2rem; font-weight: 900; margin: 0; }

.site-footer { background: #1c204e; color: var(--white); padding: 52px 0 22px; border-top: 4px solid var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .7fr; gap: 60px; }
.footer-brand { display: block; width: 260px; background: var(--white); padding: 9px 14px; border-radius: 12px; margin-bottom: 16px; }
.footer-brand img { width: 100%; }
.footer-grid p { max-width: 420px; color: rgba(255,255,255,.62); }
.footer-grid h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--yellow); margin-bottom: 16px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { color: rgba(255,255,255,.82); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); margin-top: 42px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.46); font-size: .78rem; }

@media (max-width: 1080px) {
  .brand { width: 190px; }
  .site-nav { gap: 18px; }
  .leadership-grid, .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .site-nav { position: fixed; top: 76px; left: 20px; right: 20px; background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .menu-toggle { display: block; }
  .nav-call { display: none; }
  .hero { min-height: 980px; }
  .hero-media { min-height: 650px; }
  .hero-card { left: 20px; right: 20px; max-width: none; bottom: -170px; }
  .intro-strip { padding-top: 220px; }
  .two-column, .service-layout, .contact-card { grid-template-columns: 1fr; }
  .service-feature { position: relative; top: auto; min-height: 280px; }
  .brand-water-content { grid-template-columns: 270px 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 70px; }
  .site-nav { top: 70px; left: 14px; right: 14px; }
  .brand { width: 172px; }
  .hero { padding-top: 70px; min-height: 1030px; }
  .hero-media { margin: 0 8px; min-height: 570px; border-radius: 0 0 28px 28px; }
  .photo-frame { width: min(90vw, 620px); min-height: 290px; padding: 28px 18px; }
  .hero-card { left: 14px; right: 14px; bottom: -325px; padding: 26px; border-radius: 22px; }
  .hero-logo { width: 135px; }
  .hero-card h1 { font-size: clamp(2.2rem, 11vw, 3.6rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .intro-strip { padding-top: 390px; }
  .stats-grid { grid-template-columns: 1fr; }
  .two-column { gap: 34px; }
  .quote-card { padding: 32px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: auto; }
  .brand-water-banner { min-height: 500px; }
  .brand-water-content { grid-template-columns: 1fr; gap: 24px; text-align: center; justify-items: center; }
  .brand-water-content > img { width: min(310px, 82vw); }
  .brand-water-copy { width: 100%; padding: 24px 18px; }
  .owners-row, .leadership-grid, .tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .owners-row { max-width: none; }
  .contact-meta { display: grid; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 470px) {
  .owners-row, .leadership-grid, .tech-grid { grid-template-columns: 1fr; }
  .portrait-placeholder { aspect-ratio: 5 / 4; }
  .service-list li { grid-template-columns: 42px 1fr; gap: 12px; }
  .footer-brand { width: 235px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 270px;
}
.brand img {
  width: 100%;
  max-width: 250px;
  height: auto;
}
.brand-subtitle,
.footer-brand-subtitle {
  color: var(--purple);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.01);
}
.hero-water-overlay {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(37,42,92,.38)),
    linear-gradient(90deg, rgba(37,42,92,.16), rgba(37,42,92,.04) 40%, rgba(37,42,92,.28)),
    radial-gradient(circle at 78% 15%, rgba(244,240,19,.14), transparent 28%);
}
.hero-card strong { color: var(--purple-dark); }


.owners-row {
  grid-template-columns: 1fr;
  max-width: 360px;
}
.team-card-owner {
  display: block;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 14%;
  display: block;
  border-bottom: 3px solid var(--yellow);
}
.team-photo-owner {
  aspect-ratio: 4 / 5;
  min-height: 0;
  height: auto;
  object-position: center 22%;
  border-bottom: 3px solid var(--yellow);
  border-right: 0;
}
.team-card-body-large {
  padding: 20px;
}
.team-card-body-large h3 {
  font-size: 1.25rem;
}
.team-grid.tech-grid {
  max-width: 540px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 280px;
}
.footer-brand img { width: 100%; }

@media (max-width: 1080px) {
  .brand { width: 230px; }
}

@media (max-width: 1000px) {
  .brand { width: 220px; }
  .team-card-owner { display: block; }
  .team-photo-owner { aspect-ratio: 4 / 5; }
}

@media (max-width: 760px) {
  .brand { width: 205px; }
  .brand img { max-width: 190px; }
  .hero-photo { background-position: center 44%; }
  .team-grid.tech-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { width: 245px; }
}

@media (max-width: 470px) {
  .team-grid.tech-grid { grid-template-columns: 1fr; }
}

.hero {
  min-height: 0;
  overflow: visible;
}

.hero-water-overlay {
  display: none;
}

.hero-content {
  position: relative;
  padding-top: 38px;
}

.hero-card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0 auto;
}

.intro-strip {
  padding-top: 58px;
}

@media (max-width: 1000px) {
  .hero {
    min-height: 0;
  }

  .hero-card {
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 785px;
  }

  .intro-strip {
    padding-top: 58px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 0;
  }

  .hero-card {
    left: auto;
    right: auto;
    bottom: auto;
  }

  .intro-strip {
    padding-top: 58px;
  }
}

@media (min-width: 1001px) {
  .hero-photo {
    transform: scale(1.06);
  }
}

@media (min-width: 761px) and (max-width: 1000px) {
  .hero-photo {
    transform: scale(1.03);
  }
}

@media (max-width: 760px) {
  .hero-photo {
    transform: scale(1.01);
  }
}


.team-grid.tech-grid.tech-grid-three {
  max-width: 820px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 760px) {
  .team-grid.tech-grid.tech-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 470px) {
  .team-grid.tech-grid.tech-grid-three { grid-template-columns: 1fr; }
}

@media (min-width: 1081px) {
  .leadership-grid {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-grid.tech-grid.tech-grid-three {
    max-width: 920px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .leadership-grid,
  .team-grid.tech-grid.tech-grid-three {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
