/* Doodle Bugs CCLC — site stylesheet
   Designed to be edited rarely. Colors, fonts, and spacing are all defined
   once at the top so a small change can cascade through the site. */

:root {
  /* Doodle Bugs official brand palette (BrandBook June 2018) */
  --teal: #1FBDB3;          /* PMS 2398 — primary brand */
  --teal-deep: #00857A;     /* PMS 7716 */
  --teal-soft: #DCF4F2;
  --lime: #9ACA3C;          /* PMS 2290 */
  --magenta: #C04A98;       /* PMS 2353 */
  --yellow: #FFD100;        /* PMS 108 */
  --warm-red: #F9423A;      /* PMS Warm Red */
  --orange: #F58220;        /* PMS 1495 */

  --cream: #ffffff;
  --mint: var(--teal-soft);
  --mint-soft: #F1FBFA;
  --ink: #4A4A4A;           /* logo gray */
  --ink-soft: #6E6E6E;
  --muted: #8A8A8A;
  --sunshine: var(--yellow);
  --sky: var(--teal);
  --grass: var(--lime);
  --coral: var(--warm-red);
  --line: #E8EFEE;

  --font-display: "Bowlby One", "Fredoka", "Arial Black", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1100px;
  --radius: 14px;
  --shadow: 0 20px 48px rgba(42, 42, 51, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--coral); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--teal-deep);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 .6em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--teal); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  margin: 0 0 1rem;
}

/* ---- Skip link ---- */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--ink); color: var(--cream); padding: .6rem 1rem; border-radius: 8px; z-index: 100; }

/* ---- Layout: sidebar on desktop, top nav on mobile ---- */
.layout { display: flex; min-height: 100vh; }

.sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--mint);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}

.brand { margin-bottom: 3rem; }
.brand-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}
.brand-title a { color: inherit; text-decoration: none; }

.nav { list-style: none; padding: 0; margin: 0; flex: 1; }
.nav li { margin: .4rem 0; }
.nav a {
  display: inline-block;
  padding: .5rem .2rem;
  color: var(--ink-soft);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  position: relative;
  transition: color .2s ease, transform .25s ease, text-shadow .25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .2rem;
  height: 2px;
  background: var(--coral);
  transition: right .3s ease;
}
.nav a:hover,
.nav a:focus {
  color: var(--ink);
  transform: translateX(4px);
  text-shadow: 0 0 14px rgba(231, 111, 81, .35);
  text-decoration: none;
}
.nav a:hover::after,
.nav a:focus::after { right: 30%; }
.nav a.active { color: var(--ink); }
.nav a.active::after { right: 0; background: var(--ink); }

.sidebar-footer { margin-top: 2rem; }
.sidebar-footer a { color: var(--ink); display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }

.main { flex: 1; min-width: 0; }

/* ---- Mobile header (hidden on desktop) ---- */
.mobile-header { display: none; }
.mobile-nav { display: none; }

/* ---- Hero ----
   Uses native image aspect-ratio (2048x872) so the background image and
   overlay text scale together with the frame width. No independent resize. */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2048 / 872;
  max-height: 70vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.15));
  z-index: 1;
}
.hero-home-v1 { background-image: url('../images/hero/home-hero-v1.jpg'); }
.hero-home-v2 { background-image: url('../images/hero/home-hero-v2.jpg'); }
.hero > div {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero.hero-top { align-items: flex-start; }
.hero.hero-bottom { align-items: flex-end; }
.hero.hero-bottom > div { padding-bottom: .5rem; }

.hero-switcher {
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: 1rem;
  background: var(--mint-soft);
  font-size: .9rem;
}
.hero-switcher a {
  padding: .4rem .9rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.hero-switcher a.active { background: var(--ink); color: #fff; }
.hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.hero p { font-size: 1.15rem; max-width: 36ch; margin: 0 auto 1.5rem; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero .cta-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-1px); text-decoration: none; }
.btn-secondary { background: #fff; color: var(--ink); border: 2px solid #fff; }
.btn-secondary:hover { background: var(--cream); text-decoration: none; }

/* ---- Page sections ---- */
.section { padding: 4rem 2rem; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.section-wide { max-width: var(--maxw); margin: 0 auto; }
.section-alt { background: var(--mint-soft); }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-alt .section-title { margin-bottom: 3.5rem; }
.section-alt .section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}
.section-alt .section-title h2::after {
  content: "";
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.section-title .eyebrow { display: block; }

/* ---- Program list (Home) ---- */
.programs-wrap { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.programs {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 2rem;
}
@media (max-width: 1100px) {
  .programs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .programs { grid-template-columns: 1fr; }
}
.program-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--mint);
  color: var(--ink);
  text-decoration: none;
  display: block;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
a.program-card:hover,
a.program-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(42, 42, 51, 0.22);
  border-top-color: var(--coral);
  text-decoration: none;
}
.program-card h3 { font-family: var(--font-display); margin: 0 0 .35rem; font-size: 1.3rem; }
.program-card .age { margin: 0; color: var(--muted); font-size: .9rem; display: flex; flex-direction: column; line-height: 1.3; }
.program-card .age strong { color: var(--ink); font-weight: 700; font-size: .95rem; }

/* ---- Three-column pillars (Home) ---- */
.pillars {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}
.pillar {
  text-align: center;
  padding: .5rem 2rem;
  position: relative;
}
.pillar + .pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(42,42,51,.18), transparent);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}
.pillar h3::after {
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillar + .pillar::before {
    left: 15%;
    right: 15%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(42,42,51,.18), transparent);
  }
  .pillar { padding: 1rem .5rem; }
}

/* ---- Curriculum list ---- */
.curr-list { padding-left: 1.2rem; }
.curr-list li { margin: .6rem 0; }
.curr-list strong { color: var(--ink); }

/* ---- Teacher cards ---- */
.teacher-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.teacher-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.teacher-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  background: var(--mint);
  display: block;
}
.teacher-card h3 { font-family: var(--font-display); margin: 0; font-size: 1.5rem; }
.teacher-card p { margin: .3rem 0 0; color: var(--ink-soft); }

/* ---- Tour gallery ---- */
.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}
.room-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.room-card-body { position: relative; padding: 1.5rem 2rem; min-height: 180px; }
.room-card-body h3,
.room-card-body .age { padding-right: 170px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.room-card-body p { margin-top: 1rem; }
@media (max-width: 640px) {
  .room-card-body { min-height: 135px; }
  .room-card-body h3,
  .room-card-body .age { padding-right: 125px; }
}
.room-card h3 { font-family: var(--font-display); margin-top: 0; font-size: 1.8rem; }
.room-card .age { color: var(--muted); font-size: 1.25rem; font-weight: 600; display: flex; flex-direction: column; line-height: 1.4; margin: .5rem 0 .9rem; }
.room-card .age strong { color: var(--ink); font-weight: 800; font-size: 1.35rem; }

/* ---- Contact ---- */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-card a { color: var(--ink); font-weight: 700; }
.contact-card .big-phone { font-size: 1.6rem; display: block; margin: 1rem 0; }
.hours-list { list-style: none; padding: 0; margin: 1rem 0; }
.hours-list li { margin: .25rem 0; }

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  color: #cfcfd6;
  padding: 2.5rem 2rem;
  font-size: .9rem;
}
.footer a { color: #fff; }
.footer-social a { color: var(--ink); }
.footer-social a:hover, .footer-social a:focus { color: var(--teal-deep); }

.footer .footer-bug { font-size: 1.4rem; }

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-text { text-align: left; }
.footer-text p { margin: .25rem 0; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.footer-social a:hover,
.footer-social a:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  text-decoration: none;
}
.footer-social svg { width: 24px; height: 24px; fill: currentColor; }

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-text { text-align: center; }
}

/* ---- Responsive: mobile ---- */
@media (max-width: 820px) {
  .layout { flex-direction: column; }
  .sidebar { display: none; }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: var(--mint);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
  }
  .mobile-header .brand-title { font-size: 1.2rem; max-width: 70%; }
  .menu-toggle {
    background: none;
    border: 2px solid var(--ink);
    color: var(--ink);
    border-radius: 8px;
    padding: .4rem .8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
  }

  .mobile-nav {
    display: none;
    background: var(--mint);
    padding: 0 1.2rem 1.2rem;
    list-style: none;
    margin: 0;
    position: sticky;
    top: 64px;
    z-index: 49;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav li { margin: .4rem 0; }
  .mobile-nav a { color: var(--ink); font-weight: 600; display: block; padding: .5rem 0; }

  .section { padding: 2.5rem 1.2rem; }
  .hero { max-height: none; }
  .room-card-body { padding: 1.2rem; }
  .contact-card { padding: 1.5rem; }
}

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

.welcome-heading { margin: 0; }
.welcome-heading img { display: block; max-width: 420px; width: 100%; height: auto; margin: 0 auto; mix-blend-mode: multiply; }

/* ---- Welcome panel (Tour intro) ---- */
.welcome-panel {
  background: var(--mint-soft);
  border-radius: var(--radius);
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--grass);
}
.welcome-panel .section-title { margin-bottom: 1.5rem; }
.welcome-panel .welcome-lead {
  font-size: 1.15rem;
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 1.5rem;
  color: var(--ink);
}
.welcome-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.welcome-points li {
  list-style: none;
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-size: .95rem;
  line-height: 1.5;
  box-shadow: 0 4px 14px rgba(42,42,51,.05);
}
.welcome-points li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: .25rem;
  font-weight: 400;
}
.welcome-points ul { padding: 0; margin: 0; }
@media (max-width: 820px) {
  .welcome-points { grid-template-columns: 1fr; }
}

/* ---- V2 brand overrides ---- */
.sidebar { background: var(--teal-soft); border-right: 4px solid var(--teal); }
.brand img.brand-logo { width: 100%; max-width: 220px; height: auto; display: block; }
.mobile-header { background: var(--teal-soft) !important; border-bottom: 3px solid var(--teal); }
.mobile-header img.brand-logo { max-width: 180px; height: auto; }

.program-card { border-top-width: 5px; }
.programs a.program-card:nth-child(1) { border-top-color: var(--yellow); }
.programs a.program-card:nth-child(2) { border-top-color: var(--warm-red); }
.programs a.program-card:nth-child(3) { border-top-color: var(--lime); }
.programs a.program-card:nth-child(4) { border-top-color: var(--magenta); }
.programs a.program-card:nth-child(5) { border-top-color: var(--teal); }
.program-card h3 { color: var(--teal-deep); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .02em; }

.btn-primary { background: var(--warm-red); }
.btn-secondary { background: #fff; color: var(--teal-deep); border-color: var(--teal); }

a { color: var(--warm-red); }
.nav a.active::after, .nav a::after { background: var(--warm-red); }
.nav a.active { color: var(--teal-deep); }

.section-alt { background: var(--teal-soft); }
.section-alt .section-title h2::after,
.pillar h3::after { background: var(--lime); }

.welcome-panel { border-left-color: var(--lime); background: #fff; }
.welcome-points li strong { color: var(--teal-deep); }

.footer { background: var(--teal-deep); color: #d8f4f1; }
.footer a { color: #fff; }
.footer .footer-social a { color: var(--ink); }
.footer .footer-social a:hover, .footer .footer-social a:focus { color: var(--teal-deep); }

/* Bug accents floating around hero/sections */
.bug-accent {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: .95;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.12));
}


/* Brand book requires logo on white background — make the whole left nav white
   so the logo blends seamlessly, and pepper brand colors throughout. */
.sidebar {
  background: #fff !important;
  border-right: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
/* Full-page-height teal shadow rail behind the sidebar — extends past the
   sticky sidebar's 100vh so the drop shadow runs the entire page length. */
.layout { position: relative; }
.layout::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 260px; /* matches .sidebar width */
  box-shadow: 6px 0 22px rgba(31, 189, 179, 0.22);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 900px) {
  .layout::before { display: none; }
}
.main {
  background: linear-gradient(180deg, #FAFDFC 0%, #F1FAF9 100%);
}
.sidebar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right,
    var(--teal) 0 25%,
    var(--lime) 25% 50%,
    var(--magenta) 50% 75%,
    var(--yellow) 75% 100%);
}
.mobile-header {
  background: #fff !important;
  border-bottom: 3px solid var(--teal);
  box-shadow: inset 0 -6px 0 -3px var(--yellow);
}
.brand {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin-bottom: 2rem;
}
.brand img.brand-logo { max-width: 200px; margin: 0 auto; }
.mobile-header img.brand-logo { max-width: 140px; }

/* Nav links cycle through the four primary brand colors */
.nav li:nth-child(1) a:hover, .nav li:nth-child(1) a.active { color: var(--teal-deep); }
.nav li:nth-child(1) a:hover::after, .nav li:nth-child(1) a.active::after { background: var(--teal); }
.nav li:nth-child(2) a:hover, .nav li:nth-child(2) a.active { color: #5b8a1f; }
.nav li:nth-child(2) a:hover::after, .nav li:nth-child(2) a.active::after { background: var(--lime); }
.nav li:nth-child(3) a:hover, .nav li:nth-child(3) a.active { color: var(--magenta); }
.nav li:nth-child(3) a:hover::after, .nav li:nth-child(3) a.active::after { background: var(--magenta); }
.nav li:nth-child(4) a:hover, .nav li:nth-child(4) a.active { color: #b58a00; }
.nav li:nth-child(4) a:hover::after, .nav li:nth-child(4) a.active::after { background: var(--yellow); }
.nav li:nth-child(5) a:hover, .nav li:nth-child(5) a.active { color: var(--warm-red); }
.nav li:nth-child(5) a:hover::after, .nav li:nth-child(5) a.active::after { background: var(--warm-red); }

/* Pillar underlines cycle through brand colors */
.section-alt .section-title h2::after { background: var(--magenta); }
.pillars .pillar:nth-child(1) h3::after { background: var(--teal); }
.pillars .pillar:nth-child(2) h3::after { background: var(--lime); }
.pillars .pillar:nth-child(3) h3::after { background: var(--magenta); }

/* Footer rainbow accent bar */
.footer { position: relative; }
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right,
    var(--teal) 0 25%,
    var(--lime) 25% 50%,
    var(--magenta) 50% 75%,
    var(--yellow) 75% 100%);
}

.sidebar-footer a { color: var(--teal-deep); }
.sidebar-footer a:hover { color: var(--magenta); }


/* ---- Brand character bugs on cards ---- */
.program-card { position: relative; padding-top: 1.4rem; display: flex; flex-direction: column; align-items: center; }
.program-bug {
  display: block;
  height: 120px;
  width: auto;
  max-width: 100%;
  margin: 0 auto .5rem;
  object-fit: contain;
  object-position: bottom;
  transition: transform .2s ease;
}
a.program-card:hover .program-bug,
a.program-card:focus .program-bug { transform: translateY(-3px) rotate(-4deg); }

/* Dragonfly is wider than tall — match height so titles align, allow extra width */
.programs a.program-card:nth-child(5) .program-bug { height: 120px; max-width: 180px; margin: -0.8rem auto 1.2rem; }

.room-card { position: relative; }
.room-card img.room-bug {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 140px;
  height: 140px;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  z-index: 2;
}
@media (max-width: 640px) {
  .room-card img.room-bug { width: 105px; height: 105px; top: 8px; right: 8px; }

  .program-bug { height: 100px; width: auto; }
  .programs a.program-card:nth-child(5) .program-bug { height: 100px; max-width: 150px; margin: -0.6rem auto 1rem; }
}
.room-bug.flip-x { transform: scaleX(-1); }

/* Dragonfly bug — larger on tour page only */
#dragonfly .room-bug { width: 173px; height: 173px; top: -6px; }
#dragonfly .room-card-body { min-height: 220px; }
#dragonfly .room-card-body h3,
#dragonfly .room-card-body .age { padding-right: 225px; }
@media (max-width: 640px) {
  #dragonfly .room-bug { width: 131px; height: 131px; top: -4px; }
  #dragonfly .room-card-body { min-height: 170px; }
  #dragonfly .room-card-body h3,
  #dragonfly .room-card-body .age { padding-right: 170px; }
}

/* Bumblebee bug — 5% smaller on tour page only */
#bumblebee .room-bug { width: 133px; height: 133px; }
@media (max-width: 640px) {
  #bumblebee .room-bug { width: 100px; height: 100px; }
}

.welcome-heading { white-space: nowrap; }
@media (max-width: 720px) {
  .welcome-heading { white-space: normal; }
}

