/* ---------- Reset & variables ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --ink: #111111;
  --white: #ffffff;
  --cream: #f4ead9;
  --grey: #e9dfcd;
  --grey-text: #5c5851;
  --wave-blue: #2f6690;
  --wave-blue-dark: #1e4258;
  --sun-red: #c9564f;
  --sakura-pink: #e9aab0;
  --gold: #c98a4b;
  --radius: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Archivo', sans-serif;
  --font-script: 'Caveat', cursive;
  --font-body: 'Newsreader', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: var(--cream);
  background-image: url('../images/river-pattern.svg');
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 480px auto;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--wave-blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.pricing a:focus-visible, .contact a:focus-visible {
  outline-color: var(--white);
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 2000;
  background: var(--black);
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.25s var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

em { font-style: normal; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 6px; }

section { padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem); }

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-text);
  margin-bottom: 1rem;
}
.eyebrow.light { color: rgba(255,255,255,0.55); }

/* UI chrome reads as the display grotesque; prose reads as the serif body face */
.eyebrow, .btn, .nav-links, .nav-mobile, .logo, .stat span, .badge, .footer-social,
.price-range, .footer p { font-family: var(--font-display); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,0.15); }
.btn-ghost:hover { border-color: var(--black); }
.btn-light { background: var(--white); color: var(--black); }
.btn-light:hover { background: var(--cream); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { border-color: var(--white); }
.btn-small { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
.arrow-down { display: inline-block; transition: transform 0.3s var(--ease); }
.btn-ghost:hover .arrow-down { transform: translateY(3px); }
.arrow-right { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .arrow-right { transform: translateX(4px); }

/* ---------- Progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--black);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.1rem clamp(1.5rem, 6vw, 5rem);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo .dot { color: var(--grey-text); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--black);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { width: 22px; }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--white);
  padding: 1.5rem clamp(1.5rem, 6vw, 5rem) 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-top: 1px solid var(--grey);
}
.nav-mobile.open { display: flex; }
.nav-mobile .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(6rem, 12vw, 8rem);
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 1.5rem;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--grey-text);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}
.lead strong { color: var(--black); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; }
.stat span { font-size: 0.85rem; color: var(--grey-text); }

.hero-visual, .product-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blob {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}
.blob-alt { background: var(--white); animation-duration: 10s; }
.product-photo {
  position: relative;
  z-index: 1;
  width: 56%;
  max-width: 280px;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.16));
  animation: sway 7s ease-in-out infinite;
}
.product-photo.large { width: 62%; max-width: 340px; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.02); }
}
@keyframes sway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.2deg); }
}

/* ---------- Koi pond ---------- */
.koi-pond {
  position: relative;
  height: clamp(160px, 22vw, 240px);
  overflow: hidden;
  pointer-events: none;
}
.koi-track {
  position: absolute;
  left: 0;
  width: 100%;
  animation-name: swim-right;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.koi-track.reverse { animation-name: swim-left; }
.koi {
  display: block;
  filter: drop-shadow(0 10px 12px rgba(0,0,0,0.12));
  animation-name: koi-bob;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes swim-right {
  from { transform: translateX(-160px); }
  to { transform: translateX(calc(100% + 160px)); }
}
@keyframes swim-left {
  from { transform: translateX(calc(100% + 160px)); }
  to { transform: translateX(-160px); }
}
@keyframes koi-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(2.5deg); }
  50% { transform: translateY(1px) rotate(0deg); }
  75% { transform: translateY(6px) rotate(-2.5deg); }
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-text);
}
.scroll-line { width: 1px; height: 40px; background: rgba(0,0,0,0.15); position: relative; overflow: hidden; }
.scroll-dot { width: 1px; height: 12px; background: var(--black); position: absolute; top: 0; animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown {
  0% { top: -12px; }
  100% { top: 40px; }
}

/* ---------- Section head ---------- */
.section-head { max-width: 640px; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 1.2rem; }
.section-sub { color: var(--grey-text); font-size: 1.1rem; }
.section-sub.light { color: rgba(255,255,255,0.6); }

/* ---------- Product ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.product-features { display: flex; flex-direction: column; }
.feature {
  padding: 1.8rem 0;
  border-top: 1px solid var(--grey);
}
.feature:last-child { border-bottom: 1px solid var(--grey); }
.feature h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature p { color: var(--grey-text); max-width: 44ch; }

.spec-sheet {
  margin-top: 1.5rem;
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--grey);
  border-radius: 20px;
  background: rgba(47,102,144,0.05);
}
.spec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-text);
  margin-bottom: 1.1rem;
}
.spec-hint { text-transform: none; letter-spacing: normal; font-weight: 500; opacity: 0.7; }

.spec-body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.spec-diagram { width: 130px; flex-shrink: 0; color: var(--grey-text); }
.spec-diagram g { transition: opacity 0.35s ease; }
.spec-diagram circle, .spec-diagram line, .spec-diagram rect, .spec-diagram path {
  stroke: currentColor;
  transition: stroke 0.35s ease, stroke-width 0.35s ease;
}
.diag-outer, .diag-inner, .diag-height { opacity: 0.3; }
.diag-outer.highlight, .diag-inner.highlight, .diag-height.highlight { opacity: 1; }
.diag-outer.highlight circle, .diag-outer.highlight line,
.diag-inner.highlight circle, .diag-inner.highlight line,
.diag-height.highlight rect, .diag-height.highlight line, .diag-height.highlight path {
  stroke: var(--sun-red);
  stroke-width: 2.5;
}
.spec-diagram.material-active .diag-height rect { fill: rgba(47,102,144,0.12); stroke: var(--wave-blue); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1rem;
  flex: 1;
  min-width: 220px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem 0.6rem;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.spec-item:hover, .spec-item.active { background: rgba(47,102,144,0.08); }
.spec-item span { font-size: 0.8rem; color: var(--grey-text); }
.spec-item strong { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }

/* ---------- Pricing ---------- */
.pricing { background: var(--black); color: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
/* the idle "lively" float lives on the wrapper; hover-lift lives on the
   card itself. Keeping them on separate elements means the two transforms
   compose instead of the hover transition getting clobbered by the
   continuously-running keyframe animation every frame. */
.price-card-wrap {
  height: 100%;
  animation: card-float 6.5s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.price-card {
  height: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  isolation: isolate;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, background 0.4s ease;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 30%), rgba(255,255,255,0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.price-card:hover::before { opacity: 1; }
.price-card > * { position: relative; z-index: 1; }
.price-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.25); }
.price-card.featured { background: var(--white); color: var(--black); border-color: var(--white); }
.price-card.featured::before { background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 30%), rgba(47,102,144,0.10), transparent 70%); }
.price-card h3 { font-size: 1.4rem; }
.price-range { font-family: var(--font-display); font-weight: 800; font-size: 2rem; }
.price-range span { font-size: 0.9rem; font-weight: 500; color: var(--grey-text); }
.price-desc { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.price-card.featured .price-desc { color: var(--grey-text); }
.price-from {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--sun-red);
}
.price-from span { font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; opacity: 0.8; }
.price-card ul { display: flex; flex-direction: column; gap: 0.7rem; flex-grow: 1; }
.price-card li { font-size: 0.95rem; padding-left: 1.4rem; position: relative; }
.price-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
}
.badge {
  position: absolute;
  top: -13px; left: 2rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  animation: badge-breathe 3.6s ease-in-out infinite;
}
@keyframes badge-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(10,10,10,0); }
  50% { transform: scale(1.04); box-shadow: 0 0 0 6px rgba(10,10,10,0.06); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.about-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 16px;
  margin-bottom: 1.4rem;
  transition: transform 0.45s var(--ease), background 0.45s ease;
}
.about-icon svg { width: 26px; height: 26px; }
.about-icon svg path, .about-icon svg circle {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1s var(--ease);
}
.about-icon svg :nth-child(2) { transition-delay: 0.3s; }
.about-item.is-visible .about-icon svg path,
.about-item.is-visible .about-icon svg circle {
  stroke-dashoffset: 0;
}
.about-item:hover .about-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(47,102,144,0.1);
}
.about-item h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.about-item p { color: var(--grey-text); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: var(--white); text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; }
.contact p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 2.2rem; }
.contact-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { padding: 2.5rem clamp(1.5rem, 6vw, 5rem); background: var(--ink); color: rgba(255,255,255,0.6); }
.footer-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}
.footer-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.14);
  transform: scaleX(0);
  transition: transform 1.2s var(--ease) 0.15s;
}
.footer-inner.is-visible::before { transform: scaleX(1); }
.footer .logo { color: var(--white); }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { position: relative; padding-bottom: 3px; transition: color 0.3s ease; }
.footer-social a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--white);
  transition: right 0.35s var(--ease);
}
.footer-social a:hover::after { right: 0; }
.footer-social a:hover { color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal.mask {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.05s var(--ease);
}
.reveal.mask.is-visible { clip-path: inset(0 0 0% 0); }

.reveal.scale-in {
  transform: scale(0.93);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.scale-in.is-visible { transform: scale(1); }

.reveal.from-left {
  transform: translateX(-26px);
}
.reveal.from-left.is-visible { transform: translateX(0); }

/* "write itself" reveal for headings/copy on dark sections: words cascade
   in quickly rather than the whole block fading up at once */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.reveal-word.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, .reveal, .reveal-word, .blob, .product-photo, .scroll-dot {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; clip-path: none; }
  .reveal-word { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner, .product-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 1rem; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  /* stacked pricing: lead with the recommended plan instead of DOM order.
     order lives on the wrapper now, since that's the actual grid item. */
  .price-card-wrap { order: 2; }
  .price-card-wrap.featured { order: 1; margin-bottom: 0.5rem; }

  /* the product photo is a tall, narrow tube (~1:3.3 ratio) - sizing it by
     width alone (as on desktop) makes it dominate the viewport as soon as
     the layout goes single-column (tablet and below), not just on phones.
     Cap by height instead so it reads as an accent next to the copy, not
     a wall to scroll past. Written with matching specificity so it
     actually beats the desktop `.product-photo.large` rule. */
  .product-photo, .product-photo.large {
    width: auto;
    max-width: 60%;
    max-height: 38vh;
  }
  .blob { width: 62%; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* tighter section rhythm: the desktop whitespace budget (4-8rem per
     section, x7 sections) reads as dead air stacked down a phone screen */
  section { padding: 3rem clamp(1.25rem, 6vw, 2rem); }

  .hero { padding-top: 5.5rem; min-height: auto; padding-bottom: 3rem; }
  .lead { margin-bottom: 1.6rem; }
  .hero-cta { margin-bottom: 2rem; }
  .hero-stats { gap: 1.25rem; }
  .stat strong { font-size: 1.35rem; }

  .product-photo, .product-photo.large { max-height: 34vh; }

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

  .price-card { padding: 2rem 1.5rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  /* fewer background koi and a shorter band on small screens: a deliberate
     simplification, not the desktop pond squeezed into less space */
  .koi-pond { height: 110px; }
  .koi-track.koi-decor { display: none; }
  .koi { width: 64px !important; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { justify-content: center; }

  .hero-stats { gap: 0.9rem 1.4rem; }
  .stat strong { font-size: 1.2rem; }
  .stat span { font-size: 0.78rem; }

  .product-photo, .product-photo.large { max-height: 30vh; }

  .koi { width: 48px !important; }
  .koi-pond { height: 90px; }
}
