:root {
  --mist: #ebe6f2;
  --mist-deep: #ddd5ea;
  --ink: #1a1528;
  --ink-soft: #5a5268;
  --line: #c9bfd8;
  --ember: #c45c26;
  --ember-deep: #9a4518;
  --lagoon: #2a6f7c;
  --lagoon-soft: rgba(42, 111, 124, 0.14);
  --panel: rgba(255, 252, 248, 0.78);
  --panel-solid: #fffaf4;
  --shadow: 0 18px 50px rgba(26, 21, 40, 0.12);
  --radius: 22px;
  --radius-sm: 12px;
  --max: 1180px;
  --rail: clamp(1rem, 0.55rem + 2.2vw, 2.4rem);
  --space: clamp(3rem, 1.6rem + 4vw, 6.5rem);
  --font-display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Literata", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.96rem + 0.28vw, 1.14rem);
  line-height: 1.7;
  background: var(--mist);
  overflow-x: hidden;
  position: relative;
}

/* Floating aurora background */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 0% 0%, rgba(196, 92, 38, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 10%, rgba(42, 111, 124, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(90, 70, 140, 0.12), transparent 55%),
    linear-gradient(165deg, #ebe6f2 0%, #e4ecf0 45%, #f0e8df 100%);
}

.aurora .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  will-change: transform;
  mix-blend-mode: multiply;
}

.orb-a {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  background: #c45c26;
  top: 8%;
  left: -8%;
  animation: drift-a 22s ease-in-out infinite alternate;
}

.orb-b {
  width: min(44vw, 360px);
  height: min(44vw, 360px);
  background: #2a6f7c;
  top: 28%;
  right: -10%;
  animation: drift-b 28s ease-in-out infinite alternate;
}

.orb-c {
  width: min(38vw, 300px);
  height: min(38vw, 300px);
  background: #7b5ea7;
  bottom: 18%;
  left: 18%;
  animation: drift-c 24s ease-in-out infinite alternate;
}

.orb-d {
  width: min(30vw, 240px);
  height: min(30vw, 240px);
  background: #e8a87c;
  bottom: 6%;
  right: 22%;
  opacity: 0.45;
  animation: drift-d 19s ease-in-out infinite alternate;
}

.aurora::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: overlay;
}

@keyframes drift-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(12vw, 18vh) scale(1.15); }
}
@keyframes drift-b {
  from { transform: translate(0, 0) scale(1.05); }
  to { transform: translate(-10vw, 14vh) scale(0.9); }
}
@keyframes drift-c {
  from { transform: translate(0, 0); }
  to { transform: translate(8vw, -12vh) scale(1.2); }
}
@keyframes drift-d {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(-6vw, -10vh) rotate(25deg); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora .orb { animation: none; }
  html { scroll-behavior: auto; }
}

body > *:not(.aurora):not(.modal):not(.cookie-bar) {
  position: relative;
  z-index: 1;
}

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

a { color: var(--lagoon); text-underline-offset: 3px; }
a:hover { color: var(--ember-deep); }

a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 0.5em;
  font-weight: 750;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.45rem, 1.2rem + 4.8vw, 4.4rem);
  font-weight: 800;
}

h2 { font-size: clamp(1.65rem, 1.15rem + 2vw, 2.65rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem); letter-spacing: -0.02em; }

p { margin: 0 0 1em; color: var(--ink-soft); max-width: 62ch; }
.lead {
  font-size: clamp(1.08rem, 1rem + 0.45vw, 1.3rem);
  color: var(--ink);
  line-height: 1.55;
  max-width: 38ch;
}
ul, ol { color: var(--ink-soft); max-width: 62ch; }
li { margin-bottom: 0.45em; }
li::marker { color: var(--ember); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.skip:focus { left: 0; }

.shell {
  width: min(100% - 2 * var(--rail), var(--max));
  margin-inline: auto;
}

/* Floating pill header */
.topbar {
  position: sticky;
  top: 0.75rem;
  z-index: 80;
  padding: 0 var(--rail);
  margin-bottom: 0.5rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.55rem 0.7rem 0.55rem 0.85rem;
  background: rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: 0 10px 36px rgba(26, 21, 40, 0.1);
  max-width: var(--max);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  object-fit: cover;
  border: 2px solid rgba(196, 92, 38, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.05;
  font-weight: 800;
}

.brand em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 650;
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  min-height: 42px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #111111;
  font-weight: 650;
  font-size: 0.86rem;
  padding: 0.45rem 0.6rem;
  font-family: var(--font-display);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover { color: #000; background: rgba(26, 21, 40, 0.05); }
.nav a[aria-current="page"] {
  color: #000;
  background: rgba(196, 92, 38, 0.12);
}
.nav .btn {
  margin-left: 0.25rem;
  padding-inline: 1rem;
  color: #fff !important;
}
.nav .btn:hover {
  color: #fff !important;
  background: var(--ember);
  border-color: var(--ember);
}


@media (max-width: 960px) {
  .topbar { top: 0.45rem; }
  .topbar-inner {
    flex-wrap: wrap;
    border-radius: 22px;
    padding: 0.65rem 0.75rem;
  }
  .menu-btn { display: inline-flex; align-items: center; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.35rem;
  }
  .topbar.is-open .nav { display: flex; }
  .nav a {
    padding: 0.8rem 0.7rem;
    border-radius: 12px;
  }
  .nav .btn { margin: 0.35rem 0 0; text-align: center; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff7ef;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 0 rgba(196, 92, 38, 0.35);
}

.btn:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 0 rgba(26, 21, 40, 0.18);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 8px 0 rgba(196, 92, 38, 0.25);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--ember-deep);
  margin-bottom: 0.85rem;
}

.kicker::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--lagoon);
  border-radius: 2px;
}

/* Hero — asymmetric stack */
.hero {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 1rem + 2vw, 3rem) 0 var(--space);
  align-items: end;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    min-height: min(78vh, 720px);
  }
}

.hero-panel {
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1rem + 2vw, 2.4rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: var(--lagoon-soft);
  animation: drift-d 16s ease-in-out infinite alternate;
}

.hero-panel > * { position: relative; z-index: 1; }

.hero-visual {
  position: relative;
  border-radius: var(--radius) var(--radius) var(--radius) 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--mist-deep);
  aspect-ratio: 5 / 4;
  transform: rotate(-1.2deg);
}

@media (min-width: 900px) {
  .hero-visual {
    height: 100%;
    aspect-ratio: auto;
    min-height: 520px;
    transform: rotate(1.5deg) translateY(0.5rem);
  }
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-visual:hover img { transform: scale(1.04); }

.age-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--ember);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(196, 92, 38, 0.35);
}

.section { padding: var(--space) 0; position: relative; }

.section--band {
  background: rgba(255, 250, 244, 0.42);
  border-block: 1px solid rgba(201, 191, 216, 0.55);
}

.section-head { margin-bottom: 1.75rem; max-width: 40rem; }

.section-head .lead { max-width: 42ch; }

/* Mosaic lanes instead of equal cards */
.cards,
.mosaic {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 780px) {
  .mosaic {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
  }
  .mosaic .card:first-child {
    grid-row: 1 / 3;
  }
  .mosaic .card:first-child img {
    aspect-ratio: 3 / 4;
    min-height: 100%;
  }
}

.card {
  background: var(--panel-solid);
  border: 1px solid rgba(201, 191, 216, 0.7);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(26, 21, 40, 0.14);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: var(--mist-deep);
}

.card-body { padding: 1.2rem 1.3rem 1.45rem; }
.card h3 { margin-bottom: 0.3em; }
.card p { margin-bottom: 0; font-size: 0.98rem; }

.split {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 820px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.panel {
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  padding: 1.35rem 1.45rem;
  box-shadow: var(--shadow);
  position: relative;
}

.panel--ember {
  border-top: 4px solid var(--ember);
}

.panel--lagoon {
  border-top: 4px solid var(--lagoon);
}

.panel + .panel { margin-top: 0; }

.meta-list { list-style: none; padding: 0; margin: 0; max-width: none; }
.meta-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--line);
  margin: 0;
}
.meta-list li:last-child { border-bottom: 0; }
.meta-list strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.meta-list span, .meta-list a {
  color: var(--ink-soft);
  text-decoration: none;
}
.meta-list a:hover { color: var(--ember-deep); text-decoration: underline; }

.locations {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .locations { grid-template-columns: repeat(3, 1fr); }
}

.loc {
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.loc::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--lagoon-soft);
}

.loc > * { position: relative; z-index: 1; }
.loc h3 { margin-bottom: 0.35em; }
.loc p { margin-bottom: 0.4em; font-size: 0.98rem; }

.map-link {
  font-weight: 750;
  font-family: var(--font-display);
  text-decoration: none;
  color: var(--ember-deep);
}
.map-link:hover { text-decoration: underline; }

.faq { display: grid; gap: 0.75rem; }
.faq details {
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 750;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid var(--ember);
  border-bottom: 2px solid var(--ember);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq-body {
  padding: 0 1.2rem 1.15rem;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
}

.form-grid { display: grid; gap: 0.95rem; }
.field label {
  display: block;
  font-weight: 750;
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ember);
}

.check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.check input {
  margin-top: 0.35rem;
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  accent-color: var(--ember);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.8rem 0.45rem;
  border-bottom: 1px dashed var(--line);
  vertical-align: top;
}
.hours-table th {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 750;
}
.hours-table td { color: var(--ink-soft); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.job-list { display: grid; gap: 0.9rem; }
.job {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  padding: 1.15rem 1.25rem;
  border-left: 5px solid var(--lagoon);
}
.job h3 { margin-bottom: 0.3em; }
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
}
.job .btn { margin-top: 0.4rem; }

.prose h2 { margin-top: 1.85rem; }
.prose h2:first-child { margin-top: 0; }

.page-hero {
  padding: calc(var(--space) * 0.55) 0 calc(var(--space) * 0.4);
}

.legal-note {
  font-size: 0.94rem;
  color: var(--ink-soft);
  border-left: 4px solid var(--ember);
  padding-left: 0.9rem;
  margin: 1.25rem 0;
}

.site-footer {
  margin-top: var(--space);
  background: linear-gradient(145deg, #1a1528 0%, #243447 55%, #1e3a42 100%);
  color: #d7d0e0;
  padding: 3rem 0 1.6rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(196, 92, 38, 0.22);
  filter: blur(30px);
  top: -80px;
  right: -40px;
  animation: drift-a 20s ease-in-out infinite alternate;
}

.site-footer a { color: #f0b48a; }
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.45fr 1fr 1fr; }
}

.site-footer h2, .site-footer h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
}

.site-footer p, .site-footer li { color: #b9b1c7; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4em; }

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: #8f879e;
  position: relative;
  z-index: 1;
}
.footer-bottom p { color: inherit; max-width: none; margin: 0 0 0.4em; }

.cookie-bar {
  position: fixed;
  left: var(--rail);
  right: var(--rail);
  bottom: 1rem;
  z-index: 9000;
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.05rem 1.2rem;
  display: none;
  max-width: 680px;
  margin-inline: auto;
}
.cookie-bar.is-visible { display: block; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 21, 40, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.is-open { display: flex; }
.modal-box {
  background: var(--panel-solid);
  border-radius: var(--radius);
  padding: 1.6rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--ember);
  position: relative;
  z-index: 1;
}
.modal-box p { margin-inline: auto; margin-bottom: 1.25rem; }
.modal-box.is-success { border-top-color: #1f7a4d; }
.modal-box.is-success h3 { color: #1f7a4d; }
.modal-box.is-error { border-top-color: #b42318; }
.modal-box.is-error h3 { color: #b42318; }

.form-status {
  display: none;
  margin: 0 0 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.45;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: rgba(31, 122, 77, 0.12);
  border: 1px solid #1f7a4d;
  color: #145c38;
}
.form-status.is-error {
  background: rgba(180, 35, 24, 0.1);
  border: 1px solid #b42318;
  color: #8f1a12;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  .card { transition: none; }
  .hero-visual img { transition: none; }
}
