:root {
  color-scheme: light;
  --ink: #163034;
  --muted: #51686d;
  --line: #dbe6e2;
  --paper: #fbfdfb;
  --soft: #eef6f2;
  --mint: #1f8a70;
  --mint-dark: #126955;
  --sun: #f4b45f;
  --blue: #245a7a;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(19, 54, 59, 0.16);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ai-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 80;
  font-family: inherit;
  color: #16325c;
}

.ai-chat-toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffb02f 0%, #f28a00 100%);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(54, 78, 118, 0.24);
  cursor: pointer;
}

.ai-chat-toggle-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
}

.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(370px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(25, 60, 104, 0.14);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(24, 48, 87, 0.24);
}

.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: #16325c;
  color: #ffffff;
}

.ai-chat-header strong,
.ai-chat-header span {
  display: block;
}

.ai-chat-header strong {
  font-size: 1rem;
}

.ai-chat-header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.ai-chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.ai-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 310px;
  max-height: min(48vh, 340px);
  padding: 16px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(255, 176, 47, 0.08), transparent 34%),
    #fffdf8;
}

.ai-chat-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.ai-chat-message.assistant {
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(25, 60, 104, 0.1);
}

.ai-chat-message.user {
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  background: #16325c;
  color: #ffffff;
}

.ai-chat-suggestions {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
  overflow-x: auto;
}

.ai-chat-suggestions button {
  flex: 0 0 auto;
  border: 1px solid rgba(25, 60, 104, 0.13);
  border-radius: 999px;
  padding: 8px 10px;
  background: #ffffff;
  color: #16325c;
  font-size: 0.8rem;
  cursor: pointer;
}

.ai-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px 16px 10px;
  border-top: 1px solid rgba(25, 60, 104, 0.1);
  background: #ffffff;
}

.ai-chat-form textarea {
  min-height: 44px;
  max-height: 110px;
  resize: none;
  border: 1px solid rgba(25, 60, 104, 0.16);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: #16325c;
  background: #fffdf8;
}

.ai-chat-form button {
  align-self: end;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 15px;
  background: #f28a00;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.ai-chat-form button:disabled,
.ai-chat-form textarea:disabled {
  cursor: wait;
  opacity: 0.65;
}

.ai-chat-note {
  margin: 0;
  padding: 0 16px 14px;
  background: #ffffff;
  color: #667085;
  font-size: 0.74rem;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .ai-chat-widget {
    right: 14px;
    bottom: 92px;
  }

  .ai-chat-panel {
    right: -2px;
    bottom: 68px;
    width: calc(100vw - 24px);
    border-radius: 16px;
  }

  .ai-chat-messages {
    height: min(330px, 45vh);
    padding: 14px;
  }

  .ai-chat-suggestions {
    padding-inline: 14px;
  }

  .ai-chat-form {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-inline: 14px;
  }

  .ai-chat-form button {
    width: 100%;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(251, 253, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 132px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(48px, 5vw, 68px);
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--white);
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.15vw, 22px);
  color: var(--muted);
  font-size: clamp(0.84rem, 0.9vw, 0.95rem);
}

.nav a {
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--mint-dark);
}

.header-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.ndis-provider-logo {
  display: block;
  width: clamp(112px, 9vw, 158px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.lang-option.is-active {
  background: var(--mint);
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--mint);
  border-radius: 8px;
  background: var(--mint);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 138, 112, 0.22);
  background: var(--mint-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--mint-dark);
}

.button.secondary:hover {
  background: var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  min-height: calc(100vh - 72px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding: clamp(44px, 8vw, 96px) clamp(22px, 6vw, 82px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-pill {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-media {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(251, 253, 251, 0.12), rgba(251, 253, 251, 0)),
    url("https://images.pexels.com/photos/18429371/pexels-photo-18429371.jpeg?auto=compress&cs=tinysrgb&w=1200") center / cover;
}

.palais-inspired .referral-hero {
  grid-template-columns: 1fr;
  min-height: auto;
  padding: clamp(34px, 5vw, 64px) clamp(22px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.98), rgba(255, 248, 226, 0.9));
}

.palais-inspired .referral-hero .hero-copy {
  max-width: 820px;
  padding: 0;
}

.palais-inspired .referral-hero h1 {
  max-width: 780px;
  color: var(--blue);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.04;
}

.palais-inspired .referral-hero .lead {
  max-width: 700px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.palais-inspired .referral-hero .hero-actions {
  margin-top: 24px;
}

.palais-inspired .referral-hero .trust-row {
  margin-top: 18px;
}

.band {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.band.alt {
  background: var(--soft);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.card {
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(22, 48, 52, 0.04);
}

.card p,
.contact-panel p,
.note p {
  color: var(--muted);
}

.card p:last-child,
.contact-panel p:last-child,
.note p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(24px, 5vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--sun);
  color: #3a2608;
  font-weight: 900;
}

.contact-panel {
  padding: clamp(28px, 5vw, 46px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.palais-inspired .referral-contact-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: clamp(28px, 4vw, 38px);
  border-radius: 10px;
  background: var(--blue);
}

.palais-inspired .referral-contact-panel .eyebrow {
  margin: 0;
  color: var(--sun);
}

.palais-inspired .referral-contact-panel h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
}

.palais-inspired .referral-contact-panel .contact-list {
  margin: 4px 0 8px;
}

.palais-inspired .referral-contact-panel .contact-list a {
  background: rgba(255, 255, 255, 0.14);
}

.palais-inspired .referral-contact-panel .button {
  justify-self: start;
  background: var(--white);
  color: var(--blue);
}

.service-area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  padding: 7px 10px;
  border-radius: 8px;
  background: #e6f0ed;
  color: var(--mint-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.12rem;
}

details p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #10282c;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  color: var(--white);
}

.notice {
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--mint);
  background: var(--white);
  color: var(--muted);
}

.print-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 24px;
  background: var(--white);
}

.print-toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(12px);
}

.print-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.print-logo {
  width: 190px;
  max-width: 52vw;
  height: auto;
  margin-bottom: 12px;
}

.print-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-list {
  padding-left: 18px;
}

.mini-list li {
  margin: 8px 0;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px 18px 18px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .language-toggle {
    flex: 0 0 auto;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 360px;
    order: -1;
  }

  .grid,
  .print-grid,
  .referral-form-grid,
  .referral-check-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .referral-form {
    padding: 22px;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 18px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    text-align: center;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    white-space: normal;
    line-height: 1.2;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .print-toolbar,
  .button {
    display: none;
  }

  body,
  .print-page {
    background: white;
  }
}

.home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
  min-height: auto;
  padding: clamp(28px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(238, 246, 242, 0.96), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 85% 20%, rgba(244, 180, 95, 0.2), transparent 30%);
}

.home-hero .hero-copy {
  padding: clamp(24px, 4vw, 58px) 0;
}

.home-hero h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
}

.home-hero .lead {
  max-width: 780px;
}

.hero-showcase {
  width: 100%;
  max-width: 430px;
  justify-self: center;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-showcase img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.quick-actions {
  background: var(--white);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.check-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 68px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}

.check-item input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--mint);
}

.service-grid {
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  border-radius: 8px;
  background: #fff2df;
  color: #855218;
  font-weight: 900;
  font-size: 0.92rem;
  flex: 0 0 auto;
}

.service-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(21, 63, 114, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(255, 242, 204, 0.78));
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(21, 63, 114, 0.08);
}

.service-glyph svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ndis-section {
  grid-template-columns: 0.95fr 1.05fr;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-list p,
.feature-strip p,
.cta-panel p {
  color: var(--muted);
}

.referral-form-band {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 216, 88, 0.36), transparent 16rem),
    radial-gradient(circle at 96% 100%, rgba(188, 232, 187, 0.48), transparent 18rem),
    var(--soft);
}

.referral-form {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(21, 63, 114, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(21, 63, 114, 0.08);
}

.referral-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.referral-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.referral-field input,
.referral-field select,
.referral-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(21, 63, 114, 0.18);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

.referral-field textarea {
  resize: vertical;
  line-height: 1.55;
}

.referral-field input:focus,
.referral-field select:focus,
.referral-field textarea:focus {
  outline: 3px solid rgba(255, 216, 88, 0.55);
  border-color: var(--blue);
}

.referral-full,
.referral-check-panel {
  margin-top: 18px;
}

.referral-check-panel {
  padding: 18px;
  border: 1px solid rgba(21, 63, 114, 0.14);
  border-radius: 18px;
  background: #fffaf0;
}

.referral-check-panel legend {
  padding: 0 8px;
  color: var(--blue);
  font-weight: 900;
}

.referral-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.referral-check-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.referral-check-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.referral-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.referral-form-note,
.referral-status {
  margin: 14px 0 0;
  color: var(--muted);
}

.referral-status {
  color: var(--blue);
  font-weight: 800;
  white-space: pre-wrap;
}

.about-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(188, 232, 187, 0.5), transparent 15rem),
    radial-gradient(circle at 88% 76%, rgba(255, 216, 88, 0.36), transparent 18rem),
    var(--paper, #fffdf5);
}

.about-layout {
  display: block;
  max-width: 1040px;
  margin: 0 auto;
}

.about-copy {
  display: grid;
  justify-items: start;
}

.about-copy h2 {
  max-width: 860px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  margin-top: 24px;
}

.about-values article {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border: 2px solid rgba(21, 63, 114, 0.12);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 26px rgba(21, 63, 114, 0.06);
}

.about-values span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--sun);
  color: var(--blue);
  font-weight: 950;
}

.about-values h3,
.about-values p {
  grid-column: 1;
  margin: 0;
}

.about-values h3 {
  color: var(--blue);
}

.about-values p {
  color: var(--muted);
}

.about-actions {
  margin-top: 24px;
}

.about-founder-card {
  width: 100%;
  margin-top: 22px;
  padding: 24px;
  border: 2px solid rgba(21, 63, 114, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(255, 246, 219, 0.9));
  box-shadow: 0 12px 30px rgba(21, 63, 114, 0.08);
}

.about-founder-card h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}

.about-founder-card p:not(.eyebrow) {
  color: var(--muted);
}

.about-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: clamp(28px, 5vw, 56px) auto 0;
}

.about-detail-grid article {
  min-height: 230px;
  padding: 24px;
  border: 2px solid rgba(21, 63, 114, 0.12);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 30px rgba(21, 63, 114, 0.07);
}

.about-detail-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--sun);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 950;
}

.about-detail-grid h3 {
  color: var(--blue);
}

.about-detail-grid p {
  color: var(--muted);
}

.local-seo-panel {
  max-width: 1040px;
  margin: clamp(26px, 4vw, 44px) auto 0;
  padding: clamp(22px, 3vw, 32px);
  border: 2px solid rgba(21, 63, 114, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 216, 88, 0.34), transparent 10rem),
    rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 30px rgba(21, 63, 114, 0.07);
}

.local-seo-panel h3 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.local-seo-panel p:last-child {
  max-width: 920px;
  color: var(--muted);
  font-weight: 750;
}

.career-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  min-height: auto;
}

.career-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 3px solid rgba(21, 63, 114, 0.14);
  border-radius: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.career-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.career-visual-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 2px solid var(--blue);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--blue);
  box-shadow: 0 16px 32px rgba(21, 63, 114, 0.14);
}

.career-visual-card span {
  color: var(--muted);
  font-weight: 750;
}

.career-band {
  background:
    radial-gradient(circle at 0% 10%, rgba(188, 232, 187, 0.52), transparent 16rem),
    var(--paper);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.career-card {
  min-height: 280px;
  padding: 24px;
  border: 2px solid rgba(21, 63, 114, 0.12);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 30px rgba(21, 63, 114, 0.07);
}

.career-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--sun);
  color: var(--blue);
  font-weight: 950;
}

.career-card p {
  color: var(--muted);
}

.career-detail-band {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 216, 88, 0.36), transparent 16rem),
    var(--soft);
}

.career-list {
  margin-top: 22px;
}

.career-form input[type="file"] {
  padding: 11px 14px;
}

@media (max-width: 900px) {
  .about-values {
    grid-template-columns: 1fr;
  }

  .career-hero {
    grid-template-columns: 1fr;
  }

  .career-visual,
  .career-visual img {
    min-height: 420px;
  }

  .career-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .referral-form-grid,
  .referral-check-grid {
    grid-template-columns: 1fr;
  }

  .referral-form {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .career-grid {
    grid-template-columns: 1fr;
  }

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

  .career-card {
    min-height: 0;
  }

  .career-visual,
  .career-visual img {
    min-height: 360px;
  }

  .referral-form {
    padding: 18px;
    border-radius: 18px;
  }

  .referral-check-grid label {
    align-items: flex-start;
  }

  .referral-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-strip article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(18, 105, 85, 0.95), rgba(22, 48, 52, 0.96));
}

.cta-panel {
  max-width: 960px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.cta-panel .eyebrow,
.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel .hero-actions {
  justify-content: center;
}

.office-address {
  display: inline-flex;
  max-width: 760px;
  margin: 14px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.qr-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 28px auto 0;
}

.qr-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(21, 63, 114, 0.16);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--blue);
  text-align: left;
}

.qr-card h3 {
  font-size: 1.25rem;
  color: var(--blue);
}

.qr-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.cta-panel .qr-card p {
  color: var(--muted);
}

.qr-image,
.qr-placeholder {
  width: 148px;
  aspect-ratio: 1;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(21, 63, 114, 0.08);
}

.qr-image {
  display: block;
  object-fit: contain;
  padding: 8px;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 12px;
  border: 1px dashed rgba(21, 63, 114, 0.28);
  text-align: center;
}

.qr-placeholder span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.qr-card-missing .qr-image {
  display: none;
}

.qr-card-missing.has-qr .qr-image {
  display: block;
}

.qr-card-missing.has-qr .qr-placeholder {
  display: none;
}

.cta-panel .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

@media (max-width: 1050px) {
  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .hero-showcase {
    order: 0;
    max-width: 360px;
  }

  .home-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .checklist-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
    justify-content: center;
    width: 100%;
  }

  .site-header {
    gap: 12px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 10px;
    font-size: 0.9rem;
    text-align: center;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 4px 2px;
    white-space: normal;
    line-height: 1.2;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ndis-provider-logo {
    width: min(160px, 48vw);
  }

  .header-actions .language-toggle,
  .header-actions .ndis-provider-logo {
    justify-self: center;
  }

  .button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 0.94rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-pill,
  .check-item {
    width: 100%;
  }

  .hero-showcase {
    max-width: 300px;
  }

  .section-head p {
    margin-top: 14px;
  }

  .service-glyph {
    width: 52px;
    height: 52px;
  }

  .service-glyph svg {
    width: 29px;
    height: 29px;
  }

  .referral-form {
    padding: 18px;
    border-radius: 18px;
  }

  .referral-check-grid label {
    align-items: flex-start;
  }

  .referral-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

body.palais-inspired {
  --ink: #153f72;
  --muted: #4c6380;
  --line: #d6dfe8;
  --paper: #fffdf5;
  --soft: #f6f5e9;
  --mint: #1f9476;
  --mint-dark: #0e6c58;
  --sun: #ffd858;
  --blue: #153f72;
  --leaf: #bce8bb;
  --coral: #ff9c73;
  --white: #fffdf8;
  --shadow: 0 22px 50px rgba(21, 63, 114, 0.14);
  background:
    radial-gradient(circle at 4% 28%, rgba(188, 232, 187, 0.5), transparent 16rem),
    radial-gradient(circle at 95% 62%, rgba(255, 156, 115, 0.16), transparent 18rem),
    var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

.palais-inspired .site-header {
  background: rgba(255, 253, 245, 0.9);
  border-bottom: 2px solid rgba(21, 63, 114, 0.08);
}

.palais-inspired .brand {
  color: var(--blue);
  font-weight: 900;
}

.palais-inspired .brand-mark {
  border-radius: 999px;
  background: var(--blue);
}

.palais-inspired .nav {
  color: var(--blue);
  font-weight: 800;
}

.palais-inspired .language-toggle {
  border: 2px solid rgba(21, 63, 114, 0.14);
  background: rgba(255, 253, 245, 0.84);
}

.palais-inspired .lang-option {
  color: var(--blue);
}

.palais-inspired .lang-option.is-active {
  background: var(--blue);
  color: var(--white);
}

.palais-inspired .header-actions .button,
.palais-inspired .button {
  min-height: 48px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  box-shadow: none;
  font-weight: 900;
}

.palais-inspired .button:hover {
  background: #0e315a;
}

.palais-inspired .button.secondary {
  background: var(--white);
  color: var(--blue);
}

.palais-inspired .home-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  min-height: auto;
  padding-top: clamp(22px, 3.6vw, 46px);
  padding-bottom: clamp(18px, 2.4vw, 34px);
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 9% 42%, rgba(188, 232, 187, 0.58), transparent 11rem),
    radial-gradient(circle at 88% 20%, rgba(255, 216, 88, 0.22), transparent 18rem),
    linear-gradient(90deg, var(--paper), #fffaf0);
}

.palais-inspired .home-hero::before,
.palais-inspired .home-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(21, 63, 114, 0.22);
  border-radius: 54% 46% 58% 42% / 45% 55% 45% 55%;
}

.palais-inspired .home-hero::before {
  width: 145px;
  height: 210px;
  left: -64px;
  top: 26%;
  transform: rotate(-18deg);
  background: rgba(188, 232, 187, 0.72);
}

.palais-inspired .home-hero::after {
  display: none;
}

.palais-inspired .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 0;
  padding-bottom: 0;
}

.palais-inspired .eyebrow {
  color: var(--mint-dark);
  font-weight: 950;
  letter-spacing: 0.02em;
}

.palais-inspired .home-hero h1 {
  max-width: 650px;
  color: var(--blue);
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  line-height: 0.92;
  font-weight: 950;
  text-transform: none;
}

.palais-inspired .dot-rule {
  width: min(210px, 45vw);
  height: 14px;
  margin: 20px 0 14px;
  background-image: radial-gradient(circle, var(--blue) 3px, transparent 4px);
  background-size: 22px 12px;
  background-repeat: repeat-x;
}

.palais-inspired .hand-note {
  max-width: 520px;
  margin: 0;
  color: var(--blue);
  font-family: "Segoe Print", "Comic Sans MS", "Noto Sans SC", cursive;
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
}

.palais-inspired .lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.palais-inspired .round-button {
  width: 86px;
  height: 86px;
  padding: 0;
  border-radius: 999px;
  background: var(--sun);
  color: var(--blue);
}

.palais-inspired .hero-art {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
}

.palais-inspired .hero-blob {
  position: absolute;
  inset: -9% -16% -8% 18%;
  border-radius: 40% 0 0 48% / 46% 0 0 54%;
  background: var(--sun);
  transform: rotate(-2deg);
}

.palais-inspired .hero-showcase {
  position: relative;
  z-index: 2;
  max-width: 390px;
  align-self: center;
  padding: 0;
  border: 0;
  border-radius: 45% 55% 44% 56% / 48% 38% 62% 52%;
  background: transparent;
  box-shadow: 0 24px 54px rgba(21, 63, 114, 0.18);
  overflow: hidden;
}

.palais-inspired .hero-showcase img {
  max-height: 610px;
  border-radius: 0;
  transform: scale(1.02);
}

.palais-inspired .line-doodle {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(21, 63, 114, 0.32);
  border-radius: 50%;
}

.palais-inspired .doodle-top {
  width: 120px;
  height: 66px;
  top: 9%;
  left: 17%;
  transform: rotate(18deg);
}

.palais-inspired .doodle-side {
  width: 96px;
  height: 150px;
  right: 4%;
  bottom: 12%;
  transform: rotate(-24deg);
}

.palais-inspired .floating-note {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 10%;
  max-width: 190px;
  padding: 18px 20px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 34px rgba(21, 63, 114, 0.14);
}

.palais-inspired .calm-hero-art {
  min-height: auto;
  align-content: center;
  gap: 14px;
}

.palais-inspired .hero-photo-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(21, 63, 114, 0.08);
  border-radius: 44px;
  background: rgba(255, 253, 248, 0.36);
  box-shadow: 0 28px 70px rgba(21, 63, 114, 0.11);
}

.palais-inspired .hero-photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0) 45%, rgba(255, 253, 248, 0.62)),
    radial-gradient(circle at 22% 18%, rgba(255, 229, 142, 0.22), transparent 34%);
  pointer-events: none;
}

.palais-inspired .hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 42px;
}

.palais-inspired .hero-support-points {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 560px;
  padding: 10px 16px;
  border: 1px solid rgba(21, 63, 114, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 34px rgba(21, 63, 114, 0.06);
}

.palais-inspired .hero-support-points span {
  padding: 0 14px;
  border-right: 1px solid rgba(21, 63, 114, 0.16);
  color: var(--blue);
  font-weight: 800;
  line-height: 1.2;
}

.palais-inspired .hero-support-points span:last-child {
  border-right: 0;
}

.palais-inspired .band {
  position: relative;
}

.palais-inspired .quick-actions {
  background: var(--paper);
}

.palais-inspired .centered-head {
  display: grid;
  justify-items: center;
  max-width: 820px;
  text-align: center;
}

.palais-inspired .centered-head p {
  max-width: 700px;
}

.palais-inspired h2 {
  color: var(--blue);
  font-weight: 950;
}

.palais-inspired h3 {
  color: var(--blue);
  font-weight: 950;
}

.palais-inspired .check-item {
  border: 2px solid rgba(21, 63, 114, 0.12);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(21, 63, 114, 0.06);
}

.palais-inspired .check-item input {
  accent-color: var(--blue);
}

.palais-inspired .services-band {
  background:
    linear-gradient(180deg, var(--soft), #fff9e9);
}

.palais-inspired .card,
.palais-inspired .info-list article,
.palais-inspired .feature-strip article {
  border: 2px solid rgba(21, 63, 114, 0.12);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 30px rgba(21, 63, 114, 0.07);
}

.palais-inspired .service-card:nth-child(2n) {
  background: #f3fbef;
}

.palais-inspired .service-card:nth-child(3n) {
  background: #fff3df;
}

.palais-inspired .expanded-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.palais-inspired .card-icon {
  width: 54px;
  height: 54px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--sun);
  color: var(--blue);
}

.palais-inspired .service-glyph {
  width: 66px;
  height: 66px;
  border: 2px solid rgba(21, 63, 114, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 24%, rgba(140, 208, 85, 0.42), transparent 1.8rem),
    linear-gradient(145deg, #ffffff, #fff1bb);
}

.palais-inspired .service-glyph svg {
  width: 35px;
  height: 35px;
}

.palais-inspired .ndis-band {
  background:
    radial-gradient(circle at 80% 12%, rgba(188, 232, 187, 0.65), transparent 14rem),
    var(--paper);
}

.palais-inspired .photo-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 216, 88, 0.42), transparent 15rem),
    radial-gradient(circle at 92% 82%, rgba(188, 232, 187, 0.58), transparent 16rem),
    var(--paper);
}

.palais-inspired .photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.85fr;
  grid-auto-rows: 250px;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.palais-inspired .photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(21, 63, 114, 0.16);
  border-radius: 38px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(21, 63, 114, 0.12);
}

.palais-inspired .photo-card.tall {
  grid-row: span 2;
  border-radius: 48% 52% 36% 64% / 36% 44% 56% 64%;
}

.palais-inspired .photo-card.wide {
  grid-column: span 2;
}

.palais-inspired .photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.palais-inspired .photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--blue);
  font-weight: 950;
  text-align: center;
}

.palais-inspired .info-list {
  position: relative;
}

.palais-inspired .info-list::before {
  content: "";
  position: absolute;
  inset: -28px 18px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 44% 56% 48% 52%;
  background: rgba(255, 216, 88, 0.55);
  z-index: -1;
}

.palais-inspired .registration-groups {
  max-width: 1180px;
  margin: clamp(34px, 6vw, 72px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 2px solid rgba(21, 63, 114, 0.14);
  border-radius: 38px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 34px rgba(21, 63, 114, 0.08);
}

.palais-inspired .registration-groups h3 {
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
}

.palais-inspired .registration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.palais-inspired .registration-grid span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  border: 2px solid rgba(21, 63, 114, 0.12);
  border-radius: 22px;
  background: #f3fbef;
  color: var(--blue);
  font-weight: 850;
}

.palais-inspired .feature-strip article {
  min-height: 230px;
}

.palais-inspired .faq-band {
  background:
    linear-gradient(180deg, var(--paper), #fff9e9);
}

.palais-inspired .faq-list {
  max-width: 940px;
  margin: 0 auto;
}

.palais-inspired .faq-list details {
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(21, 63, 114, 0.08);
}

.palais-inspired .faq-list details + details {
  margin-top: 14px;
}

.palais-inspired .faq-list summary {
  padding: 20px 24px;
  color: var(--blue);
  list-style: none;
}

.palais-inspired .faq-list summary::-webkit-details-marker {
  display: none;
}

.palais-inspired .faq-list summary::after {
  content: "+";
  float: right;
  width: 30px;
  height: 30px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  text-align: center;
  line-height: 26px;
}

.palais-inspired .faq-list details[open] summary::after {
  content: "-";
}

.palais-inspired .faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.palais-inspired .final-cta {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 216, 88, 0.85), transparent 14rem),
    linear-gradient(135deg, #153f72, #0f2f54);
}

.palais-inspired .cta-panel {
  max-width: 1040px;
}

.palais-inspired .cta-panel h2 {
  color: var(--white);
}

.palais-inspired .cta-panel p {
  color: rgba(255, 253, 248, 0.78);
}

.palais-inspired .cta-panel .qr-card p {
  color: var(--muted);
}

.palais-inspired .cta-panel .button.secondary {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

@media (max-width: 900px) {
  .palais-inspired .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      radial-gradient(circle at 12% 28%, rgba(188, 232, 187, 0.48), transparent 10rem),
      radial-gradient(circle at 88% 70%, rgba(255, 216, 88, 0.18), transparent 13rem),
      var(--paper);
  }

  .palais-inspired .home-hero h1 {
    font-size: clamp(3.1rem, 15vw, 5.2rem);
  }

  .palais-inspired .hero-art {
    min-height: auto;
  }

  .palais-inspired .hero-blob {
    inset: 8% -26% 0 12%;
    border-radius: 46% 0 0 42% / 54% 0 0 46%;
  }

  .palais-inspired .hero-showcase {
    max-width: min(340px, 88vw);
  }

  .palais-inspired .hero-photo-shell {
    width: min(100%, 560px);
  }

  .palais-inspired .floating-note {
    right: 5%;
    bottom: 0;
  }

  .palais-inspired .expanded-services,
  .palais-inspired .registration-grid {
    grid-template-columns: 1fr;
  }

  .palais-inspired .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

  .palais-inspired .photo-card.tall {
    grid-row: span 1;
    border-radius: 38px;
  }

  .palais-inspired .photo-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .palais-inspired .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px 10px;
    overflow-x: visible;
    text-align: center;
  }

  .palais-inspired .nav a {
    min-height: 34px;
    white-space: normal;
    line-height: 1.2;
  }

  .palais-inspired .home-hero {
    padding-top: 18px;
  }

  .palais-inspired .home-hero h1 {
    font-size: clamp(2.75rem, 17vw, 4.2rem);
  }

  .palais-inspired .hand-note {
    font-size: 1.55rem;
  }

  .palais-inspired .round-button {
    width: auto;
    height: 52px;
  }

  .palais-inspired .hero-actions {
    grid-template-columns: 1fr;
  }

  .palais-inspired .hero-art {
    min-height: auto;
  }

  .palais-inspired .calm-hero-art {
    margin-top: 24px;
  }

  .palais-inspired .hero-support-points {
    display: grid;
    width: min(100%, 336px);
    padding: 12px 18px;
    border-radius: 26px;
    text-align: center;
  }

  .palais-inspired .hero-support-points span {
    padding: 6px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 63, 114, 0.12);
  }

  .palais-inspired .hero-support-points span:last-child {
    border-bottom: 0;
  }

  .palais-inspired .qr-contact-grid {
    grid-template-columns: 1fr;
  }

  .palais-inspired .qr-card {
    grid-template-columns: 128px minmax(0, 1fr);
    border-radius: 24px;
  }

  .palais-inspired .qr-image,
  .palais-inspired .qr-placeholder {
    width: 128px;
    border-radius: 16px;
  }

  .palais-inspired .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -12px;
  }

  .palais-inspired .check-item {
    border-radius: 26px;
  }

  .palais-inspired .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .palais-inspired .photo-card.wide {
    grid-column: span 1;
  }

  .palais-inspired .photo-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 22px;
  }

  .palais-inspired .registration-groups {
    border-radius: 28px;
  }
}
