/* ==========================================================================
   Lotus Professional College — Zen theme
   ========================================================================== */

:root {
  --paper: #faf8f4;
  --paper-deep: #f2eee6;
  --ink: #2c2a26;
  --ink-soft: #6b675e;
  --mist: #e8e4da;
  --sage: #9fae94;
  --sage-soft: #c7d6bc;
  --lotus: #d9a7b0;
  --water: #a9c3cc;
  --lavender: #cfc9e0;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Karla", "Helvetica Neue", Arial, sans-serif;
  --flow: 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.06rem;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 6vw;
}

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

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 4vw;
  transition: background var(--flow), box-shadow var(--flow);
}
.site-header.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--mist);
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.site-header .brand img {
  height: clamp(2rem, 5vw, 2.6rem);
  width: auto;
  flex: none;
}
.site-header .wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-nav { display: flex; flex-wrap: wrap; gap: clamp(1rem, 2.5vw, 2.2rem); }
.site-nav a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.4s, border-color 0.4s;
}
.site-nav a:hover { color: var(--ink); border-color: var(--sage); }

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0 9px;
  background: none;
  border: 1px solid var(--mist);
  border-radius: 50%;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-header { flex-wrap: nowrap; }
  .site-header .brand { flex: 1 1 auto; min-width: 0; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 5.4rem 1rem 1.6rem;
    background: rgba(250, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--mist);
    transform: translateY(-102%);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .site-header.nav-open .site-nav { transform: none; }
  .site-nav a {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    padding: 0.85rem 0;
    width: 100%;
    max-width: 280px;
    text-align: center;
    border-bottom: 1px solid var(--mist);
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(250,248,244,0.55), rgba(250,248,244,0.82) 70%, var(--paper)),
    url("../images/hero-background.jpg")
      center 37% / cover no-repeat fixed;
  padding: 7rem 6vw 4rem;
}
.hero img.logo { width: clamp(96px, 14vw, 130px); margin: 0 auto 1.4rem; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 1.15;
  max-width: 14ch;
}
.hero-intro {
  margin-top: 2rem;
  max-width: 52ch;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
}
.hero-intro p + p { margin-top: 0.9rem; }
.hero-intro .hero-links {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1rem;
  font-size: 0.92rem;
  color: var(--ink);
}
.hero-intro .hero-links a {
  border-bottom: 1px solid var(--sage);
  transition: border-color 0.4s, color 0.4s;
}
.hero-intro .hero-links a:hover { border-color: var(--ink); }
.hero .breathe {
  margin-top: 2.6rem;
  color: var(--ink-soft);
  font-size: 1.4rem;
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}
/* iOS ignores background-attachment: fixed */
@media (max-width: 860px) {
  .hero { background-attachment: scroll; min-height: 92svh; }
  .hero { padding: 6.5rem 6vw 3rem; justify-content: flex-start; }
  .hero .breathe { display: none; }
}

/* ---- Sections ---- */
section.band { padding: clamp(3.5rem, 8vw, 6rem) 0; }
section.band.alt { background: var(--paper-deep); }
@media (max-width: 860px) {
  section.band { padding: 2.6rem 0; }
}

.eyebrow {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
h2.title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  text-align: center;
  margin-bottom: 1rem;
}
.divider {
  width: 56px;
  height: 1px;
  background: var(--sage);
  margin: 0 auto 2.2rem;
}

/* ---- Panels & requirement lists ---- */
.panel {
  max-width: 68ch;
  margin: 0 auto;
  border: 1px solid var(--mist);
  border-radius: 22px;
  background: var(--paper);
  padding: clamp(1.5rem, 4vw, 2.4rem) clamp(1.3rem, 5vw, 3rem);
  color: var(--ink-soft);
}
.panel-lead {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}
.panel-point {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  text-align: center;
  margin-bottom: 1.2rem;
}
.panel-point:last-child { margin-bottom: 0; }
ul.steps {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}
ul.steps li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.02rem;
}
ul.steps li::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
ul.steps ul { list-style: none; margin-top: 0.6rem; display: grid; gap: 0.5rem; }
ul.steps ul li { padding-left: 1.4rem; }
ul.steps ul li::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: none;
  border: 1px solid var(--sage);
}
.subhead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  text-align: center;
  margin: 3rem 0 1.4rem;
}

/* ---- Admissions action buttons ---- */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(1rem, 3vw, 1.8rem);
  max-width: 880px;
  margin: 0 auto;
}
.action-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--mist);
  border-radius: 30px;
  text-align: center;
  background: #eef0e9;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--ink);
  transition: transform var(--flow), box-shadow var(--flow);
}
.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px -24px rgba(44,42,38,0.35);
}

/* ---- Tuition cards ---- */
.tuition-card {
  max-width: 68ch;
  margin: 0 auto;
  border: 1px solid var(--mist);
  border-radius: 30px;
  padding: clamp(1.2rem, 4vw, 2.6rem) clamp(1rem, 5vw, 3.2rem);
  color: var(--ink);
  background: #eef0e9;
}
.tuition-total {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
}
.tuition-total .tuition-sub { font-size: 0.75em; color: var(--ink-soft); }
.tuition-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin: 1.4rem 0 0.6rem;
}
.tuition-lead { color: var(--ink-soft); margin-bottom: 1rem; }
ol.tuition-list { display: grid; gap: 0.8rem; padding-left: 1.3rem; }
ol.tuition-list > li { font-family: var(--serif); font-size: clamp(1.05rem, 2.2vw, 1.25rem); }
ol.tuition-list ol { margin: 0.5rem 0 0; padding-left: 1.15rem; display: grid; gap: 0.4rem; }
ol.tuition-list ol li {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
ol.alpha { list-style-type: lower-alpha; }
ol.roman { list-style-type: lower-roman; }

/* ---- Document links ---- */
.doc-list {
  list-style: none;
  max-width: 62ch;
  margin: 0 auto;
  display: grid;
  gap: 0.1rem;
  text-align: center;
}
.doc-list li { border-bottom: 1px solid var(--mist); }
.doc-list li:last-child { border-bottom: none; }
.doc-list a, .doc-list li {
  display: block;
  padding: 0.85rem 0.5rem;
  font-size: 1rem;
}
.doc-list a {
  transition: color 0.4s;
  border-bottom: none;
}
.doc-list a:hover { color: var(--sage); }

/* ---- Accreditation note ---- */
.accredit-note {
  max-width: 62ch;
  margin: 2.4rem auto 0;
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ---- Bulletin board postings ---- */
.posting {
  max-width: 68ch;
  margin: 0 auto;
  border: 1px solid var(--mist);
  border-radius: 22px;
  background: var(--paper);
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.4rem, 5vw, 3rem);
}
.posting h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin-bottom: 0.3rem;
}
.posting-meta { font-style: italic; color: var(--sage); margin-bottom: 1.2rem; }
.posting-body { color: var(--ink-soft); }
.posting-contact {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--mist);
  text-align: center;
  line-height: 1.9;
}
.posting-contact a { border-bottom: 1px solid var(--sage); }

/* ---- Booking help steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  max-width: 1080px;
  margin: 0 auto;
}
.step-card {
  border: 1px solid var(--mist);
  border-radius: 22px;
  background: var(--paper);
  padding: clamp(1.4rem, 3vw, 1.8rem) 1.4rem;
  text-align: left;
}
.step-art {
  border-radius: 14px;
  background: #eef0e9;
  padding: 1rem 1rem 0.6rem;
  margin-bottom: 1.1rem;
  text-align: center;
}
.step-art img { width: min(190px, 80%); margin: 0 auto; }
.step-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.step-num {
  flex: none;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card p { color: var(--ink-soft); font-size: 0.98rem; }
.book-now {
  text-align: center;
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-size: 1.3rem;
}

/* ---- Enrollment banner ---- */
.enroll-banner {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--mist);
  padding: 1.6rem 0 1.4rem;
  text-align: center;
}
.enroll-banner .enroll-title {
  font-family: var(--serif);
  font-weight: 700;
  color: #c0392b;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.enroll-banner p { max-width: 62ch; margin: 0 auto; color: var(--ink-soft); }
.enroll-banner a { border-bottom: 1px solid var(--sage); }
.enroll-banner a:hover { border-color: var(--ink); }

/* ---- Two-column layout ---- */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.page-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

/* ---- Interior page hero ---- */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 3rem;
  background:
    linear-gradient(rgba(250,248,244,0.5), rgba(250,248,244,0.85) 75%, var(--paper)),
    url("../images/hero-background.jpg")
      center 37% / cover no-repeat;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.1;
}
@media (max-width: 860px) {
  .page-hero {
    min-height: 0;
    padding: 6.2rem 0 2rem;
  }
}

/* ---- Goals list ---- */
.goals {
  max-width: 62ch;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--ink-soft);
  border: 1px solid var(--mist);
  border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 2.4rem) 8%;
  background: var(--paper);
}
.goals p + p { margin-top: 1.1rem; }

/* ---- Programs ---- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 4vw, 2.5rem);
}
/* tablets: two-across keeps the discs inside their tracks */
@media (min-width: 701px) and (max-width: 999px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}
/* the three-button utility grid drops to one column earlier (smaller screens hold 3 tracks but text won't fit) */
@media (max-width: 899px) {
  .programs-grid.programs-grid.three { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .programs-grid, .programs-grid.programs-grid.three { grid-template-columns: 1fr; }
  .program-card .disc { --disc-size: clamp(110px, 52vw, 180px); }
  .program-card h3 { margin-top: 0.9rem; }
}
.program-card { text-align: center; }
.program-card a { display: block; }
.program-card .disc {
  --disc-size: clamp(120px, 36vw, 200px);
  width: var(--disc-size);
  height: var(--disc-size);
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--disc-size) * 0.14);
  transition: transform var(--flow), box-shadow var(--flow);
  border: 1px solid rgba(0,0,0,0.05);
}
.program-card a:hover .disc,
.program-card a:focus .disc {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -22px rgba(44, 42, 38, 0.35);
}
.program-card .disc img { width: 100%; height: 100%; object-fit: contain; }
.program-card:nth-child(1) .disc { background: #eaf0fa; }
.program-card:nth-child(2) .disc { background: #c7f6c7; }
.program-card:nth-child(3) .disc { background: #feccd4; }
.program-card:nth-child(4) .disc { background: #e6e6fa; }
.program-card .disc.disc-admin    { background: #d8a440; }
.program-card .disc.disc-tour      { background: #c7f6c7; }
.program-card .disc.disc-checklist { background: #feccd4; }
.program-card .disc.disc-tuition   { background: #eaf0fa; }
.program-card .disc.disc-pay       { background: #f2efa1; }
.program-card .disc.disc-packet     { background: #c7f6c7; }
.program-card .disc.disc-fafsa      { background: #eaf0fa; }
.program-card .disc.disc-transcript { background: #9fd6d4; }
/* three-across variant of the disc grid */
.programs-grid.three { grid-template-columns: repeat(3, 1fr); max-width: 860px; margin-left: auto; margin-right: auto; }
.program-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 1.1rem;
}
.program-card h3 a {
  border-bottom: 1px solid var(--mist);
  transition: border-color 0.4s;
}
.program-card h3 a:hover { border-color: var(--ink); }

/* ---- Quiet text blocks ---- */
.quiet {
  max-width: 62ch;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
}
.quiet + .quiet { margin-top: 1.4rem; }

/* ---- Clinic ---- */
.clinic-note {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  max-width: 880px;
  margin: 0 auto;
}
.clinic-card {
  border: 1px solid var(--mist);
  border-radius: 26px;
  padding: clamp(1.4rem, 3vw, 2rem) 1.2rem;
  text-align: center;
  background: #eef0e9;
  transition: transform var(--flow), box-shadow var(--flow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 9.5rem;
}
.clinic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px -24px rgba(44,42,38,0.3);
}
.clinic-card .name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
}
.clinic-card .price {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-top: 0.3rem;
  color: var(--ink);
}
.clinic-card .price small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}
.clinic-card.acu   { background: #c7f6c7; }
.clinic-card.comm  { background: #c7f6c7; }
.clinic-card.b-est { background: #e6e6fa; }
.clinic-card.mass  { background: #eaf0fa; }
.clinic-card.m-est { background: #feccd4; }
.clinic-card.wax   { background: #9fd6d4; }
.clinic-card.lashes { background: #ff8675; }

/* ---- Weekly schedule ---- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1.6rem;
  max-width: 1080px;
  margin: 0 auto;
}
.schedule-day h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.8rem;
}
.schedule-box {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--mist);
  padding: 1.2rem 0.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 7rem;
}
.schedule-box p { font-size: 0.9rem; color: var(--ink-soft); }
.schedule-box .clinic-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 0.3rem;
}

/* ---- Policies ---- */
.policy { text-align: center; }
.policy + .policy { margin-top: 1.8rem; }
.policy-head {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #c0392b;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 0.4rem;
}
.policy-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--ink-soft);
}
.policy-red {
  text-align: center;
  color: #c0392b;
  margin-top: 1.4rem;
}

/* ---- Accreditations ---- */
.accredit {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  border: 1px solid var(--mist);
  border-radius: 42px;
  padding: clamp(1.6rem, 4vw, 2.5rem) clamp(1.2rem, 4vw, 3rem);
  background: var(--paper);
}
.accredit a { display: flex; justify-content: center; width: 100%; }
/* uniform size: every logo in the same fixed box, contained */
.accredit img {
  height: 56px;
  width: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.4s;
}
.accredit img:hover { opacity: 1; }
/* square emblem logos carry more transparent padding, so scale them up
   to match the visual weight of the wide wordmark logos */
.accredit img.logo-square { height: 92px; }
@media (max-width: 700px) {
  .accredit { grid-template-columns: repeat(2, 1fr); }
  .accredit img { height: 44px; }
  .accredit img.logo-square { height: 72px; }
}

/* ---- Slideshow ---- */
.slideshow {
  position: relative;
  max-width: min(980px, 72vh);
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  background: var(--paper-deep);
}
.slideshow .slides {
  position: relative;
  aspect-ratio: 3 / 4;
}
.slideshow .slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slideshow .slides img.active { opacity: 1; }
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 1px solid rgba(250,248,244,0.6);
  background: rgba(44,42,38,0.35);
  backdrop-filter: blur(4px);
  color: #faf8f4;
  font-size: 2rem;
  line-height: 1;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.slide-arrow:hover { background: rgba(44,42,38,0.6); }
.slide-arrow.prev { left: 1rem; }
.slide-arrow.next { right: 1rem; }
.slide-dots {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}
.slide-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(250,248,244,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.4s, transform 0.4s;
}
.slide-dots button.active { background: #faf8f4; transform: scale(1.3); }
@media (max-width: 700px) {
  .slideshow { max-width: min(980px, 86vh); }
  .slide-arrow { width: 2.1rem; height: 2.1rem; font-size: 1.5rem; }
}

/* ---- Roster (name + title grid) ---- */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(1rem, 3vw, 1.8rem);
  max-width: 1080px;
  margin: 0 auto;
}
.roster-card {
  border: 1px solid var(--mist);
  border-radius: 22px;
  background: var(--paper);
  padding: clamp(1.4rem, 3vw, 2rem) 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10rem;
}
.roster-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  line-height: 1.2;
}
.roster-role {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 0.6rem;
}

/* ---- Staff cards ---- */
.staff-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}
.staff-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 2rem);
  align-items: start;
}
/* cards without a photo use a single full-width column */
.staff-card:not(:has(.staff-photo)) { grid-template-columns: minmax(0, 1fr); }
.staff-card:nth-child(even) { grid-template-columns: minmax(0, 1fr) 160px; }
.staff-card:nth-child(even) .staff-photo { order: 2; }
.staff-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid var(--mist);
}
.staff-info h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  line-height: 1.15;
}
.staff-role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0.5rem 0 0.9rem;
}
.staff-role a { border-bottom: 1px solid var(--mist); }
.staff-role a:hover { border-color: var(--ink); }
.staff-bio { color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 620px) {
  .staff-card, .staff-card:nth-child(even) { grid-template-columns: 1fr; }
  .staff-card:nth-child(even) .staff-photo { order: 0; }
  .staff-photo { max-width: 220px; }
}

/* ---- About story ---- */
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.6rem, 5vw, 3.5rem);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.about-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--mist);
}
.about-text {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: var(--ink-soft);
}
.about-text p + p { margin-top: 1.2rem; }
.about-punch {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--ink);
}
.text-link {
  border-bottom: 1px solid var(--sage);
  transition: border-color 0.4s;
}
.text-link:hover { border-color: var(--ink); }
@media (max-width: 760px) {
  .about-story { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; margin: 0 auto; }
}
.legal-sub {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--mist);
}

/* ---- Legal / accreditation text ---- */
.legal {
  max-width: 68ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal p + p { margin-top: 0.9rem; }
.legal h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2.2rem 0 0.9rem;
  text-align: center;
}
.legal a {
  border-bottom: 1px solid var(--sage);
  transition: border-color 0.4s;
}
.legal a:hover { border-color: var(--ink); }

/* ---- Footer ---- */
footer.site-footer {
  background: var(--ink);
  color: #cfc9bf;
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
footer h4 {
  font-family: var(--serif);
  color: var(--paper);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
footer a:hover { color: #fff; }
footer .socials { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
footer .baseline {
  margin-top: clamp(1.8rem, 5vw, 3rem);
  padding-top: 1.4rem;
  border-top: 1px solid #44403a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #8d887e;
}
