:root {
  --bg: #f2e6d6;
  --bg-soft: #f8efe2;
  --panel: rgba(255, 251, 245, 0.74);
  --panel-strong: #fbf4ea;
  --text: #4e2e20;
  --muted: #846351;
  --line: rgba(78, 46, 32, 0.14);
  --accent: #bd7d54;
  --accent-deep: #7a4b31;
  --accent-soft: #ecd0b2;
  --shadow: 0 30px 70px rgba(78, 46, 32, 0.14);
  --shadow-soft: 0 16px 34px rgba(78, 46, 32, 0.09);
  --radius: 28px;
  --container: min(1120px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.62), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(202, 139, 87, 0.14), transparent 18%),
    linear-gradient(180deg, #eadcc8 0%, #f0e3d2 42%, #f9f2e8 100%);
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(10px);
}

body::before {
  top: 7rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(189, 125, 84, 0.22), rgba(189, 125, 84, 0));
  animation: float-soft 18s ease-in-out infinite;
}

body::after {
  left: -6rem;
  bottom: 10vh;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(122, 75, 49, 0.12), rgba(122, 75, 49, 0));
  animation: float-soft 22s ease-in-out infinite reverse;
}

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

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

body > header,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(248, 241, 231, 0.74);
  border-bottom: 1px solid rgba(78, 46, 32, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-logo-tile {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 242, 228, 0.9));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  transform: scale(calc(var(--logo-scale, 100) / 100));
  filter: brightness(0) saturate(100%) invert(20%) sepia(33%) saturate(970%) hue-rotate(341deg) brightness(95%) contrast(91%);
}

html.js .brand-logo {
  opacity: 1;
  transition: opacity 140ms ease, transform 180ms ease, filter 180ms ease;
}

.brand-kicker,
.eyebrow,
.panel-label,
.detail-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
}

.brand-name,
h1,
h2,
h3,
summary {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.brand-name {
  font-size: 2rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.98rem;
}

.account-button {
  padding-inline: 1.05rem;
}

.menu-toggle {
  display: none;
}

.button {
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 14px 28px rgba(125, 76, 49, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(125, 76, 49, 0.24);
}

.button-secondary,
.button-ghost,
.nav-cta {
  background: rgba(255, 250, 244, 0.82);
  color: var(--accent-deep);
  border: 1px solid rgba(125, 76, 49, 0.16);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 12px 26px rgba(78, 46, 32, 0.08);
}

.button-ghost {
  background: transparent;
}

.button-small {
  min-height: 42px;
  padding-inline: 1rem;
}

.section-shell {
  padding: 5.75rem 0;
}

.hero-section {
  position: relative;
  padding: 2.25rem 0 3rem;
  --hero-background-image: url("./Lounge.png") center center / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(38, 23, 15, 0.72) 0%, rgba(38, 23, 15, 0.48) 34%, rgba(38, 23, 15, 0.18) 64%, rgba(38, 23, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(32, 18, 12, 0.34) 0%, rgba(32, 18, 12, 0.08) 42%, rgba(32, 18, 12, 0.28) 100%),
    var(--hero-background-image);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 26%, rgba(255, 222, 171, 0.26), transparent 24%),
    radial-gradient(circle at 82% 70%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(239, 226, 206, 0.08), rgba(239, 226, 206, 0));
  pointer-events: none;
}

.hero-grid,
.section-grid,
.contact-grid,
.resources-grid,
.booking-layout,
.intake-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 0;
  min-height: min(760px, calc(100vh - 120px));
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
  padding: clamp(1.25rem, 4vw, 3rem) 0 clamp(1rem, 3vw, 1.75rem);
}

/* Responsive adjustments for narrower viewports */
@media (max-width: 900px) {
  .hero-section {
    padding: 1.5rem 0 2rem;
  }
  .hero-grid {
    min-height: auto;
    padding-bottom: 0.5rem;
  }
  .hero-copy h1 {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    line-height: 1.05;
  }
  .hero-text {
    max-width: 56ch;
  }
}

@media (max-width: 480px) {
  .brand-logo-tile {
    width: 48px;
    height: 48px;
  }
  .brand-name {
    font-size: 1.5rem;
  }
  .hero-copy {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hero-actions {
    margin-top: 1rem;
  }
}

.hero-copy .eyebrow,
.hero-copy p,
.hero-copy li {
  color: rgba(255, 248, 239, 0.96);
}

.hero-copy h1 {
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  margin: 0.4rem 0 1rem;
  text-wrap: balance;
  color: #fff7ee;
  text-shadow: 0 12px 28px rgba(32, 18, 12, 0.34);
  line-height: 0.88;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-text,
.section-heading p,
.section-copy p,
.contact-copy p,
.resources-copy p {
  max-width: 70ch;
}

.hero-actions,
.booking-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 0;
}

.trust-card,
.service-card,
.intake-card,
.resources-card,
.contact-form,
.booking-form,
.booking-steps article {
  background: var(--panel);
  border: 1px solid rgba(82, 48, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.trust-strip {
  padding-top: 2.35rem;
  padding-bottom: 2.15rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.trust-card,
.service-card,
.booking-steps article {
  padding: clamp(1.45rem, 2.8vw, 1.85rem);
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
}

.resources-card {
  margin-top: 1rem;
  padding: 2rem 2.25rem;
}

.certificate-preview {
  margin-top: 1rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(82, 48, 31, 0.08);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 248, 239, 0.72);
}

.certificate-preview iframe {
  display: block;
  width: 100%;
  min-height: 80vh;
  border: 0;
}

.trust-card h2,
.section-copy h2,
.section-heading h2,
.resources-copy h2,
.contact-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  margin: 0.3rem 0 0.85rem;
  text-wrap: balance;
}

.trust-card-feature {
  background:
    radial-gradient(circle at top right, rgba(189, 125, 84, 0.12), transparent 28%),
    rgba(255, 251, 245, 0.84);
}

.trust-card-feature h2 {
  font-size: clamp(2.9rem, 4.5vw, 4.6rem);
}

.trust-card-feature p {
  max-width: 34ch;
}

.trust-card-feature::after,
.service-card::after,
.booking-steps article::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 125, 84, 0.14), rgba(189, 125, 84, 0));
  pointer-events: none;
}

.section-grid,
.contact-grid,
.resources-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.about-section .section-grid {
  gap: clamp(1.6rem, 3vw, 2.5rem);
  align-items: center;
}

.about-section.section-shell {
  padding-top: 3.9rem;
  padding-bottom: 3.9rem;
}

.about-section .section-copy {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding-block: 0.8rem;
}

.section-image img {
  width: 100%;
  max-width: 82%;
  min-height: 240px;
  max-height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-section .section-image img {
  max-width: 88%;
}

.about-details,
.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin: 0.35rem 0 1rem;
  text-wrap: balance;
  line-height: 0.95;
}

.service-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.service-toolbar label {
  font-weight: 700;
}

.service-toolbar select,
.payment-panel select,
.booking-form select,
.intake-card select,
.booking-form input,
.booking-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.intake-card textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.88);
  padding: 0.95rem 1rem;
  color: var(--text);
  min-height: 52px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(178, 118, 78, 0.4);
  outline-offset: 3px;
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(125, 76, 49, 0.24);
  background: rgba(255, 252, 247, 0.94);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(255, 248, 239, 0.8)),
    var(--panel);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 125, 84, 0.2);
  box-shadow: 0 30px 70px rgba(78, 46, 32, 0.15);
}

.service-art-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(122, 75, 49, 0.1);
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, rgba(248, 240, 229, 0.92), rgba(235, 213, 189, 0.72));
}

.service-art-card::before,
.service-art-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.service-art-card::before {
  inset: auto auto -4rem -2rem;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(189, 125, 84, 0.42), rgba(189, 125, 84, 0));
  filter: blur(2px);
}

.service-art-card::after {
  inset: 1rem 1rem auto auto;
  width: 6.5rem;
  height: 6.5rem;
  border: 1px solid rgba(122, 75, 49, 0.12);
  background: rgba(255, 251, 245, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3) inset,
    0 12px 28px rgba(78, 46, 32, 0.09);
}

.service-art-one {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 250, 244, 0.92), transparent 20%),
    radial-gradient(circle at 72% 28%, rgba(189, 125, 84, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(247, 236, 220, 0.9), rgba(228, 201, 173, 0.8));
}

.service-art-two {
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.74), transparent 20%),
    radial-gradient(circle at 24% 72%, rgba(122, 75, 49, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(251, 243, 234, 0.95), rgba(236, 218, 197, 0.82));
}

.service-art-three {
  background:
    linear-gradient(135deg, rgba(248, 240, 230, 0.96), rgba(243, 226, 206, 0.8)),
    radial-gradient(circle at 50% 20%, rgba(189, 125, 84, 0.2), transparent 24%);
}

.service-art-one::after {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32) inset,
    0 10px 26px rgba(78, 46, 32, 0.1);
}

.service-art-two::before {
  inset: auto -1.5rem 1rem auto;
  width: 9rem;
  height: 9rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.service-art-three::before {
  inset: auto auto 1.25rem 1.5rem;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(189, 125, 84, 0.24), rgba(189, 125, 84, 0));
}

.service-art-three::after {
  inset: 2rem auto auto 2rem;
  width: 5rem;
  height: 5rem;
  background: rgba(255, 250, 244, 0.38);
}

.service-art-four {
  background:
    radial-gradient(circle at 28% 70%, rgba(255, 255, 255, 0.74), transparent 18%),
    radial-gradient(circle at 72% 32%, rgba(160,110,80,0.14), transparent 22%),
    linear-gradient(140deg, rgba(249,241,233,0.95), rgba(236,218,197,0.82));
}

.service-art-four::before {
  inset: auto -1rem 1.25rem auto;
  width: 9.5rem;
  height: 9.5rem;
  background: radial-gradient(circle, rgba(160,110,80,0.22), rgba(160,110,80,0));
}

.service-art-four::after {
  inset: 1.5rem 1.5rem auto auto;
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(255, 251, 245, 0.3);
}

.service-price {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(178, 118, 78, 0.12);
  font-weight: 700;
}

.service-card h3,
.booking-steps h3,
.resources-card h2,
.resources-card h3 {
  font-size: 2rem;
  margin: 0;
}

.service-card.featured {
  border-color: rgba(189, 125, 84, 0.22);
  box-shadow: 0 26px 64px rgba(78, 46, 32, 0.16);
}

.service-card.featured .service-price {
  background: rgba(189, 125, 84, 0.16);
}

.service-card ul,
.resource-list {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

.service-card .button {
  margin-top: auto;
}

.intake-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 1.5rem;
}

.process-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.process-list div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.process-list span,
.booking-steps span {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(178, 118, 78, 0.14);
  color: var(--accent-deep);
  font-weight: 700;
}

.intake-card,
.booking-form,
.contact-form {
  padding: 1.5rem;
}

.intake-section.section-shell {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.intake-section-inline {
  padding: 0;
}

.booking-section .section-heading {
  margin-bottom: 1.1rem;
}

.booking-layout .intake-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 1.25rem;
  padding-block: 0.35rem;
}

.booking-layout .intake-copy {
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding-block: 1rem;
}

.booking-layout .intake-card {
  width: min(100%, 41rem);
  justify-self: center;
}

#intake-form {
  display: grid;
  gap: 0.9rem;
}

.intake-progress {
  margin-bottom: 0.6rem;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(82, 48, 31, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.7rem;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 33.333%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  transition: width 220ms ease;
}

.intake-step {
  display: none;
}

.intake-step.active {
  display: grid;
  gap: 0.85rem;
}

.intake-step textarea,
.intake-step select {
  margin-top: 0.35rem;
}

#intake-story,
#intake-goals {
  min-height: 140px;
}

.intake-step label,
.booking-form label,
.contact-form label,
.intake-step legend,
.booking-form legend {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.mood-grid,
.checkbox-grid {
  display: grid;
  gap: 0.8rem;
}

.mood-grid {
  grid-template-columns: repeat(5, 1fr);
}

.mood-option,
.checkbox-grid label,
.checkbox-inline {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.booking-form .checkbox-inline,
.contact-form .checkbox-inline {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5rem 0 0;
}

.booking-form .checkbox-inline input,
.contact-form .checkbox-inline input {
  width: auto;
  min-width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
}

.booking-reminder,
.consent-block {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1rem, 2.5vw, 1.15rem);
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.74);
  border: 1px solid rgba(82, 48, 31, 0.08);
}

.booking-reminder {
  margin-top: 1.1rem;
}

.booking-reminder legend,
.consent-block legend {
  margin-bottom: 0.05rem;
}

.booking-reminder > label,
.consent-block > label {
  margin-bottom: 0.2rem;
}

.consent-block .checkbox-inline {
  margin: 0;
}

.consent-block {
  margin: 0.4rem 0 0.5rem;
}

.signature-block {
  margin: 0.25rem 0 0.55rem;
  padding: clamp(1rem, 2.5vw, 1.15rem);
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.74);
  border: 1px solid rgba(82, 48, 31, 0.08);
}

.signature-note {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.signature-pad-wrap {
  border-radius: 20px;
  border: 1px solid rgba(82, 48, 31, 0.14);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(255, 247, 236, 0.88));
  overflow: hidden;
}

.signature-pad-wrap canvas {
  display: block;
  width: 100%;
  height: 220px;
  touch-action: none;
  cursor: crosshair;
}

.signature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.booking-actions {
  margin-top: 0.95rem;
}

.mood-option {
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 108px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.88);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.mood-option:hover,
.mood-option:focus-within {
  border-color: rgba(125, 76, 49, 0.24);
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 10px 22px rgba(78, 46, 32, 0.07);
}

.mood-option input,
.checkbox-grid input,
.checkbox-inline input {
  accent-color: var(--accent-deep);
}

.checkbox-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.booking-layout {
  display: grid;
  gap: 1.35rem;
}

.booking-steps-horizontal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.booking-steps {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.booking-steps article {
  display: grid;
  gap: 0.75rem;
}

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

.payment-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.2rem);
  background: rgba(255, 248, 239, 0.74);
  border: 1px solid rgba(82, 48, 31, 0.08);
  border-radius: 24px;
  margin: 1rem 0;
}

.payment-panel .payment-estimate,
.payment-panel .payment-method {
  display: grid;
  gap: 0.45rem;
}

.payment-panel .panel-label {
  margin: 0;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  color: var(--text);
}

.payment-panel strong {
  font-size: 1.5rem;
  color: var(--accent-deep);
}

.payment-panel .payment-method label {
  margin-bottom: 0;
}

.form-message {
  min-height: 1.5rem;
  color: var(--accent-deep);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-admin {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 251, 245, 0.8);
  border: 1px solid rgba(82, 48, 31, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.faq-admin h3 {
  margin: 0.35rem 0 0.8rem;
  font-size: 2rem;
}

#faq-admin-form {
  display: grid;
  gap: 0.75rem;
}

#faq-admin-form input,
#faq-admin-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.88);
  padding: 0.95rem 1rem;
  color: var(--text);
}

.faq-admin-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.faq-admin-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-admin-item {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid rgba(82, 48, 31, 0.1);
  border-radius: 14px;
}

.faq-admin-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: start;
  min-width: 0;
}

.faq-admin-controls {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.faq-admin-empty {
  color: #7a5542;
}

.admin-page {
  padding-top: 3rem;
  color: var(--text);
  --admin-text-strong: #5c3929;
  --admin-text-muted: #7a5542;
  --admin-text-soft: #916c58;
}

.admin-site-header .header-shell {
  min-height: 88px;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.admin-header-tabs[hidden] {
  display: none !important;
}

.admin-header-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-end;
}

.admin-layout {
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}

.admin-page {
  min-height: calc(100vh - 210px);
}

.admin-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.45), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(220, 154, 92, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.35), rgba(255, 248, 239, 0));
  opacity: 0.9;
}

.admin-module,
.admin-auth-card,
.admin-workspace {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(255, 248, 239, 0.84)),
    var(--panel);
  border: 1px solid rgba(82, 48, 31, 0.08);
  border-radius: 26px;
  box-shadow: var(--shadow);
  min-width: 0;
}

.admin-card-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  color: var(--admin-text-soft);
}

.admin-content-grid {
  display: grid;
  gap: 1.25rem;
}

.admin-auth-card,
.admin-workspace {
  margin-top: 0;
  padding: 1.5rem;
}

.admin-auth-stage {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  min-width: 0;
}

.admin-login-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 247, 236, 0.92)),
    var(--panel);
}

.admin-login-card.is-signed-in {
  padding-block: 1.35rem;
}

.admin-login-card.is-signed-in .admin-login-intro,
.admin-login-card.is-signed-in .admin-auth-switcher,
.admin-login-card.is-signed-in #admin-login-form-wrap {
  display: none !important;
}

.admin-login-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, rgba(189, 125, 84, 0.95), rgba(122, 75, 49, 0.75), rgba(189, 125, 84, 0));
  pointer-events: none;
}

.admin-login-intro {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
}

.admin-login-intro .admin-section-lead {
  margin: 0;
  max-width: 34rem;
}

.admin-login-card h3 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 3.35rem);
}

.admin-login-card form {
  display: grid;
  gap: 0.75rem;
}

.admin-login-card .admin-auth-panel {
  display: none !important;
}

.admin-login-card .admin-auth-panel.is-active {
  display: grid !important;
}

.admin-login-card form[hidden],
.admin-auth-panel[hidden],
#admin-signed-in[hidden],
#member-app[hidden],
#admin-app[hidden] {
  display: none !important;
}

.admin-auth-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.15rem 0 1.25rem;
  min-width: 0;
}

.admin-auth-switcher .is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(125, 76, 49, 0.18);
}

.admin-auth-switcher .button {
  min-height: 46px;
  padding-inline: 1.15rem;
}

.admin-auth-panel {
  padding: 1.1rem 1.1rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(255, 247, 238, 0.72));
  border: 1px solid rgba(82, 48, 31, 0.08);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.admin-login-card label {
  margin-bottom: 0.1rem;
  font-weight: 600;
  color: var(--admin-text-strong);
}

.admin-login-card input {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(78, 46, 32, 0.12);
  background: rgba(255, 252, 247, 0.92);
  padding: 1rem 1.05rem;
  color: var(--admin-text-strong);
  -webkit-text-fill-color: var(--admin-text-strong);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.admin-login-card input:focus {
  outline: none;
  border-color: rgba(189, 125, 84, 0.55);
  box-shadow: 0 0 0 4px rgba(236, 208, 178, 0.35);
  background: rgba(255, 255, 255, 0.98);
}

.admin-auth-hint {
  margin: 0.15rem 0 0.2rem;
  color: var(--admin-text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.admin-link-wrap {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.admin-link-wrap input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.88);
  padding: 0.95rem 1rem;
  color: var(--text);
}

.admin-section-lead {
  margin: 0.25rem 0 1rem;
  color: var(--admin-text-muted);
}

.admin-module-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
}

.admin-tab-button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  border-color: transparent;
}

.admin-module[data-admin-panel] {
  grid-column: 1 / -1;
}

.admin-login-card #admin-signed-in {
  margin-top: 0.25rem;
}

.admin-login-card #admin-signed-in .faq-admin-actions {
  justify-content: flex-start;
}

.admin-module {
  padding: 1.25rem;
  box-shadow: none;
}

.admin-module form {
  display: grid;
  gap: 0.75rem;
}

.admin-module input,
.admin-module textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.88);
  padding: 0.95rem 1rem;
  color: var(--admin-text-strong);
  -webkit-text-fill-color: var(--admin-text-strong);
}

.admin-page input::placeholder,
.admin-page textarea::placeholder {
  color: var(--admin-text-soft);
  opacity: 1;
}

.admin-page input[type="file"] {
  color: var(--admin-text-strong);
}

.admin-page input[type="file"]::file-selector-button {
  color: var(--admin-text-strong);
  background: rgba(255, 251, 245, 0.96);
  border: 1px solid rgba(82, 48, 31, 0.16);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  margin-right: 0.7rem;
}

.admin-module h3 {
  margin-top: 0;
  color: var(--admin-text-strong);
}

.admin-module h4,
.admin-module p,
.admin-module li,
.admin-module strong,
.admin-module label,
.admin-workspace p,
.admin-workspace li,
.admin-workspace strong,
.admin-workspace label,
.member-workspace p,
.member-workspace li,
.member-workspace strong,
.member-workspace label {
  color: var(--admin-text-strong);
}

.admin-module .faq-admin-list {
  margin-top: 1rem;
}

.asset-group + .asset-group {
  margin-top: 1.25rem;
}

.asset-group h4 {
  margin: 0 0 0.8rem;
  font-size: 1.55rem;
}

.logo-filter-panel {
  margin-top: 1.15rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 248, 239, 0.74);
  border: 1px solid rgba(82, 48, 31, 0.08);
}

.range-control-wide {
  margin-bottom: 0.85rem;
}

.logo-filter-header {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.95rem;
}

.logo-filter-header h4 {
  margin: 0;
  font-size: 1.45rem;
}

.logo-filter-header p {
  margin: 0;
  color: var(--admin-text-muted);
}

.logo-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.range-control {
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(82, 48, 31, 0.07);
}

.range-control span {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.range-control output {
  color: var(--admin-text-muted);
  white-space: nowrap;
}

.range-control input[type="range"] {
  width: 100%;
  accent-color: var(--accent-deep);
}

.asset-preview-logo {
  object-fit: contain;
  transform-origin: center center;
  transform: scale(calc(var(--logo-scale, 100) / 100));
  padding: 0.8rem;
  background: rgba(255, 250, 244, 0.92);
}

.asset-preview-logo-frame {
  overflow: hidden;
  border: 1px solid rgba(82, 48, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.asset-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.asset-slot {
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(255, 248, 239, 0.74);
  border: 1px solid rgba(82, 48, 31, 0.08);
  min-width: 0;
}

.asset-slot span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--admin-text-soft);
}

.asset-slot label {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--admin-text-strong);
}

.asset-slot input[type="file"] {
  padding: 0.7rem 0;
  border: 0;
  background: transparent;
}

.asset-preview {
  width: 100%;
  height: 170px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(189, 125, 84, 0.12);
  border: 1px solid rgba(82, 48, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.asset-preview-hero {
  background:
    linear-gradient(90deg, rgba(38, 23, 15, 0.72) 0%, rgba(38, 23, 15, 0.34) 64%, rgba(38, 23, 15, 0.12) 100%),
    var(--hero-background-image);
  background-size: cover;
  background-position: center center;
}

.homepage-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.homepage-preview-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.76);
  border: 1px solid rgba(82, 48, 31, 0.08);
}

.homepage-preview-card span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--admin-text-soft);
}

.homepage-preview-card img,
.homepage-preview-hero {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(189, 125, 84, 0.12);
  border: 1px solid rgba(82, 48, 31, 0.08);
}

.homepage-preview-hero {
  background:
    linear-gradient(90deg, rgba(38, 23, 15, 0.72) 0%, rgba(38, 23, 15, 0.34) 64%, rgba(38, 23, 15, 0.12) 100%),
    var(--hero-background-image);
  background-size: cover;
  background-position: center center;
}

.admin-footer {
  margin-top: 1rem;
}

details {
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid rgba(82, 48, 31, 0.08);
  border-radius: 22px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

summary {
  cursor: pointer;
  font-size: 1.7rem;
}

details:hover,
details[open] {
  border-color: rgba(125, 76, 49, 0.16);
  background: rgba(255, 253, 249, 0.9);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(82, 48, 31, 0.12);
}

.footer-grid a {
  display: inline-block;
  margin-top: 0.25rem;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f9f58, #1e7f44);
  color: white;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(19, 90, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(19, 90, 42, 0.3);
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 1;
  transform: none;
}

html.js.enhanced .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

html.js.enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body::before,
  body::after {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .section-shell {
    padding: 3.15rem 0;
  }

  .section-heading {
    margin-bottom: 1.15rem;
  }

  .trust-strip {
    padding-top: 1.4rem;
    padding-bottom: 1.45rem;
  }

  .hero-grid,
  .section-grid,
  .contact-grid,
  .resources-grid,
  .intake-layout,
  .trust-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-auth-stage,
  .admin-module-grid {
    grid-template-columns: 1fr;
  }

  .asset-slot-grid {
    grid-template-columns: 1fr;
  }

  .logo-filter-grid {
    grid-template-columns: 1fr;
  }

  .booking-steps-horizontal {
    grid-template-columns: 1fr;
  }

  .about-section.section-shell {
    padding-top: 2.4rem;
    padding-bottom: 2.7rem;
  }

  .about-section .section-grid {
    gap: 1rem;
  }

  .about-section .section-copy {
    gap: 0.15rem;
    padding-block: 0;
  }

  .about-details {
    margin-top: 1.1rem;
    gap: 0.75rem;
  }

  .services-section.section-shell {
    padding-top: 2.45rem;
    padding-bottom: 2.6rem;
  }

  .service-toolbar {
    margin-bottom: 1rem;
  }

  .service-grid {
    gap: 0.95rem;
  }

  .service-art-card {
    display: none;
  }

  .booking-section.section-shell {
    padding-top: 2.25rem;
    padding-bottom: 2.7rem;
  }

  .booking-layout {
    gap: 1rem;
  }

  .booking-section .section-heading {
    margin-bottom: 0.75rem;
  }

  .booking-layout .intake-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
    padding-block: 0;
  }

  .booking-layout .intake-copy {
    gap: 0.15rem;
    padding-block: 0;
  }

  .booking-layout .intake-card {
    width: 100%;
    justify-self: stretch;
  }

  .resources-card {
    margin-top: 0.35rem;
    padding: 1.4rem 1.35rem;
  }

  .resources-section.section-shell,
  .faq-section.section-shell,
  .contact-section.section-shell {
    padding-top: 2.55rem;
    padding-bottom: 2.75rem;
  }

  .faq-list {
    gap: 0.8rem;
  }

  .contact-grid,
  .resources-grid {
    gap: 1rem;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(1120px, calc(100vw - 3rem));
  }

  .header-shell {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.45rem 0;
    min-height: 58px;
  }

  .brand {
    display: inline-flex;
    max-width: calc(100% - 6.4rem);
    gap: 0.55rem;
  }

  .brand-text {
    overflow: hidden;
  }

  .brand-kicker {
    letter-spacing: 0.14em;
    font-size: 0.58rem;
  }

  .brand-name {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
    white-space: nowrap;
  }

  .brand-logo-tile {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(82, 48, 31, 0.12);
    background: rgba(255, 251, 245, 0.76);
    border-radius: 999px;
    min-height: 44px;
    padding: 0.65rem 0.9rem;
    color: var(--accent-deep);
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.95rem;
    border-radius: 0 0 22px 22px;
    background: rgba(248, 241, 231, 0.96);
    border: 1px solid rgba(82, 48, 31, 0.08);
    border-top: 0;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    margin-left: 0;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .header-cta-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    flex-wrap: nowrap;
  }

  .header-cta-row .button {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
  }

  .admin-site-header .header-shell {
    padding: 0.42rem 0;
    min-height: 56px;
    min-width: 0;
    overflow-x: clip;
  }

  .admin-site-header .brand {
    max-width: calc(100% - 5.15rem);
  }

  .admin-site-header .menu-toggle {
    top: 50%;
    right: 0.1rem;
  }

  .admin-site-header .site-nav {
    display: none;
    width: 100%;
  }

  .admin-site-header .site-nav.open {
    display: flex;
  }

  .admin-site-header .admin-nav {
    padding: 0.95rem;
  }

  .admin-header-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .admin-header-tabs .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 3.55rem);
    line-height: 0.95;
  }

  .hero-grid {
    align-items: start;
  }

  .hero-section {
    background-position: center right;
  }

  .trust-card h2,
  .section-copy h2,
  .section-heading h2,
  .resources-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .about-section .section-grid {
    gap: 1.25rem;
  }

  .section-image {
    display: flex;
    justify-content: center;
  }

  .section-image img {
    max-width: 100%;
    width: min(100%, 420px);
    min-height: 0;
    max-height: 420px;
    object-position: center top;
  }

  .form-grid,
  .checkbox-grid,
  .mood-grid,
  .payment-panel,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .signature-pad-wrap canvas {
    height: 180px;
  }

  .service-art-card {
    min-height: 180px;
  }

  .hero-actions,
  .booking-actions,
  .intake-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .booking-actions .button,
  .intake-actions .button,
  .contact-form .button,
  .signature-actions .button {
    width: 100%;
  }

  .whatsapp-fab {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .admin-auth-card,
  .admin-workspace,
  .admin-module {
    padding: 1.15rem;
  }

  .admin-login-card {
    padding: 1.35rem;
  }

  .admin-login-intro {
    margin-bottom: 1rem;
  }

  .admin-auth-switcher {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 1rem;
  }

  .admin-auth-switcher .button {
    width: 100%;
  }

  .homepage-preview-grid {
    grid-template-columns: 1fr;
  }

  .admin-auth-stage {
    gap: 0.85rem;
  }

  .admin-workspace-header {
    align-items: start;
  }

  .faq-admin-row {
    display: grid;
  }

  .faq-admin-controls {
    justify-content: flex-start;
  }

  .faq-admin-controls .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 0.55rem;
    max-width: calc(100% - 5.6rem);
  }

  .brand-kicker {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .brand-name {
    font-size: clamp(1.12rem, 5.6vw, 1.42rem);
  }

  .brand-logo-tile {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-logo {
    width: 24px;
    height: 24px;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 0.58rem 0.8rem;
  }

  .admin-page {
    padding-top: 2.1rem;
  }

  .admin-auth-card,
  .admin-workspace,
  .admin-module {
    padding: 1rem;
    border-radius: 22px;
  }

  .admin-login-card {
    padding: 1.05rem;
  }

  .admin-login-card h3 {
    font-size: clamp(2.1rem, 11vw, 2.7rem);
  }

  .admin-header-tabs {
    grid-template-columns: 1fr;
  }

  .admin-login-card #admin-signed-in .faq-admin-actions .button,
  .faq-admin-actions .button,
  .admin-module .button,
  .admin-workspace .button {
    width: 100%;
  }
}
