@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Alumni+Sans+SC:ital,wght@0,100..900;1,100..900&family=Arapey:ital@0;1&family=Asap:ital,wght@0,100..900;1,100..900&family=Assistant:wght@200..800&family=Atma:wght@300;400;500;600;700&family=Beiruti:wght@200..900&family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Englebert&family=Forum&family=Julius+Sans+One&family=Kedebideri:wght@400;500;600;700;800;900&family=M+PLUS+1:wght@100..900&family=M+PLUS+Rounded+1c&family=Pompiere&family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Atma:wght@300;400;500;600;700&family=Combo&family=Diphylleia&family=Farsan&family=Forum&family=Fresca&family=Gayathri:wght@100;400;700&family=Indie+Flower&family=Instrument+Serif:ital@0;1&family=Kalam:wght@300;400;700&family=Mouse+Memoirs&family=Ovo&family=RocknRoll+One&family=Rum+Raisin&display=swap');


:root {
  --sky: #2bc4ef;
  --sky-soft: #bfe9f6;
  --sky-dark: #1397bd;
  --pink: #f368c6;
  --pink-dark: #d94bab;
  --sunny: #ffb22e;
  --sunny-dark: #f59412;
  --yellow: #ffd64a;
  --grass: #a9d63f;
  --grass-dark: #74b31a;
  --cream: #fff7df;
  --paper: #fffdf8;
  --ink: #414252;
  --muted: #6f6f7d;
  --white: #ffffff;
  --shadow: 0 14px 30px rgba(60, 50, 30, 0.12);
  --radius: 18px;
  --font-head: "Ovo", Georgia, serif;
  --font-body: "Segoe UI", Nunito, Arial, sans-serif;
  --font-ui: 'Quattrocento Sans', sans-serif;
  --h1-color: #4a7c59;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffd98a 0%, #ffe39b 28%, #fff8e7 52%, #eaf5ca 100%);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: var(--sky-dark); }

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(80, 60, 20, 0.12);
}

.header-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 250px;
}

.main-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover {
  background: var(--yellow);
  color: #604400;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
}

/* ---- Heading font picker ---- */
.font-picker-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.font-picker-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 2px;
  white-space: nowrap;
}

.font-picker {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid #e8d9b0;
  border-radius: 10px;
  padding: 5px 28px 5px 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  /* chevron arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M0 0l5 7 5-7z' fill='%236f6f7d'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
  transition: border-color 0.15s;
  max-width: 160px;
}

.font-picker:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(43, 196, 239, 0.2);
}

.nav-toggle span {
  display: block;
  width: 27px;
  height: 3px;
  margin: 5px 0;
  border-radius: 3px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.72rem 1.18rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font: inherit;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.14);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.14);
}

.btn-sunny {
  background: var(--sunny);
  color: #432800;
}

.btn-chat {
  background: var(--sky-dark);
}

.btn-light {
  background: var(--white);
  color: var(--sky-dark);
  box-shadow: inset 0 0 0 3px rgba(19, 151, 189, 0.18), 0 5px 0 rgba(19, 151, 189, 0.12);
}


.chat-icon {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #93ffb2 0 22%, #24d562 23% 48%, #fff 50% 52%, transparent 53%);
  box-shadow: 0 0 0 4px rgba(147, 255, 178, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 78px 0 115px;
  background: linear-gradient(180deg, var(--sky) 0%, #7ed8f2 45%, var(--sky-soft) 74%, #e7f6dc 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: #9b6900;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* On the blue hero the brown eyebrow looked muddy; use a clean white. */
.hero-copy .eyebrow {
  color: #24556a;
  opacity: 0.95;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.08; }

h1 {
  max-width: 700px;
  margin-bottom: 1.2rem;
  color: var(--h1-color);
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.hero-text {
  max-width: 650px;
  color: #24556a;
  font-size: 1.18rem;
  font-weight: 650;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* Right-align hero buttons so they clear the rainbow decoration */
.hero-actions { justify-content: flex-end; }

.hero-panel {
  display: grid;
  gap: 1rem;
}

.photo-stack {
  position: relative;
  min-height: 430px;
}

.hero-photo {
  position: absolute;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(28, 79, 95, 0.22);
}

.hero-photo-main {
  top: 0;
  right: 0;
  width: 88%;
  aspect-ratio: 4 / 3;
  transform: rotate(2deg);
}

.hero-photo-small {
  left: 0;
  bottom: 10px;
  width: 66%;
  aspect-ratio: 4 / 3;
  transform: rotate(-4deg);
}

/* Wide openings banner, centered, straddling the hero grass and the
   section below (pulled up with a negative top margin). */
.openings-wrap {
  position: relative;
  z-index: 20;
  width: min(1120px, calc(100% - 36px));
  margin: -72px auto 0;
}

.openings-card {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 28px;
  border: 4px solid var(--white);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

/* Thin black keyline across the top; sides fade out toward the bottom. */
.openings-card::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid #000;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
}

.openings-mouse {
  width: 118px;
  flex: none;
}

.openings-text {
  flex: 1;
  min-width: 180px;
}

.openings-text strong {
  display: block;
  color: var(--sunny-dark);
  font-family: var(--font-head);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 4px;
}

.openings-sub {
  display: block;
  color: var(--pink-dark);
  font-weight: 900;
  margin-bottom: 6px;
}

.openings-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  white-space: pre-line;
}

.openings-card .btn {
  flex: none;
}

.deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.sun {
  right: -108px;
  top: -128px;
  width: 360px;
  animation: spin 70s linear infinite;
}

/* The round rainbow sits behind the grass border (left side) so only its arc
   shows, balancing the sun in the opposite (top-right) corner. */
.rainbow {
  left: 70px;
  right: auto;
  bottom: -175px;
  width: 430px;
  z-index: 0;
}

.cloud-a {
  left: 5%;
  top: 145px;
  width: 170px;
  opacity: 0.82;
  animation: drift 28s linear infinite;
}

.cloud-b {
  right: 18%;
  top: 108px;
  width: 145px;
  opacity: 0.75;
  animation: drift 35s linear infinite reverse;
}

.hero-grass {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 1;
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: bottom;
}

.section {
  padding: 5rem 0;
}

.section-tint {
  background: rgba(255, 255, 255, 0.46);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading h2,
.owner-copy h2 {
  margin-bottom: 0.6rem;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.45vw, 2.1rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.step-card,
.card,
.visit-form,
blockquote {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-card {
  padding: 1.4rem 1rem;
  text-align: center;
  transition: transform 0.18s ease;
}

.step-card:hover {
  transform: translateY(-5px) rotate(-1deg);
}

.step-card img {
  width: 112px;
  height: 112px;
  margin: 0 auto 0.8rem;
  object-fit: contain;
}

.step-card h3 {
  color: var(--pink-dark);
  font-size: 1.45rem;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.basics-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
}

.card h3 {
  margin-bottom: 1.2rem;
  color: var(--sky-dark);
  text-align: center;
}

.schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0.25rem;
  border-bottom: 2px dotted #f0e0c2;
}

.schedule-list li:last-child { border-bottom: 0; }

.schedule-list span {
  color: var(--sunny-dark);
  font-weight: 900;
}

.facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.facts-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 0.85rem;
  border-radius: 15px;
  background: #fff7e3;
}

.fact-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff3cc;
  font-size: 22px;
  line-height: 1;
}

.facts-list strong {
  display: block;
  color: var(--sky-dark);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.facts-list p {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
}

.owner-photo-wrap {
  position: relative;
}

.owner-photo {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.pencils {
  position: absolute;
  right: -22px;
  bottom: -32px;
  width: 145px;
}

.role {
  color: var(--sunny-dark);
  font-weight: 900;
}

.philosophy {
  background: #e7f8fb;
  border-top: 4px solid rgba(43, 196, 239, 0.22);
  border-bottom: 4px solid rgba(43, 196, 239, 0.22);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.philosophy-grid p {
  margin: 0;
  padding: 1.2rem;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.82);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-grid button {
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.18s ease;
}


.gallery-grid button.portrait {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-grid button:hover {
  transform: scale(1.025) rotate(0.5deg);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(340px, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.visit-copy {
  position: sticky;
  top: 110px;
}

.visit-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.field.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 900;
}

label span {
  color: var(--pink-dark);
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  border: 2px solid #ecdcc0;
  border-radius: 14px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(43, 196, 239, 0.18);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-status-ok    { color: #2a7a2a; }
.form-status-error { color: #c0392b; }

.visit-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visit-thanks[hidden] { display: none; }

.visit-thanks-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.visit-thanks h3 {
  margin: 0;
  font-size: 1.7rem;
  color: var(--grass-dark);
}

.visit-thanks p {
  max-width: 48ch;
  margin: 0;
  color: var(--ink);
}

.visit-thanks-contact {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

/* ---- Contact section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(60, 50, 30, 0.18);
}

.contact-icon {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.contact-icon svg {
  width: 48px;
  height: 48px;
}

.contact-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}

.contact-card span:not(.contact-icon) {
  display: none;
}

/* ---- Review grid ---- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

blockquote {
  margin: 0;
  padding: 1.25rem;
}

blockquote p {
  font-weight: 650;
}

cite {
  color: var(--sunny-dark);
  font-style: normal;
  font-weight: 900;
}

.map-frame {
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.map-actions {
  margin: 1.4rem 0 0;
  text-align: center;
}

.footer-scene {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(180deg, #e1d48b 0%, #e3efbd 43%, #98d412 44%, #72bf00 100%);
}

.footer-copy {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 1.6rem;
  text-align: center;
  color: #4b5e38;
  font-size: 1.05rem;
}

.footer-copy a {
  color: #a35b00;
  font-weight: 900;
}

.footer-tagline {
  margin: 0 0 0.6rem;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: #3f5230;
}

.footer-tagline:empty { display: none; }

.footer-links {
  margin-top: -0.5rem;
}

.footer-land {
  position: absolute;
  inset: 0;
}

.footer-land::before,
.footer-land::after {
  content: "";
  position: absolute;
  bottom: 55px;
  width: 70%;
  height: 130px;
  border-radius: 50%;
  background: #b9ea20;
}

.footer-land::before {
  left: -14%;
}

.footer-land::after {
  right: -18%;
  width: 78%;
  background: #86cb00;
}

.footer-giraffe {
  position: absolute;
  left: 2%;
  bottom: 210px;
  width: 235px;
  z-index: 3;
}

.footer-lake {
  position: absolute;
  left: 9%;
  bottom: 78px;
  width: 520px;
  max-width: 48vw;
  z-index: 2;
}

.footer-crocodile {
  position: absolute;
  left: 5%;
  bottom: 78px;
  width: 285px;
  z-index: 4;
}

.footer-lion {
  position: absolute;
  left: 39%;
  bottom: 102px;
  width: 150px;
  z-index: 4;
}

.footer-tree {
  position: absolute;
  z-index: 3;
}

.tree-one {
  left: 13%;
  bottom: 300px;
  width: 140px;
}

.tree-two {
  left: 25%;
  bottom: 214px;
  width: 150px;
}

.tree-three {
  left: 57%;
  bottom: 140px;
  width: 120px;
}

.tree-four {
  right: 25%;
  bottom: 190px;
  width: 115px;
}

.tree-five {
  right: 7%;
  bottom: 160px;
  width: 120px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(20, 15, 10, 0.86);
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border: 6px solid var(--white);
  border-radius: 14px;
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob { 50% { transform: translateY(14px); } }
@keyframes drift {
  0%, 100% { transform: translateX(-26px); }
  50% { transform: translateX(26px); }
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    position: absolute;
    top: 72px;
    right: 18px;
    display: grid;
    width: min(280px, calc(100vw - 36px));
    padding: 0.8rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .hero-inner,
  .basics-grid,
  .owner-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions { justify-content: flex-start; }

  .photo-stack {
    min-height: 420px;
  }

  .steps,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .visit-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  body { font-size: 16px; }

  .header-inner {
    min-height: 84px;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.65rem 0;
  }

  .brand img { width: 178px; }
  .header-chat { margin-left: auto; }
  .header-chat { padding-inline: 0.85rem; }
  .font-picker-wrap { display: none; }

  .hero {
    padding-top: 46px;
  }

  .hero-inner {
    gap: 1.5rem;
  }

  .photo-stack {
    min-height: 330px;
  }

  .openings-card {
    justify-content: center;
    text-align: center;
  }

  .openings-mouse {
    width: 88px;
  }

  .steps,
  .facts-list,
  .philosophy-grid,
  .review-grid,
  .field.split {
    grid-template-columns: 1fr;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid button.portrait { grid-row: auto; aspect-ratio: 4 / 3; }

  .sun { width: 210px; top: -42px; right: -46px; }
  .rainbow { width: 240px; bottom: -98px; left: 22px; }
  .cloud-a, .cloud-b { display: none; }

  .footer-scene {
    min-height: 390px;
  }

  .footer-giraffe {
    width: 160px;
    bottom: 185px;
  }

  .footer-lake {
    max-width: none;
    width: 360px;
    left: 12%;
    bottom: 65px;
  }

  .footer-crocodile {
    width: 190px;
    bottom: 62px;
  }

  .footer-lion {
    left: 55%;
    width: 110px;
  }

  .tree-one,
  .tree-two,
  .tree-three,
  .tree-four,
  .tree-five {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sun, .rainbow, .cloud-a, .cloud-b { animation: none; }
}

/* ---- Documents CTA on home page ---- */
.documents-cta { text-align: center; }

/* ---- Documents library page ---- */
.docs-body {
  background: var(--paper);
  min-height: 100vh;
}

.docs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 18px rgba(80, 60, 20, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}

.docs-header .brand img { width: 210px; }

.docs-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: min(1180px, calc(100% - 36px));
  margin: 1.75rem auto 3rem;
}

.docs-sidebar {
  flex: none;
  width: 260px;
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.docs-list h2 {
  font-family: var(--font-head);
  color: var(--h1-color);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.docs-list ul, .docs-toc ul { list-style: none; margin: 0; padding: 0; }

.docs-list a {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: 9px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.docs-list a.active { background: var(--sky-soft); color: var(--sky-dark); }
.docs-list a:hover { background: #eef6fb; }

.docs-toc {
  margin-top: 1.5rem;
  border-top: 2px dotted #e6dcc0;
  padding-top: 1rem;
}

.docs-toc h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.docs-toc a {
  display: block;
  padding: 0.3rem 0.6rem;
  border-left: 3px solid transparent;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.docs-toc a:hover { color: var(--ink); }
.docs-toc a.current { border-left-color: var(--sunny); color: var(--ink); font-weight: 700; }

.docs-content {
  flex: 1;
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.docs-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 2px solid #f0e6cb;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.docs-content-head h1 {
  font-family: var(--font-head);
  color: var(--h1-color);
  margin: 0;
  font-size: 1.7rem;
}

.docs-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.docs-actions .btn { padding: 0.5rem 1rem; }

.docs-prose h2 {
  font-family: var(--font-head);
  color: var(--sky-dark);
  font-size: 1.4rem;
  margin: 2rem 0 0.6rem;
  padding-top: 0.5rem;
  scroll-margin-top: 100px;
  border-top: 2px dotted #e6dcc0;
}

.docs-prose h2:first-child { border-top: 0; margin-top: 0; padding-top: 0; }

.docs-prose h3 {
  color: var(--sunny-dark);
  font-size: 1.08rem;
  margin: 1.3rem 0 0.3rem;
}

.docs-prose p { margin: 0 0 0.85rem; }
.docs-prose ul { margin: 0 0 1rem; padding-left: 1.3rem; }
.docs-prose li { margin: 0.2rem 0; }
.docs-empty { color: var(--muted); font-style: italic; }

.docs-download-note {
  text-align: center;
  padding: 2rem 1rem;
}

.docs-download-note p {
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
}

@media (max-width: 860px) {
  .docs-layout { flex-direction: column; }
  .docs-sidebar {
    position: static;
    width: 100%;
    max-height: none;
  }
}

@media print {
  .docs-header, .docs-sidebar, .docs-actions { display: none; }
  .docs-layout { margin: 0; width: auto; display: block; }
  .docs-content { box-shadow: none; border-radius: 0; padding: 0; }
}

/* ---- Schedule calendar ---- */
.section-calendar .calendar {
  max-width: 720px;
  margin: 0 auto;
}

.cal-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.02rem;
  background: #f3f1ea;
  color: var(--ink);
}

.cal-status::before {
  content: "";
  flex: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
}

.cal-status-open { background: #e7f4cf; color: var(--grass-dark); }
.cal-status-early { background: #ffe9bd; color: var(--sunny-dark); }
.cal-status-closed { background: #f7dceb; color: var(--pink-dark); }
.cal-status-weekend { background: #d9edfb; color: var(--sky-dark); }

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cal-title {
  margin: 0;
  color: var(--sky-dark);
  font-family: var(--font-head);
  font-size: 1.4rem;
}

.cal-nav {
  width: 42px;
  height: 42px;
  flex: none;
  border: 0;
  border-radius: 50%;
  background: var(--sky-soft);
  color: var(--sky-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cal-nav:hover { background: var(--sky); color: #fff; transform: scale(1.05); }
.cal-nav:focus-visible { outline: 3px solid var(--sunny); outline-offset: 2px; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 4px;
}

.cal-cell {
  position: relative;
  min-height: 62px;
  border-radius: 12px;
  padding: 6px 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: #f3f1ea;
  cursor: default;
}

.cal-cell.cal-empty { background: transparent; }

.cal-num {
  font-weight: 800;
  font-size: 0.95rem;
}

.cal-sub {
  font-size: 0.62rem;
  line-height: 1.15;
  text-align: center;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cal-open {
  background: #e7f4cf;
  color: var(--grass-dark);
  cursor: pointer;
}

.cal-early {
  background: #ffe9bd;
  color: var(--sunny-dark);
  cursor: pointer;
}

.cal-closed {
  background: #f7dceb;
  color: var(--pink-dark);
  cursor: pointer;
}

.cal-weekend {
  background: #d9edfb;
  color: var(--sky-dark);
}

.cal-today {
  box-shadow: 0 0 0 3px var(--sky);
}

.cal-cell:focus-visible { outline: 3px solid var(--sunny); outline-offset: 2px; }

.cal-note {
  min-height: 1.4em;
  margin: 0.9rem 0 0.3rem;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}

.cal-legend {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.cal-legend li { display: flex; align-items: center; gap: 0.4rem; }

.cal-report-link {
  margin: 1rem 0 0;
  text-align: center;
}

.cal-report-link a {
  font-weight: 800;
  color: var(--sky-dark);
  text-decoration: none;
}

.cal-report-link a:hover { text-decoration: underline; }

.cal-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}

.cal-dot-open { background: #e7f4cf; box-shadow: inset 0 0 0 2px var(--grass-dark); }
.cal-dot-early { background: #ffe9bd; box-shadow: inset 0 0 0 2px var(--sunny-dark); }
.cal-dot-closed { background: #f7dceb; box-shadow: inset 0 0 0 2px var(--pink-dark); }
.cal-dot-weekend { background: #d9edfb; box-shadow: inset 0 0 0 2px var(--sky-dark); }

@media (max-width: 680px) {
  .cal-grid { gap: 4px; }
  .cal-cell { min-height: 50px; border-radius: 9px; }
  .cal-num { font-size: 0.82rem; }
  .cal-sub { font-size: 0.55rem; }
}
